diff --git a/.ember-cli b/.ember-cli
index 0d917f1..eadc21e 100644
--- a/.ember-cli
+++ b/.ember-cli
@@ -4,5 +4,17 @@
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": false
+ "isTypeScriptProject": false,
+
+ /**
+ Setting `componentAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
+ or GTS files for the component and the component rendering test. "loose" is the default.
+ */
+ "componentAuthoringFormat": "loose",
+
+ /**
+ Setting `routeAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
+ or GTS templates for routes. "loose" is the default
+ */
+ "routeAuthoringFormat": "loose"
}
diff --git a/.eslintignore b/.eslintignore
deleted file mode 100644
index 768fab3..0000000
--- a/.eslintignore
+++ /dev/null
@@ -1,14 +0,0 @@
-# unconventional js
-/blueprints/*/files/
-
-# compiled output
-/declarations/
-/dist/
-
-# misc
-/coverage/
-!.*
-.*/
-
-# ember-try
-/.node_modules.ember-try/
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index 25ceaab..0000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,56 +0,0 @@
-'use strict';
-
-module.exports = {
- root: true,
- parser: '@babel/eslint-parser',
- parserOptions: {
- ecmaVersion: 'latest',
- sourceType: 'module',
- requireConfigFile: false,
- babelOptions: {
- plugins: [
- ['@babel/plugin-proposal-decorators', { decoratorsBeforeExport: true }],
- ],
- },
- },
- plugins: ['ember'],
- extends: [
- 'eslint:recommended',
- 'plugin:ember/recommended',
- 'plugin:prettier/recommended',
- ],
- env: {
- browser: true,
- },
- rules: {},
- overrides: [
- // node files
- {
- files: [
- './.eslintrc.js',
- './.prettierrc.js',
- './.stylelintrc.js',
- './.template-lintrc.js',
- './ember-cli-build.js',
- './testem.js',
- './blueprints/*/index.js',
- './config/**/*.js',
- './lib/*/index.js',
- './server/**/*.js',
- ],
- parserOptions: {
- sourceType: 'script',
- },
- env: {
- browser: false,
- node: true,
- },
- extends: ['plugin:n/recommended'],
- },
- {
- // test files
- files: ['tests/**/*-test.{js,ts}'],
- extends: ['plugin:qunit/recommended'],
- },
- ],
-};
diff --git a/.gitignore b/.gitignore
index b5230f0..5ccef84 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
+/tmp/
+
# compiled output
/dist/
/declarations/
diff --git a/.prettierignore b/.prettierignore
index 9385391..b674563 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -8,6 +8,14 @@
/coverage/
!.*
.*/
+/pnpm-lock.yaml
+ember-cli-update.json
+*.html
+jsconfig.json
+README.md
# ember-try
/.node_modules.ember-try/
+
+# source markdown
+/source/
diff --git a/.prettierrc.cjs b/.prettierrc.cjs
new file mode 100644
index 0000000..8e62a45
--- /dev/null
+++ b/.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/.prettierrc.js b/.prettierrc.js
deleted file mode 100644
index e5f7b6d..0000000
--- a/.prettierrc.js
+++ /dev/null
@@ -1,12 +0,0 @@
-'use strict';
-
-module.exports = {
- overrides: [
- {
- files: '*.{js,ts}',
- options: {
- singleQuote: true,
- },
- },
- ],
-};
diff --git a/.stylelintignore b/.stylelintignore
index a0cf71c..fc178a0 100644
--- a/.stylelintignore
+++ b/.stylelintignore
@@ -3,6 +3,3 @@
# compiled output
/dist/
-
-# addons
-/.node_modules.ember-try/
diff --git a/.stylelintrc.js b/.stylelintrc.js
index 021c539..56a013c 100644
--- a/.stylelintrc.js
+++ b/.stylelintrc.js
@@ -1,5 +1,5 @@
'use strict';
module.exports = {
- extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
+ extends: ['stylelint-config-standard'],
};
diff --git a/README.md b/README.md
index bf9c398..424404c 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,6 @@ You will need the following things properly installed on your computer.
- [Git](https://git-scm.com/)
- [Node.js](https://nodejs.org/) (with npm)
-- [Ember CLI](https://cli.emberjs.com/release/)
- [Google Chrome](https://google.com/chrome/)
@@ -29,10 +28,13 @@ You will need the following things properly installed on your computer.
- 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 `npm exec ember help generate` for more details
+
### Running Tests
- `npm run test`
-- `npm run test:ember -- --server`
### Linting
@@ -41,18 +43,13 @@ You will need the following things properly installed on your computer.
### Building
-- `npm exec ember build` (development)
+- `npm exec vite build --mode development` (development)
- `npm run build` (production)
### Deploying
Specify what it takes to deploy your app.
-
-## Code Generators
-
-Please use Ember CLI to create files in the `app` folder. You can run `ember help generate` for more detail.
-
### Adding the latest Ember version
When a new version of Ember is released (for example, version 3.20), we need to manually update this app. Let's look at how to provide information on version number, features, and deprecations.
@@ -74,7 +71,7 @@ Next, we use custom blueprints to create Markdown files that can list features a
```bash
# Creates 3 Markdown files in the `source` directory
-ember generate upgrade-notes 3.20
+npm exec ember generate upgrade-notes 3.20
```
Each Markdown file, by default, lists 1 deprecation and 1 feature:
@@ -123,10 +120,11 @@ changes:
For consistency, we recommend relying on [Ember Blog - Releases](https://blog.emberjs.com/tag/releases/). If you want to learn more about a feature or deprecation, you can check the release notes and `CHANGELOG` in each project:
-- [Ember.js](https://github.com/emberjs/ember.js)
-- [Ember Data](https://github.com/emberjs/data)
-- [Ember CLI](https://github.com/ember-cli/ember-cli)
-
+- [ember.js](https://emberjs.com/)
+- [Vite](https://vite.dev)
+- 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/)
## Contributing
diff --git a/app/app.js b/app/app.js
index ed34dc4..11d587e 100644
--- a/app/app.js
+++ b/app/app.js
@@ -1,12 +1,21 @@
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
-import config from 'upgrade-guide/config/environment';
+import config from './config/environment';
+import { importSync, isDevelopingApp, macroCondition } from '@embroider/macros';
+import setupInspector from '@embroider/legacy-inspector-support/ember-source-4.12';
+import compatModules from '@embroider/virtual/compat-modules';
+import './styles/app.css';
+
+if (macroCondition(isDevelopingApp())) {
+ importSync('./deprecation-workflow');
+}
export default class App extends Application {
modulePrefix = config.modulePrefix;
podModulePrefix = config.podModulePrefix;
- Resolver = Resolver;
+ Resolver = Resolver.withModules(compatModules);
+ inspector = setupInspector(this);
}
-loadInitializers(App, config.modulePrefix);
+loadInitializers(App, config.modulePrefix, compatModules);
diff --git a/app/components/cli-update-commands.hbs b/app/components/cli-update-commands.hbs
index 364ee15..fd41220 100644
--- a/app/components/cli-update-commands.hbs
+++ b/app/components/cli-update-commands.hbs
@@ -1,16 +1,21 @@
- ember-cli-update --to {{@toVersion}}
+ ember-cli-update --to
+ {{@toVersion}}
To run codemods:
- (This should be run after running the normal update shown above, and after you've resolved any conflicts.)
+ (This should be run after running the normal update shown above, and after
+ you've resolved any conflicts.)
- ember-cli-update --run-codemods
+ ember-cli-update --run-codemods
For more details, refer this documentation from
- ember-cli-update .
+ ember-cli-update .
\ No newline at end of file
diff --git a/app/components/ember-versions-form.hbs b/app/components/ember-versions-form.hbs
index 890743e..acfc460 100644
--- a/app/components/ember-versions-form.hbs
+++ b/app/components/ember-versions-form.hbs
@@ -15,10 +15,7 @@
{{versionGroup.major}}.x Versions
{{#each versionGroup.versions as |version|}}
-
+
{{version}}
{{/each}}
@@ -39,10 +36,7 @@
{{versionGroup.major}}.x Versions
{{#each versionGroup.versions as |version|}}
-
+
{{version}}
{{/each}}
@@ -52,16 +46,16 @@
-
- {{#unless this.areVersionsValid}}
-
To version should be higher than From version
- {{/unless}}
-
-
+
+ {{#unless this.areVersionsValid}}
+
To version should be higher than From version
+ {{/unless}}
+
+
\ No newline at end of file
diff --git a/app/components/ember-versions-form.js b/app/components/ember-versions-form.js
index 66ce3b5..ae9ae62 100644
--- a/app/components/ember-versions-form.js
+++ b/app/components/ember-versions-form.js
@@ -3,6 +3,7 @@ import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
import { VERSIONS } from 'upgrade-guide/utils/ember-versions';
import { compare } from 'compare-versions';
+import '../styles/ember-versions-form.css';
// Group the versions by major so we can display option groups.
const GROUPED_VERSIONS = VERSIONS.reduce((acc, version) => {
diff --git a/app/config/environment.js b/app/config/environment.js
new file mode 100644
index 0000000..a9672e2
--- /dev/null
+++ b/app/config/environment.js
@@ -0,0 +1,27 @@
+import loadConfigFromMeta from '@embroider/config-meta-loader';
+import { assert } from '@ember/debug';
+
+const config = loadConfigFromMeta('upgrade-guide');
+
+assert(
+ 'config is not an object',
+ typeof config === 'object' && config !== null,
+);
+assert(
+ 'modulePrefix was not detected on your config',
+ 'modulePrefix' in config && typeof config.modulePrefix === 'string',
+);
+assert(
+ 'locationType was not detected on your config',
+ 'locationType' in config && typeof config.locationType === 'string',
+);
+assert(
+ 'rootURL was not detected on your config',
+ 'rootURL' in config && typeof config.rootURL === 'string',
+);
+assert(
+ 'APP was not detected on your config',
+ 'APP' in config && typeof config.APP === 'object',
+);
+
+export default config;
diff --git a/app/controllers/index.js b/app/controllers/index.js
index d478320..e3cacbb 100644
--- a/app/controllers/index.js
+++ b/app/controllers/index.js
@@ -1,6 +1,6 @@
import Controller from '@ember/controller';
import { action } from '@ember/object';
-import { inject as service } from '@ember/service';
+import { service } from '@ember/service';
export default class IndexController extends Controller {
@service router;
diff --git a/app/deprecation-workflow.js b/app/deprecation-workflow.js
new file mode 100644
index 0000000..c145ef0
--- /dev/null
+++ b/app/deprecation-workflow.js
@@ -0,0 +1,47 @@
+import setupDeprecationWorkflow from 'ember-cli-deprecation-workflow';
+
+setupDeprecationWorkflow({
+ /**
+ false by default, but if a developer / team wants to be more aggressive about being proactive with
+ handling their deprecations, this should be set to "true"
+ */
+ throwOnUnhandled: false,
+ workflow: [
+ {
+ handler: 'log',
+ matchId: 'deprecate-import-test-from-ember',
+ },
+ {
+ handler: 'log',
+ matchId: 'warp-drive.deprecate-tracking-package',
+ },
+ {
+ handler: 'log',
+ matchId: 'deprecate-import--set-classic-decorator-from-ember',
+ },
+ {
+ handler: 'log',
+ matchId: 'importing-inject-from-ember-service',
+ },
+ {
+ handler: 'log',
+ matchId: 'deprecate-import--is-destroying-from-ember',
+ },
+ {
+ handler: 'log',
+ matchId: 'deprecate-import--is-destroyed-from-ember',
+ },
+ {
+ handler: 'log',
+ matchId: 'deprecate-import-destroy-from-ember',
+ },
+ {
+ handler: 'log',
+ matchId: 'deprecate-import--register-destructor-from-ember',
+ },
+ {
+ handler: 'log',
+ matchId: 'ember-data:deprecate-legacy-imports',
+ },
+ ],
+});
diff --git a/app/routes/changes.js b/app/routes/changes.js
index 8ad62f3..e8b9446 100644
--- a/app/routes/changes.js
+++ b/app/routes/changes.js
@@ -1,6 +1,6 @@
import Route from '@ember/routing/route';
import { hash } from 'rsvp';
-import { inject as service } from '@ember/service';
+import { service } from '@ember/service';
export default class ChangesRoute extends Route {
@service store;
diff --git a/app/services/.gitkeep b/app/services/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/app/styles/app.css b/app/styles/app.css
index d708372..ff175ad 100644
--- a/app/styles/app.css
+++ b/app/styles/app.css
@@ -1,7 +1,5 @@
/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */
-@import url("./ember-versions-form.css");
-
/*
This project is using an old version of the styleguide, so these highly-targeted rules are a bridge
to meet accessibility guidelines until we upgrade to a compliant styleguide.
diff --git a/app/templates/changes.hbs b/app/templates/changes.hbs
index 06b8d4e..81278be 100644
--- a/app/templates/changes.hbs
+++ b/app/templates/changes.hbs
@@ -1,8 +1,6 @@
Upgrading from {{this.fromVersion}} to {{this.toVersion}}
-
+
Ember.js
@@ -30,20 +28,18 @@
@toVersion={{this.toVersion}}
/>
-
- Contribute
- Improve the upgrade guide and open issues over at the
+
+ Contribute
+ Improve the upgrade guide and open issues over at the
repo
-
+
Choose different versions
-
+
\ No newline at end of file
diff --git a/app/templates/index.hbs b/app/templates/index.hbs
index d7e096b..c3518f4 100644
--- a/app/templates/index.hbs
+++ b/app/templates/index.hbs
@@ -1,7 +1,5 @@
+
+
\ No newline at end of file
diff --git a/babel.config.mjs b/babel.config.mjs
new file mode 100644
index 0000000..f77022f
--- /dev/null
+++ b/babel.config.mjs
@@ -0,0 +1,45 @@
+import { dirname } from 'node:path';
+import { fileURLToPath } from 'node:url';
+import {
+ babelCompatSupport,
+ templateCompatSupport,
+} from '@embroider/compat/babel';
+
+export default {
+ plugins: [
+ [
+ 'babel-plugin-ember-template-compilation',
+ {
+ enableLegacyModules: [
+ 'ember-cli-htmlbars',
+ 'ember-cli-htmlbars-inline-precompile',
+ 'htmlbars-inline-precompile',
+ ],
+ transforms: [...templateCompatSupport()],
+ },
+ ],
+ [
+ 'module:decorator-transforms',
+ {
+ runtime: {
+ import: fileURLToPath(
+ import.meta.resolve('decorator-transforms/runtime-esm'),
+ ),
+ },
+ },
+ ],
+ [
+ '@babel/plugin-transform-runtime',
+ {
+ absoluteRuntime: dirname(fileURLToPath(import.meta.url)),
+ useESModules: true,
+ regenerator: false,
+ },
+ ],
+ ...babelCompatSupport(),
+ ],
+
+ generatorOpts: {
+ compact: false,
+ },
+};
diff --git a/config/ember-cli-update.json b/config/ember-cli-update.json
index bb130be..665dd39 100644
--- a/config/ember-cli-update.json
+++ b/config/ember-cli-update.json
@@ -2,13 +2,11 @@
"schemaVersion": "1.0.0",
"packages": [
{
- "name": "ember-cli",
- "version": "5.10.0",
+ "name": "@ember/app-blueprint",
+ "version": "6.8.3",
"blueprints": [
{
- "name": "app",
- "outputRepo": "https://github.com/ember-cli/ember-new-output",
- "codemodsSource": "ember-app-codemods-manifest@1",
+ "name": "@ember/app-blueprint",
"isBaseBlueprint": true,
"options": [
"--no-welcome"
diff --git a/ember-cli-build.js b/ember-cli-build.js
index ed991bd..0cdcc77 100644
--- a/ember-cli-build.js
+++ b/ember-cli-build.js
@@ -1,11 +1,36 @@
'use strict';
-
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
-module.exports = function (defaults) {
+const { compatBuild } = require('@embroider/compat');
+
+module.exports = async function (defaults) {
+ const { buildOnce } = await import('@embroider/vite');
+
const app = new EmberApp(defaults, {
+ emberData: {
+ deprecations: {
+ // New projects can safely leave this deprecation disabled.
+ // If upgrading, to opt-into the deprecated behavior, set this to true and then follow:
+ // https://deprecations.emberjs.com/id/ember-data-deprecate-store-extends-ember-object
+ // before upgrading to Ember Data 6.0
+ DEPRECATE_STORE_EXTENDS_EMBER_OBJECT: false,
+ },
+ },
// Add options here
});
- return app.toTree();
+ return compatBuild(app, buildOnce, {
+ //
+ // staticAddonTestSupportTrees: true,
+ // staticAddonTrees: true,
+ // staticHelpers: true,
+ // staticModifiers: true,
+ // staticComponents: true,
+ // splitAtRoutes: ['route.name'], // can also be a RegExp
+ // packagerOptions: {
+ // webpackConfig: { }
+ // }
+ //
+ extraPublicTrees: [],
+ });
};
diff --git a/eslint.config.mjs b/eslint.config.mjs
new file mode 100644
index 0000000..6ad100f
--- /dev/null
+++ b/eslint.config.mjs
@@ -0,0 +1,124 @@
+/**
+ * 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 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/experimental-worker';
+
+const esmParserOptions = {
+ ecmaFeatures: { modules: true },
+ ecmaVersion: 'latest',
+};
+
+export default [
+ js.configs.recommended,
+ eslintConfigPrettier,
+ ember.configs.base,
+ ember.configs.gjs,
+ /**
+ * Ignores must be in their own object
+ * https://eslint.org/docs/latest/use/configure/ignore
+ */
+ {
+ ignores: [
+ 'dist/',
+ 'node_modules/',
+ 'coverage/',
+ 'blueprints/',
+ 'lib/content-generator/',
+ '!**/.*',
+ ],
+ },
+ /**
+ * 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: esmParserOptions,
+ globals: {
+ ...globals.browser,
+ },
+ },
+ },
+ {
+ files: ['tests/**/*-test.{js,gjs}'],
+ 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: esmParserOptions,
+ globals: {
+ ...globals.node,
+ },
+ },
+ },
+];
diff --git a/app/index.html b/index.html
similarity index 56%
rename from app/index.html
rename to index.html
index 1f8f85d..50bc55d 100644
--- a/app/index.html
+++ b/index.html
@@ -8,16 +8,20 @@
{{content-for "head"}}
-
-
+
{{content-for "head-footer"}}
{{content-for "body"}}
-
-
+
+
{{content-for "body-footer"}}
diff --git a/package.json b/package.json
index 3e6377d..6a0ec56 100644
--- a/package.json
+++ b/package.json
@@ -11,74 +11,79 @@
"test": "tests"
},
"scripts": {
- "build": "ember build --environment=production",
- "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
+ "build": "vite build",
+ "format": "prettier . --cache --write",
+ "lint": "concurrently \"npm: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:\"",
+ "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" --prefixColors auto && npm run 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",
- "start": "ember serve",
- "test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\"",
- "test:ember": "ember test"
+ "start": "vite",
+ "test": "vite build --mode development && ember test --path dist",
+ "test:ember": "vite build --mode development && ember test --path dist"
},
"devDependencies": {
- "@babel/core": "^7.24.7",
- "@babel/eslint-parser": "^7.24.7",
- "@babel/plugin-proposal-decorators": "^7.24.7",
- "@ember/optional-features": "^2.1.0",
- "@ember/string": "^3.1.1",
- "@ember/test-helpers": "^3.3.0",
- "@glimmer/component": "^1.1.2",
+ "@babel/core": "^7.28.4",
+ "@babel/eslint-parser": "^7.28.4",
+ "@babel/plugin-proposal-decorators": "^7.28.0",
+ "@babel/plugin-transform-runtime": "^7.29.0",
+ "@ember/optional-features": "^2.2.0",
+ "@ember/string": "^4.0.1",
+ "@ember/test-helpers": "^5.3.0",
+ "@embroider/compat": "^4.1.17",
+ "@embroider/config-meta-loader": "^1.0.0",
+ "@embroider/core": "^4.4.7",
+ "@embroider/legacy-inspector-support": "^0.1.3",
+ "@embroider/macros": "^1.19.1",
+ "@embroider/vite": "^1.7.2",
+ "@eslint/js": "^9.37.0",
+ "@glimmer/component": "^2.0.0",
"@glimmer/tracking": "^1.1.2",
- "broccoli-asset-rev": "^3.0.0",
+ "@rollup/plugin-babel": "^7.0.0",
+ "babel-plugin-ember-template-compilation": "^4.0.0",
"broccoli-merge-trees": "^4.2.0",
"broccoli-static-site-json": "^4.4.1",
"compare-versions": "^4.1.2",
- "concurrently": "^8.2.2",
- "ember-a11y-testing": "^6.0.0",
- "ember-auto-import": "^2.7.4",
- "ember-cli": "~5.10.0",
- "ember-cli-app-version": "^6.0.1",
+ "concurrently": "^9.2.1",
+ "decorator-transforms": "^2.3.1",
+ "ember-a11y-testing": "^8.0.0",
+ "ember-auto-import": "^2.11.1",
+ "ember-cli": "~6.8.0",
"ember-cli-babel": "^8.2.0",
- "ember-cli-clean-css": "^3.0.0",
- "ember-cli-dependency-checker": "^3.3.2",
+ "ember-cli-deprecation-workflow": "^3.4.0",
"ember-cli-htmlbars": "^6.3.0",
- "ember-cli-inject-live-reload": "^2.1.0",
- "ember-cli-sri": "^2.1.1",
- "ember-cli-terser": "^4.0.2",
- "ember-data": "~5.3.8",
- "ember-fetch": "^8.1.2",
- "ember-load-initializers": "^2.1.2",
- "ember-modifier": "^4.2.0",
- "ember-page-title": "^8.2.3",
- "ember-qunit": "^8.1.0",
- "ember-resolver": "^11.0.1",
- "ember-source": "~5.10.0",
+ "ember-data": "~5.6.0",
+ "ember-load-initializers": "^3.0.1",
+ "ember-modifier": "^4.2.2",
+ "ember-page-title": "^9.0.3",
+ "ember-qunit": "^9.0.4",
+ "ember-resolver": "^13.1.1",
+ "ember-source": "~6.8.0",
"ember-styleguide": "^11.0.0",
- "ember-template-lint": "^5.13.0",
+ "ember-template-lint": "^6.1.0",
"ember-test-selectors": "^6.0.0",
- "ember-truth-helpers": "^3.0.0",
- "eslint": "^8.57.0",
- "eslint-config-prettier": "^9.1.0",
- "eslint-plugin-ember": "^11.12.0",
- "eslint-plugin-n": "^16.6.2",
- "eslint-plugin-prettier": "^5.1.3",
- "eslint-plugin-qunit": "^8.1.1",
- "loader.js": "^4.7.0",
- "prettier": "^3.3.2",
- "qunit": "^2.21.0",
- "qunit-dom": "^2.0.0",
- "stylelint": "^15.11.0",
- "stylelint-config-standard": "^34.0.0",
- "stylelint-prettier": "^4.1.0",
- "tracked-built-ins": "^3.3.0",
- "webpack": "^5.92.1"
+ "ember-truth-helpers": "^5.0.0",
+ "eslint": "^9.37.0",
+ "eslint-config-prettier": "^9.1.2",
+ "eslint-plugin-ember": "^13.2.0",
+ "eslint-plugin-n": "^17.23.1",
+ "eslint-plugin-qunit": "^8.2.5",
+ "globals": "^16.4.0",
+ "prettier": "^3.6.2",
+ "prettier-plugin-ember-template-tag": "^2.1.0",
+ "qunit": "^2.24.2",
+ "qunit-dom": "^3.5.0",
+ "stylelint": "^16.25.0",
+ "stylelint-config-standard": "^36.0.1",
+ "tracked-built-ins": "^3.4.0",
+ "vite": "^8.0.10"
},
"engines": {
- "node": ">= 22.22.3"
+ "node": ">= 20"
},
"ember": {
"edition": "octane"
@@ -87,5 +92,9 @@
"paths": [
"lib/content-generator"
]
+ },
+ "exports": {
+ "./tests/*": "./tests/*",
+ "./*": "./app/*"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 25ce3b3..e804642 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,192 +9,208 @@ importers:
.:
devDependencies:
'@babel/core':
- specifier: ^7.24.7
- version: 7.24.9
+ specifier: ^7.28.4
+ version: 7.29.7(supports-color@8.1.1)
'@babel/eslint-parser':
- specifier: ^7.24.7
- version: 7.24.8(@babel/core@7.24.9)(eslint@8.57.0)
+ specifier: ^7.28.4
+ version: 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4)
'@babel/plugin-proposal-decorators':
- specifier: ^7.24.7
- version: 7.24.7(@babel/core@7.24.9)
+ specifier: ^7.28.0
+ version: 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-runtime':
+ specifier: ^7.29.0
+ version: 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
'@ember/optional-features':
- specifier: ^2.1.0
- version: 2.1.0
+ specifier: ^2.2.0
+ version: 2.3.0
'@ember/string':
- specifier: ^3.1.1
- version: 3.1.1
+ specifier: ^4.0.1
+ version: 4.0.1
'@ember/test-helpers':
- specifier: ^3.3.0
- version: 3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0)
+ specifier: ^5.3.0
+ version: 5.4.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@embroider/compat':
+ specifier: ^4.1.17
+ version: 4.1.21(@embroider/core@4.6.2(supports-color@8.1.1))(supports-color@8.1.1)
+ '@embroider/config-meta-loader':
+ specifier: ^1.0.0
+ version: 1.0.0
+ '@embroider/core':
+ specifier: ^4.4.7
+ version: 4.6.2(supports-color@8.1.1)
+ '@embroider/legacy-inspector-support':
+ specifier: ^0.1.3
+ version: 0.1.3
+ '@embroider/macros':
+ specifier: ^1.19.1
+ version: 1.20.5
+ '@embroider/vite':
+ specifier: ^1.7.2
+ version: 1.7.8(@embroider/core@4.6.2(supports-color@8.1.1))(supports-color@8.1.1)(vite@8.1.0(terser@5.31.3)(yaml@2.9.0))
+ '@eslint/js':
+ specifier: ^9.37.0
+ version: 9.39.4
'@glimmer/component':
- specifier: ^1.1.2
- version: 1.1.2(@babel/core@7.24.9)
+ specifier: ^2.0.0
+ version: 2.1.1
'@glimmer/tracking':
specifier: ^1.1.2
version: 1.1.2
- broccoli-asset-rev:
- specifier: ^3.0.0
- version: 3.0.0
+ '@rollup/plugin-babel':
+ specifier: ^7.0.0
+ version: 7.1.0(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-ember-template-compilation:
+ specifier: ^4.0.0
+ version: 4.0.0
broccoli-merge-trees:
specifier: ^4.2.0
version: 4.2.0
broccoli-static-site-json:
specifier: ^4.4.1
- version: 4.4.1
+ version: 4.4.1(supports-color@8.1.1)
compare-versions:
specifier: ^4.1.2
version: 4.1.3
concurrently:
- specifier: ^8.2.2
- version: 8.2.2
+ specifier: ^9.2.1
+ version: 9.2.1
+ decorator-transforms:
+ specifier: ^2.3.1
+ version: 2.3.2(@babel/core@7.29.7(supports-color@8.1.1))
ember-a11y-testing:
- specifier: ^6.0.0
- version: 6.1.1(@babel/core@7.24.9)(@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0))(qunit@2.21.1)(webpack@5.93.0)
+ specifier: ^8.0.0
+ version: 8.0.1(@babel/core@7.29.7(supports-color@8.1.1))(@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1)))(@ember/test-waiters@3.1.0)(axe-core@4.9.1)(qunit@2.26.0)
ember-auto-import:
- specifier: ^2.7.4
- version: 2.7.4(webpack@5.93.0)
+ specifier: ^2.11.1
+ version: 2.13.1(webpack@5.107.2(postcss@8.5.15))
ember-cli:
- specifier: ~5.10.0
- version: 5.10.0(handlebars@4.7.7)(underscore@1.13.7)
- ember-cli-app-version:
- specifier: ^6.0.1
- version: 6.0.1(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
+ specifier: ~6.8.0
+ version: 6.8.1(@babel/core@7.29.7(supports-color@8.1.1))(handlebars@4.7.9)(underscore@1.13.7)
ember-cli-babel:
specifier: ^8.2.0
- version: 8.2.0(@babel/core@7.24.9)
- ember-cli-clean-css:
- specifier: ^3.0.0
- version: 3.0.0
- ember-cli-dependency-checker:
- specifier: ^3.3.2
- version: 3.3.2(ember-cli@5.10.0(handlebars@4.7.7)(underscore@1.13.7))
+ version: 8.2.0(@babel/core@7.29.7(supports-color@8.1.1))
+ ember-cli-deprecation-workflow:
+ specifier: ^3.4.0
+ version: 3.4.0(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5))
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-sri:
- specifier: ^2.1.1
- version: 2.1.1
- ember-cli-terser:
- specifier: ^4.0.2
- version: 4.0.2
ember-data:
- specifier: ~5.3.8
- version: 5.3.8(@ember/string@3.1.1)(@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0))(@ember/test-waiters@3.1.0)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(qunit@2.21.1)
- ember-fetch:
- specifier: ^8.1.2
- version: 8.1.2
+ specifier: ~5.6.0
+ version: 5.6.0(@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1)))(@ember/test-waiters@3.1.0)(qunit@2.26.0)
ember-load-initializers:
- specifier: ^2.1.2
- version: 2.1.2(@babel/core@7.24.9)
+ specifier: ^3.0.1
+ version: 3.0.1(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5))
ember-modifier:
- specifier: ^4.2.0
- version: 4.2.0(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
+ specifier: ^4.2.2
+ version: 4.3.0(@babel/core@7.29.7(supports-color@8.1.1))
ember-page-title:
- specifier: ^8.2.3
- version: 8.2.3(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
+ specifier: ^9.0.3
+ version: 9.0.3
ember-qunit:
- specifier: ^8.1.0
- version: 8.1.0(@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0))(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(qunit@2.21.1)
+ specifier: ^9.0.4
+ version: 9.1.0(@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1)))(qunit@2.26.0)
ember-resolver:
- specifier: ^11.0.1
- version: 11.0.1(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
+ specifier: ^13.1.1
+ version: 13.2.0
ember-source:
- specifier: ~5.10.0
- version: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
+ specifier: ~6.8.0
+ version: 6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5)
ember-styleguide:
specifier: ^11.0.0
- version: 11.0.3(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
+ version: 11.0.3(@babel/core@7.29.7(supports-color@8.1.1))(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5))(supports-color@8.1.1)
ember-template-lint:
- specifier: ^5.13.0
- version: 5.13.0
+ specifier: ^6.1.0
+ version: 6.1.0
ember-test-selectors:
specifier: ^6.0.0
version: 6.0.0
ember-truth-helpers:
- specifier: ^3.0.0
- version: 3.0.0
+ specifier: ^5.0.0
+ version: 5.0.0
eslint:
- specifier: ^8.57.0
- version: 8.57.0
+ specifier: ^9.37.0
+ version: 9.39.4
eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.0(eslint@8.57.0)
+ specifier: ^9.1.2
+ version: 9.1.2(eslint@9.39.4)
eslint-plugin-ember:
- specifier: ^11.12.0
- version: 11.12.0(eslint@8.57.0)
+ specifier: ^13.2.0
+ version: 13.4.0(@babel/eslint-parser@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4))(eslint@9.39.4)(typescript@6.0.3)
eslint-plugin-n:
- specifier: ^16.6.2
- version: 16.6.2(eslint@8.57.0)
- eslint-plugin-prettier:
- specifier: ^5.1.3
- version: 5.2.1(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3)
+ specifier: ^17.23.1
+ version: 17.24.0(eslint@9.39.4)(typescript@6.0.3)
eslint-plugin-qunit:
- specifier: ^8.1.1
- version: 8.1.1(eslint@8.57.0)
- loader.js:
- specifier: ^4.7.0
- version: 4.7.0
+ specifier: ^8.2.5
+ version: 8.2.6(eslint@9.39.4)
+ globals:
+ specifier: ^16.4.0
+ version: 16.5.0
prettier:
- specifier: ^3.3.2
- version: 3.3.3
+ specifier: ^3.6.2
+ version: 3.8.4
+ prettier-plugin-ember-template-tag:
+ specifier: ^2.1.0
+ version: 2.1.6(prettier@3.8.4)
qunit:
- specifier: ^2.21.0
- version: 2.21.1
+ specifier: ^2.24.2
+ version: 2.26.0
qunit-dom:
- specifier: ^2.0.0
- version: 2.0.0
+ specifier: ^3.5.0
+ version: 3.5.1
stylelint:
- specifier: ^15.11.0
- version: 15.11.0
+ specifier: ^16.25.0
+ version: 16.26.1(typescript@6.0.3)
stylelint-config-standard:
- specifier: ^34.0.0
- version: 34.0.0(stylelint@15.11.0)
- stylelint-prettier:
- specifier: ^4.1.0
- version: 4.1.0(prettier@3.3.3)(stylelint@15.11.0)
+ specifier: ^36.0.1
+ version: 36.0.1(stylelint@16.26.1(typescript@6.0.3))
tracked-built-ins:
- specifier: ^3.3.0
- version: 3.3.0
- webpack:
- specifier: ^5.92.1
- version: 5.93.0
+ specifier: ^3.4.0
+ version: 3.4.0(@babel/core@7.29.7(supports-color@8.1.1))
+ vite:
+ specifier: ^8.0.10
+ version: 8.1.0(terser@5.31.3)(yaml@2.9.0)
packages:
- '@ampproject/remapping@2.3.0':
- resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
- engines: {node: '>=6.0.0'}
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ '@babel/code-frame@7.29.7':
+ resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.9':
resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.9':
- resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
+ '@babel/compat-data@7.29.7':
+ resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.29.7':
+ resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
engines: {node: '>=6.9.0'}
- '@babel/eslint-parser@7.24.8':
- resolution: {integrity: sha512-nYAikI4XTGokU2QX7Jx+v4rxZKhKivaQaREZjuW3mrJrbdWJ5yUfohnoUULge+zEEaKjPYNxhoRgUKktjXtbwA==}
+ '@babel/eslint-parser@7.29.7':
+ resolution: {integrity: sha512-zxt+UJTOMKvUt3yOg+D58MLuz334pHp93qifMFcjIIO+9hN6t+ufw2gi7vDPMpxvfnHRR+3VVXvIjineCcgyXw==}
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/generator@7.24.10':
- resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
+ '@babel/generator@7.29.7':
+ resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-annotate-as-pure@7.29.7':
+ resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
@@ -203,8 +219,12 @@ packages:
resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.8':
- resolution: {integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==}
+ '@babel/helper-compilation-targets@7.29.7':
+ resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.29.7':
+ resolution: {integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -225,6 +245,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/helper-define-polyfill-provider@0.6.8':
+ resolution: {integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
'@babel/helper-environment-visitor@7.24.7':
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
@@ -233,30 +258,34 @@ packages:
resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-globals@7.29.7':
+ resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-hoist-variables@7.24.7':
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.8':
- resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
+ '@babel/helper-member-expression-to-functions@7.29.7':
+ resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helper-module-imports@7.29.7':
+ resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.9':
- resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
+ '@babel/helper-module-transforms@7.29.7':
+ resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.24.7':
- resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
+ '@babel/helper-optimise-call-expression@7.29.7':
+ resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.8':
- resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
+ '@babel/helper-plugin-utils@7.29.7':
+ resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.24.7':
@@ -265,8 +294,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.7':
- resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ '@babel/helper-replace-supers@7.29.7':
+ resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -275,40 +304,40 @@ packages:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.29.7':
+ resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ '@babel/helper-string-parser@7.29.7':
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ '@babel/helper-validator-identifier@7.29.7':
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.24.8':
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.24.7':
- resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
+ '@babel/helper-validator-option@7.29.7':
+ resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.8':
- resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
+ '@babel/helper-wrap-function@7.24.7':
+ resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ '@babel/helpers@7.29.7':
+ resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.8':
- resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
+ '@babel/parser@7.29.7':
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -343,8 +372,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-decorators@7.24.7':
- resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
+ '@babel/plugin-proposal-decorators@7.29.7':
+ resolution: {integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -399,8 +428,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.24.7':
- resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
+ '@babel/plugin-syntax-decorators@7.29.7':
+ resolution: {integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -479,8 +508,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ '@babel/plugin-syntax-typescript@7.29.7':
+ resolution: {integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -731,6 +760,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-runtime@7.29.7':
+ resolution: {integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-shorthand-properties@7.24.7':
resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
@@ -767,11 +802,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.4.5':
- resolution: {integrity: sha512-RPB/YeGr4ZrFKNwfuQRlMf2lxoCUaU01MTw39/OFE/RiL8HDjtn68BwEPft1P7JN4akyEmjGWAMNldOV7o9V2g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-typescript@7.5.5':
resolution: {integrity: sha512-pehKf4m640myZu5B2ZviLaiBlxMCjSZ1qTEO459AXKX5GnPueyulJeCqZFs1nz/Ya2dDzXQ1NxZ/kKNWyD4h6w==}
peerDependencies:
@@ -827,174 +857,166 @@ packages:
'@babel/runtime@7.12.18':
resolution: {integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==}
- '@babel/runtime@7.24.8':
- resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
+ '@babel/runtime@7.29.7':
+ resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ '@babel/template@7.29.7':
+ resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.8':
- resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
+ '@babel/traverse@7.29.7':
+ resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.9':
- resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
+ '@babel/types@7.29.7':
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
engines: {node: '>=6.9.0'}
+ '@cacheable/memory@2.0.9':
+ resolution: {integrity: sha512-HdMx6DoGywB30vacDbBsITbIX4pgFqj1zsrV58jZBUw3klzkNoXhj7qOqAgledhxG7YZI5rBSJg7Zp8/VG0DuA==}
+
+ '@cacheable/utils@2.4.1':
+ resolution: {integrity: sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==}
+
'@cnakazawa/watch@1.0.4':
resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==}
engines: {node: '>=0.1.95'}
hasBin: true
+ '@csstools/color-helpers@5.1.0':
+ resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
+ engines: {node: '>=18'}
+
'@csstools/convert-colors@1.4.0':
resolution: {integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==}
engines: {node: '>=4.0.0'}
- '@csstools/css-parser-algorithms@2.7.1':
- resolution: {integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
+ engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^2.4.1
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-tokenizer@2.4.1':
- resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==}
- engines: {node: ^14 || ^16 || >=18}
-
- '@csstools/media-query-list-parser@2.1.13':
- resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/css-color-parser@3.1.0':
+ resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
+ engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.7.1
- '@csstools/css-tokenizer': ^2.4.1
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/selector-specificity@3.1.1':
- resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
+ engines: {node: '>=18'}
peerDependencies:
- postcss-selector-parser: ^6.0.13
+ '@csstools/css-tokenizer': ^3.0.4
- '@ember-data/adapter@5.3.8':
- resolution: {integrity: sha512-mlyGQyiNv3C5SN0jRqVboixnSW/h0r1g7wsCus35p51zKYtq7HGyp3EaEQZOt+4dRS0wNfDx4Z95PPbH/rmH0Q==}
- engines: {node: '>= 18.20.3'}
+ '@csstools/css-syntax-patches-for-csstree@1.1.5':
+ resolution: {integrity: sha512-oNjBvzLq2GPZtJphCjLqXow/cHySHSgtxvKZb7OqSZ/xHgw6NWNhfad+6AB9cLeVm6eA9d/qMll3JdEHjy6M+A==}
peerDependencies:
- '@ember-data/legacy-compat': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/store': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
+ css-tree: ^3.2.1
+ peerDependenciesMeta:
+ css-tree:
+ optional: true
- '@ember-data/debug@5.3.8':
- resolution: {integrity: sha512-cqats3thXCd5UJbswF/ZGDFJPqBZ7tgHZjDGWa8NuRuDn7YgB3PqAz+I4CjxPkQokOPeYzk/0JvNvTOlp4IjuA==}
- engines: {node: '>= 18.20.3'}
- peerDependencies:
- '@ember-data/model': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/store': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
+ engines: {node: '>=18'}
- '@ember-data/graph@5.3.8':
- resolution: {integrity: sha512-JNaR41QlA4R1mXJKbI2S2+Zdy3ysoArAQmfnHouDXWezQD6NpgKgmfLmCqxtdHkAVQ8ttnAMx/S/A2fPTVaeyw==}
- engines: {node: '>= 18.20.3'}
+ '@csstools/media-query-list-parser@4.0.3':
+ resolution: {integrity: sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==}
+ engines: {node: '>=18'}
peerDependencies:
- '@ember-data/store': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@ember-data/json-api@5.3.8':
- resolution: {integrity: sha512-n0Woiu4oEiJmqfLa5xM9fbhY7+nntncdgWrJfYO1IMEcuO0fbmZVLPye1wTjUIog7uwmjD1uP0u63MnKyqOSeA==}
- engines: {node: '>= 18.20.3'}
+ '@csstools/selector-specificity@5.0.0':
+ resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==}
+ engines: {node: '>=18'}
peerDependencies:
- '@ember-data/graph': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/store': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
+ postcss-selector-parser: ^7.0.0
+
+ '@dual-bundle/import-meta-resolve@4.2.1':
+ resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
- '@ember-data/legacy-compat@5.3.8':
- resolution: {integrity: sha512-b043cU5k+gT+E2YT4ujHoea/81gmYrZTu6Yvt5n87YoCP0p5UxJWji11BTYfJAYN0sf1QAl+OkxI1BX7Ed1Q0g==}
- engines: {node: '>= 18.20.3'}
+ '@ember-data/adapter@5.6.0':
+ resolution: {integrity: sha512-fHl02J/kAMdIlhFdNuUfXr+cwktMaezJR/iKJMazzRNnsm1r67TwKz5fY5qgBjYkgJMCW4efyh3pMBJByJHBDA==}
+
+ '@ember-data/debug@5.6.0':
+ resolution: {integrity: sha512-acx3jUQaNuSToWPiGHAGHlEYGXY2YgaRjrTnz0SSyCrBdLa8/KjLkvoL1ht9SFlFb+NpiOTw7QDqTr4HSYsGqw==}
peerDependencies:
- '@ember-data/graph': 5.3.8
- '@ember-data/json-api': 5.3.8
- '@ember-data/request': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/store': 5.3.8
- '@ember/test-waiters': ^3.1.0
- '@warp-drive/core-types': 0.0.0-beta.11
- peerDependenciesMeta:
- '@ember-data/graph':
- optional: true
- '@ember-data/json-api':
- optional: true
+ '@ember-data/model': 5.6.0
+ '@ember-data/request-utils': 5.6.0
+ '@ember-data/store': 5.6.0
+ '@warp-drive/core-types': 5.6.0
- '@ember-data/model@5.3.8':
- resolution: {integrity: sha512-vg7hIzQmDXCDapUZc6kawKE2IAD9A4RowQBmBD7gR7TWtzinmoSygHYHjZpVdAEV4JE3EI1gjbyQesRLoAub1A==}
- engines: {node: '>= 18.20.3'}
- peerDependencies:
- '@ember-data/graph': 5.3.8
- '@ember-data/json-api': 5.3.8
- '@ember-data/legacy-compat': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/store': 5.3.8
- '@ember-data/tracking': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
- peerDependenciesMeta:
- '@ember-data/graph':
- optional: true
- '@ember-data/json-api':
- optional: true
+ '@ember-data/graph@5.6.0':
+ resolution: {integrity: sha512-hPaaFthx3NwrBXOOUHZCHS+YG7zxnYTU9ao7LXWLEKPKKRLl1sF9LWLFqNy0vTeucjmCeKyIAqP20pQKqk+uMA==}
+
+ '@ember-data/json-api@5.6.0':
+ resolution: {integrity: sha512-puSIFW1X6siqE8/Az4mtUWRz9IX3GgfSHjJwfTeFzZ+QQyYQBavPogFNKHsG+SCgiUVxus1MiLqLVUs8pXJ96Q==}
- '@ember-data/request-utils@5.3.8':
- resolution: {integrity: sha512-cMcSoxRLv7mhHABeFWLivZhp7k9Lp0UZB+KPNrnbCXZ7T+b4C/BhQvbpTXYJwj7V/m47dlPzM/c0I2cfdmhzNg==}
- engines: {node: '>= 18.20.3'}
+ '@ember-data/legacy-compat@5.6.0':
+ resolution: {integrity: sha512-l2NKJ7Uux41Tp2pfn6xEJOj+WkeJX58Q4jSQCzE2YpLot0FuiC3vow9DLUpIYgd0YDPz9oTwYZM67ORPxlA51A==}
+
+ '@ember-data/model@5.6.0':
+ resolution: {integrity: sha512-Zn4mAGUSKEKFw23SE63VgdP9w+UBw1lUTTp2AId4cblR/+ZJlxAodZKy0zI9dk4QHSn4zsT9BHMyK7V6U+ZmhA==}
+
+ '@ember-data/request-utils@5.6.0':
+ resolution: {integrity: sha512-bRT6NllMT59+25BwwnQDPnSa8FrlNUAFTX7pHr2eZMhnEwAa2VIttQyiZD4ZspDKESf2kkIooU+OECA7Kt/btA==}
peerDependencies:
- '@ember/string': 3.1.1
- '@warp-drive/core-types': 0.0.0-beta.11
- ember-inflector: 4.0.2
+ ember-inflector: ^4.0.2 || ^5.0.0 || ^6.0.0
peerDependenciesMeta:
- '@ember/string':
- optional: true
ember-inflector:
optional: true
- '@ember-data/request@5.3.8':
- resolution: {integrity: sha512-urAzDc+MvpmIzr2olMphG9DhwKrdYJOyywhT+fHnzCvezQoMgoBpkr40uCM2IX4Ge0+a9MklcSViA6kpLq2izQ==}
- engines: {node: '>= 18.20.3'}
- peerDependencies:
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@ember-data/request@5.6.0':
+ resolution: {integrity: sha512-NxYTxvogEvpJbsDz/k2Ibl6WdNEFA1IyCryzKIVWY3DuoVeoUbXfc0r34RQyep6XP64lxkYf7/reECK5tu37tA==}
'@ember-data/rfc395-data@0.0.4':
resolution: {integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ==}
- '@ember-data/serializer@5.3.8':
- resolution: {integrity: sha512-EjESckhiZTDtdetihMeup/PXU/pbOTAK8o2SsYGGICwVNpcguH3su9NhoCJQ97/5XL+X5I4KCMm7V8/Lode8vw==}
- engines: {node: '>= 18.20.3'}
- peerDependencies:
- '@ember-data/legacy-compat': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/store': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@ember-data/serializer@5.6.0':
+ resolution: {integrity: sha512-/QcNzZeZ+9Hg5QwKyHfDBEgkokjsIpa8rcXg1Ft4NIF/XvQH/ggMnfIJtLVIwjE2m0JpsbZURJf0lafzxdjDpg==}
- '@ember-data/store@5.3.8':
- resolution: {integrity: sha512-ZxqHgiKZrqXdetlriv4VOPjqrEre2rqaLFWOHkjjKqzsp2AkmGkcrh/DS6i9Y4/5F9hYxb9lxyyJqOW7sr57yQ==}
- engines: {node: '>= 18.20.3'}
+ '@ember-data/store@5.6.0':
+ resolution: {integrity: sha512-lobHpRNIONefVjDpZrtCs9vBUB+oZTcDXpfh1Kx+pvoTk0IkZKFUnEKuSwmWSh3R13+20yrdW0Gl7lbWxQMtAQ==}
peerDependencies:
- '@ember-data/request': 5.3.8
- '@ember-data/request-utils': 5.3.8
- '@ember-data/tracking': 5.3.8
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@ember-data/tracking': 5.6.0
+ '@ember/test-waiters': ^3.1.0 || ^4.0.0
+ peerDependenciesMeta:
+ '@ember-data/tracking':
+ optional: true
+ '@ember/test-waiters':
+ optional: true
- '@ember-data/tracking@5.3.8':
- resolution: {integrity: sha512-1zbz1yDgx8HDditG3DHnl8xsvBAwguT/WcBRZRj5kEtDVELwCY1N+cCtxMRPVgunKgP2UCVJPfnXkgqYvEsG4Q==}
- engines: {node: '>= 18.20.3'}
+ '@ember-data/tracking@5.6.0':
+ resolution: {integrity: sha512-FtX8YBX5pQVN78on8z8IvMAS4xYbEa4f3RpmGuSKOC3qkZ74bWdZEbv8fe2/fgQ50AIx1IF9ZlBQkwpBDvt+Eg==}
+ deprecated: Use @warp-drive/ember
peerDependencies:
- '@warp-drive/core-types': 0.0.0-beta.11
- ember-source: '>= 3.28.12'
+ '@ember/test-waiters': ^3.1.0 || ^4.0.0
+
+ '@ember-tooling/blueprint-blueprint@0.2.1':
+ resolution: {integrity: sha512-eZ5qicL3gfFFbmzLaSiEWPSmoRUJGnqg+dQmU0R81vv+0Ni7W/cS7MXx1l4HpN9B7Yg4M9GgdQTkeJnb6abQug==}
+
+ '@ember-tooling/blueprint-model@0.4.1':
+ resolution: {integrity: sha512-3jBNTGecTuRPOLjOY3AH/SpnLvJULyhwnR39I77uWj7ZFGwHuoV38uLYZMDjUN6So2uokkS333YavHdVqyn1kQ==}
+
+ '@ember-tooling/classic-build-addon-blueprint@6.8.0':
+ resolution: {integrity: sha512-qB9c7/vzhMRjOLDisupE+CMqZmycl4PagEZABwwt7EauQsYnUJBcrqvsfEM6Zm+eFjdtPNgLh2QBWffeByscCg==}
+
+ '@ember-tooling/classic-build-app-blueprint@6.8.0':
+ resolution: {integrity: sha512-BQjfklQyY3gENJ2hJUPy2Dm7a9MuT2eQg41EiOkQI+3WoiKPCMBdOXtWDziAsDzozGaHHHs6fhK1+P/hnTedYw==}
+
+ '@ember/app-blueprint@6.8.3':
+ resolution: {integrity: sha512-cVa748q+3m2dErP++sKmqQVoNfS/zh2qb8tkBGhqkg4Jx6QgLm3APWDq679VhuI5+7K70uoqqzmbtZ8a0aU88Q==}
'@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.3.0':
+ resolution: {integrity: sha512-+M8CkPledQEaDbfIlwlq6Phgpm5jdT3a6WVDJk7b/zadw5xAJkuQKVK7DgR0SFgHGiWlyn6a8AU5p2mCA706RA==}
engines: {node: 10.* || 12.* || >= 14}
'@ember/render-modifiers@2.1.0':
@@ -1007,26 +1029,39 @@ packages:
'@glint/template':
optional: true
- '@ember/string@3.1.1':
- resolution: {integrity: sha512-UbXJ+k3QOrYN4SRPHgXCqYIJ+yWWUg1+vr0H4DhdQPTy8LJfyqwZ2tc5uqpSSnEXE+/1KopHBE5J8GDagAg5cg==}
- engines: {node: 12.* || 14.* || >= 16}
+ '@ember/string@4.0.1':
+ resolution: {integrity: sha512-VWeng8BSWrIsdPfffOQt/bKwNKJL7+37gPFh/6iZZ9bke+S83kKqkS30poo4bTGfRcMnvAE0ie7txom+iDu81Q==}
- '@ember/test-helpers@3.3.1':
- resolution: {integrity: sha512-h4uFBy4pquBtHsHI+tx9S0wtMmn1L+8dkXiDiyoqG1+3e0Awk6GBujiFM9s4ANq6wC8uIhC3wEFyts10h2OAoQ==}
- engines: {node: 16.* || >= 18}
- peerDependencies:
- ember-source: ^4.0.0 || ^5.0.0
+ '@ember/test-helpers@5.4.3':
+ resolution: {integrity: sha512-WeNABJsXBidEXP87AH5gaI/KAyb0zEUYJxWa31A/Us5lqg85E3tPlHjBwCrlReOrJbSgvvArMnrdCwt7TRpjPQ==}
'@ember/test-waiters@3.1.0':
resolution: {integrity: sha512-bb9h95ktG2wKY9+ja1sdsFBdOms2lB19VWs8wmNpzgHv1NCetonBoV5jHBV4DHt0uS1tg9z66cZqhUVlYs96KQ==}
engines: {node: 10.* || 12.* || >= 14.*}
- '@embroider/addon-shim@1.8.9':
- resolution: {integrity: sha512-qyN64T1jMHZ99ihlk7VFHCWHYZHLE1DOdHi0J7lmn5waV1DoW7gD8JLi1i7FregzXtKhbDc7shyEmTmWPTs8MQ==}
+ '@embroider/addon-shim@1.10.3':
+ resolution: {integrity: sha512-GYbaiC1v9inbiwVg5s+Sd14Jc66NYxg23mEOocgWAZFCtOfhMnRLaLAA6SytW76myVVYImGHX5PFK4PVuH2yng==}
+ engines: {node: 12.* || 14.* || >= 16}
+
+ '@embroider/compat@4.1.21':
+ resolution: {integrity: sha512-dpsF0mKqdIOUrnX1Vo6z68XJv9oXYl9LyJbqtkNw4TlS+EotIiMjzuI7G3i1s8nFWTQ2Q7GVGQJEtjuDnvv/MA==}
+ engines: {node: '>= 20.19.*'}
+ peerDependencies:
+ '@embroider/core': ^4.6.2
+
+ '@embroider/config-meta-loader@1.0.0':
+ resolution: {integrity: sha512-qznkdjgEGPe6NM94hZNXvOm/WhrJwBh8FtSQZ+nGjh9TOjY42tOiTEevFuM0onNXUn6bpdGzmjwKo2xY2jxQxQ==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/macros@1.16.5':
- resolution: {integrity: sha512-Oz8bUZvZzOV1Gk3qSgIzZJJzs6acclSTcEFyB+KdKbKqjTC3uebn53aU2gAlLU7/YdTRZrg2gNbQuwAp+tGkGg==}
+ '@embroider/core@4.6.2':
+ resolution: {integrity: sha512-YvUe/ltNCmfDWaPLAjbUJc97sJSyACejR5FXHxEKkzSykUCx/YRt8l7izViSryNyAyEzU3YBbD0WoPIn9IeqGA==}
+ engines: {node: '>= 20.19.*'}
+
+ '@embroider/legacy-inspector-support@0.1.3':
+ resolution: {integrity: sha512-0VzD1xExkT78a1CUiW8wZ5VZDL4bVyMSc3t8E/RiAW1X6TlyKIA/m6zoQgsQtQIiiTPPxH0/1Tdd0F7b5//etw==}
+
+ '@embroider/macros@1.20.5':
+ resolution: {integrity: sha512-JjIynmob1HbOwVG5uvwrOWecf48Vf9dltKL5C9x5Q6gEoLZJln6iG8D9YBM9EO24Oi8Ftw+oS7IJjA7TFvMLCA==}
engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
'@glint/template': ^1.0.0
@@ -1034,47 +1069,100 @@ packages:
'@glint/template':
optional: true
+ '@embroider/reverse-exports@0.2.0':
+ resolution: {integrity: sha512-WFsw8nQpHZiWGEDYpa/A79KEFfTisqteXbY+jg9eZiww1r1G+LZvsmdszDp86TkotUSCqrMbK/ewn0jR1CJmqg==}
+ engines: {node: 12.* || 14.* || >= 16}
+
'@embroider/shared-internals@2.6.2':
resolution: {integrity: sha512-jL3Bjn8C73AUBlTex+VixP7YmqvPNN/BZFB85odTstzLFOuR8y2mmGiuWbq17qNuFyoxc6xtndMnAeqwCXBNkA==}
engines: {node: 12.* || 14.* || >= 16}
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@embroider/shared-internals@3.1.1':
+ resolution: {integrity: sha512-IlxD8okTt9cRUFpJKD8gTuQUBuEflrhCUju1xZFdYvmGm5XVqHPfG4I6+bEdKb8NO92aqHxr9SYuYibDmpMM9w==}
+ engines: {node: 12.* || 14.* || >= 16}
+
+ '@embroider/vite@1.7.8':
+ resolution: {integrity: sha512-UaFzBi6yrZNYU3P1Aw+nI5L1NAaV2y7MhU6dcR0d3JZ9HZ6CmEW1+yfp3szni6SEy8+gIwKDAaraSZ1s2cO63A==}
+ peerDependencies:
+ '@embroider/core': ^4.6.2
+ vite: '>= 5.2.0'
+
+ '@emnapi/core@1.10.0':
+ resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
+
+ '@emnapi/core@1.11.1':
+ resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
+
+ '@emnapi/runtime@1.10.0':
+ resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
+
+ '@emnapi/runtime@1.11.1':
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
+
+ '@emnapi/wasi-threads@1.2.1':
+ resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
+
+ '@emnapi/wasi-threads@1.2.2':
+ resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
+
+ '@eslint-community/eslint-utils@4.9.1':
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.0':
- resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/eslintrc@2.1.4':
- resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/config-array@0.21.2':
+ resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@8.57.0':
- resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/config-helpers@0.4.2':
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/core@0.17.0':
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.3.5':
+ resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@glimmer/compiler@0.92.0':
- resolution: {integrity: sha512-hTP18//aDRxsadWvqzAz3r54yEhN+M2UcTfUV++13gNSqgvRwuKTUelcL3bLDTQcnGUzZEMnFb3+3QayAAmQBg==}
- engines: {node: '>= 16.0.0'}
+ '@eslint/js@9.39.4':
+ resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.7':
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.4.1':
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@glimmer/compiler@0.94.11':
+ resolution: {integrity: sha512-t9eyLZIFsiwAib8Zyfu67yBep5Vn2bd5DScIE2hharPE/OKKI7cpQYi6BzQhSGYEBVU82ITd/2TLvJ1K8eIahA==}
+ engines: {node: '>= 18.0.0'}
'@glimmer/component@1.1.2':
resolution: {integrity: sha512-XyAsEEa4kWOPy+gIdMjJ8XlzA3qrGH55ZDv6nA16ibalCR17k74BI0CztxuRds+Rm6CtbUVgheCVlcCULuqD7A==}
engines: {node: 6.* || 8.* || >= 10.*}
- '@glimmer/debug@0.92.0':
- resolution: {integrity: sha512-asWN1hsKYDwfyCc6dZeIyrXs4EpQCwAfZi9I1/U/RweI7iNOME0baunDVCUB9jZpV5TBSeEx+J1fs1GsIYvqAg==}
+ '@glimmer/component@2.1.1':
+ resolution: {integrity: sha512-zFZFaMbWy+9WOcDg/kCgrkGgqkLT39EE4FgyFD0MIkQO5coQsrRZyLsiBu1tbchyM+8hT8jAv+EQVUd8u+MdSQ==}
+ engines: {node: '>= 18'}
- '@glimmer/destroyable@0.92.0':
- resolution: {integrity: sha512-Y6IO0CTKdIvM24HvhcZBePDRG9Rc3nbRRqpYameNHmI/msEOVHk6BT217qkpGnma4OuT/AU6msoIOkTQI5kQPg==}
+ '@glimmer/destroyable@0.94.8':
+ resolution: {integrity: sha512-IWNz34Q5IYnh20M/3xVv9jIdCATQyaO+8sdUSyUqiz1bAblW5vTXUNXn3uFzGF+CnP6ZSgPxHN/c1sNMAh+lAA==}
'@glimmer/di@0.1.11':
resolution: {integrity: sha512-moRwafNDwHTnTHzyyZC9D+mUSvYrs1Ak0tRPjjmCghdoHHIvMshVbEnwKb/1WmW5CUlKc2eL9rlAV32n3GiItg==}
- '@glimmer/encoder@0.92.0':
- resolution: {integrity: sha512-JLg9dEiRTjKI4yEr7iS8ZnZ/Q6afuD58DVGNm1m5H+rZs0SPfK0/RXMKjeSeOlW4TU/gUc/vS1ltpdXTp08mDQ==}
+ '@glimmer/encoder@0.93.8':
+ resolution: {integrity: sha512-G7ZbC+T+rn7UliG8Y3cn7SIACh7K5HgCxgFhJxU15HtmTUObs52mVR1SyhUBsbs86JHlCqaGguKE1WqP1jt+2g==}
'@glimmer/env@0.1.7':
resolution: {integrity: sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw==}
@@ -1082,44 +1170,44 @@ packages:
'@glimmer/global-context@0.84.3':
resolution: {integrity: sha512-8Oy9Wg5IZxMEeAnVmzD2NkObf89BeHoFSzJgJROE/deutd3rxg83mvlOez4zBBGYwnTb+VGU2LYRpet92egJjA==}
- '@glimmer/global-context@0.92.0':
- resolution: {integrity: sha512-XUPXIsz/F0YQz3vY9x+u3YQMibM3378gEPJObs3CHzAWJUl9Kz1CAb+jRigRrxIcmdzoonA49VMwGmmKRNoGag==}
+ '@glimmer/global-context@0.93.4':
+ resolution: {integrity: sha512-Yw9xkDReAcC5oS/hY3PjGrFKRygYFA4pdO7tvuxReoVOyUtjoBOAwHJUileiElERDdMWIMfoLema8Td1mqkjhA==}
'@glimmer/interfaces@0.84.3':
resolution: {integrity: sha512-dk32ykoNojt0mvEaIW6Vli5MGTbQo58uy3Epj7ahCgTHmWOKuw/0G83f2UmFprRwFx689YTXG38I/vbpltEjzg==}
- '@glimmer/interfaces@0.92.0':
- resolution: {integrity: sha512-SKZvIs+ZPN8F3EH8kEzs7rGIUa+wuV+/3oWYyEiBrqd+VrZlmAxIELM6qZ6oxXT2tx6q1rh2EmA5rWezi6bmYQ==}
+ '@glimmer/interfaces@0.94.6':
+ resolution: {integrity: sha512-sp/1WePvB/8O+jrcUHwjboNPTKrdGicuHKA9T/lh0vkYK2qM5Xz4i25lQMQ38tEMiw7KixrjHiTUiaXRld+IwA==}
- '@glimmer/manager@0.92.0':
- resolution: {integrity: sha512-vo5kpdyRq1YpP9FBcpSB9K8nGyz3C8k/vF3yd6g0u4zqVaaQrtvM+nw7pqOOQHf+FfQMr5nLYisvySWT7Eqwww==}
+ '@glimmer/manager@0.94.10':
+ resolution: {integrity: sha512-Hqi92t6vtVg4nSRGWTvCJ+0Vg3iF1tiTG9RLzuUtZac7DIAzuQAxjhGbtu82miT+liCqU+MFmB3nkfNH0Zz74g==}
- '@glimmer/node@0.92.0':
- resolution: {integrity: sha512-TlyGmuCjGLWXvQDsAXUhDGjd4Q7BgNVwqv0hObu7A0qGOlEfpS1l6i/7cAzmCpQVUcGQiyUruJrIfpQgDWaepg==}
+ '@glimmer/node@0.94.10':
+ resolution: {integrity: sha512-8kw6K+RoKhjfprMO059M7x5yRZRK7WGLzD2056/G+65wV7gnJVDuh4qQirekaagjtskz6OdRBVWrSmrbICWtzQ==}
- '@glimmer/opcode-compiler@0.92.0':
- resolution: {integrity: sha512-78LgXyLzGeCIlQwH45T6RoKtO8AGXEmrlOMjP7dq7k5JpDpitJHAwmPavjC18uhgOVs8V3SLYUsE/lnvhmuQkg==}
+ '@glimmer/opcode-compiler@0.94.10':
+ resolution: {integrity: sha512-KYsaODjkgtpUzMR1chyI0IRcvo4ewnjW8Dy+5833+OIG7rx6INl7HvKtooLzjHv+uJOZ74fd/s/0XfaY6eNEww==}
- '@glimmer/owner@0.92.0':
- resolution: {integrity: sha512-SUhVaUvcLcVJ+9f8ob/fln0+z6jAinYv21sA1FcgAYMnb3eaB5RPjFFW3BjGy9VPT/IOAVyj95+NDm6wguMDEg==}
+ '@glimmer/owner@0.93.4':
+ resolution: {integrity: sha512-xoclaVdCF4JH/yx8dHplCj6XFAa7ggwc7cyeOthRvTNGsp/J/CNKHT6NEkdERBYqy6tvg5GoONvWFdm8Wd5Uig==}
- '@glimmer/program@0.92.0':
- resolution: {integrity: sha512-hRIZMRlRsyJuhUoqLsBu66NTPel6itXrccBOHBI49n9+FdisjiM3tgNNhrY+Tik/GnmtzztrCWjrqpf/PCp+rg==}
+ '@glimmer/program@0.94.10':
+ resolution: {integrity: sha512-a5rpsvBwrcAn0boV4ONy+dHr8tWSTvLAPTR1T1KxF0OBHRVciCAfBPRFemVO6Q3H117At9ifn3uoevtQ6H0M+Q==}
'@glimmer/reference@0.84.3':
resolution: {integrity: sha512-lV+p/aWPVC8vUjmlvYVU7WQJsLh319SdXuAWoX/SE3pq340BJlAJiEcAc6q52y9JNhT57gMwtjMX96W5Xcx/qw==}
- '@glimmer/reference@0.92.0':
- resolution: {integrity: sha512-es2a3bh9nk8kYCacLfm5Ly3x5sFDf2f0/7Vj1Ca2BXXfAn8UhuaR9uCrEI1OtBBz1JBciCzpbKemsu8J6VulYg==}
+ '@glimmer/reference@0.94.9':
+ resolution: {integrity: sha512-qlgTYxgEOpgxuyb13u2qwqhibpfktlk08F+nfwuNxtuhodsItBi3YxjFMPrVP0zOjTnhUObR8OYtMsD5WFOddA==}
- '@glimmer/runtime@0.92.0':
- resolution: {integrity: sha512-LlAf86bNhRCfPvrXY5x+3YMhhSWSCT5NVTTYQp9j07D0bxvNw57n4mESuEgYZYWl4/cyEwegrmWW6Qs1P85bmQ==}
+ '@glimmer/runtime@0.94.11':
+ resolution: {integrity: sha512-96PqfxnkEW8k8dMydDmaXgijD7yvtIfjMkHoJ7ljUmE1icZ7jj6f+UIZ0LThpXMzkKaBe1xEapjr91Ldsvmqbg==}
'@glimmer/syntax@0.84.3':
resolution: {integrity: sha512-ioVbTic6ZisLxqTgRBL2PCjYZTFIwobifCustrozRU2xGDiYvVIL0vt25h2c1ioDsX59UgVlDkIK4YTAQQSd2A==}
- '@glimmer/syntax@0.92.0':
- resolution: {integrity: sha512-h8pYBC2cCnEyjbZBip2Yw4qi8S8sjNCYAb57iHek3AIhyFKMM13aTN+/aajFOM4FUTMCVE2B/iAAmO41WRCX4A==}
+ '@glimmer/syntax@0.95.0':
+ resolution: {integrity: sha512-W/PHdODnpONsXjbbdY9nedgIHpglMfOzncf/moLVrKIcCfeQhw2vG07Rs/YW8KeJCgJRCLkQsi+Ix7XvrurGAg==}
'@glimmer/tracking@1.1.2':
resolution: {integrity: sha512-cyV32zsHh+CnftuRX84ALZpd2rpbDrhLhJnTXn9W//QpqdRZ5rdMsxSY9fOsj0CKEc706tmEU299oNnDc0d7tA==}
@@ -1130,8 +1218,8 @@ packages:
'@glimmer/util@0.84.3':
resolution: {integrity: sha512-qFkh6s16ZSRuu2rfz3T4Wp0fylFj3HBsONGXQcrAdZjdUaIS6v3pNj6mecJ71qRgcym9Hbaq/7/fefIwECUiKw==}
- '@glimmer/util@0.92.0':
- resolution: {integrity: sha512-Fap52smLp8RkCgvozrZG7RysNJ2T6mk1SPoknMzmukbabFVBAzxl5iyY4OXUbmR09j6t2pupjF6sPabnLtL4vw==}
+ '@glimmer/util@0.94.8':
+ resolution: {integrity: sha512-HfCKeZ74clF9BsPDBOqK/yRNa/ke6niXFPM6zRn9OVYw+ZAidLs7V8He/xljUHlLRL322kaZZY8XxRW7ALEwyg==}
'@glimmer/validator@0.44.0':
resolution: {integrity: sha512-i01plR0EgFVz69GDrEuFgq1NheIjZcyTy3c7q+w7d096ddPVeVcRzU3LKaqCfovvLJ+6lJx40j45ecycASUUyw==}
@@ -1139,64 +1227,88 @@ packages:
'@glimmer/validator@0.84.3':
resolution: {integrity: sha512-RTBV4TokUB0vI31UC7ikpV7lOYpWUlyqaKV//pRC4pexYMlmqnVhkFrdiimB/R1XyNdUOQUmnIAcdic39NkbhQ==}
- '@glimmer/validator@0.92.0':
- resolution: {integrity: sha512-GFX54PD8BRi+lg/HJ8KJRcvnV4rbDzJooQnOpJ9PlgIQi4KP/ivdjsw3DaEuvqn4K584LR6VTgHmxfZlLkDh2g==}
+ '@glimmer/validator@0.95.0':
+ resolution: {integrity: sha512-xF3K5voKeRqhONztfMHDd2wHDYD6UUI9pFPd+RMGtW6DXYv31G0zUm2pGsOwQ9dyNeE6khaXy7e3FtNjDrSmvQ==}
- '@glimmer/vm-babel-plugins@0.92.0':
- resolution: {integrity: sha512-s/jPlTykZb3YzzOCVmGyMP8NihonHM+eY5WBQl+MOCXe2KdGkTAxFgnuGYzHTtJ/JzCRa/YRXQhJhncJSg6L2A==}
- engines: {node: '>=16'}
+ '@glimmer/vm-babel-plugins@0.93.5':
+ resolution: {integrity: sha512-xwVRgDjuadOB9qV1jyTKBrUgE/cpmixD/wIYnFf4+hNJRD39urteKRPw98xJSAt7Bw/6y5B8zsgwFS18Nknlrg==}
+ engines: {node: '>=18.18.0'}
- '@glimmer/vm@0.92.0':
- resolution: {integrity: sha512-y8HKYa0XrVZEKKJxfjVudpiC1ghe33lNKy0+/vxUBosQlH/+i1IJsHMaszQ5jhXZ3+RyTug4PMbs8BUeKDfzig==}
+ '@glimmer/vm@0.94.8':
+ resolution: {integrity: sha512-0E8BVNRE/1qlK9OQRUmGlQXwWmoco7vL3yIyLZpTWhbv22C1zEcM826wQT3ioaoUQSlvRsKKH6IEEUal2d3wxQ==}
- '@glimmer/wire-format@0.92.0':
- resolution: {integrity: sha512-yKhfU7b3PN86iqbfKksB+F9PB/RqbVkZlcRpZWRpEL3HnZ0bJUKC9bsOJynOg77PDXuYQXkbDMfL8ngTuxk+rg==}
+ '@glimmer/wire-format@0.94.8':
+ resolution: {integrity: sha512-A+Cp5m6vZMAEu0Kg/YwU2dJZXyYxVJs2zI57d3CP6NctmX7FsT8WjViiRUmt5abVmMmRH5b8BUovqY6GSMAdrw==}
'@handlebars/parser@2.0.0':
resolution: {integrity: sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA==}
- '@humanwhocodes/config-array@0.11.14':
- resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
- engines: {node: '>=10.10.0'}
- deprecated: Use @eslint/config-array instead
+ '@handlebars/parser@2.2.2':
+ resolution: {integrity: sha512-n/SZW+12rwikx/f8YcSv9JCi5p9vn1Bnts9ZtVvfErG4h0gbjHI1H1ZMhVUnaOC7yzFc6PtsCKIK8XeTnL90Gw==}
+ engines: {node: ^18 || ^20 || ^22 || >=24}
+
+ '@humanfs/core@0.19.2':
+ resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.8':
+ resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/types@0.15.0':
+ resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
+ engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@2.0.3':
- resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
- deprecated: Use @eslint/object-schema instead
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
+ engines: {node: '>=18.18'}
'@inquirer/figures@1.0.5':
resolution: {integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==}
engines: {node: '>=18'}
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
- engines: {node: '>=6.0.0'}
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.2.1':
- resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
- engines: {node: '>=6.0.0'}
-
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- '@jridgewell/trace-mapping@0.3.25':
- resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
+ '@keyv/bigmap@1.3.1':
+ resolution: {integrity: sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ keyv: ^5.6.0
+
+ '@keyv/serialize@1.1.1':
+ resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==}
'@lint-todo/utils@13.1.1':
resolution: {integrity: sha512-F5z53uvRIF4dYfFfJP3a2Cqg+4P1dgJchJsFnsZE0eZp0LK8X7g2J0CsJHRgns+skpXOlM7n5vFGwkWCWj8qJg==}
engines: {node: 12.* || >= 14}
+ '@napi-rs/wasm-runtime@1.1.6':
+ resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
+
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
@@ -1212,25 +1324,276 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@pkgr/core@0.1.1':
- resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
- engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
-
- '@pnpm/constants@7.1.1':
- resolution: {integrity: sha512-31pZqMtjwV+Vaq7MaPrT1EoDFSYwye3dp6BiHIGRJmVThCQwySRKM7hCvqqI94epNkqFAAYoWrNynWoRYosGdw==}
- engines: {node: '>=16.14'}
-
- '@pnpm/error@5.0.3':
- resolution: {integrity: sha512-ONJU5cUeoeJSy50qOYsMZQHTA/9QKmGgh1ATfEpCLgtbdwqUiwD9MxHNeXUYYI/pocBCz6r1ZCFqiQvO+8SUKA==}
- engines: {node: '>=16.14'}
+ '@one-ini/wasm@0.2.1':
+ resolution: {integrity: sha512-TUqERXGNTifZ9y2g3wPxQrw3HpHv/02DsW3D90T9x0hhonrL1ZqpSmNrU2XkoIq0fP1N6gZfVQzy2Fw1ZvGBNg==}
+
+ '@oxc-parser/binding-android-arm-eabi@0.130.0':
+ resolution: {integrity: sha512-h/xYU8/7ADWzVSf5I+YalLpj33LOy9CI/zgbJNIZ5eunRBG+Czqa3lZsvuPHHf3rOt6z1c5+UzoxjbAzAvhwVw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [android]
+
+ '@oxc-parser/binding-android-arm64@0.130.0':
+ resolution: {integrity: sha512-oFWFJrsGv9siFM4HjMqKNB7IuIZD/SMmZdCXl8xyx7lDplGvPKyewpOo272rSWgMXe2Wx7bWI0Yj+gkHv4qbeg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxc-parser/binding-darwin-arm64@0.130.0':
+ resolution: {integrity: sha512-sGUzupdTplK9jQg7eJZ878HfEgQjJNBc6dAYVWJ9W5aU+J8rLfRJhTVsKThiu1pNwm6Y1qKCcbC6WhNWSXR3Ig==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-parser/binding-darwin-x64@0.130.0':
+ resolution: {integrity: sha512-PsB4cdCISbC00Uy8eiD8bc2AkGWjZqrSrJnkBFuG2ptrrf6mZ2F5gLFSjOAVMMgZPg8B1D7OydJwLWSfyI2Plg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-parser/binding-freebsd-x64@0.130.0':
+ resolution: {integrity: sha512-DgABp3l38hS77JbXCV4qk1+n6DPym5u8zzwuweokezm2tX194nDSJDENbDRECxVsiNbprKATLbk+Z5wlHT0OHw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.130.0':
+ resolution: {integrity: sha512-4Kn3CTEmwFrzhTSC/JuUW16qovmaMdX7jeSKbL8w0pLtLww7To1a2XJi9Z5uD8QWUkfUHhqfV+VD6dVzBnWzoA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-arm-musleabihf@0.130.0':
+ resolution: {integrity: sha512-D35KZM3F4rRu1uAFKyBlg3Gaf/ybCjyaPR1hfgvk5ex8NtcTmRgc0JgSighEyNg96TPrFhemFba68SZuxaha8w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-arm64-gnu@0.130.0':
+ resolution: {integrity: sha512-Q9o7oVlo955KHwS8l1u0bCzIx+JsZUA3XToLXC+MsMhye/9LeBQbt84nh120cl2XLy+TEzvugYDiHShg5yaX6Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-arm64-musl@0.130.0':
+ resolution: {integrity: sha512-EiJ/gC0ljbcwVpycC8YWw6ggMbtsPX8XMOt0mPx0aqWeMsNR+L9m05Flbvd5T+GlivG+GkSWQL7tM9SRFpM/dw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-parser/binding-linux-ppc64-gnu@0.130.0':
+ resolution: {integrity: sha512-b+h/lsLLurp756dMGizNs5uPaJfyEdWrTcV5t8M609jWm1DEHB1StpRXCkyvwtkJx3m+qL5BNQ0dEKan/4yGFA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-riscv64-gnu@0.130.0':
+ resolution: {integrity: sha512-O19Cil83XAyjEFfo8WhkMwY58ALqZ7ckjGL+25mjMIuF84urWBeANH0FC8B8BsSSygWU3/1aY3ADdDbp+wlBnw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-riscv64-musl@0.130.0':
+ resolution: {integrity: sha512-BgXRVC0+83n3YzCscLQjj6nbyeBIVeZYPTI4fFMAE4WNm2+4RXhWp03IVizL7esIz36kgmT48aebk1iM+cs8sw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-parser/binding-linux-s390x-gnu@0.130.0':
+ resolution: {integrity: sha512-6tJz0xvnGhsokE7N1WlUSBXibpYmT9xSJFS1Ce41Km/+8gQvdlW8MLhRv8PD0L7ix8vRG0FDDepp3jdOFzdVdw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-x64-gnu@0.130.0':
+ resolution: {integrity: sha512-9aCWj83dp3heTQGmGnZGdIWgxjZrr/7VQ0TGFHH5PKByxJKF2Hcr4qvaSUHhhGEa3MSsDjTL1YDP8RAgdL5/Cg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-x64-musl@0.130.0':
+ resolution: {integrity: sha512-afXt87aZBqrUVli8TB/I8H1G50RDWcwirjWtXGXYqJ2ZqWEiErH7V72j3LUSDZaivmtu2OLX0KQ/mbhP81mr7A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-parser/binding-openharmony-arm64@0.130.0':
+ resolution: {integrity: sha512-I0NCrZV/YZuCGWgqwNN/GO/iXlLF2z+Wgc7u+Aa9N4P51oYeIa0XT+zVBUne4csO9GqxskXgI4g8JzzWGRpfOw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxc-parser/binding-wasm32-wasi@0.130.0':
+ resolution: {integrity: sha512-sJgQkGaBX0WJvPUDfwciex6IcTk5O5NLQ1bhEb6f3nBruh1GshKMRSMt2bxZlYrgBzjyBbJzsnO+InPG0bg+fA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
+ '@oxc-parser/binding-win32-arm64-msvc@0.130.0':
+ resolution: {integrity: sha512-bjcma99sQrNh6RY4mPO9yTkfxql6TDFoN3HWdK31RCKXwNhcDgJXW/l8PUtzKNiQ+9vpKJfJtQq+LklBuxSOBA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-parser/binding-win32-ia32-msvc@0.130.0':
+ resolution: {integrity: sha512-hRYbv6HhpSTzT4xTiIkadLI7upLQxuOdLPR/9nL1fTjwhgutBTPXrwaAPb/jTFVx6/8C7Jb5HcUKhmNwloTbFA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxc-parser/binding-win32-x64-msvc@0.130.0':
+ resolution: {integrity: sha512-RBpA9TsRucJq6HNVNCFF1iKg+QeTkLdZf7hi4xaOGCPvMZWvDHjQgSOEZMUpuW4JNciHbxNhLEYmz5CVygjVGQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxc-project/types@0.130.0':
+ resolution: {integrity: sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==}
+
+ '@oxc-project/types@0.137.0':
+ resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==}
+
+ '@pnpm/constants@1001.3.1':
+ resolution: {integrity: sha512-2hf0s4pVrVEH8RvdJJ7YRKjQdiG8m0iAT26TTqXnCbK30kKwJW69VLmP5tED5zstmDRXcOeH5eRcrpkdwczQ9g==}
+ engines: {node: '>=18.12'}
+
+ '@pnpm/error@1000.1.0':
+ resolution: {integrity: sha512-Dqc2IJJPjUatwc9Letw+vG29rnaMrDGi5g6WCx1HiZYm0obXbTmLygeRafMbgf+sLKXrWE1shOeiayQuczBdoA==}
+ engines: {node: '>=18.12'}
+
+ '@pnpm/find-workspace-dir@1000.1.5':
+ resolution: {integrity: sha512-r1WzYXBD8cqlglOi4ilN9BphX74mJmH2hhiogzYbcNCHhtXnG7tw/9Iq54UGZ+cpDkgGHjL0xLwj9QLUoKJxmg==}
+ engines: {node: '>=18.12'}
+
+ '@rolldown/binding-android-arm64@1.1.3':
+ resolution: {integrity: sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.1.3':
+ resolution: {integrity: sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.1.3':
+ resolution: {integrity: sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.1.3':
+ resolution: {integrity: sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
+ resolution: {integrity: sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.3':
+ resolution: {integrity: sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-arm64-musl@1.1.3':
+ resolution: {integrity: sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-linux-ppc64-gnu@1.1.3':
+ resolution: {integrity: sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.3':
+ resolution: {integrity: sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-gnu@1.1.3':
+ resolution: {integrity: sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-musl@1.1.3':
+ resolution: {integrity: sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-openharmony-arm64@1.1.3':
+ resolution: {integrity: sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.1.3':
+ resolution: {integrity: sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.3':
+ resolution: {integrity: sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.1.3':
+ resolution: {integrity: sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@rolldown/pluginutils@1.0.1':
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
+
+ '@rollup/plugin-babel@7.1.0':
+ resolution: {integrity: sha512-h9Y+xYha6p4wKO+FwdiPIkE+eIYCm8MzZPpX1iARIoFBnmKP9CnpT1p9dDf/DTFm6fyN8PmuLyRI5qZgchnitw==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ '@types/babel__core': ^7.1.9
+ rollup: ^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ '@types/babel__core':
+ optional: true
+ rollup:
+ optional: true
- '@pnpm/find-workspace-dir@6.0.3':
- resolution: {integrity: sha512-0iJnNkS4T8lJE4ldOhRERgER1o59iHA1nMlvpUI5lxNC9SUruH6peRUOlP4/rNcDg+UQ9u0rt5loYOnWKCojtw==}
- engines: {node: '>=16.14'}
+ '@rollup/pluginutils@5.4.0':
+ resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
- '@scalvert/ember-setup-middleware-reporter@0.1.1':
- resolution: {integrity: sha512-C5DHU6YlKaISB5utGQ+jpsMB57ZtY0uZ8UkD29j855BjqG6eJ98lhA2h/BoJbyPw89RKLP1EEXroy9+5JPoyVw==}
- engines: {node: 12.* || >= 14}
+ '@sec-ant/readable-stream@0.4.1':
+ resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
'@simple-dom/document@1.4.0':
resolution: {integrity: sha512-/RUeVH4kuD3rzo5/91+h4Z1meLSLP66eXqpVAw/4aZmYozkeqUkMprq0znL4psX/adEed5cBgiNJcfMz/eKZLg==}
@@ -1238,6 +1601,14 @@ packages:
'@simple-dom/interface@1.4.0':
resolution: {integrity: sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA==}
+ '@sindresorhus/merge-streams@2.3.0':
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
+ engines: {node: '>=18'}
+
+ '@sindresorhus/merge-streams@4.0.0':
+ resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
+ engines: {node: '>=18'}
+
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
@@ -1245,8 +1616,11 @@ packages:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
- '@types/acorn@4.0.6':
- resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
+ '@tybys/wasm-util@0.10.3':
+ resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
+
+ '@types/babel__code-frame@7.27.0':
+ resolution: {integrity: sha512-Dwlo+LrxDx/0SpfmJ/BKveHf7QXWvLBLc+x03l5sbzykj3oB9nHygCpSECF1a+s+QIxbghe+KHqC90vGtxLRAA==}
'@types/body-parser@1.19.2':
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
@@ -1260,23 +1634,17 @@ packages:
'@types/connect@3.4.35':
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
- '@types/cookie@0.4.1':
- resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
-
'@types/cors@2.8.17':
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
- '@types/eslint-scope@3.7.3':
- resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
-
'@types/eslint@8.56.11':
resolution: {integrity: sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==}
- '@types/eslint@9.6.0':
- resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
+ '@types/esrecurse@4.3.1':
+ resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/estree@1.0.9':
+ resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
'@types/express-serve-static-core@4.17.28':
resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==}
@@ -1290,14 +1658,11 @@ packages:
'@types/fs-extra@8.1.2':
resolution: {integrity: sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==}
- '@types/fs-extra@9.0.13':
- resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
-
'@types/glob@7.2.0':
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
- '@types/json-schema@7.0.9':
- resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==}
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
'@types/mime@1.3.2':
resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
@@ -1305,18 +1670,9 @@ packages:
'@types/minimatch@3.0.5':
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
- '@types/minimist@1.2.5':
- resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
-
'@types/node@17.0.12':
resolution: {integrity: sha512-4YpbAsnJXWYK/fpTVFlMIcUIho2AYCi4wg5aNPrG1ng7fn/1/RZfCIpRCiBX+12RVa34RluilnvCqD+g3KiSiA==}
- '@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.7':
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
@@ -1332,67 +1688,97 @@ packages:
'@types/symlink-or-copy@1.2.0':
resolution: {integrity: sha512-Lja2xYuuf2B3knEsga8ShbOdsfNOtzT73GyJmZyY7eGl2+ajOqrs8yM5ze0fsSoYwvA6bw7/Qr7OZ7PEEmYwWg==}
- '@ungap/structured-clone@1.2.0':
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- deprecated: Potential CWE-502 - Update to 1.3.1 or higher
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
+
+ '@typescript-eslint/tsconfig-utils@8.61.1':
+ resolution: {integrity: sha512-UN/H4di+OO7EWx2ovME+8t31YO+KVnK0RRKEHR3kOt21/Ay8BOq3M1OMvWs5vNiqcFCYGYoxK3MXPZzmMUE+yg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
+ '@warp-drive/build-config@5.6.0':
+ resolution: {integrity: sha512-7qdE7x1U0yRhbGy1wO47lirgKO6cjMqmKJUdLhpIhX31fIo0MM2/6n8p/+2rNTlZiCMhLNeV7RelA8LoIkxW3Q==}
+
+ '@warp-drive/core-types@5.6.0':
+ resolution: {integrity: sha512-ePYhowffjOtIuD27JnX2/+PXe2WyDqLzNOArgOYbo1xtZeDWg5V+Mmja6Zd3MlxptcHDiUsmfYei8XUgWGQ4Fg==}
+
+ '@warp-drive/core@5.6.0':
+ resolution: {integrity: sha512-pUt2QEWzhMkBD3tzjpDmycNsVQsvUBXfQpIrIQ8K55BS1b5fXNKXc/srOi6XoSy+elh7V7sgjdEZLOWP3ttcRw==}
- '@warp-drive/build-config@0.0.0-beta.6':
- resolution: {integrity: sha512-ANSjWRV5kSJyIIO+5rRv7/lqfwYazQ9wDpi4vr1rjGogsmVteRCnflV5qYqt9W9T4JXRjSimjSfKwCgEwl+jUA==}
- engines: {node: '>= 18.20.3'}
+ '@warp-drive/ember@5.6.0':
+ resolution: {integrity: sha512-vdDudXsF1SGmzSW1waYDtsqe9LA3FnzYHP+Biiq48aMWncHgEfkOupg8BG4Kyi+FnW7HxD86O6roiSuC93+f3Q==}
+ peerDependencies:
+ '@ember/test-waiters': ^3.1.0 || ^4.0.0
+ ember-provide-consume-context: ^0.7.0
+ peerDependenciesMeta:
+ ember-provide-consume-context:
+ optional: true
+
+ '@warp-drive/json-api@5.6.0':
+ resolution: {integrity: sha512-RXf+wamkr1ntnaKno65GeGj7aWSR3K+J6xnRSONEpM7AMNTFMeXtBHLdBno+lZoHBu3mLzWYG8ajKUC8ifpRNQ==}
+ peerDependencies:
+ '@warp-drive/core': 5.6.0
- '@warp-drive/core-types@0.0.0-beta.11':
- resolution: {integrity: sha512-GHQE+woaGdRDGj6VG3Qt0uGBNog1zq5XO2Ccce35cYPpM3FOCOdmqB4Wt0miD1bBdbAuWQZmmQOIYAMSMCOdZQ==}
- engines: {node: '>= 18.20.3'}
+ '@warp-drive/legacy@5.6.0':
+ resolution: {integrity: sha512-3aKpWHUV0WVIrxfspCBxBgnGnu5Fz3rpbZEpXwDbm/TlxUusl9bkP4E2uSQmNK/+6G1L6NqhjgKIrRy1GtSgCw==}
+ peerDependencies:
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/utilities': 5.6.0
- '@webassemblyjs/ast@1.12.1':
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ '@warp-drive/utilities@5.6.0':
+ resolution: {integrity: sha512-97hUDe2tYU+eOcLlrdCs4Q0z8AjvFvkAWDhJo+5FAgQFNSlbHJzCYuv3jtAcvQUBoYqxTng+P8nFv4L0DiaPAw==}
+ peerDependencies:
+ '@warp-drive/core': 5.6.0
- '@webassemblyjs/floating-point-hex-parser@1.11.6':
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ '@webassemblyjs/ast@1.14.1':
+ resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
- '@webassemblyjs/helper-api-error@1.11.6':
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
- '@webassemblyjs/helper-buffer@1.12.1':
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ '@webassemblyjs/helper-api-error@1.13.2':
+ resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
- '@webassemblyjs/helper-numbers@1.11.6':
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ '@webassemblyjs/helper-buffer@1.14.1':
+ resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
- '@webassemblyjs/helper-wasm-bytecode@1.11.6':
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ '@webassemblyjs/helper-numbers@1.13.2':
+ resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
- '@webassemblyjs/helper-wasm-section@1.12.1':
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
- '@webassemblyjs/ieee754@1.11.6':
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
- '@webassemblyjs/leb128@1.11.6':
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ '@webassemblyjs/ieee754@1.13.2':
+ resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
- '@webassemblyjs/utf8@1.11.6':
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ '@webassemblyjs/leb128@1.13.2':
+ resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
- '@webassemblyjs/wasm-edit@1.12.1':
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ '@webassemblyjs/utf8@1.13.2':
+ resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
- '@webassemblyjs/wasm-gen@1.12.1':
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ '@webassemblyjs/wasm-edit@1.14.1':
+ resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
- '@webassemblyjs/wasm-opt@1.12.1':
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ '@webassemblyjs/wasm-gen@1.14.1':
+ resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
- '@webassemblyjs/wasm-parser@1.12.1':
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ '@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==}
- '@xmldom/xmldom@0.8.10':
- resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
- engines: {node: '>=10.0.0'}
- deprecated: this version has critical issues, please update to the latest version
+ '@webassemblyjs/wast-printer@1.14.1':
+ resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
+
+ '@xmldom/xmldom@0.9.10':
+ resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==}
+ engines: {node: '>=14.6'}
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
@@ -1407,24 +1793,22 @@ packages:
abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
- abortcontroller-polyfill@1.7.3:
- resolution: {integrity: sha512-zetDJxd89y3X99Kvo4qFx8GKlt6GsvN3UcRZHwU6iFA/0KiOmhkTVhe8oRoTBiTVPZu09x3vCra47+w8Yz1+2Q==}
-
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- 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
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
acorn-globals@6.0.0:
resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
- acorn-import-attributes@1.9.5:
- resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ acorn-import-phases@1.0.4:
+ resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==}
+ engines: {node: '>=10.13.0'}
peerDependencies:
- acorn: ^8
+ acorn: ^8.14.0
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
@@ -1435,18 +1819,13 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- 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==}
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ acorn@8.17.0:
+ resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -1454,6 +1833,10 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
+ engines: {node: '>= 14'}
+
ajv-formats@2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
@@ -1472,8 +1855,8 @@ packages:
peerDependencies:
ajv: ^8.8.2
- ajv@6.12.6:
- resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@6.15.0:
+ resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
@@ -1499,6 +1882,11 @@ packages:
engines: {'0': node >= 0.8.0}
hasBin: true
+ ansi-html@0.0.9:
+ resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==}
+ engines: {'0': node >= 0.8.0}
+ hasBin: true
+
ansi-regex@3.0.1:
resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
engines: {node: '>=4'}
@@ -1534,14 +1922,6 @@ packages:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- aproba@1.2.0:
- resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
-
- are-we-there-yet@3.0.1:
- resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
@@ -1551,6 +1931,10 @@ packages:
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==}
engines: {node: '>=0.10.0'}
@@ -1577,10 +1961,6 @@ packages:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
- arrify@1.0.1:
- resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
- engines: {node: '>=0.10.0'}
-
assert-never@1.3.0:
resolution: {integrity: sha512-9Z3vxQ+berkL/JJo0dK+EY3Lp0s3NtSnP3VCLsh5HDcZPrh0M+KQRK5sWhUeyPPH+/RCxZqOxLMR+YC6vlviEQ==}
@@ -1606,9 +1986,6 @@ packages:
async-promise-queue@1.0.5:
resolution: {integrity: sha512-xi0aQ1rrjPWYmqbwr18rrSKbSaXIeIwSd1J4KAgVfkq8utNbdZoht7GfvfY6swFUAMJ9obkc4WPJmtGwl+B8dw==}
- async@0.2.10:
- resolution: {integrity: sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==}
-
async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
@@ -1632,6 +2009,10 @@ packages:
resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==}
engines: {node: '>=4'}
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
+
babel-import-util@0.2.0:
resolution: {integrity: sha512-CtWYYHU/MgK88rxMrLfkD356dApswtR/kWZ/c6JifG1m10e7tBBrs/366dFzWMAoqYmG5/JSh+94tUSpIwh+ag==}
engines: {node: '>= 12.*'}
@@ -1640,8 +2021,8 @@ packages:
resolution: {integrity: sha512-3qBQWRjzP9NreSH/YrOEU1Lj5F60+pWSLP0kIdCWxjFHH7pX2YPHIxQ67el4gnMNfYoDxSDGcT0zpVlZ+gVtQA==}
engines: {node: '>= 12.*'}
- babel-import-util@3.0.0:
- resolution: {integrity: sha512-4YNPkuVsxAW5lnSTa6cn4Wk49RX6GAB6vX+M6LqEtN0YePqoFczv1/x0EyLK/o+4E1j9jEuYj5Su7IEPab5JHQ==}
+ babel-import-util@3.0.1:
+ resolution: {integrity: sha512-2copPaWQFUrzooJVIVZA/Oppx/S/KOoZ4Uhr+XWEQDMZ8Rvq/0SNQpbdIyMBJ8IELWt10dewuJw+tX4XjOo7Rg==}
engines: {node: '>= 12.*'}
babel-loader@8.2.3:
@@ -1663,6 +2044,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ babel-plugin-debug-macros@2.0.0:
+ resolution: {integrity: sha512-7ZaLtXIY01PAPhLyjV3OACePnl+X5iQO7F4O/sOJHTfMf/36zyu14uVUxNiZmOUntYBsyT/VVplf1LrH6NcwvQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
babel-plugin-ember-data-packages-polyfill@0.1.2:
resolution: {integrity: sha512-kTHnOwoOXfPXi00Z8yAgyD64+jdSXk3pknnS7NlqnCKAU6YDkXZ4Y7irl66kaZjZn0FBBt0P4YOZFZk85jYOww==}
engines: {node: 6.* || 8.* || 10.* || >= 12.*}
@@ -1671,10 +2058,18 @@ packages:
resolution: {integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA==}
engines: {node: 6.* || 8.* || >= 10.*}
- babel-plugin-ember-template-compilation@2.2.5:
- resolution: {integrity: sha512-NQ2DT0DsYyHVrEpFQIy2U8S91JaKSE8NOSZzMd7KZFJVgA6KodJq3Uj852HcH9LsSfvwppnM+dRo1G8bzTnnFw==}
+ babel-plugin-ember-template-compilation@2.4.1:
+ resolution: {integrity: sha512-n+ktQ3JeyWrpRutSyPn2PsHeH+A94SVm+iUoogzf9VUqpP47FfWem24gpQXhn+p6+x5/BpuFJXMLXWt7ZoYAKA==}
engines: {node: '>= 12.*'}
+ babel-plugin-ember-template-compilation@3.1.0:
+ resolution: {integrity: sha512-kk7cGyblE9n4MB98rqw2wuUW7YLD5FM+Tr97gNSYL4e8DBMQndLuWaWNx1wfd7o00NjFhhoTR+HZs2nj23g2Lw==}
+ engines: {node: '>= 18.*'}
+
+ babel-plugin-ember-template-compilation@4.0.0:
+ resolution: {integrity: sha512-J2dR6ZPfPNuIR7vzhneO9xR0aTvOHITszuGif2EOYw3Qg3KlIVEd/hNnEeubyWgjYXn06Sgm6/NdNXEMNSsWYQ==}
+ engines: {node: '>= 18.*'}
+
babel-plugin-htmlbars-inline-precompile@5.3.1:
resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==}
engines: {node: 10.* || >= 12.*}
@@ -1696,11 +2091,21 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs2@0.4.17:
+ resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==}
+ 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==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.13.0:
+ resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-corejs3@0.5.1:
resolution: {integrity: sha512-TihqEe4sQcb/QcPJvxe94/9RZuLQuF1+To4WqQcRvc+3J3gLCPIPgDKzGLG6zmQLfH3nn25heRuDNkS2KR4I8A==}
peerDependencies:
@@ -1716,11 +2121,23 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-regenerator@0.6.8:
+ resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-syntax-dynamic-import@6.18.0:
resolution: {integrity: sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA==}
- backbone@1.6.0:
- resolution: {integrity: sha512-13PUjmsgw/49EowNcQvfG4gmczz1ximTMhUktj0Jfrjth0MVaTxehpU+qYYX4MxnuIuhmvBLC6/ayxuAGnOhbA==}
+ babel-remove-types@1.1.0:
+ resolution: {integrity: sha512-2wszSY8Pll8uefPFrJcOb2cP67epjpDnLADtzgQ9u1WgFJmBdJAkx5MGISjFCg/56Q8YgzA/o9RBMpScjhf+dw==}
+
+ babylon@6.18.0:
+ resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==}
+ hasBin: true
+
+ backbone@1.6.1:
+ resolution: {integrity: sha512-YQzWxOrIgL6BoFnZjThVN99smKYhyEXXFyJJ2lsF1wJLyo4t+QjmkLrH8/fN22FZ4ykF70Xq7PgTugJVR4zS9Q==}
backburner.js@2.8.0:
resolution: {integrity: sha512-zYXY0KvpD7/CWeOLF576mV8S+bQsaIoj/GNLXXB+Eb8SJcQy5lqSjkRrZ0MZhdKUs9QoqmGNIEIe3NQfGiiscQ==}
@@ -1731,6 +2148,10 @@ packages:
balanced-match@2.0.0:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -1742,10 +2163,19 @@ packages:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
+ baseline-browser-mapping@2.10.37:
+ resolution: {integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
+ 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==}
@@ -1753,19 +2183,23 @@ packages:
resolution: {integrity: sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==}
engines: {node: '>=0.8'}
+ bind-decorator@1.0.11:
+ resolution: {integrity: sha512-yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg==}
+
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
blank-object@1.0.2:
resolution: {integrity: sha512-kXQ19Xhoghiyw66CUiGypnuRpWlbHAzY/+NyvqTEdTfhfQGH1/dbEMYiXju7fYKIFePpzp/y9dsu5Cu/PkmawQ==}
- bluebird@3.7.2:
- resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
-
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ body-parser@1.20.5:
+ resolution: {integrity: sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ body-parser@2.3.0:
+ resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==}
+ engines: {node: '>=18'}
+
body@5.1.0:
resolution: {integrity: sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==}
@@ -1778,6 +2212,10 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@5.0.6:
+ resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==}
+ engines: {node: 18 || 20 || >=22}
+
braces@2.3.2:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
engines: {node: '>=0.10.0'}
@@ -1786,12 +2224,6 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- broccoli-asset-rev@3.0.0:
- resolution: {integrity: sha512-gAHQZnwvtl74tGevUqGuWoyOdJUdMMv0TjGSMzbdyGImr9fZcnM6xmggDA8bUawrMto9NFi00ZtNUgA4dQiUBw==}
-
- broccoli-asset-rewrite@2.0.0:
- resolution: {integrity: sha512-dqhxdQpooNi7LHe8J9Jdxp6o3YPFWl4vQmint6zrsn2sVbOo+wpyiX3erUSt0IBtjNkAxqJjuvS375o2cLBHTA==}
-
broccoli-babel-transpiler@7.8.1:
resolution: {integrity: sha512-6IXBgfRt7HZ61g67ssBc6lBb3Smw3DPZ9dEYirgtvXWpRZ2A9M22nxy6opEwJDgDJzlu/bB7ToppW33OFkA1gA==}
engines: {node: '>= 6'}
@@ -1802,13 +2234,6 @@ packages:
peerDependencies:
'@babel/core': ^7.17.9
- broccoli-builder@0.18.14:
- resolution: {integrity: sha512-YoUHeKnPi4xIGZ2XDVN9oHNA9k3xF5f5vlA+1wvrxIIDXqQU97gp2FxVAF503Zxdtt0C5CRB5n+47k2hlkaBzA==}
- engines: {node: '>= 0.10.0'}
-
- broccoli-caching-writer@2.3.1:
- resolution: {integrity: sha512-lfoDx98VaU8tG4mUXCxKdKyw2Lr+iSIGUjCgV83KC2zRC07SzYTGuSsMqpXFiOQlOGuoJxG3NRoyniBa1BWOqA==}
-
broccoli-caching-writer@3.0.3:
resolution: {integrity: sha512-g644Kb5uBPsy+6e2DvO3sOc+/cXZQQNgQt64QQzjA9TSdP0dl5qvetpoNIx4sy/XIjrPYG1smEidq9Z9r61INw==}
@@ -1829,9 +2254,6 @@ packages:
resolution: {integrity: sha512-YpjOExWr92C5vhnK0kmD81kM7U09kdIRZk9w4ZDCDHuHXW+VE/x6AGEOQQW3loBQQ6Jk+k+TSm8dESy4uZsnjw==}
engines: {node: ^4.5 || 6.* || >= 7.*}
- broccoli-filter@1.3.0:
- resolution: {integrity: sha512-VXJXw7eBfG82CFxaBDjYmyN7V72D4In2zwLVQJd/h3mBfF3CMdRTsv2L20lmRTtCv1sAHcB+LgMso90e/KYiLw==}
-
broccoli-funnel-reducer@1.0.0:
resolution: {integrity: sha512-SaOCEdh+wnt2jFUV2Qb32m7LXyElvFwW3NKNaEJyi5PGQNwxfqpkc0KI6AbQANKgdj/40U2UC0WuGThFwuEUaA==}
@@ -1843,9 +2265,6 @@ packages:
resolution: {integrity: sha512-ng4eIhPYiXqMw6SyGoxPHR3YAwEd2lr9FgBI1CyTbspl4txZovOsmzFkMkGAlu88xyvYXJqHiM2crfLa65T1BQ==}
engines: {node: 10.* || >= 12.*}
- broccoli-kitchen-sink-helpers@0.2.9:
- resolution: {integrity: sha512-C+oEqivDofZv/h80rgN4WJkbZkbfwkrIeu8vFn4bb4m4jPd3ICNNplhkXGl3ps439pzc2yjZ1qIwz0yy8uHcQg==}
-
broccoli-kitchen-sink-helpers@0.3.1:
resolution: {integrity: sha512-gqYnKSJxBSjj/uJqeuRAzYVbmjWhG0mOZ8jrp6+fnUIOgLN6MvI7XxBECDHkYMIFPJ8Smf4xaI066Q2FqQDnXg==}
@@ -1864,10 +2283,6 @@ packages:
broccoli-node-api@1.7.0:
resolution: {integrity: sha512-QIqLSVJWJUVOhclmkmypJJH9u9s/aWH4+FH6Q6Ju5l+Io4dtwqdPUNmDfw40o6sxhbZHhqGujDJuHTML1wG8Yw==}
- broccoli-node-info@1.1.0:
- resolution: {integrity: sha512-DUohSZCdfXli/3iN6SmxPbck1OVG8xCkrLx47R25his06xVc1ZmmrOsrThiM8BsCWirwyocODiYJqNP5W2Hg1A==}
- engines: {node: '>= 0.10.0'}
-
broccoli-node-info@2.2.0:
resolution: {integrity: sha512-VabSGRpKIzpmC+r+tJueCE5h8k6vON7EIMMWu6d/FyPdtijwLQ7QvzShEw+m3mHoDzUaj/kiZsDYrS8X2adsBg==}
engines: {node: 8.* || >= 10.*}
@@ -1876,9 +2291,6 @@ packages:
resolution: {integrity: sha512-bQAtwjSrF4Nu0CK0JOy5OZqw9t5U0zzv2555EA/cF8/a8SLDTIetk9UgrtMVw7qKLKdSpOZ2liZNeZZDaKgayw==}
engines: {node: 10.* || >= 12.*}
- broccoli-persistent-filter@1.4.6:
- resolution: {integrity: sha512-0RejLwoC95kv4kta8KAa+FmECJCK78Qgm8SRDEK7YyU0N9Cx6KpY3UCDy9WELl3mCXLN8TokNxc7/hp3lL4lfw==}
-
broccoli-persistent-filter@2.3.1:
resolution: {integrity: sha512-hVsmIgCDrl2NFM+3Gs4Cr2TA6UPaIZip99hN8mtkaUPgM8UeVnCbxelCvBjUBHo0oaaqP5jzqqnRVvb568Yu5g==}
engines: {node: 6.* || >= 8.*}
@@ -1887,9 +2299,6 @@ packages:
resolution: {integrity: sha512-Q+8iezprZzL9voaBsDY3rQVl7c7H5h+bvv8SpzCZXPZgfBFCbx7KFQ2c3rZR6lW5k4Kwoqt7jG+rZMUg67Gwxw==}
engines: {node: 10.* || >= 12.*}
- broccoli-plugin@1.1.0:
- resolution: {integrity: sha512-dY1QsA20of9wWEto8yhN7JQjpfjySmgeIMsvnQ9aBAv1wEJJCe04B0ekdgq7Bduyx9yWXdoC5CngGy81swmp2w==}
-
broccoli-plugin@1.3.1:
resolution: {integrity: sha512-DW8XASZkmorp+q7J4EeDEZz+LoyKLAd2XZULXyD9l4m9/hAKV3vjHmB1kiUshcWAYMgTP1m2i4NnqCE/23h6AQ==}
@@ -1913,10 +2322,6 @@ packages:
resolution: {integrity: sha512-I8+DHq5xcCBHU0PpCtDMayAmSUVx07CqAquUpdlNUHckXeD//cUFf4aFQllnZBhF8Z86YLhuA+j7qvCYYgBXRg==}
engines: {node: '>= 10'}
- broccoli-rollup@2.1.1:
- resolution: {integrity: sha512-aky/Ovg5DbsrsJEx2QCXxHLA6ZR+9u1TNVTf85soP4gL8CjGGKQ/JU8R3BZ2ntkWzo6/83RCKzX6O+nlNKR5MQ==}
- engines: {node: '>=4.0'}
-
broccoli-slow-trees@3.1.0:
resolution: {integrity: sha512-FRI7mRTk2wjIDrdNJd6znS7Kmmne4VkAkl8Ix1R/VoePFMD0g0tEl671xswzFqaRjpT9Qu+CC4hdXDLDJBuzMw==}
@@ -1928,9 +2333,6 @@ packages:
resolution: {integrity: sha512-ZbGVQjivWi0k220fEeIUioN6Y68xjMy0xiLAc0LdieHI99gw+tafU8w0CggBDYVNsJMKUr006AZaM7gNEwCxEg==}
engines: {node: 8.* || 10.* || >= 12.*}
- broccoli-sri-hash@2.1.2:
- resolution: {integrity: sha512-toLD/v7ut2ajcH8JsdCMG2Bpq2qkwTcKM6CMzVMSAJjaz/KpK69fR+gSqe1dsjh+QTdxG0yVvkq3Sij/XMzV6A==}
-
broccoli-static-site-json@4.4.1:
resolution: {integrity: sha512-5XzFxOHYvY/x9kaW4fQl3BTu7wvlEKCW79XiIYNR7y6K47VUbXIznwmlJeC7dEArVamUjMqf+UAnVJmK1EowUQ==}
@@ -1938,23 +2340,26 @@ 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.0:
- resolution: {integrity: sha512-zkNnjsAbP+M5rG2aMM1EE4BmXPUSxFKmtLUkUs2D1DLTOJQoF1xlOjGWjjKYCFy5tw8t4+tgGJ+HVa2ucJZ8sw==}
- engines: {node: ^10.12.0 || 12.* || >= 14}
-
broccoli@3.5.2:
resolution: {integrity: sha512-sWi3b3fTUSVPDsz5KsQ5eCQNVAtLgkIE/HYFkEZXR/07clqmd4E/gFiuwSaqa9b+QTXc1Uemfb7TVWbEIURWDg==}
engines: {node: 8.* || >= 10.*}
+ broccoli@4.0.0:
+ resolution: {integrity: sha512-p5el5/ig0QeRGFPkLMPdm7KblkTm44eicEWfwnRTz6hncghVuRZ0+XDAtCi7ynxobeE/mey5Q7lAulFkgNzxVA==}
+ engines: {node: '>= 20.19.*'}
+
browser-process-hrtime@1.0.0:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist-to-esbuild@2.1.1:
+ resolution: {integrity: sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ browserslist: '*'
+
+ browserslist@4.28.2:
+ resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -1967,20 +2372,9 @@ packages:
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- builtin-modules@3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
- engines: {node: '>=6'}
-
- builtins@5.1.0:
- resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
-
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'}
@@ -1989,39 +2383,42 @@ packages:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
+ cacheable@2.3.5:
+ resolution: {integrity: sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==}
+
calculate-cache-key-for-tree@2.0.0:
resolution: {integrity: sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ==}
engines: {node: 6.* || 8.* || >= 10.*}
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+
call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+ call-bound@1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
+ engines: {node: '>= 0.4'}
+
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camelcase-keys@7.0.2:
- resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==}
- engines: {node: '>=12'}
-
camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
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-api@3.0.0:
- resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
-
caniuse-lite@1.0.30001643:
resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==}
+ caniuse-lite@1.0.30001799:
+ resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==}
+
capture-exit@2.0.0:
resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -2042,6 +2439,10 @@ packages:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
@@ -2055,12 +2456,16 @@ packages:
resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==}
engines: {node: '>= 6'}
+ chokidar@5.0.0:
+ resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
+ engines: {node: '>= 20.19.0'}
+
chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- ci-info@3.9.0:
- resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ ci-info@4.4.0:
+ resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
engines: {node: '>=8'}
class-utils@0.3.6:
@@ -2070,10 +2475,6 @@ packages:
clean-base-url@1.0.0:
resolution: {integrity: sha512-9q6ZvUAhbKOSRFY7A/irCQ/rF0KIpa3uXpx6izm8+fp7b2H4hLeUJ+F1YYk9+gDQ/X8Q0MEyYs+tG3cht//HTg==}
- 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==}
engines: {node: '>=6'}
@@ -2123,6 +2524,10 @@ packages:
resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
engines: {node: '>=0.8'}
+ code-error-fragment@0.0.230:
+ resolution: {integrity: sha512-cadkfKp6932H8UkhzE/gcUqhRMNf8jHzkAN7+5Myabswaghu4xABTgPHDCjW+dBAJxj/SpkTYokpzDqY4pCzQw==}
+ engines: {node: '>= 4'}
+
collection-visit@1.0.0:
resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
engines: {node: '>=0.10.0'}
@@ -2140,10 +2545,6 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- color-support@1.1.3:
- resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
- hasBin: true
-
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
@@ -2159,6 +2560,10 @@ packages:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
+ commander@14.0.3:
+ resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
+ engines: {node: '>=20'}
+
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
@@ -2198,16 +2603,16 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ compression@1.8.1:
+ resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==}
engines: {node: '>= 0.8.0'}
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- concurrently@8.2.2:
- resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
- engines: {node: ^14.13.0 || >=16.0.0}
+ concurrently@9.2.1:
+ resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==}
+ engines: {node: '>=18'}
hasBin: true
configstore@5.0.1:
@@ -2218,21 +2623,17 @@ packages:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
- console-control-strings@1.1.0:
- resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
-
console-ui@3.1.2:
resolution: {integrity: sha512-+5j3R4wZJcEYZeXk30whc4ZU/+fWW9JMTNntVuMYpjZJ9n26Cxr0tUBXco1NRjVZRpRVvZ4DDKKKIHNYeUG9Dw==}
engines: {node: 6.* || 8.* || >= 10.*}
- consolidate@0.16.0:
- resolution: {integrity: sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==}
- engines: {node: '>= 0.10.0'}
- deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
+ consolidate@1.0.4:
+ resolution: {integrity: sha512-RuZ3xnqEDsxiwaoIkqVeeK3gg9qxw7+YKYX2tKhLs1eukVKMgSr4VYI3iYFsRHi4TloHYDlugrz3kvkjs3nynA==}
+ engines: {node: '>=14'}
peerDependencies:
+ '@babel/core': ^7.22.5
arc-templates: ^0.5.3
atpl: '>=0.7.6'
- babel-core: ^6.26.3
bracket-template: ^1.1.5
coffee-script: ^1.12.7
dot: ^1.1.3
@@ -2248,14 +2649,12 @@ packages:
handlebars: ^4.7.6
hogan.js: ^3.0.2
htmling: ^0.0.8
- jade: ^1.11.0
jazz: ^0.0.18
jqtpl: ~1.1.0
just: ^0.1.8
liquid-node: ^3.0.1
liquor: ^0.0.5
lodash: ^4.17.20
- marko: ^3.14.4
mote: ^0.2.0
mustache: ^4.0.1
nunjucks: ^3.2.2
@@ -2263,16 +2662,13 @@ packages:
pug: ^3.0.0
qejs: ^3.0.5
ractive: ^1.3.12
- razor-tmpl: ^1.3.1
- react: ^16.13.1
- react-dom: ^16.13.1
+ react: '>=16.13.1'
+ react-dom: '>=16.13.1'
slm: ^2.0.0
- squirrelly: ^5.1.0
swig: ^1.4.2
swig-templates: ^2.0.3
teacup: ^2.0.0
templayed: '>=0.2.3'
- then-jade: '*'
then-pug: '*'
tinyliquid: ^0.2.34
toffee: ^0.3.6
@@ -2284,12 +2680,12 @@ packages:
walrus: ^0.10.1
whiskers: ^0.4.0
peerDependenciesMeta:
+ '@babel/core':
+ optional: true
arc-templates:
optional: true
atpl:
optional: true
- babel-core:
- optional: true
bracket-template:
optional: true
coffee-script:
@@ -2320,8 +2716,6 @@ packages:
optional: true
htmling:
optional: true
- jade:
- optional: true
jazz:
optional: true
jqtpl:
@@ -2334,8 +2728,6 @@ packages:
optional: true
lodash:
optional: true
- marko:
- optional: true
mote:
optional: true
mustache:
@@ -2350,16 +2742,12 @@ packages:
optional: true
ractive:
optional: true
- razor-tmpl:
- optional: true
react:
optional: true
react-dom:
optional: true
slm:
optional: true
- squirrelly:
- optional: true
swig:
optional: true
swig-templates:
@@ -2368,8 +2756,6 @@ packages:
optional: true
templayed:
optional: true
- then-jade:
- optional: true
then-pug:
optional: true
tinyliquid:
@@ -2395,13 +2781,24 @@ packages:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
- content-tag@1.2.2:
- resolution: {integrity: sha512-9guqKIx2H+78N17otBpl8yLZbQGL5q1vBO/jDb3gF2JjixtcVpC62jDUNxjVMNoaZ09oxRX84ZOD6VX02qkVvg==}
+ content-disposition@1.1.0:
+ resolution: {integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==}
+ engines: {node: '>=18'}
+
+ content-tag@3.1.3:
+ resolution: {integrity: sha512-4Kiv9mEroxuMXfWUNUHcljVJgxThCNk7eEswdHMXdzJnkBBaYDqDwzHkoh3F74JJhfU3taJOsgpR6oEGIDg17g==}
+
+ content-tag@4.2.0:
+ resolution: {integrity: sha512-f/o+F3qSa4gg23I7RWy6cMDxP2nPo99YWusxw2bjne7ZC6Acqqf4uB/+87AekOq1ehTocHH7b7nMd2X4S3NHVw==}
content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
+ content-type@2.0.0:
+ resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==}
+ engines: {node: '>=18'}
+
continuable-cache@0.3.1:
resolution: {integrity: sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==}
@@ -2411,17 +2808,14 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.4.2:
- resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
- engines: {node: '>= 0.6'}
+ cookie-signature@1.2.2:
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
+ engines: {node: '>=6.6.0'}
- cookie@0.6.0:
- resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
- copy-dereference@1.0.0:
- resolution: {integrity: sha512-40TSLuhhbiKeszZhK9LfNdazC67Ue4kq/gGwN5sdxEUWPXTIMmKmGmgD9mPfNKVAeecEW+NfEIpBaZoACCQLLw==}
-
copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
@@ -2429,6 +2823,9 @@ packages:
core-js-compat@3.37.1:
resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.49.0:
+ resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==}
+
core-js@2.6.12:
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
@@ -2444,8 +2841,8 @@ packages:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
- cosmiconfig@8.3.6:
- resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ cosmiconfig@9.0.2:
+ resolution: {integrity: sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==}
engines: {node: '>=14'}
peerDependencies:
typescript: '>=4.9.5'
@@ -2457,8 +2854,8 @@ packages:
resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
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-random-string@2.0.0:
@@ -2470,9 +2867,9 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- css-functions-list@3.2.2:
- resolution: {integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==}
- engines: {node: '>=12 || >=16'}
+ css-functions-list@3.3.3:
+ resolution: {integrity: sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==}
+ engines: {node: '>=12'}
css-has-pseudo@0.10.0:
resolution: {integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==}
@@ -2493,8 +2890,8 @@ packages:
css-select@4.2.1:
resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==}
- css-tree@2.3.1:
- resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
+ css-tree@3.2.1:
+ resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
css-what@5.1.0:
@@ -2524,6 +2921,10 @@ packages:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
+ cssstyle@4.6.0:
+ resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
+ engines: {node: '>=18'}
+
dag-map@2.0.2:
resolution: {integrity: sha512-xnsprIzYuDeiyu5zSKwilV/ajRHxnoMlAhEREfyfTgTSViMVY2fGP1ZcHJbtwup26oCkofySU/m6oKJ3HrkW7w==}
@@ -2531,13 +2932,12 @@ packages:
resolution: {integrity: sha512-Ds554NeT5Gennfoo9KN50Vh6tpgtvYEwraYjejXnyTpu1C7oXKxdFk75REooENHE8ndTVOJuv+BEs4/J/xcozw==}
engines: {node: '>=12'}
- date-fns@2.30.0:
- resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
- engines: {node: '>=0.11'}
+ data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
- date-time@2.1.0:
- resolution: {integrity: sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==}
- engines: {node: '>=4'}
+ date-fns@3.6.0:
+ resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -2564,27 +2964,31 @@ packages:
supports-color:
optional: true
- decamelize-keys@1.1.1:
- resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
- engines: {node: '>=0.10.0'}
+ debug@4.4.3:
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- decamelize@5.0.1:
- resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==}
- engines: {node: '>=10'}
-
decimal.js@10.3.1:
resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
+
decode-uri-component@0.2.0:
resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
engines: {node: '>=0.10'}
- decorator-transforms@2.0.0:
- resolution: {integrity: sha512-ETfQccGcotK01YJsoB0AGTdUp7kS9jI93mBzrRY5Oyo+bOJfa2UKTSjCNf+iRNwAWBmBKlbiCcyL4tkY4C4dZQ==}
+ decorator-transforms@2.3.2:
+ resolution: {integrity: sha512-XcErcjlmCzG5ODgYjt6ZTXwd6S8fPKln/sJmw15ZXkWG2JpoQNwszis+AwF6XSGlOoG7g8MCEO97g+Yw3fk5OQ==}
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
@@ -2612,9 +3016,6 @@ packages:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- delegates@1.0.0:
- resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
-
depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
@@ -2635,26 +3036,26 @@ packages:
resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==}
engines: {node: '>=0.10.0'}
- detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
+ detect-indent@7.0.2:
+ resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==}
+ engines: {node: '>=12.20'}
- detect-newline@3.1.0:
- resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
- diff@5.2.0:
- resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
+ detect-newline@4.0.1:
+ resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ diff@7.0.0:
+ resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
engines: {node: '>=0.3.1'}
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'}
-
dom-element-descriptors@0.5.1:
resolution: {integrity: sha512-DLayMRQ+yJaziF4JJX1FMjwjdr7wdTr1y9XvZ+NfHELfOMcYDnCHneAYXAS4FT1gLILh4V0juMZohhH1N5FsoQ==}
@@ -2683,6 +3084,10 @@ packages:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
editions@1.3.4:
resolution: {integrity: sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==}
engines: {node: '>=0.8'}
@@ -2691,32 +3096,33 @@ packages:
resolution: {integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==}
engines: {node: '>=0.8'}
+ editorconfig@3.0.2:
+ resolution: {integrity: sha512-T0ix8GhtxyKVfUFEcvdNDt3YGqlwkFHbD4/5bgFUDgFmxhI/cSRAeJ87/Sz//Cq8Eam6JX/e23RkoFO71P7aAA==}
+ engines: {node: '>=20'}
+ hasBin: true
+
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.1:
- resolution: {integrity: sha512-FKbOCOQ5QRB3VlIbl1LZQefWIYwszlBloaXcY2rbfpu9ioJnNh3TK03YtIDKDo3WKBi8u+YV4+Fn2CkEozgf4w==}
+ electron-to-chromium@1.5.375:
+ resolution: {integrity: sha512-ZWP5eB4BVPW/ZYo9252hQZHZ5XavtsTgpbhcmMmRwymavC5AsLWQWBPaKMeNd2LW0KGby5HPXvj7+sr4ta5j/Q==}
- ember-a11y-testing@6.1.1:
- resolution: {integrity: sha512-bDpw5+B2q++xwz5DWcbYB6dXp6nNe4jBwDkT6CqMESiVWWsSKPHs3ygt1Y89ESucesRIiv/49gNKMftZNsCpkw==}
- engines: {node: 16.* || >= 18}
+ ember-a11y-testing@8.0.1:
+ resolution: {integrity: sha512-irO7yrqz3nnJrBPFlMw4xvdPL7ElwC7fuQYSL4TbtMGk4gqnY+4dkKiNOqCIAg+AF7tBrjXDASkvpHrAHnmVMg==}
+ engines: {node: '>= 18', pnpm: '>= 10'}
peerDependencies:
- '@ember/test-helpers': ^3.0.3
+ '@ember/test-helpers': ^3.0.3 || ^4.0.2 || ^5.0.0
+ '@ember/test-waiters': ^2.4.3 || ^3.0.0 || ^4.0.0
+ axe-core: ^4.0.0
qunit: '>= 2'
peerDependenciesMeta:
qunit:
optional: true
- ember-auto-import@2.7.4:
- resolution: {integrity: sha512-6CdXSegJJc8nwwK7+1lIcBUnMVrJRNd4ZdMgcKbCAwPvcGxMgRVBddSzrX/+q/UuflvTEO26Dk1g7Z6KHMXUhw==}
+ ember-auto-import@2.13.1:
+ resolution: {integrity: sha512-MjxJK2nfCJmmQI/rju2TrycmAa1AxmTarfvygbcrrgW0s4WeZHtbGXCO2z1lW9wfrShqeTo/o+3Mgk+9xcDTWg==}
engines: {node: 12.* || 14.* || >= 16}
- ember-cli-app-version@6.0.1:
- resolution: {integrity: sha512-XA1FwkWA5QytmWF0jcJqEr3jcZoiCl9Fb33TZgOVfClL7Voxe+/RwzISEprBRQgbf7j8z1xf8/RJCKfclUy3rQ==}
- engines: {node: 14.* || 16.* || >= 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.*}
@@ -2731,15 +3137,11 @@ packages:
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.2:
- resolution: {integrity: sha512-PwkrW5oYsdPWwt+0Tojufmv/hxVETTjkrEdK7ANQB2VSnqpA5UcYubwpQM9ONuR2J8wyNDMwEHlqIrk/FYtBsQ==}
- engines: {node: '>= 6'}
+ ember-cli-deprecation-workflow@3.4.0:
+ resolution: {integrity: sha512-Ksrmib4mjD4xa0dqFgxJLBwkSp9EVYH6jSqe2NpODlBKEAZhsVzQj5wKPnC1dXfK3Erq/r1Fh3q4g46FZiCUiw==}
+ engines: {node: '>= 18'}
peerDependencies:
- ember-cli: ^3.2.0 || >=4.0.0
+ ember-source: '>= 3.28.0'
ember-cli-get-component-path-option@1.0.0:
resolution: {integrity: sha512-k47TDwcJ2zPideBCZE8sCiShSxQSpebY2BHcX2DdipMmBox5gsfyVrbKJWIHeSTTKyEUgmBIvQkqTOozEziCZA==}
@@ -2752,17 +3154,9 @@ packages:
resolution: {integrity: sha512-N9Y80oZfcfWLsqickMfRd9YByVcTGyhYRnYQ2XVPVrp6jyUyOeRWmEAPh7ERSXpp8Ws4hr/JB9QVQrn/yZa+Ag==}
engines: {node: 12.* || 14.* || >= 16}
- ember-cli-inject-live-reload@2.1.0:
- resolution: {integrity: sha512-YV5wYRD5PJHmxaxaJt18u6LE6Y+wo455BnmcpN+hGNlChy2piM9/GMvYgTAz/8Vin8RJ5KekqP/w/NEaRndc/A==}
- engines: {node: 6.* || 8.* || >= 10.*}
-
ember-cli-is-package-missing@1.0.0:
resolution: {integrity: sha512-9hEoZj6Au5onlSDdcoBqYEPT8ehlYntZPxH8pBKV0GO7LNel88otSAQsCfXvbi2eKE+MaSeLG/gNaCI5UdWm9g==}
- ember-cli-lodash-subset@2.0.1:
- resolution: {integrity: sha512-QkLGcYv1WRK35g4MWu/uIeJ5Suk2eJXKtZ+8s+qE7C9INmpCPyPxzaqZABquYzcWNzIdw6kYwz3NWAFdKYFxwg==}
- engines: {node: ^4.5 || 6.* || >= 7.*}
-
ember-cli-normalize-entity-name@1.0.0:
resolution: {integrity: sha512-rF4P1rW2P1gVX1ynZYPmuIf7TnAFDiJmIUFI1Xz16VYykUAyiOCme0Y22LeZq8rTzwBMiwBwoE3RO4GYWehXZA==}
@@ -2777,31 +3171,15 @@ packages:
resolution: {integrity: sha512-Jb2zbE5Kfe56Nf4IpdaQ10zZ72p/RyLdgE5j5/lKG3I94QHlq+7AkAd18nPpb5OUeRUT13yQTAYpU+MbjpKTtg==}
engines: {node: 16.* || >= 18}
- ember-cli-sri@2.1.1:
- resolution: {integrity: sha512-YG/lojDxkur9Bnskt7xB6gUOtJ6aPl/+JyGYm9HNDk3GECVHB3SMN3rlGhDKHa1ndS5NK2W2TSLb9bzRbGlMdg==}
- engines: {node: '>= 0.10.0'}
-
ember-cli-string-utils@1.1.0:
resolution: {integrity: sha512-PlJt4fUDyBrC/0X+4cOpaGCiMawaaB//qD85AXmDRikxhxVzfVdpuoec02HSiTGTTB85qCIzWBIh8lDOiMyyFg==}
- ember-cli-terser@4.0.2:
- resolution: {integrity: sha512-Ej77K+YhCZImotoi/CU2cfsoZaswoPlGaM5TB3LvjvPDlVPRhxUHO2RsaUVC5lsGeRLRiHCOxVtoJ6GyqexzFA==}
- engines: {node: 10.* || 12.* || >= 14}
-
ember-cli-test-info@1.0.0:
resolution: {integrity: sha512-dEVTIpmUfCzweC97NGf6p7L6XKBwV2GmSM4elmzKvkttEp5P7AvGA9uGyN4GqFq+RwhW+2b0I2qlX00w+skm+A==}
- ember-cli-test-loader@3.1.0:
- resolution: {integrity: sha512-0aocZV9SIoOHiU3hrH3IuLR6busWhTX6UVXgd490hmJkIymmOXNH2+jJoC7Ebkeo3PiOfAdjqhb765QDlHSJOw==}
- engines: {node: 10.* || >= 12}
-
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@3.0.0:
resolution: {integrity: sha512-lo5YArbJzJi5ssvaGqTt6+FnhTALnSvYVuxM7lfyL1UCMudyNJ94ovH5C7n5il7ATd6WsNiAPRUO/v+s5Jq/aA==}
engines: {node: 8.* || >= 10.*}
@@ -2810,10 +3188,6 @@ packages:
resolution: {integrity: sha512-HJ73kL45OGRmIkPhBNFt31I1SGUvdZND+LCH21+qpq3pPlFpJG8GORyXpP+2ze8PbnITNLzwe5AwUrpyuRswdQ==}
engines: {node: 8.* || >= 10.*}
- ember-cli-typescript@4.2.1:
- resolution: {integrity: sha512-0iKTZ+/wH6UB/VTWKvGuXlmwiE8HSIGcxHamwNhEC5x1mN3z8RfvsFZdQWYUzIWFN2Tek0gmepGRPTwWdBYl/A==}
- engines: {node: 10.* || >= 12.*}
-
ember-cli-version-checker@2.2.0:
resolution: {integrity: sha512-G+KtYIVlSOWGcNaTFHk76xR4GdzDLzAS4uxZUKdASuFX0KJE43C6DaqL+y3VTpUFLI2FIkAS6HZ4I1YBi+S3hg==}
engines: {node: '>= 4'}
@@ -2830,9 +3204,9 @@ packages:
resolution: {integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q==}
engines: {node: 10.* || >= 12.*}
- ember-cli@5.10.0:
- resolution: {integrity: sha512-Y9nihTELz3dxphn/Fvw9/Gdwe5Q13Zlsh3wa4qXyy84CHRo9FcDNb8ka8UstaUxHoCcsASS6iUq8cos2krLRdA==}
- engines: {node: '>= 18'}
+ ember-cli@6.8.1:
+ resolution: {integrity: sha512-lA/eW8ESZyYIuyyIkicxkEfsV3pZzDLaJJsEEAV09Bfw9x9yPxPn/6yJcX5xTmj+cYWfkeQlOWj4ZKvXNIzwiA==}
+ engines: {node: '>= 20.11'}
hasBin: true
ember-compatibility-helpers@1.2.5:
@@ -2843,18 +3217,15 @@ packages:
resolution: {integrity: sha512-sz6sTIXN/CuLb5wdpauFa+rWXuvXXSnSHS4kuNzU5GSMDX1pLBWSuovoUk61FUe6CYRqBmT1/UushObwBGickQ==}
engines: {node: 10.* || 12.* || 14.* || >= 16}
- ember-data@5.3.8:
- resolution: {integrity: sha512-ZFd0dxTCkX5OHe/Xdfpglg+3OELsd0xNFziogoKV0JPLzyXmasn/8vAeHeUta9rAJDYH8lix3/1t6iIeY+DzYQ==}
- engines: {node: '>= 18.20.3'}
+ ember-data@5.6.0:
+ resolution: {integrity: sha512-nFFHhAD06C6DM2iD/UQFe+XKPEh27ALudZVZ6CipCAn598i8gfnm5k09ZZiW/YYpU0+4DAqtf91LwZN2e+O3vw==}
peerDependencies:
- '@ember/test-helpers': ^3.3.0
- '@ember/test-waiters': ^3.1.0
+ '@ember/test-helpers': ^3.3.0 || ^4.0.4 || ^5.1.0
+ '@ember/test-waiters': ^3.1.0 || ^4.0.0
qunit: ^2.18.0
peerDependenciesMeta:
'@ember/test-helpers':
optional: true
- '@ember/test-waiters':
- optional: true
qunit:
optional: true
@@ -2862,64 +3233,63 @@ packages:
resolution: {integrity: sha512-TovtNqCumzyAiW0/OisSkkVK93xnVF4NRU6+FN0ubpfwEOpRrmM2RqDwXI6YAChCgSHON1cz0DfQStpA1Gjuuw==}
engines: {node: 10.* || >= 12}
- ember-fetch@8.1.2:
- resolution: {integrity: sha512-TVx24/jrvDIuPL296DV0hBwp7BWLcSMf0I8464KGz01sPytAB+ZAePbc9ooBTJDkKZEGFgatJa4nj3yF1S9Bpw==}
- engines: {node: '>= 10'}
+ ember-eslint-parser@0.14.0:
+ resolution: {integrity: sha512-lFF19I8DhsAdNfUIV5ljC+2lHVUp1So1iQE1/ZbhMwHCq/c1s2G2XnUtal/DxLM/L+ZCwU0VTf2hwDqvqCxkZw==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@babel/eslint-parser': ^7.28.6 || ^8.0.0
+ '@typescript-eslint/parser': '*'
+ peerDependenciesMeta:
+ '@babel/eslint-parser':
+ optional: true
+ '@typescript-eslint/parser':
+ optional: true
- ember-load-initializers@2.1.2:
- resolution: {integrity: sha512-CYR+U/wRxLbrfYN3dh+0Tb6mFaxJKfdyz+wNql6cqTrA0BBi9k6J3AaKXj273TqvEpyyXegQFFkZEiuZdYtgJw==}
- engines: {node: 6.* || 8.* || >= 10.*}
+ ember-estree@0.6.4:
+ resolution: {integrity: sha512-/0+JLFt200RB/gUfLfRALTFWby6fGS7Bu+NN985Y8gadEntX4KoiYHhOl2hkzvy+AmBi+PbHxBa9QVCV7K/PUg==}
+
+ ember-load-initializers@3.0.1:
+ resolution: {integrity: sha512-qV3vxJKw5+7TVDdtdLPy8PhVsh58MlK8jwzqh5xeOwJPNP7o0+BlhvwoIlLYTPzGaHdfjEIFCgVSyMRGd74E1g==}
+ engines: {node: '>= 18.*'}
+ peerDependencies:
+ ember-source: '>= 5'
ember-modifier-manager-polyfill@1.2.0:
resolution: {integrity: sha512-bnaKF1LLKMkBNeDoetvIJ4vhwRPKIIumWr6dbVuW6W6p4QV8ZiO+GdF8J7mxDNlog9CeL9Z/7wam4YS86G8BYA==}
engines: {node: 6.* || 8.* || >= 10.*}
- 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-modifier@4.3.0:
+ resolution: {integrity: sha512-O0rirSLQbGg0VJ/NqoQ4uN1bh2iAekZC/Ykma+FkjCM2ofrO38u+d8n3+AK6uVWeMJmogGX2KL+Is5fofoInJg==}
ember-named-blocks-polyfill@0.2.5:
resolution: {integrity: sha512-OVMxzkfqJrEvmiky7gFzmuTaImCGm7DOudHWTdMBPO7E+dQSunrcRsJMgO9ZZ56suqBIz/yXbEURrmGS+avHxA==}
engines: {node: 10.* || >= 12}
- ember-page-title@8.2.3:
- resolution: {integrity: sha512-9XH4EVPCpSCyXRsLPzdDydU4HgQnaVeJJTrRF0WVh5bZERI9DgxuHv1NPmZU28todHRH91KcBc5nx8kIVJmqUw==}
+ ember-page-title@9.0.3:
+ resolution: {integrity: sha512-fedRHUsvq8tIZgOii8jTrfAyeq+la/9H5eAzhNNwEyzo7nDMmqK2SxsyBUGXprd8fOacsPabLlzlucMi/4mUpA==}
engines: {node: 16.* || >= 18}
- peerDependencies:
- ember-source: '>= 3.28.0'
- ember-qunit@8.1.0:
- resolution: {integrity: sha512-55/xqvVQwhiNcnh/tCzWyvlYzrYqwDY0/cIPyDQbAxGKtkUt9jCfRUGllfyOofC6LX0fL/0fIi+5e9sg1m6vXw==}
+ ember-qunit@9.1.0:
+ resolution: {integrity: sha512-dE32lSODyv4em0ACBS8PDzrAIPKR75hhSpn/au0qFBlzbdmNA/VVsgv2aoFAVRdlQ0zYJ8EiNPFqsBFciIeXVA==}
peerDependencies:
'@ember/test-helpers': '>=3.0.3'
- ember-source: '>=4.0.0'
qunit: ^2.13.0
- ember-resolver@11.0.1:
- resolution: {integrity: sha512-ucBk3oM+PR+AfYoSUXeQh8cDQS1sSiEKp4Pcgbew5cFMSqPxJfqd1zyZsfQKNTuyubeGmWxBOyMVSTvX2LeCyg==}
- engines: {node: 14.* || 16.* || >= 18}
- peerDependencies:
- ember-source: ^4.8.3 || >= 5.0.0
- peerDependenciesMeta:
- ember-source:
- optional: true
+ ember-resolver@13.2.0:
+ resolution: {integrity: sha512-A+BffoSKC0ngiczbgaz/IOY66ovZVRRHHIDDi+d7so5i0By8xuB4nXgZZ6Dv3u/3WwoUyixgUvb0xTUO+MtupA==}
- ember-rfc176-data@0.3.17:
- resolution: {integrity: sha512-EVzTTKqxv9FZbEh6Ktw56YyWRAA0MijKvl7H8C06wVF+8f/cRRz3dXxa4nkwjzyVwx4rzKGuIGq77hxJAQhWWw==}
+ ember-rfc176-data@0.3.18:
+ resolution: {integrity: sha512-JtuLoYGSjay1W3MQAxt3eINWXNYYQliK90tLwtb8aeCuQK8zKGCRbBodVIrkcTqshULMnRuTOS6t1P7oQk3g6Q==}
ember-router-generator@2.0.0:
resolution: {integrity: sha512-89oVHVJwmLDvGvAUWgS87KpBoRhy3aZ6U0Ql6HOmU4TrPkyaa8pM0W81wj9cIwjYprcQtN9EwzZMHnq46+oUyw==}
engines: {node: 8.* || 10.* || >= 12}
- ember-source@5.10.1:
- resolution: {integrity: sha512-0VQNmCNrq7to+ZcnKIct14TjqEKS4/uUQINUnO8E3k1+nMI9Z3pNVE5SepvyEJVML50Foci5clIEpDKiC/HtjQ==}
- engines: {node: '>= 16.*'}
+ ember-source@6.8.4:
+ resolution: {integrity: sha512-5o+mvlS3jlS+NdHvOCC/IPk2ks/wl77cQxN7QVs5XWvIQwvdL03ue2ykernbT72nuqmE59KyW5XweJDUpdQ+/w==}
+ engines: {node: '>= 18.*'}
peerDependencies:
- '@glimmer/component': ^1.1.2
+ '@glimmer/component': '>= 1.1.2'
ember-styleguide@11.0.3:
resolution: {integrity: sha512-9MViYqciH0l2zl3SCPnUnu+jQHVgOWo6xLefc1cuy8MYS2BsxQ5p3/8+e1kRGcKZLhLRkw7D2VgGf3GvU45axQ==}
@@ -2929,9 +3299,9 @@ packages:
resolution: {integrity: sha512-OS8TUVG2kQYYwP3netunLVfeijPoOKIs1SvPQRTNOQX4Pu8xGGBEZmrv0U1YTnQn12Eg+p6w/0UdGbUnITjyzw==}
engines: {node: 12.* || >= 14}
- ember-template-lint@5.13.0:
- resolution: {integrity: sha512-AYxz9S9fVZfHPmTsymc7NwsD7FVmDUZyfC+KYpxDlK0wic7JSQx2FNQNqQSBFRLOuzn7VQ0/+1pX6DGqKDGswg==}
- engines: {node: ^14.18.0 || ^16.0.0 || >= 18.0.0}
+ 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.5:
@@ -2955,6 +3325,9 @@ packages:
resolution: {integrity: sha512-hPKG9QqruAELh0li5xaiLZtr88ioWYxWCXisAWHWE0qCP4a2hgtuMzKUPpiTCkltvKjuqpzTZCU4VhQ+IlRmew==}
engines: {node: 10.* || >= 12.*}
+ ember-truth-helpers@5.0.0:
+ resolution: {integrity: sha512-PnQd6D6hvlNC3k6gBu0SC2cvfXX6wH6W0nToomIIoxqyrD5cllk0zBh/j/1H0KsczVCWeuF9PWj5xJgL4jQAGg==}
+
emoji-regex@7.0.3:
resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==}
@@ -2969,6 +3342,10 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ 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==}
@@ -2976,12 +3353,12 @@ packages:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
engines: {node: '>=10.0.0'}
- engine.io@6.5.5:
- resolution: {integrity: sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==}
+ engine.io@6.6.9:
+ resolution: {integrity: sha512-clKkw4C7nJ22mGgoVcCg6V/W/TxdNyIOTr89k2ONZu81qqkddPFDF0LXcbAwhzPD8DjkiRCjzuiO6Y+fkpD4vg==}
engines: {node: '>=10.2.0'}
- enhanced-resolve@5.17.0:
- resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
+ enhanced-resolve@5.24.0:
+ resolution: {integrity: sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ==}
engines: {node: '>=10.13.0'}
ensure-posix-path@1.1.1:
@@ -2990,10 +3367,18 @@ packages:
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- entities@3.0.1:
- resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
+ entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
+
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
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'}
@@ -3004,23 +3389,31 @@ packages:
error@7.2.1:
resolution: {integrity: sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==}
- errorhandler@1.5.1:
- resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
- engines: {node: '>= 0.8'}
-
es-abstract@1.19.1:
resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.5.4:
- resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ 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-module-lexer@2.1.0:
+ resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==}
+
+ es-object-atoms@1.1.2:
+ resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==}
+ engines: {node: '>= 0.4'}
es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
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-html@1.0.3:
@@ -3045,8 +3438,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-config-prettier@9.1.0:
- resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
+ eslint-config-prettier@9.1.2:
+ resolution: {integrity: sha512-iI1f+D2ViGn+uvv5HuHVUamg8ll4tN+JRHGc6IJi4TP9Kl976C57fzPXgseXNs8v0iA8aSJpHsTWjDb9QJamGQ==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
@@ -3054,11 +3447,15 @@ packages:
eslint-formatter-kakoune@1.0.0:
resolution: {integrity: sha512-Uk/TVLt6Nf6Xoz7C1iYuZjOSdJxe5aaauGRke8JhKeJwD66Y61/pY2FjtLP04Ooq9PwV34bzrkKkU2UZ5FtDRA==}
- eslint-plugin-ember@11.12.0:
- resolution: {integrity: sha512-7Ow1ky5JnRR0k3cxuvgYi4AWTe9DzGjlLgOJbU5VABLgr7Q0iq3ioC+YwAP79nV48cpw2HOgMgkZ1MynuIg59g==}
- engines: {node: 14.* || 16.* || >= 18}
+ eslint-plugin-ember@13.4.0:
+ resolution: {integrity: sha512-D7fDHqTEFPMw8bnvMLGmLsLqenUj0/cCKrg7/WTB4dv+MaSS6JjR4TYycOE9n5jKbIgOlmXA2zMUDya7sVkl0Q==}
+ engines: {node: '>= 20.19'}
peerDependencies:
- eslint: '>= 7'
+ '@typescript-eslint/parser': '*'
+ eslint: '>= 8.40.0'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
eslint-plugin-es-x@7.8.0:
resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
@@ -3066,37 +3463,29 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-n@16.6.2:
- resolution: {integrity: sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- eslint: '>=7.0.0'
-
- eslint-plugin-prettier@5.2.1:
- resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ eslint-plugin-n@17.24.0:
+ resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@types/eslint': '>=8.0.0'
- eslint: '>=8.0.0'
- eslint-config-prettier: '*'
- prettier: '>=3.0.0'
- peerDependenciesMeta:
- '@types/eslint':
- optional: true
- eslint-config-prettier:
- optional: true
+ eslint: '>=8.23.0'
- eslint-plugin-qunit@8.1.1:
- resolution: {integrity: sha512-j3xhiAf2Wvr8Dfwl5T6tlJ+F55vqYE9ZdAHUOTzq1lGerYrXzOS46RvK4SSWug2D8sl3ZYr2lA4/hgVXgLloxw==}
+ eslint-plugin-qunit@8.2.6:
+ resolution: {integrity: sha512-S1jC/DIW9J8VtNX4uG1vlf5FZVrfQFlcuiYmvTHR2IICUhubHqpWA5o+qS1tujh+81Gs39omKV2D4OXfbSJE5g==}
engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ eslint: '>=8.38.0'
eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- 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.4.0:
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint-scope@9.1.2:
+ resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
eslint-utils@3.0.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
@@ -3112,19 +3501,27 @@ packages:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint@8.57.0:
- resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@9.39.4:
+ resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==}
+ 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@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ espree@10.4.0:
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@3.0.0:
resolution: {integrity: sha512-xoBq/MIShSydNZOkjkoCEjqod963yHNXTLC40ypBhop6yPqflPz/vTinmCfSrGcywVLnSftRf6a0kJLdFdzemw==}
@@ -3152,8 +3549,8 @@ 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==}
@@ -3166,8 +3563,9 @@ packages:
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- events-to-array@1.1.2:
- resolution: {integrity: sha512-inRWzRY7nG+aXZxBzEqYKB3HPgwflZRopAjDCHv0whhRx+MTUr1ei0ICZUypdyE0HRm4L2d5VEcIqLD6yl+BFA==}
+ events-to-array@2.0.3:
+ resolution: {integrity: sha512-f/qE2gImHRa4Cp2y1stEOSgw8wTFyUdVJX7G//bMwbaV9JqISFxg99NbmVQeP7YLnDUZ2un851jlaDrlpmGehQ==}
+ engines: {node: '>=12'}
events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
@@ -3196,6 +3594,10 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
+ execa@9.6.1:
+ resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==}
+ engines: {node: ^18.19.0 || >=20.5.0}
+
exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
@@ -3208,10 +3610,14 @@ packages:
resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
engines: {node: '>=0.10.0'}
- express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ express@4.22.2:
+ resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==}
engines: {node: '>= 0.10.0'}
+ express@5.2.1:
+ resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
+ engines: {node: '>= 18'}
+
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -3235,11 +3641,8 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-diff@1.2.0:
- resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
-
- 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:
@@ -3251,8 +3654,8 @@ packages:
fast-ordered-set@1.0.3:
resolution: {integrity: sha512-MxBW4URybFszOx1YlACEoK52P6lE3xiFcPaGCUZ7QQOZ6uJXKo++Se8wa31SjcZ+NC/fdAWX7UtKEfaGgHS2Vg==}
- fast-sourcemap-concat@2.1.0:
- resolution: {integrity: sha512-L9uADEnnHOeF4U5Kc3gzEs3oFpNCFkiTJXvT+nKmR0zcFqHZJJbszWT7dv4t9558FJRGpCj8UxUpTgz2zwiIZA==}
+ fast-sourcemap-concat@2.1.1:
+ resolution: {integrity: sha512-7h9/x25c6AQwdU3mA8MZDUMR3UCy50f237egBrBkuwjnUZSmfu4ptCf91PZSKzON2Uh5VvIHozYKWcPPgcjxIw==}
engines: {node: 10.* || >= 12.*}
fast-uri@3.0.1:
@@ -3272,6 +3675,15 @@ packages:
fb-watchman@2.0.1:
resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
figures@2.0.0:
resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
engines: {node: '>=4'}
@@ -3280,13 +3692,16 @@ 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}
+ figures@6.1.0:
+ resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
+ engines: {node: '>=18'}
+
+ file-entry-cache@11.1.3:
+ resolution: {integrity: sha512-oMbq0PD6VIiIwMF6LIa7MEwd/l9huKwmqRKXqmrkqIZv8CvRbfowL+L0ryAl8h//HfAS0zS+4SbYoRyAoA6BJA==}
- file-entry-cache@7.0.2:
- resolution: {integrity: sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==}
- engines: {node: '>=12.0.0'}
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
filesize@10.1.4:
resolution: {integrity: sha512-ryBwPIIeErmxgPnm6cbESAzXjuEFubs+yKYLBZvg3CaiNcmkJChoOGcBSrZ6IwkMwPABwPpVXE6IlNdGJJrvEg==}
@@ -3304,10 +3719,14 @@ packages:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.2:
+ resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
engines: {node: '>= 0.8'}
+ finalhandler@2.1.1:
+ resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
+ engines: {node: '>= 18.0.0'}
+
find-babel-config@1.2.2:
resolution: {integrity: sha512-oK59njMyw2y3yxto1BCfVK7MQp/OYf4FleHu0RgosH3riFJ1aOuo/7naLDLAObfrgn3ueFhw5sAT/cp0QuJI3Q==}
engines: {node: '>=4.0.0'}
@@ -3338,12 +3757,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==}
@@ -3352,8 +3768,9 @@ packages:
resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==}
engines: {node: '>= 8'}
- fireworm@0.7.2:
- resolution: {integrity: sha512-GjebTzq+NKKhfmDxjKq3RXwQcN9xRmZWhnnuC9L+/x5wBQtR0aaQM50HsjrzJ2wc28v1vSdfOpELok0TKR4ddg==}
+ findup-sync@5.0.0:
+ resolution: {integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==}
+ engines: {node: '>= 10.13.0'}
fixturify-project@1.10.0:
resolution: {integrity: sha512-L1k9uiBQuN0Yr8tA9Noy2VSQ0dfg0B8qMdvT7Wb5WQKc7f3dn3bzCbSrqlb+etLW+KDV4cBC7R1OvcMg3kcxmA==}
@@ -3370,12 +3787,15 @@ 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'}
+
+ flat-cache@6.1.22:
+ resolution: {integrity: sha512-N2dnzVJIphnNsjHcrxGW7DePckJ6haPrSFqpsBUhHYgwtKGVq4JrBGielEGD2fCVnsGm1zlBVZ8wGhkyuetgug==}
- flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flatted@3.4.2:
+ resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
flatten@1.0.3:
resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
@@ -3410,6 +3830,10 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
+ fresh@2.0.0:
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
+ engines: {node: '>= 0.8'}
+
fs-extra@0.24.0:
resolution: {integrity: sha512-w1RvhdLZdU9V3vQdL+RooGlo6b9R9WVoBanOfoJvosWlqSKvrjFlci2oVhwvLwZXBtM7khyPvZ8r3fwsim3o0A==}
@@ -3417,8 +3841,8 @@ packages:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
- fs-extra@11.2.0:
- resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ fs-extra@11.3.5:
+ resolution: {integrity: sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==}
engines: {node: '>=14.14'}
fs-extra@4.0.3:
@@ -3456,17 +3880,21 @@ packages:
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- fuse.js@6.5.3:
- resolution: {integrity: sha512-sA5etGE7yD/pOqivZRBvUBd/NaL2sjAu6QuSaFoe1H2BrJSkH/T/UXAJ8CdXdw7DvY3Hs8CXKYkDWX7RiP5KOg==}
+ fuse.js@7.1.0:
+ resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
engines: {node: '>=10'}
- gauge@4.0.4:
- resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
+ fuse.js@7.4.2:
+ resolution: {integrity: sha512-LVbzjD4WA6UP5B1UnP8wuaXJiLnqMdM/E4fiJXTJ5haJ5b/MBNsK29h2fm6swEoQaVQjvYFWKLE2RanyZIoRVQ==}
+ engines: {node: '>=10'}
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
@@ -3476,8 +3904,13 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.1.1:
- resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
+
+ 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==}
@@ -3495,19 +3928,23 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
+ get-stream@9.0.1:
+ resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
+ engines: {node: '>=18'}
+
get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.7.6:
- resolution: {integrity: sha512-ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==}
+ get-tsconfig@4.14.0:
+ resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==}
get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
- git-hooks-list@1.0.3:
- resolution: {integrity: sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==}
+ git-hooks-list@3.2.0:
+ resolution: {integrity: sha512-ZHG9a1gEhUMX1TvGrLdyWb9kDopCBbTnI8z4JgRMYxsijWipgjSEYoPWqBuIB0DnRnvqlQSEeVmzpeuPm7NdFQ==}
git-repo-info@2.1.1:
resolution: {integrity: sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==}
@@ -3524,6 +3961,10 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
+
glob@5.0.15:
resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
@@ -3562,24 +4003,28 @@ packages:
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@15.15.0:
+ resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
+ engines: {node: '>=18'}
+
+ globals@16.5.0:
+ resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
+ engines: {node: '>=18'}
globalyzer@0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
- globby@10.0.0:
- resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==}
- 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.1.0:
+ resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
+ engines: {node: '>=18'}
globjoin@0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
@@ -3587,11 +4032,15 @@ packages:
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- graphemer@1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ grapheme-splitter@1.0.4:
+ resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
growly@1.3.0:
resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==}
@@ -3601,9 +4050,10 @@ packages:
engines: {node: '>=0.4.7'}
hasBin: true
- hard-rejection@2.1.0:
- resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
- engines: {node: '>=6'}
+ handlebars@4.7.9:
+ resolution: {integrity: sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==}
+ engines: {node: '>=0.4.7'}
+ hasBin: true
has-ansi@3.0.0:
resolution: {integrity: sha512-5JRDTvNq6mVkaMHQVXrGnaCXHD6JfqxwCy8LA/DQSqLLqePR9uaJVm2u3Ek/UziJFQz+d1ul99RtfIhE2aorkQ==}
@@ -3620,17 +4070,14 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-symbols@1.0.2:
- resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
- has-unicode@2.0.1:
- resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
-
has-value@0.3.1:
resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
engines: {node: '>=0.10.0'}
@@ -3654,16 +4101,24 @@ packages:
hash-for-dep@1.5.1:
resolution: {integrity: sha512-/dQ/A2cl7FBPI2pO0CANkvuuVi/IFS5oTyJ0PsOb6jW6WbVW1js5qJXMJTNbWHXBIPdFTWFbabjB+mE0d+gelw==}
+ hashery@1.5.1:
+ resolution: {integrity: sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==}
+ engines: {node: '>=20'}
+
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
+ hasown@2.0.4:
+ resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
+ engines: {node: '>= 0.4'}
+
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- heimdalljs-fs-monitor@1.1.1:
- resolution: {integrity: sha512-BHB8oOXLRlrIaON0MqJSEjGVPDyqt2Y6gu+w2PaEZjrCxeVtZG7etEZp7M4ZQ80HNvnr66KIQ2lot2qdeG8HgQ==}
+ heimdalljs-fs-monitor@1.1.2:
+ resolution: {integrity: sha512-M7OPf3Tu+ybhAXdiC07O1vUYFyhCgfew4L3vaG2nn4Be05xzNvtBcU6IKMTfHJ9AxWFa3w9rrmiJovkxHhpopw==}
heimdalljs-graph@1.0.0:
resolution: {integrity: sha512-v2AsTERBss0ukm/Qv4BmXrkwsT5x6M1V5Om6E8NcDQ/ruGkERsfsuLi5T8jx8qWzKMGYlwzAd7c/idymxRaPzA==}
@@ -3679,22 +4134,32 @@ packages:
resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
engines: {node: '>=0.10.0'}
- hosted-git-info@4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
- engines: {node: '>=10'}
+ hookified@1.15.1:
+ resolution: {integrity: sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==}
- 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}
+ hookified@2.2.0:
+ resolution: {integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==}
+
+ hosted-git-info@8.1.0:
+ resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
html-encoding-sniffer@2.0.1:
resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
engines: {node: '>=10'}
+ html-encoding-sniffer@4.0.0:
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
+
html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
engines: {node: '>=8'}
+ html-tags@5.1.0:
+ resolution: {integrity: sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ==}
+ engines: {node: '>=20.10'}
+
html2plaintext@2.1.4:
resolution: {integrity: sha512-kigGyxhh85E5SgKd3ilyKy9VTUgMTsEn3ex4cZcXBX47cACAWHgmOPbSVd05msM6RpOi5o+2nWrK5OhAQQWEsg==}
@@ -3705,8 +4170,8 @@ packages:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
- http-errors@2.0.0:
- resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ http-errors@2.0.1:
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
engines: {node: '>= 0.8'}
http-parser-js@0.5.5:
@@ -3716,6 +4181,10 @@ packages:
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'}
@@ -3724,6 +4193,10 @@ packages:
resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==}
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==}
@@ -3735,10 +4208,22 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
+ human-signals@8.0.1:
+ resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
+ engines: {node: '>=18.18.0'}
+
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
+ iconv-lite@0.6.3:
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
+
+ iconv-lite@0.7.2:
+ resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
+ engines: {node: '>=0.10.0'}
+
icss-utils@5.1.0:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
@@ -3748,17 +4233,20 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
+
+ ignore@7.0.5:
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-lazy@4.0.0:
- resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
- engines: {node: '>=8'}
+ import-meta-resolve@4.2.0:
+ resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -3767,10 +4255,6 @@ packages:
include-path-searcher@0.1.0:
resolution: {integrity: sha512-KlpXnsZOrBGo4PPKqPFi3Ft6dcRyh8fTaqgzqDRi8jKAsngJEWWOxeFIWC8EfZtXKaZqlsNf9XRwcQ49DVgl/g==}
- indent-string@5.0.0:
- resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
- engines: {node: '>=12'}
-
indexes-of@1.0.1:
resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
@@ -3781,8 +4265,8 @@ packages:
resolution: {integrity: sha512-wzkZHqpb4eGrOKBl34xy3umnYHx8Si5R1U4fwmdxLo5gdH6mEK8gclckTj/qWqy4Je0bsDYe/qazZYuO7xe3XQ==}
engines: {node: '>=14.0.0'}
- inflection@3.0.0:
- resolution: {integrity: sha512-1zEJU1l19SgJlmwqsEyFTbScw/tkMHFenUo//Y0i+XEP83gDFdMvPizAD/WGcE+l1ku12PcTVHQhO6g5E0UCMw==}
+ inflection@3.0.2:
+ resolution: {integrity: sha512-+Bg3+kg+J6JUWn8J6bzFmOWkTQ6L/NHfDRSYU+EVvuKHDxUDHAXgqixHfVlzuBQaPOTac8hn43aPhMNk6rMe3g==}
engines: {node: '>=18.0.0'}
inflight@1.0.6:
@@ -3849,10 +4333,6 @@ packages:
is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- is-builtin-module@3.2.1:
- resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
- engines: {node: '>=6'}
-
is-callable@1.2.4:
resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
engines: {node: '>= 0.4'}
@@ -3861,6 +4341,10 @@ packages:
resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==}
engines: {node: '>= 0.4'}
+ is-core-module@2.16.2:
+ resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
+ engines: {node: '>= 0.4'}
+
is-data-descriptor@0.1.4:
resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
engines: {node: '>=0.10.0'}
@@ -3943,17 +4427,9 @@ 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@1.1.0:
- resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
- engines: {node: '>=0.10.0'}
-
- is-plain-obj@2.1.0:
- resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
- engines: {node: '>=8'}
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
@@ -3966,8 +4442,8 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- is-reference@1.2.1:
- resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+ is-promise@4.0.0:
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
@@ -3984,17 +4460,22 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
+ is-stream@4.0.1:
+ resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
+ engines: {node: '>=18'}
+
is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
+ is-subdir@1.2.0:
+ resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
+ engines: {node: '>=4'}
+
is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
- is-type@0.0.1:
- resolution: {integrity: sha512-YwJh/zBVrcJ90aAnPBM0CbHvm7lG9ao7lIFeqTZ1UQj4iFLpM5CikdaU+dGGesrMJwxLqPGmjjrUrQ6Kn3Zh+w==}
-
is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
@@ -4002,6 +4483,10 @@ packages:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
+
is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
@@ -4019,8 +4504,8 @@ packages:
isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- isbinaryfile@5.0.2:
- resolution: {integrity: sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==}
+ isbinaryfile@5.0.7:
+ resolution: {integrity: sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==}
engines: {node: '>= 18.0.0'}
isexe@2.0.0:
@@ -4061,6 +4546,10 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
+ js-yaml@4.2.0:
+ resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
+ hasBin: true
+
jsdom@17.0.0:
resolution: {integrity: sha512-MUq4XdqwtNurZDVeKScENMPHnkgmdIvMzZ1r1NSwHkDuaqI6BouPjr+17COo4/19oLNnmdpFDPOHVpgIZmZ+VA==}
engines: {node: '>=12'}
@@ -4070,17 +4559,31 @@ packages:
canvas:
optional: true
- jsesc@0.3.0:
- resolution: {integrity: sha512-UHQmAeTXV+iwEk0aHheJRqo6Or90eDxI6KIYpHSjKLXKuKlPt1CQ7tGBerFcFA8uKU5mYxiPMlckmFptd5XZzA==}
- hasBin: true
+ jsdom@25.0.1:
+ resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^2.11.2
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
+ jsdom@26.1.0:
+ resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^3.0.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
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.1:
@@ -4101,6 +4604,10 @@ packages:
json-stable-stringify@1.0.1:
resolution: {integrity: sha512-i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg==}
+ json-to-ast@2.1.0:
+ resolution: {integrity: sha512-W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ==}
+ engines: {node: '>= 4'}
+
json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
@@ -4129,6 +4636,9 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ keyv@5.6.0:
+ resolution: {integrity: sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==}
+
kind-of@3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
@@ -4145,8 +4655,8 @@ packages:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- known-css-properties@0.29.0:
- resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==}
+ known-css-properties@0.37.0:
+ resolution: {integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==}
language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
@@ -4167,20 +4677,94 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ lightningcss-android-arm64@1.32.0:
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.32.0:
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.32.0:
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-freebsd-x64@1.32.0:
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-x64-musl@1.32.0:
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss@1.32.0:
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
+ engines: {node: '>= 12.0.0'}
+
line-column@1.0.2:
resolution: {integrity: sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==}
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- linkify-it@4.0.1:
- resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
+ linkify-it@5.0.1:
+ resolution: {integrity: sha512-wVoTjP4Q6R0NW5hiZkVJaFZPWgtXfoGF+6LucL3/FtiNjmcHhYjEr5f1Kqjirc1nBW07J/ZuRFumqr2oqccEWg==}
livereload-js@3.3.2:
resolution: {integrity: sha512-w677WnINxFkuixAoUEXOStewzLYGI76XVag+0JWMMEyjJQKs0ibWZMxkTlB96Lm3EjZ7IeOxVziBEbtxVQqQZA==}
- loader-runner@4.2.0:
- resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
+ loader-runner@4.3.2:
+ resolution: {integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==}
engines: {node: '>=6.11.5'}
loader-utils@1.4.2:
@@ -4191,12 +4775,6 @@ packages:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
- 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'}
@@ -4217,52 +4795,19 @@ packages:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lodash._baseflatten@3.1.4:
- resolution: {integrity: sha512-fESngZd+X4k+GbTxdMutf8ohQa0s3sJEHIcwtu4/LsIQ2JTDzdRxDCMQjW+ezzwRitLmHnacVVmosCbxifefbw==}
-
- lodash._getnative@3.9.1:
- resolution: {integrity: sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==}
-
- lodash._isiterateecall@3.0.9:
- resolution: {integrity: sha512-De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ==}
-
- lodash._reinterpolate@3.0.0:
- resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
-
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==}
-
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- lodash.defaultsdeep@4.6.1:
- resolution: {integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==}
-
- 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.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
- lodash.isarguments@3.1.0:
- resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
-
- lodash.isarray@3.0.4:
- resolution: {integrity: sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==}
-
lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
- 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==}
@@ -4270,13 +4815,6 @@ packages:
resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==}
deprecated: This package is deprecated. Use destructuring assignment syntax instead.
- lodash.template@4.5.0:
- resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
- deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead.
-
- lodash.templatesettings@4.2.0:
- resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
-
lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
@@ -4286,6 +4824,9 @@ packages:
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+ lodash@4.18.1:
+ resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
+
log-symbols@2.2.0:
resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
engines: {node: '>=4'}
@@ -4300,26 +4841,16 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+ lru-cache@11.5.1:
+ resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==}
+ engines: {node: 20 || >=22}
+
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'}
-
- magic-string@0.24.1:
- resolution: {integrity: sha512-YBfNxbJiixMzxW40XqJEIldzHyh5f7CZKalo1uZffevyrPEX8Qgo9s0dmcORLHdV47UyvJg8/zD+6hQG3qvJrA==}
-
magic-string@0.25.7:
resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==}
- magic-string@0.30.10:
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
-
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -4335,14 +4866,6 @@ packages:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
- map-obj@1.0.1:
- resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
- engines: {node: '>=0.10.0'}
-
- map-obj@4.3.0:
- resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
- engines: {node: '>=8'}
-
map-visit@1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
@@ -4352,8 +4875,8 @@ packages:
peerDependencies:
markdown-it: '>= 13.0.0'
- markdown-it@13.0.2:
- resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==}
+ markdown-it@14.2.0:
+ resolution: {integrity: sha512-1TGiQiJVRQ3NPmZH6sx5Cfnmg6GQm9jvC1ch4TK511NjSJvjzKLzn5pPfZRNZkRPZP0HqCioSndqH8v2nRaWVQ==}
hasBin: true
matcher-collection@1.1.2:
@@ -4363,32 +4886,51 @@ packages:
resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==}
engines: {node: 6.* || 8.* || >= 10.*}
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
mathml-tag-names@2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
- mdn-data@2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+ mathml-tag-names@4.0.0:
+ resolution: {integrity: sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==}
- mdurl@1.0.1:
- resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
+ mdn-data@2.27.1:
+ resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
+
+ mdurl@2.0.0:
+ resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
+ media-typer@1.1.0:
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
+ engines: {node: '>= 0.8'}
+
mem@5.1.1:
resolution: {integrity: sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==}
engines: {node: '>=8'}
+ mem@8.1.1:
+ resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==}
+ engines: {node: '>=10'}
+
memory-streams@0.1.3:
resolution: {integrity: sha512-qVQ/CjkMyMInPaaRMrwWNDvf6boRZXaT/DbQeMYcCWuXPEBf1v8qChOc9OlEVQp2uOvRXa1Qu30fLmKhY6NipA==}
- meow@10.1.5:
- resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ meow@13.2.0:
+ resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
+ engines: {node: '>=18'}
+
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@2.0.0:
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
+ engines: {node: '>=18'}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -4411,18 +4953,26 @@ packages:
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'}
- mime-db@1.51.0:
- resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==}
+ mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+
+ mime-db@1.54.0:
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
engines: {node: '>= 0.6'}
- mime-types@2.1.34:
- resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==}
+ mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ mime-types@3.0.2:
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
+ engines: {node: '>=18'}
+
mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
@@ -4436,9 +4986,9 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- min-indent@1.0.1:
- resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
- engines: {node: '>=4'}
+ mimic-fn@3.1.0:
+ resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==}
+ engines: {node: '>=8'}
mini-css-extract-plugin@2.9.0:
resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
@@ -4446,8 +4996,12 @@ packages:
peerDependencies:
webpack: ^5.0.0
- minimatch@3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ minimatch@10.2.5:
+ resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
+ engines: {node: 18 || 20 || >=22}
+
+ minimatch@3.1.5:
+ resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
minimatch@5.1.6:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
@@ -4461,22 +5015,15 @@ packages:
resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
engines: {node: '>=16 || 14 >=14.17'}
- minimist-options@4.1.0:
- resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
- engines: {node: '>= 6'}
-
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass@2.9.0:
- resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==}
-
minipass@4.2.8:
resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
engines: {node: '>=8'}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
engines: {node: '>=16 || 14 >=14.17'}
mixin-deep@1.3.2:
@@ -4528,8 +5075,8 @@ packages:
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.12:
+ resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -4544,6 +5091,14 @@ 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'}
+
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -4553,26 +5108,12 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-fetch@2.6.7:
- resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
-
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- 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.18:
- resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+ node-releases@2.0.47:
+ resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==}
+ engines: {node: '>=18'}
node-watch@0.7.3:
resolution: {integrity: sha512-3l4E8uMPY1HdMMryPRUAl+oIHtXtyiTlIiESNSVSNxcPfzAFzeTbXFQkZfAwBbo0B1qMSG8nUABx+Gd+YrbKrQ==}
@@ -4582,10 +5123,6 @@ packages:
resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==}
hasBin: true
- normalize-package-data@3.0.3:
- resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
- engines: {node: '>=10'}
-
normalize-path@2.1.1:
resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
engines: {node: '>=0.10.0'}
@@ -4601,9 +5138,9 @@ packages:
normalize.css@8.0.1:
resolution: {integrity: sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==}
- 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-package-arg@12.0.2:
+ resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
@@ -4617,10 +5154,9 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npmlog@6.0.2:
- resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
+ npm-run-path@6.0.0:
+ resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
+ engines: {node: '>=18'}
nth-check@2.0.1:
resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
@@ -4631,6 +5167,9 @@ packages:
nwsapi@2.2.0:
resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==}
+ nwsapi@2.2.24:
+ resolution: {integrity: sha512-7YRhZ3jS45LwmSCT4b2sVFHt/WuovaktDU07QrtOBY2PXskss5a9jfmR9jptyumwXST+rFjrmppMY1KT/yn35A==}
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -4643,8 +5182,9 @@ packages:
resolution: {integrity: sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==}
engines: {node: '>= 0.10.0'}
- object-inspect@1.12.0:
- resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+ engines: {node: '>= 0.4'}
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
@@ -4674,6 +5214,10 @@ packages:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
+ on-headers@1.1.0:
+ resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==}
+ engines: {node: '>= 0.8'}
+
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -4709,6 +5253,10 @@ packages:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
+ oxc-parser@0.130.0:
+ resolution: {integrity: sha512-X0PJ+NmOok8qP3vK9uaW431ngkdM9UPEK7KG466urtIL2+EYTEgbZK2yqe2MWKJKBjRlFweP/pJPx0x9muMEVw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
p-defer@1.0.0:
resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==}
engines: {node: '>=4'}
@@ -4773,6 +5321,9 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -4781,9 +5332,9 @@ packages:
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-ms@4.0.0:
+ resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
+ engines: {node: '>=18'}
parse-passwd@1.0.0:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
@@ -4798,6 +5349,9 @@ packages:
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -4830,6 +5384,10 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
+ path-key@4.0.0:
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
+
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
@@ -4848,23 +5406,38 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-scurry@2.0.2:
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
+
+ path-to-regexp@0.1.13:
+ resolution: {integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==}
+
+ path-to-regexp@8.4.2:
+ resolution: {integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
+ path-type@6.0.0:
+ resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
+ engines: {node: '>=18'}
+
picocolors@0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- 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'}
+ picomatch@4.0.4:
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
+ engines: {node: '>=12'}
+
pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
@@ -4873,6 +5446,10 @@ packages:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
+ pkg-entry-points@1.1.2:
+ resolution: {integrity: sha512-bmmM+SdLXNNetFr4o53QiiZRZicls2apmzj8HRpo4bU+3nJHiPO/omv8TXHIOzTcirua3YBAwTlKE+7zkICh4g==}
+ engines: {node: '>=20.19.5'}
+
pkg-up@2.0.0:
resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==}
engines: {node: '>=4'}
@@ -5027,14 +5604,14 @@ packages:
postcss-replace-overflow-wrap@3.0.0:
resolution: {integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==}
- postcss-resolve-nested-selector@0.1.4:
- resolution: {integrity: sha512-R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw==}
+ postcss-resolve-nested-selector@0.1.6:
+ resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
- postcss-safe-parser@6.0.0:
- resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
- engines: {node: '>=12.0'}
+ postcss-safe-parser@7.0.1:
+ resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
+ engines: {node: '>=18.0'}
peerDependencies:
- postcss: ^8.3.3
+ postcss: ^8.4.31
postcss-selector-matches@4.0.0:
resolution: {integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==}
@@ -5050,6 +5627,10 @@ packages:
resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==}
engines: {node: '>=4'}
+ postcss-selector-parser@7.1.4:
+ resolution: {integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==}
+ engines: {node: '>=4'}
+
postcss-value-parser@3.3.1:
resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
@@ -5064,8 +5645,8 @@ packages:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
- postcss@8.4.40:
- resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
+ postcss@8.5.15:
+ resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
engines: {node: ^10 || ^12 || >=14}
prelude-ls@1.1.2:
@@ -5076,23 +5657,25 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- 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.1.6:
+ resolution: {integrity: sha512-Y0/Id2dxccxM9pRaBXLT7sc89mc6B0UVX7Lh0SCEPb2WtQuksx4wJx98YATQKKiv5vInPmDLi9RGMipU6vAztQ==}
+ 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.3.3:
- resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
+ prettier@3.8.4:
+ resolution: {integrity: sha512-N2MylSdi48+5N/6S5j+maeHbUSIzzZ5uOcX5Hm4QpV8Dkb1HFjfAKTKX6yNPJQD9AhcT3ifHNB66tWTTJDi11Q==}
engines: {node: '>=14'}
hasBin: true
- pretty-ms@3.2.0:
- resolution: {integrity: sha512-ZypexbfVUGTFxb0v+m1bUyy92DHe5SyYlnyY0msyms5zd3RwyvNgyxZZsXXgoyzlxjx5MiqtXUdhUfvQbe0A2Q==}
- engines: {node: '>=4'}
+ pretty-ms@9.3.0:
+ resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==}
+ engines: {node: '>=18'}
printf@0.6.1:
resolution: {integrity: sha512-is0ctgGdPJ5951KulgfzvHGwJtZ5ck8l042vRkV6jrkpBzTmb/lueTqguWHy2JfVA+RY6gFVlaZgUS0j7S/dsw==}
@@ -5102,9 +5685,13 @@ 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}
+ proc-log@5.0.0:
+ resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ proc-log@6.1.0:
+ resolution: {integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
promise-map-series@0.2.3:
resolution: {integrity: sha512-wx9Chrutvqu1N/NHzTayZjE1BgIwt6SJykQoCOic4IZ9yUDjKyVYrpLa/4YCNsV61eRENfs29hrEquVuB13Zlw==}
@@ -5130,39 +5717,43 @@ packages:
pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ punycode.js@2.3.1:
+ resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
+ engines: {node: '>=6'}
+
punycode@2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+
+ qified@0.10.1:
+ resolution: {integrity: sha512-+Owyggi9IxT1ePKGafcI87ubSmxol6smwJ+RAHDQlx9+9cPwFWDiKFFCPuWhr9ignlGpZ9vDQLw67N4dcTVFEA==}
+ engines: {node: '>=20'}
+
+ qs@6.15.2:
+ resolution: {integrity: sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==}
engines: {node: '>=0.6'}
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- quick-lru@5.1.1:
- resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
- engines: {node: '>=10'}
-
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.5.1:
+ resolution: {integrity: sha512-ZnvTADVXASdjLxrUDuS/8NaOzadhxN+fZgafjuQV1EOMFd3dJqLkP0RqsGdAxQBxZ7KzKg57AAJO20dM6/PxkA==}
qunit-theme-ember@1.0.0:
resolution: {integrity: sha512-vdMVVo6ecdCkWttMTKeyq1ZTLGHcA6zdze2zhguNuc3ritlJMhOXY5RDseqazOwqZVfCg3rtlmL3fMUyIzUyFQ==}
- qunit@2.21.1:
- resolution: {integrity: sha512-SMA8IBZamI9MyVB4dShGpn6+X6plO8mIyfZTQ815XBvv/nVMeUj+yxsw8SgZVnrMlrAvTziJkmjOhaDwkNMHWQ==}
+ qunit@2.26.0:
+ resolution: {integrity: sha512-KSv16YomcYmiK90qTOJl3Bm5IvTf2upqQDdBQWCvSQWe94FWobnUgKOpvpvZdG7VkDt3TJSI8k8g9+GGGEd7Fw==}
engines: {node: '>=10'}
hasBin: true
- randombytes@2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -5172,21 +5763,17 @@ packages:
engines: {node: '>= 0.8.0'}
deprecated: No longer maintained. Please upgrade to a stable version.
- raw-body@2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ raw-body@2.5.3:
+ resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
engines: {node: '>= 0.8'}
+ raw-body@3.0.2:
+ resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
+ engines: {node: '>= 0.10'}
+
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
- read-pkg-up@8.0.0:
- resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==}
- engines: {node: '>=12'}
-
- read-pkg@6.0.0:
- resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==}
- engines: {node: '>=12'}
-
readable-stream@1.0.34:
resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==}
@@ -5194,6 +5781,10 @@ packages:
resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
engines: {node: '>= 6'}
+ readdirp@5.0.0:
+ resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
+ engines: {node: '>= 20.19.0'}
+
recast@0.18.10:
resolution: {integrity: sha512-XNvYvkfdAN9QewbrxeTOjgINkdY/odTgTS56ZNEWL9Ml0weT4T3sFtvnTuF+Gxyu46ANcRm1ntrF6F5LAJPAaQ==}
engines: {node: '>= 4'}
@@ -5202,10 +5793,6 @@ packages:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
- redent@4.0.0:
- resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==}
- engines: {node: '>=12'}
-
redeyed@1.0.1:
resolution: {integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ==}
@@ -5219,9 +5806,6 @@ packages:
regenerator-runtime@0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
@@ -5266,9 +5850,6 @@ packages:
require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
- 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'}
@@ -5320,6 +5901,15 @@ packages:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
+ resolve.exports@2.0.3:
+ resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
+ engines: {node: '>=10'}
+
+ resolve@1.22.12:
+ resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -5359,23 +5949,36 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rollup-pluginutils@2.8.2:
- resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
+ rimraf@6.1.3:
+ resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==}
+ engines: {node: 20 || >=22}
+ hasBin: true
- rollup@0.57.1:
- resolution: {integrity: sha512-I18GBqP0qJoJC1K1osYjreqA8VAKovxuI3I81RSk0Dmr4TgloI0tAULjZaox8OsJ+n7XRrhH6i0G2By/pj1LCA==}
+ rolldown@1.1.3:
+ resolution: {integrity: sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
route-recognizer@0.3.4:
resolution: {integrity: sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==}
- router_js@8.0.5:
- resolution: {integrity: sha512-0TpJIJoOpPVlX3JIGAQd/vivCXWkoi6wTAM7CkYo2cuASCQsK4qtJ9pvzYki7iZw44hO6nRN3z6paVTMiAPLdw==}
+ router@2.2.0:
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
+ engines: {node: '>= 18'}
+
+ 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==}
+
+ rrweb-cssom@0.8.0:
+ resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
+
rsvp@3.2.1:
resolution: {integrity: sha512-Rf4YVNYpKjZ6ASAmibcwTNciQ5Co5Ztq6iZPEykHpkoflnD/K5ryE/rHehFsTm4NJj8nKDhbi3eKBWGogmNnkg==}
@@ -5402,8 +6005,8 @@ packages:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ rxjs@7.8.2:
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -5439,6 +6042,10 @@ packages:
resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
engines: {node: '>=10'}
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+
schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
@@ -5447,9 +6054,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'}
+ schema-utils@4.3.3:
+ resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
+ engines: {node: '>= 10.13.0'}
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -5464,17 +6071,27 @@ packages:
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ semver@7.8.4:
+ resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ send@0.19.2:
+ resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
engines: {node: '>= 0.8.0'}
- serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ send@1.2.1:
+ resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
+ engines: {node: '>= 18'}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.3:
+ resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
engines: {node: '>= 0.8.0'}
+ serve-static@2.2.1:
+ resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
+ engines: {node: '>= 18'}
+
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
@@ -5504,8 +6121,9 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.1:
- resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ shell-quote@1.8.3:
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
+ engines: {node: '>= 0.4'}
shelljs@0.8.5:
resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
@@ -5519,8 +6137,21 @@ packages:
resolution: {integrity: sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==}
hasBin: true
- side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ side-channel-list@1.0.1:
+ resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==}
+ 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.1:
+ resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==}
+ engines: {node: '>= 0.4'}
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -5539,9 +6170,9 @@ packages:
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==}
@@ -5569,19 +6200,19 @@ packages:
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.3:
+ resolution: {integrity: sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A==}
engines: {node: '>=10.2.0'}
sort-object-keys@1.1.3:
resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
- sort-package-json@1.57.0:
- resolution: {integrity: sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==}
+ sort-package-json@2.15.1:
+ resolution: {integrity: sha512-9x9+o8krTT2saA9liI4BljNjwAbvUnWf11Wq+i/iZt8nl2UGYnf3TH5uBydE7VALmP7AGwlfszuEeL8BDyb0YA==}
hasBin: true
- 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:
@@ -5599,10 +6230,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'}
@@ -5619,28 +6246,9 @@ packages:
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==}
- spawn-command@0.0.2:
- resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
-
- spdx-correct@3.1.1:
- resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
-
- spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
-
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
-
- spdx-license-ids@3.0.11:
- resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==}
-
split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
@@ -5651,10 +6259,6 @@ packages:
sprintf-js@1.1.2:
resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==}
- sri-toolbox@0.2.0:
- resolution: {integrity: sha512-DQIMWCAr/M7phwo+d3bEfXwSBEwuaJL+SJx9cuqt1Ty7K96ZFoHpYnSbhrQZEr0+0/GtmpKECP8X/R4RyeTAfw==}
- engines: {node: '>= 0.10.4'}
-
stagehand@1.0.0:
resolution: {integrity: sha512-zrXl0QixAtSHFyN1iv04xOBgplbT4HgC8T7g+q8ESZbDNi5uZbMtxLukFVXPJ5Nl7zCYvYcrT3Mj24WYCH93hw==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -5670,8 +6274,8 @@ packages:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- statuses@2.0.1:
- resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ statuses@2.0.2:
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
engines: {node: '>= 0.8'}
string-template@0.2.1:
@@ -5728,9 +6332,9 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- strip-indent@4.0.0:
- resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
- engines: {node: '>=12'}
+ strip-final-newline@4.0.0:
+ resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
+ engines: {node: '>=18'}
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
@@ -5742,34 +6346,24 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- style-search@0.1.0:
- resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
-
styled_string@0.0.1:
resolution: {integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA==}
- stylelint-config-recommended@13.0.0:
- resolution: {integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==}
- engines: {node: ^14.13.1 || >=16.0.0}
- peerDependencies:
- stylelint: ^15.10.0
-
- stylelint-config-standard@34.0.0:
- resolution: {integrity: sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==}
- engines: {node: ^14.13.1 || >=16.0.0}
+ stylelint-config-recommended@14.0.1:
+ resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==}
+ engines: {node: '>=18.12.0'}
peerDependencies:
- stylelint: ^15.10.0
+ stylelint: ^16.1.0
- stylelint-prettier@4.1.0:
- resolution: {integrity: sha512-dd653q/d1IfvsSQshz1uAMe+XDm6hfM/7XiFH0htYY8Lse/s5ERTg7SURQehZPwVvm/rs7AsFhda9EQ2E9TS0g==}
- engines: {node: ^14.17.0 || >=16.0.0}
+ stylelint-config-standard@36.0.1:
+ resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==}
+ engines: {node: '>=18.12.0'}
peerDependencies:
- prettier: '>=3.0.0'
- stylelint: '>=15.8.0'
+ stylelint: ^16.1.0
- stylelint@15.11.0:
- resolution: {integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==}
- engines: {node: ^14.13.1 || >=16.0.0}
+ stylelint@16.26.1:
+ resolution: {integrity: sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw==}
+ engines: {node: '>=18.12.0'}
hasBin: true
supports-color@5.5.0:
@@ -5784,8 +6378,8 @@ packages:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
- supports-hyperlinks@3.0.0:
- resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==}
+ supports-hyperlinks@3.2.0:
+ resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==}
engines: {node: '>=14.18'}
supports-preserve-symlinks-flag@1.0.0:
@@ -5808,39 +6402,67 @@ packages:
resolution: {integrity: sha512-vngT2JmkSapgq0z7uIoYtB9kWOOzMihAAYq/D3Pjm/ODOGMgS4r++B+OZ09U4hWR6EaOdy9eqQ7/8ygbH3wehA==}
engines: {node: 8.* || >= 10.*}
- synckit@0.9.1:
- resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
- engines: {node: ^14.18.0 || >=16.0.0}
-
- 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==}
+ tap-parser@18.3.4:
+ resolution: {integrity: sha512-CiqzdpWn2CvONcWp7UNMF9/rCPJwCz0es+qykkgJruu1Y/rAS8A5MEQujmjx9NErfst3dGiZJU3lDS2jBsgbPA==}
+ engines: {node: 20 || >=22}
hasBin: true
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ tap-yaml@4.4.2:
+ resolution: {integrity: sha512-03mQI7QhfVZHJqGgFyxNTgUbgsG41ZzpWSb7k1Gangmf9hF71Jpb0Fczs7KtOdUDaHx+KxlPUdM2pQJaijebGA==}
+ engines: {node: 20 || >=22}
+
+ tapable@2.3.3:
+ resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
engines: {node: '>=6'}
temp@0.9.4:
resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==}
engines: {node: '>=6.0.0'}
- terser-webpack-plugin@5.3.10:
- resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
+ terser-webpack-plugin@5.6.1:
+ resolution: {integrity: sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
+ '@minify-html/node': '*'
'@swc/core': '*'
+ '@swc/css': '*'
+ '@swc/html': '*'
+ clean-css: '*'
+ cssnano: '*'
+ csso: '*'
esbuild: '*'
+ html-minifier-terser: '*'
+ lightningcss: '*'
+ postcss: '*'
uglify-js: '*'
webpack: ^5.1.0
peerDependenciesMeta:
+ '@minify-html/node':
+ optional: true
'@swc/core':
optional: true
+ '@swc/css':
+ optional: true
+ '@swc/html':
+ optional: true
+ clean-css:
+ optional: true
+ cssnano:
+ optional: true
+ csso:
+ optional: true
esbuild:
optional: true
+ html-minifier-terser:
+ optional: true
+ lightningcss:
+ optional: true
+ postcss:
+ optional: true
uglify-js:
optional: true
@@ -5849,14 +6471,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
- testem@3.15.1:
- resolution: {integrity: sha512-532OJy6VVsnDFEGZBdWVywvceNWdjdxJruC6qCDzLH586+eh1duWk5ju6QSRqQdP6gZB7zNiUJU9dSQdHPzFuA==}
- engines: {node: '>= 7.*'}
+ testem@3.20.1:
+ resolution: {integrity: sha512-HMbcVlrRDt+GjEGJZrPSCp0XFzM7SSdmLvNSJm++hIITEIMoccCQGikvelOO/NjfZJ0HTZCEyvg3+CIStjaZqQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
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'}
@@ -5867,16 +6486,23 @@ packages:
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- 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==}
tiny-lr@2.0.0:
resolution: {integrity: sha512-f6nh0VMRvhGx4KCeK1lQ/jaL0Zdb5WdR+Jk8q9OSUQnaSDxAEGH1fgqLZ+cMl5EW3F2MGnCsalBO1IsnnogW1Q==}
+ tinyglobby@0.2.17:
+ resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
+ engines: {node: '>=12.0.0'}
+
+ tldts-core@6.1.86:
+ resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
+
+ tldts@6.1.86:
+ resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
+ hasBin: true
+
tmp@0.0.28:
resolution: {integrity: sha512-c2mmfiBmND6SOVxzogm1oda0OJ1HZVIk/5n26N59dDTh80MUeavpiCls4PGAdkX1PFkKokLpcf7prSjCeXLsJg==}
engines: {node: '>=0.4.0'}
@@ -5893,13 +6519,13 @@ packages:
resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
engines: {node: '>=14.14'}
+ tmp@0.2.7:
+ resolution: {integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==}
+ engines: {node: '>=14.14'}
+
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- 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'}
@@ -5916,6 +6542,9 @@ packages:
resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
engines: {node: '>=0.10.0'}
+ toasted-notifier@10.1.0:
+ resolution: {integrity: sha512-SvAufC4t75lRqwQtComPeDC93j8Toy3BRsD1cMIZ+YdfxTnIyxQb+YCuhXohNFDGJPI+RgOYImkDX76fTo1YDA==}
+
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
@@ -5924,8 +6553,9 @@ packages:
resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==}
engines: {node: '>=6'}
- tr46@0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ tough-cookie@5.1.2:
+ resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
+ engines: {node: '>=16'}
tr46@2.1.0:
resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
@@ -5935,8 +6565,12 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
- tracked-built-ins@3.3.0:
- resolution: {integrity: sha512-ewKFrW/AQs05oLPM5isOUb/1aOwBRfHfmF408CCzTk21FLAhKrKVOP5Q5ebX+zCT4kvg81PGBGwrBiEGND1nWA==}
+ tr46@5.1.1:
+ resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
+ engines: {node: '>=18'}
+
+ tracked-built-ins@3.4.0:
+ resolution: {integrity: sha512-aRwWQXC3VkY50oYxS7wKZiavkjf3uaN+UYUH30D5gxUqbxDN2LnNsfWyDfckmxHUGw4gJDH5lpRS0jX/tim0vw==}
tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
@@ -5949,9 +6583,10 @@ packages:
resolution: {integrity: sha512-OLWW+Nd99NOM53aZ8ilT/YpEiOo6mXD3F4/wLbARqybSZ3Jb8IxHK5UGVbZaae0wtXAyQshVV+SeqVBik+Fbmw==}
engines: {node: '>=8'}
- trim-newlines@4.1.1:
- resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==}
- engines: {node: '>=12'}
+ ts-declaration-location@1.0.7:
+ resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
+ peerDependencies:
+ typescript: '>=4.0.0'
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
@@ -5971,30 +6606,35 @@ 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@1.4.0:
- resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
- engines: {node: '>=10'}
+ type-fest@4.41.0:
+ resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
+ engines: {node: '>=16'}
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
+ type-is@2.1.0:
+ resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==}
+ engines: {node: '>= 18'}
+
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
typescript-memoize@1.1.0:
resolution: {integrity: sha512-LQPKVXK8QrBBkL/zclE6YgSWn0I8ew5m0Lf+XL00IwMhlotqRLlzHV+BRrljVQIc+NohUAuQP7mg4HQwrx5Xbg==}
- uc.micro@1.0.6:
- resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
+ typescript@6.0.3:
+ resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ uc.micro@2.1.0:
+ resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
uglify-js@3.15.0:
resolution: {integrity: sha512-x+xdeDWq7FiORDvyIJ0q/waWd4PhjBNOm5dQUOq2AKC0IEjxOS66Ha9tctiVDGcRQuh69K7fgU5oRuTK4cysSg==}
@@ -6026,6 +6666,14 @@ packages:
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'}
+
+ unicorn-magic@0.3.0:
+ resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
+ engines: {node: '>=18'}
+
union-value@1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
@@ -6057,8 +6705,8 @@ packages:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -6084,32 +6732,63 @@ packages:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- uuid@8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
- hasBin: true
-
v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
- 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.2:
+ resolution: {integrity: sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==}
+ 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.0.0:
- resolution: {integrity: sha512-i2I3vl+9yk+gI0YCruDa29mzaNykLbSbUVVNQY/mBTLLYjQxVbklqBdTdH2iTpxV9AHH1u0dKlk/zl1sjHTfug==}
- engines: {node: '>= 12'}
-
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
+ vite@8.1.0:
+ resolution: {integrity: sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ '@vitejs/devtools': ^0.3.0
+ esbuild: ^0.27.0 || ^0.28.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
w3c-hr-time@1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
deprecated: Use your platform's native performance.now() and performance.timeOrigin.
@@ -6118,8 +6797,9 @@ packages:
resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==}
engines: {node: '>=10'}
- walk-sync@0.2.7:
- resolution: {integrity: sha512-OH8GdRMowEFr0XSHQeX5fGweO6zSVHo7bG/0yJQx6LAj9Oukz0C8heI3/FYectT66gY0IPGe89kOvU410/UNpg==}
+ w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
walk-sync@0.3.4:
resolution: {integrity: sha512-ttGcuHA/OBnN2pcM6johpYlEms7XpO5/fyKIr48541xXedan4roO8cS1Q2S/zbbjGH/BarYDAMeS2Mi9HE5Tig==}
@@ -6142,16 +6822,13 @@ packages:
resolution: {integrity: sha512-MrJK9z7kD5Gl3jHBnnBVHvr1saVGAfmkyyrvuNzV/oe0Gr1nwZTy5VSA0Gw2j2Or0Mu8HcjUa44qlBvC2Ofnpg==}
engines: {node: '>= 8'}
- watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ watchpack@2.5.2:
+ resolution: {integrity: sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==}
engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- webidl-conversions@3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
-
webidl-conversions@5.0.0:
resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
engines: {node: '>=8'}
@@ -6164,12 +6841,12 @@ packages:
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==}
+ webpack-sources@3.5.0:
+ resolution: {integrity: sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==}
engines: {node: '>=10.13.0'}
- webpack@5.93.0:
- resolution: {integrity: sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==}
+ webpack@5.107.2:
+ resolution: {integrity: sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -6190,8 +6867,10 @@ packages:
resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==}
deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
- whatwg-fetch@3.6.2:
- resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@2.3.0:
resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
@@ -6200,12 +6879,17 @@ packages:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
engines: {node: '>=12'}
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
whatwg-url@10.0.0:
resolution: {integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==}
engines: {node: '>=12'}
- whatwg-url@5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+ whatwg-url@14.2.0:
+ resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
+ engines: {node: '>=18'}
whatwg-url@9.1.0:
resolution: {integrity: sha512-CQ0UcrPHyomtlOCot1TL77WyMIm/bCwrJ2D6AOKGwEczU9EpyoqAokfqrf/MioU9kHcMsmJZcg1egXix2KYEsA==}
@@ -6226,9 +6910,6 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- wide-align@1.1.5:
- resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
@@ -6242,6 +6923,9 @@ packages:
workerpool@6.5.1:
resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
+ workerpool@9.3.4:
+ resolution: {integrity: sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==}
+
wrap-ansi@5.1.0:
resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==}
engines: {node: '>=6'}
@@ -6276,6 +6960,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.21.0:
+ resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
@@ -6283,6 +6979,10 @@ packages:
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==}
@@ -6296,9 +6996,6 @@ 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.*}
@@ -6307,13 +7004,20 @@ packages:
resolution: {integrity: sha512-ULGbghCLsN8Hs8vfExlqrJIe8Hl2TUjD7/zsIGMP8U+dgRXEsDXk4yydxeZJgdGiimP1XB7zhmhOB4/HyfqOyQ==}
hasBin: true
+ yaml-types@0.4.0:
+ resolution: {integrity: sha512-XfbA30NUg4/LWUiplMbiufUiwYhgB9jvBhTWel7XQqjV+GaB79c2tROu/8/Tu7jO0HvDvnKWtBk5ksWRrhQ/0g==}
+ engines: {node: '>= 16', npm: '>= 7'}
+ peerDependencies:
+ yaml: ^2.3.0
+
+ yaml@2.9.0:
+ resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
yargs-parser@15.0.3:
resolution: {integrity: sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==}
- 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'}
@@ -6337,63 +7041,78 @@ packages:
resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
engines: {node: '>=18'}
+ yoctocolors@2.1.2:
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
+ engines: {node: '>=18'}
+
snapshots:
- '@ampproject/remapping@2.3.0':
+ '@asamuzakjp/css-color@3.2.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ lru-cache: 10.4.3
- '@babel/code-frame@7.24.7':
+ '@babel/code-frame@7.29.7':
dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.0.1
+ '@babel/helper-validator-identifier': 7.29.7
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
'@babel/compat-data@7.24.9': {}
- '@babel/core@7.24.9':
+ '@babel/compat-data@7.29.7': {}
+
+ '@babel/core@7.29.7(supports-color@8.1.1)':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helpers': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.24.8(@babel/core@7.24.9)(eslint@8.57.0)':
+ '@babel/eslint-parser@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 8.57.0
+ eslint: 9.39.4
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.24.10':
+ '@babel/generator@7.29.7':
dependencies:
- '@babel/types': 7.24.9
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.29.7
+
+ '@babel/helper-annotate-as-pure@7.29.7':
+ dependencies:
+ '@babel/types': 7.29.7
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
@@ -6401,815 +7120,833 @@ snapshots:
dependencies:
'@babel/compat-data': 7.24.9
'@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ browserslist: 4.28.2
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.9)':
+ '@babel/helper-compilation-targets@7.29.7':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/compat-data': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ browserslist: 4.28.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-member-expression-to-functions': 7.29.7
+ '@babel/helper-optimise-call-expression': 7.29.7
+ '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-annotate-as-pure': 7.29.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.24.9)':
+ '@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.24.8
- debug: 4.3.5
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.12
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.9)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.5
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ debug: 4.4.3(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.12
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7(supports-color@8.1.1))':
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ debug: 4.4.3(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.12
transitivePeerDependencies:
- supports-color
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.29.7
'@babel/helper-function-name@7.24.7':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+
+ '@babel/helper-globals@7.29.7': {}
'@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.29.7
- '@babel/helper-member-expression-to-functions@7.24.8':
+ '@babel/helper-member-expression-to-functions@7.29.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.29.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
+ '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.24.7':
+ '@babel/helper-optimise-call-expression@7.29.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.29.7
- '@babel/helper-plugin-utils@7.24.8': {}
+ '@babel/helper-plugin-utils@7.29.7': {}
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-annotate-as-pure': 7.29.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-replace-supers@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-member-expression-to-functions': 7.29.7
+ '@babel/helper-optimise-call-expression': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ '@babel/helper-skip-transparent-expression-wrappers@7.29.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.29.7
- '@babel/helper-string-parser@7.24.8': {}
+ '@babel/helper-string-parser@7.29.7': {}
- '@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-validator-identifier@7.29.7': {}
'@babel/helper-validator-option@7.24.8': {}
+ '@babel/helper-validator-option@7.29.7': {}
+
'@babel/helper-wrap-function@7.24.7':
dependencies:
'@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.8':
+ '@babel/helpers@7.29.7':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
-
- '@babel/highlight@7.24.7':
- dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.0.1
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
- '@babel/parser@7.24.8':
+ '@babel/parser@7.29.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.29.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-methods@7.16.11(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-private-methods@7.16.11(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.9)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.9)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-classes@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/template': 7.29.7
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-literals@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-runtime@7.16.10(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
+ babel-plugin-polyfill-corejs3: 0.5.1(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.29.7(supports-color@8.1.1))
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-runtime@7.16.10(@babel/core@7.24.9)':
+ '@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.24.9)
- babel-plugin-polyfill-corejs3: 0.5.1(@babel/core@7.24.9)
- babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7(supports-color@8.1.1))
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.4.5(@babel/core@7.24.9)':
- dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
-
- '@babel/plugin-transform-typescript@7.5.5(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typescript@7.5.5(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.8.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typescript@7.8.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/polyfill@7.12.1':
dependencies:
core-js: 2.6.12
regenerator-runtime: 0.13.9
- '@babel/preset-env@7.24.8(@babel/core@7.24.9)':
- dependencies:
- '@babel/compat-data': 7.24.9
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.9)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.9)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.9)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.9)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.9)
+ '@babel/preset-env@7.24.8(@babel/core@7.29.7(supports-color@8.1.1))':
+ dependencies:
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.29.7(supports-color@8.1.1))
core-js-compat: 3.37.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.9)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/types': 7.29.7
esutils: 2.0.3
'@babel/regjsgen@0.8.0': {}
@@ -7218,68 +7955,92 @@ snapshots:
dependencies:
regenerator-runtime: 0.13.9
- '@babel/runtime@7.24.8':
- dependencies:
- regenerator-runtime: 0.14.1
+ '@babel/runtime@7.29.7': {}
- '@babel/template@7.24.7':
+ '@babel/template@7.29.7':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/code-frame': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
- '@babel/traverse@7.24.8':
+ '@babel/traverse@7.29.7(supports-color@8.1.1)':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
- debug: 4.3.5
- globals: 11.12.0
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-globals': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.9':
+ '@babel/types@7.29.7':
dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+
+ '@cacheable/memory@2.0.9':
+ dependencies:
+ '@cacheable/utils': 2.4.1
+ '@keyv/bigmap': 1.3.1(keyv@5.6.0)
+ hookified: 1.15.1
+ keyv: 5.6.0
+
+ '@cacheable/utils@2.4.1':
+ dependencies:
+ hashery: 1.5.1
+ keyv: 5.6.0
'@cnakazawa/watch@1.0.4':
dependencies:
exec-sh: 0.3.6
minimist: 1.2.8
+ '@csstools/color-helpers@5.1.0': {}
+
'@csstools/convert-colors@1.4.0': {}
- '@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1)':
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/color-helpers': 5.1.0
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-tokenizer': 2.4.1
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-syntax-patches-for-csstree@1.1.5(css-tree@3.2.1)':
+ optionalDependencies:
+ css-tree: 3.2.1
- '@csstools/css-tokenizer@2.4.1': {}
+ '@csstools/css-tokenizer@3.0.4': {}
- '@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)':
+ '@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1)
- '@csstools/css-tokenizer': 2.4.1
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.1)':
+ '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.4)':
dependencies:
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 7.1.4
- '@ember-data/adapter@5.3.8(@ember-data/legacy-compat@5.3.8(6e3174e136586a65a5f53d00488d8145))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)':
+ '@dual-bundle/import-meta-resolve@4.2.1': {}
+
+ '@ember-data/adapter@5.6.0':
dependencies:
- '@ember-data/legacy-compat': 5.3.8(6e3174e136586a65a5f53d00488d8145)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
'@ember/edition-utils': 1.2.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/legacy': 5.6.0(@warp-drive/core@5.6.0)(@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0))
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
ember-cli-path-utils: 1.0.0
ember-cli-string-utils: 1.1.0
ember-cli-test-info: 1.0.0
@@ -7287,109 +8048,87 @@ snapshots:
- '@glint/template'
- supports-color
- '@ember-data/debug@5.3.8(@ember-data/model@5.3.8(9fb5a65acffae2fc565eecbd74767f6b))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/debug@5.6.0(@ember-data/model@5.6.0)(@ember-data/request-utils@5.6.0)(@ember-data/store@5.6.0(@ember-data/tracking@5.6.0(@ember/test-waiters@3.1.0))(@ember/test-waiters@3.1.0))(@warp-drive/core-types@5.6.0)':
dependencies:
- '@ember-data/model': 5.3.8(9fb5a65acffae2fc565eecbd74767f6b)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
+ '@ember-data/model': 5.6.0
+ '@ember-data/request-utils': 5.6.0
+ '@ember-data/store': 5.6.0(@ember-data/tracking@5.6.0(@ember/test-waiters@3.1.0))(@ember/test-waiters@3.1.0)
'@ember/edition-utils': 1.2.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/core-types': 5.6.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/graph@5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/graph@5.6.0':
dependencies:
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/json-api@5.3.8(@ember-data/graph@5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/json-api@5.6.0':
dependencies:
- '@ember-data/graph': 5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/json-api': 5.6.0(@warp-drive/core@5.6.0)
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/legacy-compat@5.3.8(6e3174e136586a65a5f53d00488d8145)':
+ '@ember-data/legacy-compat@5.6.0':
dependencies:
- '@ember-data/request': 5.3.8(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember/test-waiters': 3.1.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
- optionalDependencies:
- '@ember-data/graph': 5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/json-api': 5.3.8(@ember-data/graph@5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/legacy': 5.6.0(@warp-drive/core@5.6.0)(@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0))
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/model@5.3.8(9fb5a65acffae2fc565eecbd74767f6b)':
+ '@ember-data/model@5.6.0':
dependencies:
- '@ember-data/legacy-compat': 5.3.8(6e3174e136586a65a5f53d00488d8145)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/tracking': 5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
'@ember/edition-utils': 1.2.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/legacy': 5.6.0(@warp-drive/core@5.6.0)(@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0))
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
ember-cli-string-utils: 1.1.0
ember-cli-test-info: 1.0.0
- inflection: 3.0.0
- optionalDependencies:
- '@ember-data/graph': 5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/json-api': 5.3.8(@ember-data/graph@5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
+ inflection: 3.0.2
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/request-utils@5.6.0':
dependencies:
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
- optionalDependencies:
- '@ember/string': 3.1.1
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/request@5.6.0':
dependencies:
- '@ember/test-waiters': 3.1.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
'@ember-data/rfc395-data@0.0.4': {}
- '@ember-data/serializer@5.3.8(@ember-data/legacy-compat@5.3.8(6e3174e136586a65a5f53d00488d8145))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/serializer@5.6.0':
dependencies:
- '@ember-data/legacy-compat': 5.3.8(6e3174e136586a65a5f53d00488d8145)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
'@ember/edition-utils': 1.2.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/legacy': 5.6.0(@warp-drive/core@5.6.0)(@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0))
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
ember-cli-path-utils: 1.0.0
ember-cli-string-utils: 1.1.0
ember-cli-test-info: 1.0.0
@@ -7397,31 +8136,72 @@ snapshots:
- '@glint/template'
- supports-color
- '@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)':
+ '@ember-data/store@5.6.0(@ember-data/tracking@5.6.0(@ember/test-waiters@3.1.0))(@ember/test-waiters@3.1.0)':
dependencies:
- '@ember-data/request': 5.3.8(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/tracking': 5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ optionalDependencies:
+ '@ember-data/tracking': 5.6.0(@ember/test-waiters@3.1.0)
+ '@ember/test-waiters': 3.1.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))':
+ '@ember-data/tracking@5.6.0(@ember/test-waiters@3.1.0)':
dependencies:
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
+ '@ember/test-waiters': 3.1.0
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
+ '@ember-tooling/blueprint-blueprint@0.2.1': {}
+
+ '@ember-tooling/blueprint-model@0.4.1':
+ dependencies:
+ chalk: 4.1.2
+ diff: 7.0.0
+ isbinaryfile: 5.0.7
+ lodash: 4.18.1
+ promise.hash.helper: 1.0.8
+ quick-temp: 0.1.8
+ silent-error: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@ember-tooling/classic-build-addon-blueprint@6.8.0':
+ dependencies:
+ '@ember-tooling/blueprint-model': 0.4.1
+ chalk: 4.1.2
+ ember-cli-normalize-entity-name: 1.0.0
+ ember-cli-string-utils: 1.1.0
+ fs-extra: 11.3.5
+ lodash: 4.18.1
+ silent-error: 1.1.1
+ sort-package-json: 2.15.1
+ walk-sync: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@ember-tooling/classic-build-app-blueprint@6.8.0':
+ dependencies:
+ '@ember-tooling/blueprint-model': 0.4.1
+ chalk: 4.1.2
+ ember-cli-string-utils: 1.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@ember/app-blueprint@6.8.3':
+ dependencies:
+ chalk: 4.1.2
+ ember-cli-string-utils: 1.1.0
+ lodash: 4.18.1
+ walk-sync: 3.0.0
+
'@ember/edition-utils@1.2.0': {}
- '@ember/optional-features@2.1.0':
+ '@ember/optional-features@2.3.0':
dependencies:
chalk: 4.1.2
ember-cli-version-checker: 5.1.2
@@ -7432,118 +8212,307 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@ember/render-modifiers@2.1.0(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))':
+ '@ember/render-modifiers@2.1.0(@babel/core@7.29.7(supports-color@8.1.1))(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5))':
dependencies:
- '@embroider/macros': 1.16.5
+ '@embroider/macros': 1.20.5
ember-cli-babel: 7.26.11
- ember-modifier-manager-polyfill: 1.2.0(@babel/core@7.24.9)
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
+ ember-modifier-manager-polyfill: 1.2.0(@babel/core@7.29.7(supports-color@8.1.1))
+ ember-source: 6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5)
transitivePeerDependencies:
- '@babel/core'
- supports-color
- '@ember/string@3.1.1':
- dependencies:
- ember-cli-babel: 7.26.11
- transitivePeerDependencies:
- - supports-color
+ '@ember/string@4.0.1': {}
- '@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0)':
+ '@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
'@ember/test-waiters': 3.1.0
- '@embroider/macros': 1.16.5
+ '@embroider/addon-shim': 1.10.3
'@simple-dom/interface': 1.4.0
- broccoli-debug: 0.6.5
- broccoli-funnel: 3.0.8
+ decorator-transforms: 2.3.2(@babel/core@7.29.7(supports-color@8.1.1))
dom-element-descriptors: 0.5.1
- ember-auto-import: 2.7.4(webpack@5.93.0)
- ember-cli-babel: 8.2.0(@babel/core@7.24.9)
- ember-cli-htmlbars: 6.3.0
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
transitivePeerDependencies:
- '@babel/core'
- - '@glint/template'
- supports-color
- - webpack
'@ember/test-waiters@3.1.0':
dependencies:
calculate-cache-key-for-tree: 2.0.0
ember-cli-babel: 7.26.11
ember-cli-version-checker: 5.1.2
- semver: 7.6.3
+ semver: 7.8.4
transitivePeerDependencies:
- supports-color
- '@embroider/addon-shim@1.8.9':
+ '@embroider/addon-shim@1.10.3':
dependencies:
- '@embroider/shared-internals': 2.6.2
+ '@embroider/shared-internals': 3.1.1
broccoli-funnel: 3.0.8
common-ancestor-path: 1.0.1
- semver: 7.6.3
+ semver: 7.8.4
transitivePeerDependencies:
- supports-color
- '@embroider/macros@1.16.5':
+ '@embroider/compat@4.1.21(@embroider/core@4.6.2(supports-color@8.1.1))(supports-color@8.1.1)':
dependencies:
- '@embroider/shared-internals': 2.6.2
+ '@babel/code-frame': 7.29.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-runtime': 7.16.10(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
+ '@babel/preset-env': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/runtime': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@embroider/core': 4.6.2(supports-color@8.1.1)
+ '@embroider/macros': 1.20.5
+ '@types/babel__code-frame': 7.27.0
assert-never: 1.3.0
- babel-import-util: 2.1.1
+ babel-import-util: 3.0.1
+ babel-plugin-debug-macros: 2.0.0(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-plugin-ember-template-compilation: 3.1.0
+ babel-plugin-ember-template-compilation-2: babel-plugin-ember-template-compilation@2.4.1
+ babel-plugin-syntax-dynamic-import: 6.18.0
+ babylon: 6.18.0
+ bind-decorator: 1.0.11
+ broccoli: 4.0.0(supports-color@8.1.1)
+ 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.4.3(supports-color@8.1.1)
+ fast-sourcemap-concat: 2.1.1
+ fs-extra: 9.1.0
+ fs-tree-diff: 2.0.1
+ jsdom: 26.1.0
+ lodash: 4.18.1
+ pkg-up: 3.1.0
+ resolve: 1.22.12
+ resolve-package-path: 4.0.3
+ resolve.exports: 2.0.3
+ semver: 7.8.4
+ symlink-or-copy: 1.3.1
+ tree-sync: 2.1.0
+ typescript-memoize: 1.1.0
+ walk-sync: 3.0.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+
+ '@embroider/config-meta-loader@1.0.0': {}
+
+ '@embroider/core@4.6.2(supports-color@8.1.1)':
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/parser': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ '@embroider/macros': 1.20.5
+ '@embroider/reverse-exports': 0.2.0
+ '@embroider/shared-internals': 3.1.1
+ assert-never: 1.3.0
+ babel-plugin-ember-template-compilation: 3.1.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.4.3(supports-color@8.1.1)
+ escape-string-regexp: 4.0.0
+ fast-sourcemap-concat: 2.1.1
+ fs-extra: 9.1.0
+ fs-tree-diff: 2.0.1
+ handlebars: 4.7.7
+ js-string-escape: 1.0.1
+ jsdom: 25.0.1
+ lodash: 4.18.1
+ resolve: 1.22.12
+ resolve-package-path: 4.0.3
+ resolve.exports: 2.0.3
+ semver: 7.8.4
+ typescript-memoize: 1.1.0
+ walk-sync: 3.0.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+
+ '@embroider/legacy-inspector-support@0.1.3':
+ dependencies:
+ '@embroider/addon-shim': 1.10.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@embroider/macros@1.20.5':
+ dependencies:
+ '@embroider/shared-internals': 3.1.1
+ assert-never: 1.3.0
+ babel-import-util: 3.0.1
ember-cli-babel: 7.26.11
find-up: 5.0.0
- lodash: 4.17.21
- resolve: 1.22.8
- semver: 7.6.3
+ lodash: 4.18.1
+ resolve: 1.22.12
+ semver: 7.8.4
transitivePeerDependencies:
- supports-color
+ '@embroider/reverse-exports@0.2.0':
+ dependencies:
+ mem: 8.1.1
+ resolve.exports: 2.0.3
+
'@embroider/shared-internals@2.6.2':
dependencies:
babel-import-util: 2.1.1
- debug: 4.3.5
- ember-rfc176-data: 0.3.17
+ debug: 4.4.3(supports-color@8.1.1)
+ ember-rfc176-data: 0.3.18
fs-extra: 9.1.0
js-string-escape: 1.0.1
- lodash: 4.17.21
- minimatch: 3.1.2
+ lodash: 4.18.1
+ minimatch: 3.1.5
resolve-package-path: 4.0.3
- semver: 7.6.3
+ semver: 7.8.4
+ typescript-memoize: 1.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@embroider/shared-internals@3.1.1':
+ dependencies:
+ babel-import-util: 3.0.1
+ debug: 4.4.3(supports-color@8.1.1)
+ ember-rfc176-data: 0.3.18
+ fs-extra: 9.1.0
+ is-subdir: 1.2.0
+ js-string-escape: 1.0.1
+ lodash: 4.18.1
+ minimatch: 3.1.5
+ pkg-entry-points: 1.1.2
+ resolve-package-path: 4.0.3
+ resolve.exports: 2.0.3
+ semver: 7.8.4
typescript-memoize: 1.1.0
transitivePeerDependencies:
- supports-color
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
+ '@embroider/vite@1.7.8(@embroider/core@4.6.2(supports-color@8.1.1))(supports-color@8.1.1)(vite@8.1.0(terser@5.31.3)(yaml@2.9.0))':
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@embroider/core': 4.6.2(supports-color@8.1.1)
+ '@embroider/macros': 1.20.5
+ '@embroider/reverse-exports': 0.2.0
+ assert-never: 1.3.0
+ browserslist: 4.28.2
+ browserslist-to-esbuild: 2.1.1(browserslist@4.28.2)
+ chalk: 5.6.2
+ content-tag: 4.2.0
+ debug: 4.4.3(supports-color@8.1.1)
+ fast-glob: 3.3.3
+ fs-extra: 10.1.0
+ jsdom: 25.0.1
+ send: 1.2.1(supports-color@8.1.1)
+ source-map-url: 0.4.1
+ terser: 5.31.3
+ vite: 8.1.0(terser@5.31.3)(yaml@2.9.0)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+
+ '@emnapi/core@1.10.0':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.1
+ tslib: 2.6.3
+ optional: true
+
+ '@emnapi/core@1.11.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.2
+ tslib: 2.6.3
+ optional: true
+
+ '@emnapi/runtime@1.10.0':
+ dependencies:
+ tslib: 2.6.3
+ optional: true
+
+ '@emnapi/runtime@1.11.1':
+ dependencies:
+ tslib: 2.6.3
+ optional: true
+
+ '@emnapi/wasi-threads@1.2.1':
+ dependencies:
+ tslib: 2.6.3
+ optional: true
+
+ '@emnapi/wasi-threads@1.2.2':
+ dependencies:
+ tslib: 2.6.3
+ optional: true
+
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4)':
dependencies:
- eslint: 8.57.0
+ eslint: 9.39.4
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.0': {}
+ '@eslint-community/regexpp@4.12.2': {}
- '@eslint/eslintrc@2.1.4':
+ '@eslint/config-array@0.21.2':
dependencies:
- ajv: 6.12.6
- debug: 4.3.5
- espree: 9.6.1
- globals: 13.24.0
- ignore: 5.3.1
+ '@eslint/object-schema': 2.1.7
+ debug: 4.4.3(supports-color@8.1.1)
+ minimatch: 3.1.5
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/config-helpers@0.4.2':
+ dependencies:
+ '@eslint/core': 0.17.0
+
+ '@eslint/core@0.17.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
+ '@eslint/eslintrc@3.3.5':
+ dependencies:
+ ajv: 6.15.0
+ debug: 4.4.3(supports-color@8.1.1)
+ espree: 10.4.0
+ globals: 14.0.0
+ ignore: 5.3.2
import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
+ js-yaml: 4.2.0
+ minimatch: 3.1.5
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.57.0': {}
+ '@eslint/js@9.39.4': {}
- '@glimmer/compiler@0.92.0':
+ '@eslint/object-schema@2.1.7': {}
+
+ '@eslint/plugin-kit@0.4.1':
+ dependencies:
+ '@eslint/core': 0.17.0
+ levn: 0.4.1
+
+ '@glimmer/compiler@0.94.11':
dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/syntax': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/vm': 0.92.0
- '@glimmer/wire-format': 0.92.0
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/syntax': 0.95.0
+ '@glimmer/util': 0.94.8
+ '@glimmer/wire-format': 0.94.8
- '@glimmer/component@1.1.2(@babel/core@7.24.9)':
+ '@glimmer/component@1.1.2(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)':
dependencies:
'@glimmer/di': 0.1.11
'@glimmer/env': 0.1.7
@@ -7556,32 +8525,31 @@ snapshots:
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.9)
+ ember-cli-typescript: 3.0.0(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
ember-cli-version-checker: 3.1.3
- ember-compatibility-helpers: 1.2.5(@babel/core@7.24.9)
+ ember-compatibility-helpers: 1.2.5(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- '@babel/core'
- supports-color
- '@glimmer/debug@0.92.0':
+ '@glimmer/component@2.1.1':
dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/vm': 0.92.0
+ '@embroider/addon-shim': 1.10.3
+ '@glimmer/env': 0.1.7
+ transitivePeerDependencies:
+ - supports-color
- '@glimmer/destroyable@0.92.0':
+ '@glimmer/destroyable@0.94.8':
dependencies:
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
+ '@glimmer/global-context': 0.93.4
+ '@glimmer/interfaces': 0.94.6
'@glimmer/di@0.1.11': {}
- '@glimmer/encoder@0.92.0':
+ '@glimmer/encoder@0.93.8':
dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/vm': 0.92.0
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/vm': 0.94.8
'@glimmer/env@0.1.7': {}
@@ -7589,62 +8557,53 @@ snapshots:
dependencies:
'@glimmer/env': 0.1.7
- '@glimmer/global-context@0.92.0': {}
+ '@glimmer/global-context@0.93.4': {}
'@glimmer/interfaces@0.84.3':
dependencies:
'@simple-dom/interface': 1.4.0
- '@glimmer/interfaces@0.92.0':
+ '@glimmer/interfaces@0.94.6':
dependencies:
'@simple-dom/interface': 1.4.0
+ type-fest: 4.41.0
- '@glimmer/manager@0.92.0':
+ '@glimmer/manager@0.94.10':
dependencies:
- '@glimmer/debug': 0.92.0
- '@glimmer/destroyable': 0.92.0
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/reference': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/validator': 0.92.0
- '@glimmer/vm': 0.92.0
-
- '@glimmer/node@0.92.0':
- dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/runtime': 0.92.0
- '@glimmer/util': 0.92.0
- '@simple-dom/document': 1.4.0
+ '@glimmer/destroyable': 0.94.8
+ '@glimmer/global-context': 0.93.4
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/reference': 0.94.9
+ '@glimmer/util': 0.94.8
+ '@glimmer/validator': 0.95.0
+ '@glimmer/vm': 0.94.8
- '@glimmer/opcode-compiler@0.92.0':
+ '@glimmer/node@0.94.10':
dependencies:
- '@glimmer/debug': 0.92.0
- '@glimmer/encoder': 0.92.0
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/manager': 0.92.0
- '@glimmer/reference': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/vm': 0.92.0
- '@glimmer/wire-format': 0.92.0
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/runtime': 0.94.11
+ '@glimmer/util': 0.94.8
+ '@simple-dom/document': 1.4.0
- '@glimmer/owner@0.92.0':
+ '@glimmer/opcode-compiler@0.94.10':
dependencies:
- '@glimmer/util': 0.92.0
+ '@glimmer/encoder': 0.93.8
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/manager': 0.94.10
+ '@glimmer/util': 0.94.8
+ '@glimmer/vm': 0.94.8
+ '@glimmer/wire-format': 0.94.8
- '@glimmer/program@0.92.0':
+ '@glimmer/owner@0.93.4': {}
+
+ '@glimmer/program@0.94.10':
dependencies:
- '@glimmer/encoder': 0.92.0
- '@glimmer/env': 0.1.7
- '@glimmer/interfaces': 0.92.0
- '@glimmer/manager': 0.92.0
- '@glimmer/opcode-compiler': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/vm': 0.92.0
- '@glimmer/wire-format': 0.92.0
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/manager': 0.94.10
+ '@glimmer/opcode-compiler': 0.94.10
+ '@glimmer/util': 0.94.8
+ '@glimmer/vm': 0.94.8
+ '@glimmer/wire-format': 0.94.8
'@glimmer/reference@0.84.3':
dependencies:
@@ -7654,28 +8613,25 @@ snapshots:
'@glimmer/util': 0.84.3
'@glimmer/validator': 0.84.3
- '@glimmer/reference@0.92.0':
+ '@glimmer/reference@0.94.9':
dependencies:
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/validator': 0.92.0
+ '@glimmer/global-context': 0.93.4
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/util': 0.94.8
+ '@glimmer/validator': 0.95.0
- '@glimmer/runtime@0.92.0':
+ '@glimmer/runtime@0.94.11':
dependencies:
- '@glimmer/destroyable': 0.92.0
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/manager': 0.92.0
- '@glimmer/owner': 0.92.0
- '@glimmer/program': 0.92.0
- '@glimmer/reference': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/validator': 0.92.0
- '@glimmer/vm': 0.92.0
- '@glimmer/wire-format': 0.92.0
+ '@glimmer/destroyable': 0.94.8
+ '@glimmer/global-context': 0.93.4
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/manager': 0.94.10
+ '@glimmer/owner': 0.93.4
+ '@glimmer/program': 0.94.10
+ '@glimmer/reference': 0.94.9
+ '@glimmer/util': 0.94.8
+ '@glimmer/validator': 0.95.0
+ '@glimmer/vm': 0.94.8
'@glimmer/syntax@0.84.3':
dependencies:
@@ -7684,12 +8640,12 @@ snapshots:
'@handlebars/parser': 2.0.0
simple-html-tokenizer: 0.5.11
- '@glimmer/syntax@0.92.0':
+ '@glimmer/syntax@0.95.0':
dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/wire-format': 0.92.0
- '@handlebars/parser': 2.0.0
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/util': 0.94.8
+ '@glimmer/wire-format': 0.94.8
+ '@handlebars/parser': 2.2.2
simple-html-tokenizer: 0.5.11
'@glimmer/tracking@1.1.2':
@@ -7705,10 +8661,9 @@ snapshots:
'@glimmer/interfaces': 0.84.3
'@simple-dom/interface': 1.4.0
- '@glimmer/util@0.92.0':
+ '@glimmer/util@0.94.8':
dependencies:
- '@glimmer/env': 0.1.7
- '@glimmer/interfaces': 0.92.0
+ '@glimmer/interfaces': 0.94.6
'@glimmer/validator@0.44.0': {}
@@ -7717,67 +8672,79 @@ snapshots:
'@glimmer/env': 0.1.7
'@glimmer/global-context': 0.84.3
- '@glimmer/validator@0.92.0':
+ '@glimmer/validator@0.95.0':
dependencies:
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
+ '@glimmer/global-context': 0.93.4
+ '@glimmer/interfaces': 0.94.6
- '@glimmer/vm-babel-plugins@0.92.0(@babel/core@7.24.9)':
+ '@glimmer/vm-babel-plugins@0.93.5(@babel/core@7.29.7(supports-color@8.1.1))':
dependencies:
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.9)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- '@babel/core'
- '@glimmer/vm@0.92.0':
+ '@glimmer/vm@0.94.8':
dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
+ '@glimmer/interfaces': 0.94.6
- '@glimmer/wire-format@0.92.0':
+ '@glimmer/wire-format@0.94.8':
dependencies:
- '@glimmer/interfaces': 0.92.0
- '@glimmer/util': 0.92.0
+ '@glimmer/interfaces': 0.94.6
'@handlebars/parser@2.0.0': {}
- '@humanwhocodes/config-array@0.11.14':
+ '@handlebars/parser@2.2.2': {}
+
+ '@humanfs/core@0.19.2':
dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.5
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@humanfs/types': 0.15.0
+
+ '@humanfs/node@0.16.8':
+ dependencies:
+ '@humanfs/core': 0.19.2
+ '@humanfs/types': 0.15.0
+ '@humanwhocodes/retry': 0.4.3
+
+ '@humanfs/types@0.15.0': {}
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@2.0.3': {}
+ '@humanwhocodes/retry@0.4.3': {}
'@inquirer/figures@1.0.5': {}
- '@jridgewell/gen-mapping@0.3.5':
+ '@jridgewell/gen-mapping@0.3.13':
dependencies:
- '@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.31
- '@jridgewell/resolve-uri@3.1.2': {}
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
- '@jridgewell/set-array@1.2.1': {}
+ '@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/sourcemap-codec@1.5.0': {}
- '@jridgewell/trace-mapping@0.3.25':
+ '@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
+ '@keyv/bigmap@1.3.1(keyv@5.6.0)':
+ dependencies:
+ hashery: 1.5.1
+ hookified: 1.15.1
+ keyv: 5.6.0
+
+ '@keyv/serialize@1.1.1': {}
+
'@lint-todo/utils@13.1.1':
dependencies:
'@types/eslint': 8.56.11
@@ -7788,6 +8755,20 @@ snapshots:
tslib: 2.6.3
upath: 2.0.1
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
+ dependencies:
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
dependencies:
eslint-scope: 5.1.1
@@ -7804,41 +8785,175 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@pkgr/core@0.1.1': {}
+ '@one-ini/wasm@0.2.1': {}
- '@pnpm/constants@7.1.1': {}
+ '@oxc-parser/binding-android-arm-eabi@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-android-arm64@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-darwin-arm64@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-darwin-x64@0.130.0':
+ optional: true
- '@pnpm/error@5.0.3':
+ '@oxc-parser/binding-freebsd-x64@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm-musleabihf@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm64-gnu@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm64-musl@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-ppc64-gnu@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-riscv64-gnu@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-riscv64-musl@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-s390x-gnu@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-x64-gnu@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-x64-musl@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-openharmony-arm64@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-wasm32-wasi@0.130.0':
dependencies:
- '@pnpm/constants': 7.1.1
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
+ optional: true
+
+ '@oxc-parser/binding-win32-arm64-msvc@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-win32-ia32-msvc@0.130.0':
+ optional: true
+
+ '@oxc-parser/binding-win32-x64-msvc@0.130.0':
+ optional: true
- '@pnpm/find-workspace-dir@6.0.3':
+ '@oxc-project/types@0.130.0': {}
+
+ '@oxc-project/types@0.137.0': {}
+
+ '@pnpm/constants@1001.3.1': {}
+
+ '@pnpm/error@1000.1.0':
+ dependencies:
+ '@pnpm/constants': 1001.3.1
+
+ '@pnpm/find-workspace-dir@1000.1.5':
dependencies:
- '@pnpm/error': 5.0.3
+ '@pnpm/error': 1000.1.0
find-up: 5.0.0
- '@scalvert/ember-setup-middleware-reporter@0.1.1':
+ '@rolldown/binding-android-arm64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-darwin-arm64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-darwin-x64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-freebsd-x64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-musl@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-ppc64-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.1.3':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.1.3':
dependencies:
- '@types/fs-extra': 9.0.13
- body-parser: 1.20.2
- errorhandler: 1.5.1
- fs-extra: 10.1.0
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.3':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.1.3':
+ optional: true
+
+ '@rolldown/pluginutils@1.0.1': {}
+
+ '@rollup/plugin-babel@7.1.0(@babel/core@7.29.7(supports-color@8.1.1))':
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-module-imports': 7.29.7
+ '@rollup/pluginutils': 5.4.0
+ workerpool: 9.3.4
transitivePeerDependencies:
- supports-color
+ '@rollup/pluginutils@5.4.0':
+ dependencies:
+ '@types/estree': 1.0.9
+ estree-walker: 2.0.2
+ picomatch: 4.0.4
+
+ '@sec-ant/readable-stream@0.4.1': {}
+
'@simple-dom/document@1.4.0':
dependencies:
'@simple-dom/interface': 1.4.0
'@simple-dom/interface@1.4.0': {}
+ '@sindresorhus/merge-streams@2.3.0': {}
+
+ '@sindresorhus/merge-streams@4.0.0': {}
+
'@socket.io/component-emitter@3.1.2': {}
'@tootallnate/once@1.1.2': {}
- '@types/acorn@4.0.6':
+ '@tybys/wasm-util@0.10.3':
dependencies:
- '@types/estree': 1.0.5
+ tslib: 2.6.3
+ optional: true
+
+ '@types/babel__code-frame@7.27.0': {}
'@types/body-parser@1.19.2':
dependencies:
@@ -7855,28 +8970,18 @@ snapshots:
dependencies:
'@types/node': 17.0.12
- '@types/cookie@0.4.1': {}
-
'@types/cors@2.8.17':
dependencies:
'@types/node': 17.0.12
- '@types/eslint-scope@3.7.3':
- dependencies:
- '@types/eslint': 9.6.0
- '@types/estree': 1.0.5
-
'@types/eslint@8.56.11':
dependencies:
- '@types/estree': 1.0.5
- '@types/json-schema': 7.0.9
+ '@types/estree': 1.0.9
+ '@types/json-schema': 7.0.15
- '@types/eslint@9.6.0':
- dependencies:
- '@types/estree': 1.0.5
- '@types/json-schema': 7.0.9
+ '@types/esrecurse@4.3.1': {}
- '@types/estree@1.0.5': {}
+ '@types/estree@1.0.9': {}
'@types/express-serve-static-core@4.17.28':
dependencies:
@@ -7899,29 +9004,19 @@ snapshots:
dependencies:
'@types/node': 17.0.12
- '@types/fs-extra@9.0.13':
- dependencies:
- '@types/node': 17.0.12
-
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 3.0.5
'@types/node': 17.0.12
- '@types/json-schema@7.0.9': {}
+ '@types/json-schema@7.0.15': {}
'@types/mime@1.3.2': {}
'@types/minimatch@3.0.5': {}
- '@types/minimist@1.2.5': {}
-
'@types/node@17.0.12': {}
- '@types/node@9.6.61': {}
-
- '@types/normalize-package-data@2.4.4': {}
-
'@types/qs@6.9.7': {}
'@types/range-parser@1.2.4': {}
@@ -7938,104 +9033,153 @@ snapshots:
'@types/symlink-or-copy@1.2.0': {}
- '@ungap/structured-clone@1.2.0': {}
+ '@types/ws@8.18.1':
+ dependencies:
+ '@types/node': 17.0.12
- '@warp-drive/build-config@0.0.0-beta.6':
+ '@typescript-eslint/tsconfig-utils@8.61.1(typescript@6.0.3)':
dependencies:
- '@embroider/addon-shim': 1.8.9
- '@embroider/macros': 1.16.5
+ typescript: 6.0.3
+
+ '@warp-drive/build-config@5.6.0':
+ dependencies:
+ '@embroider/addon-shim': 1.10.3
+ '@embroider/macros': 1.20.5
babel-import-util: 2.1.1
- broccoli-funnel: 3.0.8
- semver: 7.6.3
+ semver: 7.8.4
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
+
+ '@warp-drive/core-types@5.6.0':
+ dependencies:
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
+
+ '@warp-drive/core@5.6.0':
+ dependencies:
+ '@embroider/macros': 1.20.5
+ '@warp-drive/build-config': 5.6.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
+
+ '@warp-drive/ember@5.6.0(@ember/test-waiters@3.1.0)':
+ dependencies:
+ '@ember/test-waiters': 3.1.0
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@warp-drive/core-types@0.0.0-beta.11':
+ '@warp-drive/json-api@5.6.0(@warp-drive/core@5.6.0)':
dependencies:
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ fuse.js: 7.1.0
+ json-to-ast: 2.1.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@webassemblyjs/ast@1.12.1':
+ '@warp-drive/legacy@5.6.0(@warp-drive/core@5.6.0)(@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0))':
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
+ '@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0)':
+ dependencies:
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
+
+ '@webassemblyjs/ast@1.14.1':
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+
+ '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
- '@webassemblyjs/helper-api-error@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.13.2': {}
- '@webassemblyjs/helper-buffer@1.12.1': {}
+ '@webassemblyjs/helper-buffer@1.14.1': {}
- '@webassemblyjs/helper-numbers@1.11.6':
+ '@webassemblyjs/helper-numbers@1.13.2':
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
'@xtuc/long': 4.2.2
- '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
- '@webassemblyjs/helper-wasm-section@1.12.1':
+ '@webassemblyjs/helper-wasm-section@1.14.1':
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
+ '@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/ieee754@1.11.6':
+ '@webassemblyjs/ieee754@1.13.2':
dependencies:
'@xtuc/ieee754': 1.2.0
- '@webassemblyjs/leb128@1.11.6':
+ '@webassemblyjs/leb128@1.13.2':
dependencies:
'@xtuc/long': 4.2.2
- '@webassemblyjs/utf8@1.11.6': {}
+ '@webassemblyjs/utf8@1.13.2': {}
- '@webassemblyjs/wasm-edit@1.12.1':
+ '@webassemblyjs/wasm-edit@1.14.1':
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/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-gen@1.12.1':
+ '@webassemblyjs/wasm-gen@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-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wasm-opt@1.12.1':
+ '@webassemblyjs/wasm-opt@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wasm-parser@1.12.1':
+ '@webassemblyjs/wasm-parser@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-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.12.1':
+ '@webassemblyjs/wast-printer@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
- '@xmldom/xmldom@0.8.10': {}
+ '@xmldom/xmldom@0.9.10': {}
'@xtuc/ieee754@1.2.0': {}
@@ -8045,58 +9189,57 @@ snapshots:
abbrev@1.1.1: {}
- abortcontroller-polyfill@1.7.3: {}
-
accepts@1.3.8:
dependencies:
- mime-types: 2.1.34
+ mime-types: 2.1.35
negotiator: 0.6.3
- acorn-dynamic-import@3.0.0:
+ accepts@2.0.0:
dependencies:
- acorn: 5.7.4
+ mime-types: 3.0.2
+ negotiator: 1.0.0
acorn-globals@6.0.0:
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
- acorn-import-attributes@1.9.5(acorn@8.12.1):
+ acorn-import-phases@1.0.4(acorn@8.17.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.17.0
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.17.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.17.0
acorn-walk@7.2.0: {}
- acorn@5.7.4: {}
-
acorn@7.4.1: {}
- acorn@8.12.1: {}
+ acorn@8.17.0: {}
- agent-base@6.0.2:
+ agent-base@6.0.2(supports-color@8.1.1):
dependencies:
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
+ agent-base@7.1.4: {}
+
ajv-formats@2.1.1(ajv@8.17.1):
optionalDependencies:
ajv: 8.17.1
- ajv-keywords@3.5.2(ajv@6.12.6):
+ ajv-keywords@3.5.2(ajv@6.15.0):
dependencies:
- ajv: 6.12.6
+ ajv: 6.15.0
ajv-keywords@5.1.0(ajv@8.17.1):
dependencies:
ajv: 8.17.1
fast-deep-equal: 3.1.3
- ajv@6.12.6:
+ ajv@6.15.0:
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
@@ -8125,6 +9268,8 @@ snapshots:
ansi-html@0.0.7: {}
+ ansi-html@0.0.9: {}
+
ansi-regex@3.0.1: {}
ansi-regex@4.1.1: {}
@@ -8157,13 +9302,6 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.1
- aproba@1.2.0: {}
-
- are-we-there-yet@3.0.1:
- dependencies:
- delegates: 1.0.0
- readable-stream: 3.6.0
-
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
@@ -8174,6 +9312,8 @@ snapshots:
dependencies:
dequal: 2.0.3
+ aria-query@5.3.2: {}
+
arr-diff@4.0.0: {}
arr-flatten@1.1.0: {}
@@ -8188,8 +9328,6 @@ snapshots:
array-unique@0.3.2: {}
- arrify@1.0.1: {}
-
assert-never@1.3.0: {}
assign-symbols@1.0.0: {}
@@ -8200,7 +9338,7 @@ snapshots:
async-disk-cache@1.3.5:
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
heimdalljs: 0.2.6
istextorbinary: 2.1.0
mkdirp: 0.5.6
@@ -8212,7 +9350,7 @@ snapshots:
async-disk-cache@2.1.0:
dependencies:
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
heimdalljs: 0.2.6
istextorbinary: 2.6.0
mkdirp: 0.5.6
@@ -8225,15 +9363,13 @@ snapshots:
async-promise-queue@1.0.5:
dependencies:
async: 2.6.4
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- async@0.2.10: {}
-
async@2.6.4:
dependencies:
- lodash: 4.17.21
+ lodash: 4.18.1
asynckit@0.4.0: {}
@@ -8243,7 +9379,7 @@ snapshots:
autoprefixer@9.8.8:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.28.2
caniuse-lite: 1.0.30001643
normalize-range: 0.1.2
num2fraction: 1.2.2
@@ -8253,43 +9389,63 @@ snapshots:
axe-core@4.9.1: {}
+ axobject-query@4.1.0: {}
+
babel-import-util@0.2.0: {}
babel-import-util@2.1.1: {}
- babel-import-util@3.0.0: {}
+ babel-import-util@3.0.1: {}
- babel-loader@8.2.3(@babel/core@7.24.9)(webpack@5.93.0):
+ babel-loader@8.2.3(@babel/core@7.29.7(supports-color@8.1.1))(webpack@5.107.2(postcss@8.5.15)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
find-cache-dir: 3.3.2
loader-utils: 1.4.2
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.93.0
+ webpack: 5.107.2(postcss@8.5.15)
- babel-plugin-debug-macros@0.2.0(@babel/core@7.24.9):
+ babel-plugin-debug-macros@0.2.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
semver: 5.7.2
- babel-plugin-debug-macros@0.3.4(@babel/core@7.24.9):
+ babel-plugin-debug-macros@0.3.4(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
semver: 5.7.2
+ babel-plugin-debug-macros@2.0.0(@babel/core@7.29.7(supports-color@8.1.1)):
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ babel-import-util: 2.1.1
+ semver: 7.8.4
+
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.17
+ ember-rfc176-data: 0.3.18
- babel-plugin-ember-template-compilation@2.2.5:
+ babel-plugin-ember-template-compilation@2.4.1:
dependencies:
- '@glimmer/syntax': 0.84.3
- babel-import-util: 3.0.0
+ '@glimmer/syntax': 0.95.0
+ babel-import-util: 3.0.1
+
+ babel-plugin-ember-template-compilation@3.1.0:
+ dependencies:
+ '@glimmer/syntax': 0.95.0
+ babel-import-util: 3.0.1
+ import-meta-resolve: 4.2.0
+
+ babel-plugin-ember-template-compilation@4.0.0:
+ dependencies:
+ '@glimmer/syntax': 0.95.0
+ babel-import-util: 3.0.1
+ import-meta-resolve: 4.2.0
babel-plugin-htmlbars-inline-precompile@5.3.1:
dependencies:
@@ -8305,7 +9461,7 @@ snapshots:
glob: 7.2.0
pkg-up: 2.0.0
reselect: 3.0.1
- resolve: 1.22.8
+ resolve: 1.22.12
babel-plugin-module-resolver@5.0.2:
dependencies:
@@ -8313,59 +9469,94 @@ snapshots:
glob: 9.3.5
pkg-up: 3.1.0
reselect: 4.1.8
- resolve: 1.22.8
+ resolve: 1.22.12
- babel-plugin-polyfill-corejs2@0.3.1(@babel/core@7.24.9):
+ babel-plugin-polyfill-corejs2@0.3.1(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1):
dependencies:
- '@babel/compat-data': 7.24.9
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.24.9)
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.9):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/compat-data': 7.24.9
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.9)
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.29.7(supports-color@8.1.1))
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.9):
+ babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.9)
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@8.1.1))
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.29.7(supports-color@8.1.1)):
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.29.7(supports-color@8.1.1))
core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.5.1(@babel/core@7.24.9):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@8.1.1))
+ core-js-compat: 3.49.0
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.5.1(@babel/core@7.29.7(supports-color@8.1.1)):
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.24.9):
+ babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.29.7(supports-color@8.1.1)):
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.9):
+ babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- supports-color
babel-plugin-syntax-dynamic-import@6.18.0: {}
- backbone@1.6.0:
+ babel-remove-types@1.1.0:
+ dependencies:
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ prettier: 2.8.8
+ transitivePeerDependencies:
+ - supports-color
+
+ babylon@6.18.0: {}
+
+ backbone@1.6.1:
dependencies:
underscore: 1.13.7
@@ -8375,6 +9566,8 @@ snapshots:
balanced-match@2.0.0: {}
+ balanced-match@4.0.4: {}
+
base64-js@1.5.1: {}
base64id@2.0.0: {}
@@ -8389,14 +9582,22 @@ snapshots:
mixin-deep: 1.3.2
pascalcase: 0.1.1
+ baseline-browser-mapping@2.10.37: {}
+
basic-auth@2.0.1:
dependencies:
safe-buffer: 5.1.2
+ better-path-resolve@1.0.0:
+ dependencies:
+ is-windows: 1.0.2
+
big.js@5.2.2: {}
binaryextensions@2.3.0: {}
+ bind-decorator@1.0.11: {}
+
bl@4.1.0:
dependencies:
buffer: 5.7.1
@@ -8405,25 +9606,37 @@ snapshots:
blank-object@1.0.2: {}
- bluebird@3.7.2: {}
-
- body-parser@1.20.2:
+ body-parser@1.20.5:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
depd: 2.0.0
destroy: 1.2.0
- http-errors: 2.0.0
+ http-errors: 2.0.1
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.2
+ qs: 6.15.2
+ raw-body: 2.5.3
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
+ body-parser@2.3.0:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 2.0.0
+ debug: 4.4.3(supports-color@8.1.1)
+ http-errors: 2.0.1
+ iconv-lite: 0.7.2
+ on-finished: 2.4.1
+ qs: 6.15.2
+ raw-body: 3.0.2
+ type-is: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+
body@5.1.0:
dependencies:
continuable-cache: 0.3.1
@@ -8442,6 +9655,10 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ brace-expansion@5.0.6:
+ dependencies:
+ balanced-match: 4.0.4
+
braces@2.3.2:
dependencies:
arr-flatten: 1.1.0
@@ -8461,26 +9678,9 @@ snapshots:
dependencies:
fill-range: 7.1.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.0.1
- minimatch: 3.1.2
- rsvp: 3.6.2
- transitivePeerDependencies:
- - supports-color
-
- broccoli-asset-rewrite@2.0.0:
- dependencies:
- broccoli-filter: 1.3.0
- transitivePeerDependencies:
- - supports-color
-
broccoli-babel-transpiler@7.8.1:
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/polyfill': 7.12.1
broccoli-funnel: 2.0.2
broccoli-merge-trees: 3.0.2
@@ -8495,9 +9695,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- broccoli-babel-transpiler@8.0.0(@babel/core@7.24.9):
+ broccoli-babel-transpiler@8.0.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
broccoli-persistent-filter: 3.1.3
clone: 2.1.2
hash-for-dep: 1.5.1
@@ -8509,34 +9709,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- broccoli-builder@0.18.14:
- dependencies:
- broccoli-node-info: 1.1.0
- heimdalljs: 0.2.6
- promise-map-series: 0.2.3
- quick-temp: 0.1.8
- rimraf: 2.7.1
- rsvp: 3.6.2
- silent-error: 1.1.1
- transitivePeerDependencies:
- - supports-color
-
- broccoli-caching-writer@2.3.1:
- dependencies:
- broccoli-kitchen-sink-helpers: 0.2.9
- broccoli-plugin: 1.1.0
- debug: 2.6.9
- rimraf: 2.7.1
- rsvp: 3.6.2
- walk-sync: 0.2.7
- transitivePeerDependencies:
- - supports-color
-
broccoli-caching-writer@3.0.3:
dependencies:
broccoli-kitchen-sink-helpers: 0.3.1
broccoli-plugin: 1.3.1
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
rimraf: 2.7.1
rsvp: 3.6.2
walk-sync: 0.3.4
@@ -8549,7 +9726,7 @@ snapshots:
broccoli-kitchen-sink-helpers: 0.3.1
broccoli-plugin: 4.0.7
ensure-posix-path: 1.1.1
- fast-sourcemap-concat: 2.1.0
+ fast-sourcemap-concat: 2.1.1
find-index: 1.1.1
fs-extra: 8.1.0
fs-tree-diff: 2.0.1
@@ -8569,7 +9746,7 @@ snapshots:
dependencies:
broccoli-kitchen-sink-helpers: 0.3.1
broccoli-plugin: 1.3.1
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
fs-extra: 0.24.0
transitivePeerDependencies:
- supports-color
@@ -8590,20 +9767,6 @@ snapshots:
broccoli-plugin: 1.3.1
mkdirp: 0.5.6
- broccoli-filter@1.3.0:
- dependencies:
- broccoli-kitchen-sink-helpers: 0.3.1
- broccoli-plugin: 1.3.1
- copy-dereference: 1.0.0
- debug: 2.6.9
- mkdirp: 0.5.6
- promise-map-series: 0.2.3
- rsvp: 3.6.2
- symlink-or-copy: 1.3.1
- walk-sync: 0.3.4
- transitivePeerDependencies:
- - supports-color
-
broccoli-funnel-reducer@1.0.0: {}
broccoli-funnel@2.0.2:
@@ -8611,11 +9774,11 @@ snapshots:
array-equal: 1.0.0
blank-object: 1.0.2
broccoli-plugin: 1.3.1
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
fast-ordered-set: 1.0.3
fs-tree-diff: 0.5.9
heimdalljs: 0.2.6
- minimatch: 3.1.2
+ minimatch: 3.1.5
mkdirp: 0.5.6
path-posix: 1.0.0
rimraf: 2.7.1
@@ -8628,19 +9791,14 @@ snapshots:
dependencies:
array-equal: 1.0.0
broccoli-plugin: 4.0.7
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
fs-tree-diff: 2.0.1
heimdalljs: 0.2.6
- minimatch: 3.1.2
+ minimatch: 3.1.5
walk-sync: 2.2.0
transitivePeerDependencies:
- supports-color
- broccoli-kitchen-sink-helpers@0.2.9:
- dependencies:
- glob: 5.0.15
- mkdirp: 0.5.6
-
broccoli-kitchen-sink-helpers@0.3.1:
dependencies:
glob: 5.0.15
@@ -8663,39 +9821,19 @@ snapshots:
broccoli-middleware@2.1.1:
dependencies:
ansi-html: 0.0.7
- handlebars: 4.7.7
+ handlebars: 4.7.9
has-ansi: 3.0.0
- mime-types: 2.1.34
+ mime-types: 2.1.35
broccoli-node-api@1.7.0: {}
- broccoli-node-info@1.1.0: {}
-
broccoli-node-info@2.2.0: {}
broccoli-output-wrapper@3.2.5:
- dependencies:
- fs-extra: 8.1.0
- heimdalljs-logger: 0.1.10
- symlink-or-copy: 1.3.1
- transitivePeerDependencies:
- - supports-color
-
- broccoli-persistent-filter@1.4.6:
- dependencies:
- async-disk-cache: 1.3.5
- async-promise-queue: 1.0.5
- broccoli-plugin: 1.3.1
- fs-tree-diff: 0.5.9
- hash-for-dep: 1.5.1
- heimdalljs: 0.2.6
- heimdalljs-logger: 0.1.10
- mkdirp: 0.5.6
- promise-map-series: 0.2.3
- rimraf: 2.7.1
- rsvp: 3.6.2
+ dependencies:
+ fs-extra: 8.1.0
+ heimdalljs-logger: 0.1.10
symlink-or-copy: 1.3.1
- walk-sync: 0.3.4
transitivePeerDependencies:
- supports-color
@@ -8734,13 +9872,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- broccoli-plugin@1.1.0:
- dependencies:
- promise-map-series: 0.2.3
- quick-temp: 0.1.8
- rimraf: 2.7.1
- symlink-or-copy: 1.3.1
-
broccoli-plugin@1.3.1:
dependencies:
promise-map-series: 0.2.3
@@ -8774,7 +9905,7 @@ snapshots:
minimist: 1.2.8
mkdirp: 1.0.4
object-assign: 4.1.1
- postcss: 8.4.40
+ postcss: 8.5.15
transitivePeerDependencies:
- supports-color
@@ -8794,23 +9925,7 @@ snapshots:
broccoli-persistent-filter: 3.1.3
minimist: 1.2.8
object-assign: 4.1.1
- postcss: 8.4.40
- 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
+ postcss: 8.5.15
transitivePeerDependencies:
- supports-color
@@ -8824,27 +9939,17 @@ snapshots:
dependencies:
broccoli-node-api: 1.7.0
- broccoli-sri-hash@2.1.2:
- dependencies:
- broccoli-caching-writer: 2.3.1
- mkdirp: 0.5.6
- rsvp: 3.6.2
- sri-toolbox: 0.2.0
- symlink-or-copy: 1.3.1
- transitivePeerDependencies:
- - supports-color
-
- broccoli-static-site-json@4.4.1:
+ broccoli-static-site-json@4.4.1(supports-color@8.1.1):
dependencies:
broccoli-funnel: 3.0.8
broccoli-merge-trees: 4.2.0
broccoli-persistent-filter: 3.1.3
broccoli-plugin: 4.0.7
- broccoli-stew: 3.0.0
+ broccoli-stew: 3.0.0(supports-color@8.1.1)
debug: 4.3.5
html2plaintext: 2.1.4
js-yaml: 4.1.0
- jsdom: 17.0.0
+ jsdom: 17.0.0(supports-color@8.1.1)
jsonapi-serializer: 3.6.7
lodash: 4.17.21
shelljs: 0.8.5
@@ -8857,7 +9962,7 @@ snapshots:
- supports-color
- utf-8-validate
- broccoli-stew@3.0.0:
+ broccoli-stew@3.0.0(supports-color@8.1.1):
dependencies:
broccoli-debug: 0.6.5
broccoli-funnel: 2.0.2
@@ -8865,42 +9970,17 @@ snapshots:
broccoli-persistent-filter: 2.3.1
broccoli-plugin: 2.1.0
chalk: 2.4.2
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
ensure-posix-path: 1.1.1
fs-extra: 8.1.0
- minimatch: 3.1.2
- resolve: 1.22.8
+ minimatch: 3.1.5
+ resolve: 1.22.12
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.0:
- dependencies:
- async-promise-queue: 1.0.5
- broccoli-plugin: 4.0.7
- debug: 4.3.5
- lodash.defaultsdeep: 4.6.1
- matcher-collection: 2.0.1
- source-map-url: 0.4.1
- symlink-or-copy: 1.3.1
- terser: 5.31.3
- walk-sync: 2.2.0
- workerpool: 6.5.1
- transitivePeerDependencies:
- - supports-color
-
broccoli@3.5.2:
dependencies:
'@types/chai': 4.3.0
@@ -8911,15 +9991,15 @@ snapshots:
broccoli-slow-trees: 3.1.0
broccoli-source: 3.0.1
commander: 4.1.1
- connect: 3.7.0
+ connect: 3.7.0(supports-color@8.1.1)
console-ui: 3.1.2
esm: 3.2.25
findup-sync: 4.0.0
- handlebars: 4.7.7
+ handlebars: 4.7.9
heimdalljs: 0.2.6
heimdalljs-logger: 0.1.10
https: 1.0.0
- mime-types: 2.1.34
+ mime-types: 2.1.35
resolve-path: 1.4.0
rimraf: 3.0.2
sane: 4.1.0
@@ -8930,14 +10010,43 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ broccoli@4.0.0(supports-color@8.1.1):
+ dependencies:
+ ansi-html: 0.0.9
+ broccoli-node-info: 2.2.0
+ broccoli-source: 3.0.1
+ commander: 14.0.3
+ connect: 3.7.0(supports-color@8.1.1)
+ console-ui: 3.1.2
+ findup-sync: 5.0.0
+ handlebars: 4.7.9
+ heimdalljs: 0.2.6
+ heimdalljs-logger: 0.1.10
+ mime-types: 3.0.2
+ resolve-path: 1.4.0
+ rimraf: 6.1.3
+ sane: 5.0.1
+ tmp: 0.2.7
+ tree-sync: 2.1.0
+ underscore.string: 3.3.6
+ watch-detector: 1.0.2
+ transitivePeerDependencies:
+ - supports-color
+
browser-process-hrtime@1.0.0: {}
- browserslist@4.23.2:
+ browserslist-to-esbuild@2.1.1(browserslist@4.28.2):
dependencies:
- caniuse-lite: 1.0.30001643
- electron-to-chromium: 1.5.1
- node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ browserslist: 4.28.2
+ meow: 13.2.0
+
+ browserslist@4.28.2:
+ dependencies:
+ baseline-browser-mapping: 2.10.37
+ caniuse-lite: 1.0.30001799
+ electron-to-chromium: 1.5.375
+ node-releases: 2.0.47
+ update-browserslist-db: 1.2.3(browserslist@4.28.2)
bser@2.1.1:
dependencies:
@@ -8950,16 +10059,8 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@3.3.0: {}
-
- builtins@5.1.0:
- dependencies:
- semver: 7.6.3
-
bytes@1.0.0: {}
- bytes@3.0.0: {}
-
bytes@3.1.2: {}
cache-base@1.0.1:
@@ -8974,41 +10075,45 @@ snapshots:
union-value: 1.0.1
unset-value: 1.0.0
+ cacheable@2.3.5:
+ dependencies:
+ '@cacheable/memory': 2.0.9
+ '@cacheable/utils': 2.4.1
+ hookified: 1.15.1
+ keyv: 5.6.0
+ qified: 0.10.1
+
calculate-cache-key-for-tree@2.0.0:
dependencies:
json-stable-stringify: 1.0.1
- call-bind@1.0.2:
+ call-bind-apply-helpers@1.0.2:
dependencies:
+ es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.1.1
- callsites@3.1.0: {}
+ call-bind@1.0.2:
+ dependencies:
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
- camelcase-keys@7.0.2:
+ call-bound@1.0.4:
dependencies:
- camelcase: 6.3.0
- map-obj: 4.3.0
- quick-lru: 5.1.1
- type-fest: 1.4.0
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
- camelcase@5.3.1: {}
+ callsites@3.1.0: {}
- camelcase@6.3.0: {}
+ camelcase@5.3.1: {}
can-symlink@1.0.0:
dependencies:
tmp: 0.0.28
- caniuse-api@3.0.0:
- dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001643
- lodash.memoize: 4.1.2
- lodash.uniq: 4.5.0
-
caniuse-lite@1.0.30001643: {}
+ caniuse-lite@1.0.30001799: {}
+
capture-exit@2.0.0:
dependencies:
rsvp: 4.8.5
@@ -9031,6 +10136,8 @@ snapshots:
chalk@5.3.0: {}
+ chalk@5.6.2: {}
+
chardet@0.7.0: {}
charm@1.0.2:
@@ -9055,9 +10162,13 @@ snapshots:
parse5-htmlparser2-tree-adapter: 6.0.1
tslib: 2.6.3
+ chokidar@5.0.0:
+ dependencies:
+ readdirp: 5.0.0
+
chrome-trace-event@1.0.3: {}
- ci-info@3.9.0: {}
+ ci-info@4.4.0: {}
class-utils@0.3.6:
dependencies:
@@ -9068,10 +10179,6 @@ snapshots:
clean-base-url@1.0.0: {}
- clean-css@5.3.3:
- dependencies:
- source-map: 0.6.1
-
clean-stack@2.2.0: {}
clean-up-path@1.0.0: {}
@@ -9112,6 +10219,8 @@ snapshots:
clone@2.1.2: {}
+ code-error-fragment@0.0.230: {}
+
collection-visit@1.0.0:
dependencies:
map-visit: 1.0.0
@@ -9129,8 +10238,6 @@ snapshots:
color-name@1.1.4: {}
- color-support@1.1.3: {}
-
colord@2.9.3: {}
colors@1.0.3: {}
@@ -9141,6 +10248,8 @@ snapshots:
dependencies:
delayed-stream: 1.0.0
+ commander@14.0.3: {}
+
commander@2.20.3: {}
commander@4.1.1: {}
@@ -9163,30 +10272,27 @@ snapshots:
compressible@2.0.18:
dependencies:
- mime-db: 1.51.0
+ mime-db: 1.54.0
- compression@1.7.4:
+ compression@1.8.1:
dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
+ bytes: 3.1.2
compressible: 2.0.18
- debug: 2.6.9
- on-headers: 1.0.2
- safe-buffer: 5.1.2
+ debug: 2.6.9(supports-color@8.1.1)
+ negotiator: 0.6.4
+ on-headers: 1.1.0
+ safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
concat-map@0.0.1: {}
- concurrently@8.2.2:
+ concurrently@9.2.1:
dependencies:
chalk: 4.1.2
- date-fns: 2.30.0
- lodash: 4.17.21
- rxjs: 7.8.1
- shell-quote: 1.8.1
- spawn-command: 0.0.2
+ rxjs: 7.8.2
+ shell-quote: 1.8.3
supports-color: 8.1.1
tree-kill: 1.2.2
yargs: 17.7.2
@@ -9200,17 +10306,15 @@ snapshots:
write-file-atomic: 3.0.3
xdg-basedir: 4.0.0
- connect@3.7.0:
+ connect@3.7.0(supports-color@8.1.1):
dependencies:
- debug: 2.6.9
- finalhandler: 1.1.2
+ debug: 2.6.9(supports-color@8.1.1)
+ finalhandler: 1.1.2(supports-color@8.1.1)
parseurl: 1.3.3
utils-merge: 1.0.1
transitivePeerDependencies:
- supports-color
- console-control-strings@1.1.0: {}
-
console-ui@3.1.2:
dependencies:
chalk: 2.4.2
@@ -9219,12 +10323,11 @@ snapshots:
ora: 3.4.0
through2: 3.0.2
- consolidate@0.16.0(handlebars@4.7.7)(lodash@4.17.21)(mustache@4.2.0)(underscore@1.13.7):
- dependencies:
- bluebird: 3.7.2
+ consolidate@1.0.4(@babel/core@7.29.7(supports-color@8.1.1))(handlebars@4.7.9)(lodash@4.18.1)(mustache@4.2.0)(underscore@1.13.7):
optionalDependencies:
- handlebars: 4.7.7
- lodash: 4.17.21
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ handlebars: 4.7.9
+ lodash: 4.18.1
mustache: 4.2.0
underscore: 1.13.7
@@ -9232,27 +10335,35 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- content-tag@1.2.2: {}
+ content-disposition@1.1.0: {}
+
+ content-tag@3.1.3: {}
+
+ content-tag@4.2.0: {}
content-type@1.0.5: {}
+ content-type@2.0.0: {}
+
continuable-cache@0.3.1: {}
convert-source-map@2.0.0: {}
cookie-signature@1.0.6: {}
- cookie@0.4.2: {}
+ cookie-signature@1.2.2: {}
- cookie@0.6.0: {}
-
- copy-dereference@1.0.0: {}
+ cookie@0.7.2: {}
copy-descriptor@0.1.1: {}
core-js-compat@3.37.1:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.28.2
+
+ core-js-compat@3.49.0:
+ dependencies:
+ browserslist: 4.28.2
core-js@2.6.12: {}
@@ -9267,12 +10378,14 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- cosmiconfig@8.3.6:
+ cosmiconfig@9.0.2(typescript@6.0.3):
dependencies:
+ env-paths: 2.2.1
import-fresh: 3.3.0
- js-yaml: 4.1.0
+ js-yaml: 4.2.0
parse-json: 5.2.0
- path-type: 4.0.0
+ optionalDependencies:
+ typescript: 6.0.3
cross-spawn@6.0.5:
dependencies:
@@ -9282,7 +10395,7 @@ 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
@@ -9294,26 +10407,26 @@ snapshots:
dependencies:
postcss: 7.0.39
- css-functions-list@3.2.2: {}
+ css-functions-list@3.3.3: {}
css-has-pseudo@0.10.0:
dependencies:
postcss: 7.0.39
postcss-selector-parser: 5.0.0
- css-loader@5.2.7(webpack@5.93.0):
+ css-loader@5.2.7(webpack@5.107.2(postcss@8.5.15)):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.40)
+ icss-utils: 5.1.0(postcss@8.5.15)
loader-utils: 2.0.4
- postcss: 8.4.40
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.40)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.40)
- postcss-modules-scope: 3.2.0(postcss@8.4.40)
- postcss-modules-values: 4.0.0(postcss@8.4.40)
+ postcss: 8.5.15
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.15)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.5.15)
+ postcss-modules-scope: 3.2.0(postcss@8.5.15)
+ postcss-modules-values: 4.0.0(postcss@8.5.15)
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
- semver: 7.6.3
- webpack: 5.93.0
+ semver: 7.8.4
+ webpack: 5.107.2(postcss@8.5.15)
css-prefers-color-scheme@3.1.1:
dependencies:
@@ -9327,10 +10440,10 @@ snapshots:
domutils: 2.8.0
nth-check: 2.0.1
- css-tree@2.3.1:
+ css-tree@3.2.1:
dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.0
+ mdn-data: 2.27.1
+ source-map-js: 1.2.1
css-what@5.1.0: {}
@@ -9348,6 +10461,11 @@ snapshots:
dependencies:
cssom: 0.3.8
+ cssstyle@4.6.0:
+ dependencies:
+ '@asamuzakjp/css-color': 3.2.0
+ rrweb-cssom: 0.8.0
+
dag-map@2.0.2: {}
data-urls@3.0.1:
@@ -9356,17 +10474,18 @@ snapshots:
whatwg-mimetype: 3.0.0
whatwg-url: 10.0.0
- date-fns@2.30.0:
+ data-urls@5.0.0:
dependencies:
- '@babel/runtime': 7.24.8
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.2.0
- date-time@2.1.0:
- dependencies:
- time-zone: 1.0.0
+ date-fns@3.6.0: {}
- debug@2.6.9:
+ debug@2.6.9(supports-color@8.1.1):
dependencies:
ms: 2.0.0
+ optionalDependencies:
+ supports-color: 8.1.1
debug@3.2.7:
dependencies:
@@ -9376,23 +10495,24 @@ snapshots:
dependencies:
ms: 2.1.2
- decamelize-keys@1.1.1:
+ debug@4.4.3(supports-color@8.1.1):
dependencies:
- decamelize: 1.2.0
- map-obj: 1.0.1
+ ms: 2.1.3
+ optionalDependencies:
+ supports-color: 8.1.1
decamelize@1.2.0: {}
- decamelize@5.0.1: {}
-
decimal.js@10.3.1: {}
+ decimal.js@10.6.0: {}
+
decode-uri-component@0.2.0: {}
- decorator-transforms@2.0.0(@babel/core@7.24.9):
+ decorator-transforms@2.3.2(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.9)
- babel-import-util: 3.0.0
+ '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ babel-import-util: 3.0.1
transitivePeerDependencies:
- '@babel/core'
@@ -9421,8 +10541,6 @@ snapshots:
delayed-stream@1.0.0: {}
- delegates@1.0.0: {}
-
depd@1.1.2: {}
depd@2.0.0: {}
@@ -9433,20 +10551,18 @@ snapshots:
detect-file@1.0.0: {}
- detect-indent@6.1.0: {}
+ detect-indent@7.0.2: {}
- detect-newline@3.1.0: {}
+ detect-libc@2.1.2: {}
- diff@5.2.0: {}
+ detect-newline@4.0.1: {}
+
+ diff@7.0.0: {}
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
- doctrine@3.0.0:
- dependencies:
- esutils: 2.0.3
-
dom-element-descriptors@0.5.1: {}
dom-serializer@1.3.2:
@@ -9480,6 +10596,12 @@ snapshots:
dependencies:
is-obj: 2.0.0
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
editions@1.3.4: {}
editions@2.3.1:
@@ -9487,46 +10609,44 @@ snapshots:
errlop: 2.2.0
semver: 6.3.1
+ editorconfig@3.0.2:
+ dependencies:
+ '@one-ini/wasm': 0.2.1
+ commander: 14.0.3
+ minimatch: 10.2.5
+ semver: 7.8.4
+
ee-first@1.1.1: {}
- electron-to-chromium@1.5.1: {}
+ electron-to-chromium@1.5.375: {}
- ember-a11y-testing@6.1.1(@babel/core@7.24.9)(@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0))(qunit@2.21.1)(webpack@5.93.0):
+ ember-a11y-testing@8.0.1(@babel/core@7.29.7(supports-color@8.1.1))(@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1)))(@ember/test-waiters@3.1.0)(axe-core@4.9.1)(qunit@2.26.0):
dependencies:
- '@ember/test-helpers': 3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0)
+ '@ember/test-helpers': 5.4.3(@babel/core@7.29.7(supports-color@8.1.1))
'@ember/test-waiters': 3.1.0
- '@scalvert/ember-setup-middleware-reporter': 0.1.1
+ '@embroider/addon-shim': 1.10.3
axe-core: 4.9.1
- body-parser: 1.20.2
- broccoli-persistent-filter: 3.1.3
- ember-auto-import: 2.7.4(webpack@5.93.0)
- ember-cli-babel: 7.26.11
- ember-cli-typescript: 4.2.1
- ember-cli-version-checker: 5.1.2
- ember-destroyable-polyfill: 2.0.3(@babel/core@7.24.9)
- fs-extra: 10.1.0
- validate-peer-dependencies: 2.0.0
+ decorator-transforms: 2.3.2(@babel/core@7.29.7(supports-color@8.1.1))
optionalDependencies:
- qunit: 2.21.1
+ qunit: 2.26.0
transitivePeerDependencies:
- '@babel/core'
- - '@glint/template'
- supports-color
- - webpack
- ember-auto-import@2.7.4(webpack@5.93.0):
+ ember-auto-import@2.13.1(webpack@5.107.2(postcss@8.5.15)):
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.24.9)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-env': 7.24.8(@babel/core@7.24.9)
- '@embroider/macros': 1.16.5
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/preset-env': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@embroider/macros': 1.20.5
+ '@embroider/reverse-exports': 0.2.0
'@embroider/shared-internals': 2.6.2
- babel-loader: 8.2.3(@babel/core@7.24.9)(webpack@5.93.0)
+ babel-loader: 8.2.3(@babel/core@7.29.7(supports-color@8.1.1))(webpack@5.107.2(postcss@8.5.15))
babel-plugin-ember-modules-api-polyfill: 3.5.0
- babel-plugin-ember-template-compilation: 2.2.5
+ babel-plugin-ember-template-compilation: 2.4.1
babel-plugin-htmlbars-inline-precompile: 5.3.1
babel-plugin-syntax-dynamic-import: 6.18.0
broccoli-debug: 0.6.5
@@ -9534,20 +10654,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.93.0)
- debug: 4.3.5
+ css-loader: 5.2.7(webpack@5.107.2(postcss@8.5.15))
+ debug: 4.4.3(supports-color@8.1.1)
fs-extra: 10.1.0
fs-tree-diff: 2.0.1
- handlebars: 4.7.7
+ handlebars: 4.7.9
+ is-subdir: 1.2.0
js-string-escape: 1.0.1
- lodash: 4.17.21
- mini-css-extract-plugin: 2.9.0(webpack@5.93.0)
- minimatch: 3.1.2
+ lodash: 4.18.1
+ mini-css-extract-plugin: 2.9.0(webpack@5.107.2(postcss@8.5.15))
+ minimatch: 3.1.5
parse5: 6.0.1
- resolve: 1.22.8
+ pkg-entry-points: 1.1.2
+ resolve: 1.22.12
resolve-package-path: 4.0.3
- semver: 7.6.3
- style-loader: 2.0.0(webpack@5.93.0)
+ semver: 7.8.4
+ style-loader: 2.0.0(webpack@5.107.2(postcss@8.5.15))
typescript-memoize: 1.1.0
walk-sync: 3.0.0
transitivePeerDependencies:
@@ -9555,32 +10677,24 @@ snapshots:
- supports-color
- webpack
- ember-cli-app-version@6.0.1(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)):
- dependencies:
- ember-cli-babel: 7.26.11
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
- 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.9
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-runtime': 7.16.10(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
'@babel/polyfill': 7.12.1
- '@babel/preset-env': 7.24.8(@babel/core@7.24.9)
+ '@babel/preset-env': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
'@babel/runtime': 7.12.18
amd-name-resolver: 1.3.1
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.9)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.29.7(supports-color@8.1.1))
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
@@ -9600,26 +10714,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-babel@8.2.0(@babel/core@7.24.9):
+ ember-cli-babel@8.2.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@babel/helper-compilation-targets': 7.24.8
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.9)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-runtime': 7.16.10(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.24.9)
- '@babel/preset-env': 7.24.8(@babel/core@7.24.9)
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/preset-env': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
'@babel/runtime': 7.12.18
amd-name-resolver: 1.3.1
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.9)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.29.7(supports-color@8.1.1))
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.24.9)
+ broccoli-babel-transpiler: 8.0.0(@babel/core@7.29.7(supports-color@8.1.1))
broccoli-debug: 0.6.5
broccoli-funnel: 3.0.8
broccoli-source: 3.0.1
@@ -9633,22 +10747,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-clean-css@3.0.0:
+ ember-cli-deprecation-workflow@3.4.0(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5)):
dependencies:
- broccoli-persistent-filter: 3.1.3
- clean-css: 5.3.3
- json-stable-stringify: 1.0.1
- transitivePeerDependencies:
- - supports-color
-
- ember-cli-dependency-checker@3.3.2(ember-cli@5.10.0(handlebars@4.7.7)(underscore@1.13.7)):
- dependencies:
- chalk: 2.4.2
- ember-cli: 5.10.0(handlebars@4.7.7)(underscore@1.13.7)
- find-yarn-workspace-root: 1.2.1
- is-git-url: 1.0.0
- resolve: 1.22.8
- semver: 5.7.2
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ ember-cli-babel: 8.2.0(@babel/core@7.29.7(supports-color@8.1.1))
+ ember-source: 6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5)
transitivePeerDependencies:
- supports-color
@@ -9668,7 +10771,7 @@ snapshots:
hash-for-dep: 1.5.1
heimdalljs-logger: 0.1.10
json-stable-stringify: 1.0.1
- semver: 7.6.3
+ semver: 7.8.4
silent-error: 1.1.1
strip-bom: 4.0.0
walk-sync: 2.2.0
@@ -9678,7 +10781,7 @@ snapshots:
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.4.1
babel-plugin-htmlbars-inline-precompile: 5.3.1
broccoli-debug: 0.6.5
broccoli-persistent-filter: 3.1.3
@@ -9694,15 +10797,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-inject-live-reload@2.1.0:
- dependencies:
- clean-base-url: 1.0.0
- ember-cli-version-checker: 3.1.3
-
ember-cli-is-package-missing@1.0.0: {}
- ember-cli-lodash-subset@2.0.1: {}
-
ember-cli-normalize-entity-name@1.0.0:
dependencies:
silent-error: 1.1.1
@@ -9724,34 +10820,16 @@ snapshots:
ember-cli-preprocess-registry@5.0.1:
dependencies:
broccoli-funnel: 3.0.8
- debug: 4.3.5
- transitivePeerDependencies:
- - supports-color
-
- ember-cli-sri@2.1.1:
- dependencies:
- broccoli-sri-hash: 2.1.2
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
ember-cli-string-utils@1.1.0: {}
- ember-cli-terser@4.0.2:
- dependencies:
- broccoli-terser-sourcemap: 4.1.0
- transitivePeerDependencies:
- - supports-color
-
ember-cli-test-info@1.0.0:
dependencies:
ember-cli-string-utils: 1.1.0
- ember-cli-test-loader@3.1.0:
- dependencies:
- ember-cli-babel: 7.26.11
- transitivePeerDependencies:
- - supports-color
-
ember-cli-typescript-blueprint-polyfill@0.1.0:
dependencies:
chalk: 4.1.2
@@ -9759,79 +10837,46 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-typescript@2.0.2(@babel/core@7.24.9):
- dependencies:
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.4.5(@babel/core@7.24.9)
- ansi-to-html: 0.6.15
- debug: 4.3.5
- ember-cli-babel-plugin-helpers: 1.1.1
- execa: 1.0.0
- fs-extra: 7.0.1
- resolve: 1.22.8
- rsvp: 4.8.5
- semver: 6.3.1
- stagehand: 1.0.0
- walk-sync: 1.1.4
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
-
- ember-cli-typescript@3.0.0(@babel/core@7.24.9):
+ ember-cli-typescript@3.0.0(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1):
dependencies:
- '@babel/plugin-transform-typescript': 7.5.5(@babel/core@7.24.9)
+ '@babel/plugin-transform-typescript': 7.5.5(@babel/core@7.29.7(supports-color@8.1.1))
ansi-to-html: 0.6.15
- debug: 4.3.5
+ debug: 4.4.3(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
+ resolve: 1.22.12
rsvp: 4.8.5
semver: 6.3.1
- stagehand: 1.0.0
+ stagehand: 1.0.0(supports-color@8.1.1)
walk-sync: 2.2.0
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-cli-typescript@3.1.4(@babel/core@7.24.9):
+ ember-cli-typescript@3.1.4(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1):
dependencies:
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.8.7(@babel/core@7.24.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-typescript': 7.8.7(@babel/core@7.29.7(supports-color@8.1.1))
ansi-to-html: 0.6.15
- broccoli-stew: 3.0.0
- debug: 4.3.5
+ broccoli-stew: 3.0.0(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
ember-cli-babel-plugin-helpers: 1.1.1
execa: 3.4.0
fs-extra: 8.1.0
- resolve: 1.22.8
+ resolve: 1.22.12
rsvp: 4.8.5
semver: 6.3.1
- stagehand: 1.0.0
+ stagehand: 1.0.0(supports-color@8.1.1)
walk-sync: 2.2.0
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-cli-typescript@4.2.1:
- dependencies:
- ansi-to-html: 0.6.15
- broccoli-stew: 3.0.0
- debug: 4.3.5
- execa: 4.1.0
- fs-extra: 9.1.0
- resolve: 1.22.8
- rsvp: 4.8.5
- semver: 7.6.3
- stagehand: 1.0.0
- walk-sync: 2.2.0
- transitivePeerDependencies:
- - supports-color
-
ember-cli-version-checker@2.2.0:
dependencies:
- resolve: 1.22.8
+ resolve: 1.22.12
semver: 5.7.2
ember-cli-version-checker@3.1.3:
@@ -9850,16 +10895,21 @@ snapshots:
ember-cli-version-checker@5.1.2:
dependencies:
resolve-package-path: 3.1.0
- semver: 7.6.3
+ semver: 7.8.4
silent-error: 1.1.1
transitivePeerDependencies:
- supports-color
- ember-cli@5.10.0(handlebars@4.7.7)(underscore@1.13.7):
+ ember-cli@6.8.1(@babel/core@7.29.7(supports-color@8.1.1))(handlebars@4.7.9)(underscore@1.13.7):
dependencies:
- '@pnpm/find-workspace-dir': 6.0.3
+ '@ember-tooling/blueprint-blueprint': 0.2.1
+ '@ember-tooling/blueprint-model': 0.4.1
+ '@ember-tooling/classic-build-addon-blueprint': 6.8.0
+ '@ember-tooling/classic-build-app-blueprint': 6.8.0
+ '@ember/app-blueprint': 6.8.3
+ '@pnpm/find-workspace-dir': 1000.1.5
+ babel-remove-types: 1.1.0
broccoli: 3.5.2
- broccoli-builder: 0.18.14
broccoli-concat: 4.2.5
broccoli-config-loader: 1.0.1
broccoli-config-replace: 1.1.2
@@ -9870,39 +10920,38 @@ snapshots:
broccoli-middleware: 2.1.1
broccoli-slow-trees: 3.1.0
broccoli-source: 3.0.1
- broccoli-stew: 3.0.0
+ broccoli-stew: 3.0.0(supports-color@8.1.1)
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.4.0
clean-base-url: 1.0.0
- compression: 1.7.4
+ compression: 1.8.1
configstore: 5.0.1
console-ui: 3.1.2
- content-tag: 1.2.2
+ content-tag: 3.1.3
core-object: 3.1.5
dag-map: 2.0.2
- diff: 5.2.0
+ diff: 7.0.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: 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
+ express: 4.22.2
filesize: 10.1.4
find-up: 5.0.0
find-yarn-workspace-root: 2.0.0
fixturify-project: 2.1.1
- fs-extra: 11.2.0
+ fs-extra: 11.3.5
fs-tree-diff: 2.0.1
get-caller-file: 2.0.5
git-repo-info: 2.1.1
glob: 8.1.0
heimdalljs: 0.2.6
- heimdalljs-fs-monitor: 1.1.1
+ heimdalljs-fs-monitor: 1.1.2
heimdalljs-graph: 1.0.0
heimdalljs-logger: 0.1.10
http-proxy: 1.18.1
@@ -9910,41 +10959,40 @@ snapshots:
inquirer: 9.3.6
is-git-url: 1.0.0
is-language-code: 3.1.0
- isbinaryfile: 5.0.2
- lodash: 4.17.21
- markdown-it: 13.0.2
- markdown-it-terminal: 0.4.0(markdown-it@13.0.2)
+ isbinaryfile: 5.0.7
+ lodash: 4.18.1
+ markdown-it: 14.2.0
+ markdown-it-terminal: 0.4.0(markdown-it@14.2.0)
minimatch: 7.4.6
morgan: 1.10.0
nopt: 3.0.6
- npm-package-arg: 10.1.0
+ npm-package-arg: 12.0.2
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.12
resolve-package-path: 4.0.3
safe-stable-stringify: 2.4.3
sane: 5.0.1
- semver: 7.6.3
+ semver: 7.8.4
silent-error: 1.1.1
- sort-package-json: 1.57.0
+ sort-package-json: 2.15.1
symlink-or-copy: 1.3.1
temp: 0.9.4
- testem: 3.15.1(handlebars@4.7.7)(underscore@1.13.7)
+ testem: 3.20.1(@babel/core@7.29.7(supports-color@8.1.1))(handlebars@4.7.9)(underscore@1.13.7)
tiny-lr: 2.0.0
tree-sync: 2.1.0
walk-sync: 3.0.0
watch-detector: 1.0.2
- workerpool: 6.5.1
+ workerpool: 9.3.4
yam: 1.0.0
transitivePeerDependencies:
+ - '@babel/core'
- arc-templates
- atpl
- - babel-core
- bracket-template
- bufferutil
- coffee-script
@@ -9962,30 +11010,25 @@ snapshots:
- handlebars
- hogan.js
- htmling
- - jade
- jazz
- jqtpl
- just
- liquid-node
- liquor
- - marko
- mote
- nunjucks
- plates
- pug
- qejs
- ractive
- - razor-tmpl
- react
- react-dom
- slm
- - squirrelly
- supports-color
- swig
- swig-templates
- teacup
- templayed
- - then-jade
- then-pug
- tinyliquid
- toffee
@@ -9998,9 +11041,9 @@ snapshots:
- walrus
- whiskers
- ember-compatibility-helpers@1.2.5(@babel/core@7.24.9):
+ ember-compatibility-helpers@1.2.5(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- babel-plugin-debug-macros: 0.2.0(@babel/core@7.24.9)
+ babel-plugin-debug-macros: 0.2.0(@babel/core@7.29.7(supports-color@8.1.1))
ember-cli-version-checker: 5.1.2
fs-extra: 9.1.0
semver: 5.7.2
@@ -10008,102 +11051,99 @@ snapshots:
- '@babel/core'
- supports-color
- ember-concurrency@2.3.7(@babel/core@7.24.9):
+ ember-concurrency@2.3.7(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/types': 7.29.7
'@glimmer/tracking': 1.1.2
ember-cli-babel: 7.26.11
ember-cli-babel-plugin-helpers: 1.1.1
ember-cli-htmlbars: 5.7.2
- ember-compatibility-helpers: 1.2.5(@babel/core@7.24.9)
- ember-destroyable-polyfill: 2.0.3(@babel/core@7.24.9)
+ ember-compatibility-helpers: 1.2.5(@babel/core@7.29.7(supports-color@8.1.1))
+ ember-destroyable-polyfill: 2.0.3(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-data@5.3.8(@ember/string@3.1.1)(@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0))(@ember/test-waiters@3.1.0)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(qunit@2.21.1):
+ ember-data@5.6.0(@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1)))(@ember/test-waiters@3.1.0)(qunit@2.26.0):
dependencies:
- '@ember-data/adapter': 5.3.8(@ember-data/legacy-compat@5.3.8(6e3174e136586a65a5f53d00488d8145))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/debug': 5.3.8(@ember-data/model@5.3.8(9fb5a65acffae2fc565eecbd74767f6b))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/graph': 5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/json-api': 5.3.8(@ember-data/graph@5.3.8(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/legacy-compat': 5.3.8(6e3174e136586a65a5f53d00488d8145)
- '@ember-data/model': 5.3.8(9fb5a65acffae2fc565eecbd74767f6b)
- '@ember-data/request': 5.3.8(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/request-utils': 5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/serializer': 5.3.8(@ember-data/legacy-compat@5.3.8(6e3174e136586a65a5f53d00488d8145))(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/store@5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/store': 5.3.8(@ember-data/request-utils@5.3.8(@ember/string@3.1.1)(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/request@5.3.8(@warp-drive/core-types@0.0.0-beta.11))(@ember-data/tracking@5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)))(@warp-drive/core-types@0.0.0-beta.11)
- '@ember-data/tracking': 5.3.8(@warp-drive/core-types@0.0.0-beta.11)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
+ '@ember-data/adapter': 5.6.0
+ '@ember-data/debug': 5.6.0(@ember-data/model@5.6.0)(@ember-data/request-utils@5.6.0)(@ember-data/store@5.6.0(@ember-data/tracking@5.6.0(@ember/test-waiters@3.1.0))(@ember/test-waiters@3.1.0))(@warp-drive/core-types@5.6.0)
+ '@ember-data/graph': 5.6.0
+ '@ember-data/json-api': 5.6.0
+ '@ember-data/legacy-compat': 5.6.0
+ '@ember-data/model': 5.6.0
+ '@ember-data/request': 5.6.0
+ '@ember-data/request-utils': 5.6.0
+ '@ember-data/serializer': 5.6.0
+ '@ember-data/store': 5.6.0(@ember-data/tracking@5.6.0(@ember/test-waiters@3.1.0))(@ember/test-waiters@3.1.0)
+ '@ember-data/tracking': 5.6.0(@ember/test-waiters@3.1.0)
'@ember/edition-utils': 1.2.0
- '@embroider/macros': 1.16.5
- '@warp-drive/build-config': 0.0.0-beta.6
- '@warp-drive/core-types': 0.0.0-beta.11
- optionalDependencies:
- '@ember/test-helpers': 3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0)
'@ember/test-waiters': 3.1.0
- qunit: 2.21.1
+ '@embroider/macros': 1.20.5
+ '@warp-drive/core': 5.6.0
+ '@warp-drive/core-types': 5.6.0
+ '@warp-drive/ember': 5.6.0(@ember/test-waiters@3.1.0)
+ '@warp-drive/json-api': 5.6.0(@warp-drive/core@5.6.0)
+ '@warp-drive/legacy': 5.6.0(@warp-drive/core@5.6.0)(@warp-drive/utilities@5.6.0(@warp-drive/core@5.6.0))
+ '@warp-drive/utilities': 5.6.0(@warp-drive/core@5.6.0)
+ optionalDependencies:
+ '@ember/test-helpers': 5.4.3(@babel/core@7.29.7(supports-color@8.1.1))
+ qunit: 2.26.0
transitivePeerDependencies:
- - '@ember/string'
- '@glint/template'
- ember-inflector
- - ember-source
+ - ember-provide-consume-context
- supports-color
- ember-destroyable-polyfill@2.0.3(@babel/core@7.24.9):
+ ember-destroyable-polyfill@2.0.3(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
ember-cli-babel: 7.26.11
ember-cli-version-checker: 5.1.2
- ember-compatibility-helpers: 1.2.5(@babel/core@7.24.9)
+ ember-compatibility-helpers: 1.2.5(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-fetch@8.1.2:
+ ember-eslint-parser@0.14.0(@babel/eslint-parser@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4))(typescript@6.0.3):
dependencies:
- abortcontroller-polyfill: 1.7.3
- 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: 4.2.1
- ember-cli-version-checker: 5.1.2
- node-fetch: 2.6.7
- whatwg-fetch: 3.6.2
+ '@glimmer/syntax': 0.95.0
+ '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@6.0.3)
+ content-tag: 4.2.0
+ ember-estree: 0.6.4
+ eslint-scope: 9.1.2
+ html-tags: 5.1.0
+ mathml-tag-names: 4.0.0
+ svg-tags: 1.0.0
+ optionalDependencies:
+ '@babel/eslint-parser': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4)
transitivePeerDependencies:
- - encoding
- - supports-color
+ - typescript
- ember-load-initializers@2.1.2(@babel/core@7.24.9):
+ ember-estree@0.6.4:
dependencies:
- ember-cli-babel: 7.26.11
- ember-cli-typescript: 2.0.2(@babel/core@7.24.9)
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
+ '@glimmer/env': 0.1.7
+ '@glimmer/syntax': 0.95.0
+ content-tag: 4.2.0
+ oxc-parser: 0.130.0
+
+ ember-load-initializers@3.0.1(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5)):
+ dependencies:
+ ember-source: 6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5)
- ember-modifier-manager-polyfill@1.2.0(@babel/core@7.24.9):
+ ember-modifier-manager-polyfill@1.2.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
ember-cli-babel: 7.26.11
ember-cli-version-checker: 2.2.0
- ember-compatibility-helpers: 1.2.5(@babel/core@7.24.9)
+ ember-compatibility-helpers: 1.2.5(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-modifier@4.2.0(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)):
+ ember-modifier@4.3.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@embroider/addon-shim': 1.8.9
- decorator-transforms: 2.0.0(@babel/core@7.24.9)
- ember-cli-normalize-entity-name: 1.0.0
- ember-cli-string-utils: 1.1.0
- optionalDependencies:
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
+ '@embroider/addon-shim': 1.10.3
+ decorator-transforms: 2.3.2(@babel/core@7.29.7(supports-color@8.1.1))
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -10115,75 +11155,63 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-page-title@8.2.3(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)):
+ ember-page-title@9.0.3:
dependencies:
- '@embroider/addon-shim': 1.8.9
+ '@embroider/addon-shim': 1.10.3
'@simple-dom/document': 1.4.0
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
- transitivePeerDependencies:
- - supports-color
-
- ember-qunit@8.1.0(@ember/test-helpers@3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0))(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(qunit@2.21.1):
- dependencies:
- '@ember/test-helpers': 3.3.1(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))(webpack@5.93.0)
- '@embroider/addon-shim': 1.8.9
- '@embroider/macros': 1.16.5
- ember-cli-test-loader: 3.1.0
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
- qunit: 2.21.1
- qunit-theme-ember: 1.0.0
transitivePeerDependencies:
- - '@glint/template'
- supports-color
- ember-resolver@11.0.1(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)):
+ ember-qunit@9.1.0(@ember/test-helpers@5.4.3(@babel/core@7.29.7(supports-color@8.1.1)))(qunit@2.26.0):
dependencies:
- ember-cli-babel: 7.26.11
- optionalDependencies:
- ember-source: 5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)
+ '@ember/test-helpers': 5.4.3(@babel/core@7.29.7(supports-color@8.1.1))
+ '@embroider/addon-shim': 1.10.3
+ qunit: 2.26.0
+ qunit-theme-ember: 1.0.0
transitivePeerDependencies:
- supports-color
- ember-rfc176-data@0.3.17: {}
+ ember-resolver@13.2.0: {}
+
+ ember-rfc176-data@0.3.18: {}
ember-router-generator@2.0.0:
dependencies:
- '@babel/parser': 7.24.8
- '@babel/traverse': 7.24.8
+ '@babel/parser': 7.29.7
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
recast: 0.18.10
transitivePeerDependencies:
- supports-color
- ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0):
+ ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
'@ember/edition-utils': 1.2.0
- '@glimmer/compiler': 0.92.0
- '@glimmer/component': 1.1.2(@babel/core@7.24.9)
- '@glimmer/destroyable': 0.92.0
- '@glimmer/env': 0.1.7
- '@glimmer/global-context': 0.92.0
- '@glimmer/interfaces': 0.92.0
- '@glimmer/manager': 0.92.0
- '@glimmer/node': 0.92.0
- '@glimmer/opcode-compiler': 0.92.0
- '@glimmer/owner': 0.92.0
- '@glimmer/program': 0.92.0
- '@glimmer/reference': 0.92.0
- '@glimmer/runtime': 0.92.0
- '@glimmer/syntax': 0.92.0
- '@glimmer/util': 0.92.0
- '@glimmer/validator': 0.92.0
- '@glimmer/vm': 0.92.0
- '@glimmer/vm-babel-plugins': 0.92.0(@babel/core@7.24.9)
+ '@embroider/addon-shim': 1.10.3
+ '@glimmer/compiler': 0.94.11
+ '@glimmer/component': 2.1.1
+ '@glimmer/destroyable': 0.94.8
+ '@glimmer/global-context': 0.93.4
+ '@glimmer/interfaces': 0.94.6
+ '@glimmer/manager': 0.94.10
+ '@glimmer/node': 0.94.10
+ '@glimmer/opcode-compiler': 0.94.10
+ '@glimmer/owner': 0.93.4
+ '@glimmer/program': 0.94.10
+ '@glimmer/reference': 0.94.9
+ '@glimmer/runtime': 0.94.11
+ '@glimmer/syntax': 0.95.0
+ '@glimmer/util': 0.94.8
+ '@glimmer/validator': 0.95.0
+ '@glimmer/vm': 0.94.8
+ '@glimmer/vm-babel-plugins': 0.93.5(@babel/core@7.29.7(supports-color@8.1.1))
'@simple-dom/interface': 1.4.0
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.93.0)
- ember-cli-babel: 8.2.0(@babel/core@7.24.9)
+ ember-cli-babel: 8.2.0(@babel/core@7.29.7(supports-color@8.1.1))
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
@@ -10194,28 +11222,26 @@ snapshots:
ember-router-generator: 2.0.0
inflection: 2.0.1
route-recognizer: 0.3.4
- router_js: 8.0.5(route-recognizer@0.3.4)(rsvp@4.8.5)
- semver: 7.6.3
+ router_js: 8.0.6(route-recognizer@0.3.4)(rsvp@4.8.5)
+ semver: 7.8.4
silent-error: 1.1.1
simple-html-tokenizer: 0.5.11
transitivePeerDependencies:
- - '@glint/template'
- rsvp
- supports-color
- - webpack
- ember-styleguide@11.0.3(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0)):
+ ember-styleguide@11.0.3(@babel/core@7.29.7(supports-color@8.1.1))(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5))(supports-color@8.1.1):
dependencies:
- '@ember/render-modifiers': 2.1.0(@babel/core@7.24.9)(ember-source@5.10.1(@glimmer/component@1.1.2(@babel/core@7.24.9))(rsvp@4.8.5)(webpack@5.93.0))
- '@glimmer/component': 1.1.2(@babel/core@7.24.9)
+ '@ember/render-modifiers': 2.1.0(@babel/core@7.29.7(supports-color@8.1.1))(ember-source@6.8.4(@glimmer/component@2.1.1)(rsvp@4.8.5))
+ '@glimmer/component': 1.1.2(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
broccoli-funnel: 3.0.8
broccoli-merge-trees: 4.2.0
ember-cli-babel: 7.26.11
ember-cli-htmlbars: 5.7.2
ember-cli-postcss: 8.2.0
- ember-concurrency: 2.3.7(@babel/core@7.24.9)
+ ember-concurrency: 2.3.7(@babel/core@7.29.7(supports-color@8.1.1))
ember-named-blocks-polyfill: 0.2.5
- ember-test-waiters: 2.1.3(@babel/core@7.24.9)
+ ember-test-waiters: 2.1.3(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
ember-truth-helpers: 3.0.0
lodash.get: 4.4.2
normalize.css: 8.0.1
@@ -10231,7 +11257,7 @@ snapshots:
ember-template-imports@3.4.2:
dependencies:
babel-import-util: 0.2.0
- broccoli-stew: 3.0.0
+ broccoli-stew: 3.0.0(supports-color@8.1.1)
ember-cli-babel-plugin-helpers: 1.1.1
ember-cli-version-checker: 5.1.2
line-column: 1.0.2
@@ -10242,23 +11268,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-template-lint@5.13.0:
+ ember-template-lint@6.1.0:
dependencies:
'@lint-todo/utils': 13.1.1
aria-query: 5.3.0
chalk: 5.3.0
- ci-info: 3.9.0
- date-fns: 2.30.0
+ ci-info: 4.4.0
+ date-fns: 3.6.0
ember-template-imports: 3.4.2
ember-template-recast: 6.1.5
eslint-formatter-kakoune: 1.0.0
- find-up: 6.3.0
- fuse.js: 6.5.3
+ find-up: 7.0.0
+ fuse.js: 7.4.2
get-stdin: 9.0.0
- globby: 13.2.2
+ globby: 14.1.0
is-glob: 4.0.3
language-tags: 1.0.9
- micromatch: 4.0.7
+ micromatch: 4.0.8
resolve: 1.22.8
v8-compile-cache: 2.3.0
yargs: 17.7.2
@@ -10289,12 +11315,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-test-waiters@2.1.3(@babel/core@7.24.9):
+ ember-test-waiters@2.1.3(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1):
dependencies:
ember-cli-babel: 7.26.11
- ember-cli-typescript: 3.1.4(@babel/core@7.24.9)
+ ember-cli-typescript: 3.1.4(@babel/core@7.29.7(supports-color@8.1.1))(supports-color@8.1.1)
ember-cli-version-checker: 5.1.2
- semver: 7.6.3
+ semver: 7.8.4
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -10312,6 +11338,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ ember-truth-helpers@5.0.0:
+ dependencies:
+ '@embroider/addon-shim': 1.10.3
+ transitivePeerDependencies:
+ - supports-color
+
emoji-regex@7.0.3: {}
emoji-regex@8.0.0: {}
@@ -10320,39 +11352,45 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
engine.io-parser@5.2.3: {}
- engine.io@6.5.5:
+ engine.io@6.6.9:
dependencies:
- '@types/cookie': 0.4.1
'@types/cors': 2.8.17
'@types/node': 17.0.12
+ '@types/ws': 8.18.1
accepts: 1.3.8
base64id: 2.0.0
- cookie: 0.4.2
+ cookie: 0.7.2
cors: 2.8.5
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
engine.io-parser: 5.2.3
- ws: 8.17.1
+ ws: 8.21.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- enhanced-resolve@5.17.0:
+ enhanced-resolve@5.24.0:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.1
+ tapable: 2.3.3
ensure-posix-path@1.1.1: {}
entities@2.2.0: {}
- entities@3.0.1: {}
+ entities@4.5.0: {}
+
+ entities@6.0.1: {}
+
+ env-paths@2.2.1: {}
errlop@2.2.0: {}
@@ -10364,20 +11402,15 @@ snapshots:
dependencies:
string-template: 0.2.1
- errorhandler@1.5.1:
- dependencies:
- accepts: 1.3.8
- escape-html: 1.0.3
-
es-abstract@1.19.1:
dependencies:
call-bind: 1.0.2
es-to-primitive: 1.2.1
function-bind: 1.1.2
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.3.0
get-symbol-description: 1.0.0
has: 1.0.3
- has-symbols: 1.0.2
+ has-symbols: 1.1.0
internal-slot: 1.0.3
is-callable: 1.2.4
is-negative-zero: 2.0.2
@@ -10385,14 +11418,22 @@ snapshots:
is-shared-array-buffer: 1.0.1
is-string: 1.0.7
is-weakref: 1.0.2
- object-inspect: 1.12.0
+ object-inspect: 1.13.4
object-keys: 1.1.1
object.assign: 4.1.2
string.prototype.trimend: 1.0.4
string.prototype.trimstart: 1.0.4
unbox-primitive: 1.0.1
- es-module-lexer@1.5.4: {}
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
+
+ es-module-lexer@2.1.0: {}
+
+ es-object-atoms@1.1.2:
+ dependencies:
+ es-errors: 1.3.0
es-to-primitive@1.2.1:
dependencies:
@@ -10400,7 +11441,7 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- escalade@3.1.2: {}
+ escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -10417,144 +11458,143 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@8.57.0):
+ eslint-compat-utils@0.5.1(eslint@9.39.4):
dependencies:
- eslint: 8.57.0
- semver: 7.6.3
+ eslint: 9.39.4
+ semver: 7.8.4
- eslint-config-prettier@9.1.0(eslint@8.57.0):
+ eslint-config-prettier@9.1.2(eslint@9.39.4):
dependencies:
- eslint: 8.57.0
+ eslint: 9.39.4
eslint-formatter-kakoune@1.0.0: {}
- eslint-plugin-ember@11.12.0(eslint@8.57.0):
+ eslint-plugin-ember@13.4.0(@babel/eslint-parser@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4))(eslint@9.39.4)(typescript@6.0.3):
dependencies:
'@ember-data/rfc395-data': 0.0.4
- '@glimmer/syntax': 0.84.3
- css-tree: 2.3.1
- ember-rfc176-data: 0.3.17
- ember-template-imports: 3.4.2
- ember-template-recast: 6.1.5
- eslint: 8.57.0
- eslint-utils: 3.0.0(eslint@8.57.0)
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ css-tree: 3.2.1
+ editorconfig: 3.0.2
+ ember-eslint-parser: 0.14.0(@babel/eslint-parser@7.29.7(@babel/core@7.29.7(supports-color@8.1.1))(eslint@9.39.4))(typescript@6.0.3)
+ ember-rfc176-data: 0.3.18
+ eslint: 9.39.4
+ eslint-utils: 3.0.0(eslint@9.39.4)
estraverse: 5.3.0
+ html-tags: 3.3.1
+ language-tags: 1.0.9
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
- magic-string: 0.30.10
+ mathml-tag-names: 4.0.0
requireindex: 1.2.0
snake-case: 3.0.4
+ svg-tags: 1.0.0
transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-es-x@7.8.0(eslint@8.57.0):
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.11.0
- eslint: 8.57.0
- eslint-compat-utils: 0.5.1(eslint@8.57.0)
+ - '@babel/eslint-parser'
+ - typescript
- eslint-plugin-n@16.6.2(eslint@8.57.0):
+ eslint-plugin-es-x@7.8.0(eslint@9.39.4):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- builtins: 5.1.0
- eslint: 8.57.0
- eslint-plugin-es-x: 7.8.0(eslint@8.57.0)
- get-tsconfig: 4.7.6
- globals: 13.24.0
- ignore: 5.3.1
- is-builtin-module: 3.2.1
- is-core-module: 2.15.0
- minimatch: 3.1.2
- resolve: 1.22.8
- semver: 7.6.3
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
+ '@eslint-community/regexpp': 4.12.2
+ eslint: 9.39.4
+ eslint-compat-utils: 0.5.1(eslint@9.39.4)
- eslint-plugin-prettier@5.2.1(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3):
+ eslint-plugin-n@17.24.0(eslint@9.39.4)(typescript@6.0.3):
dependencies:
- eslint: 8.57.0
- prettier: 3.3.3
- prettier-linter-helpers: 1.0.0
- synckit: 0.9.1
- optionalDependencies:
- '@types/eslint': 9.6.0
- eslint-config-prettier: 9.1.0(eslint@8.57.0)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
+ enhanced-resolve: 5.24.0
+ eslint: 9.39.4
+ eslint-plugin-es-x: 7.8.0(eslint@9.39.4)
+ get-tsconfig: 4.14.0
+ globals: 15.15.0
+ globrex: 0.1.2
+ ignore: 5.3.2
+ semver: 7.8.4
+ ts-declaration-location: 1.0.7(typescript@6.0.3)
+ transitivePeerDependencies:
+ - typescript
- eslint-plugin-qunit@8.1.1(eslint@8.57.0):
+ eslint-plugin-qunit@8.2.6(eslint@9.39.4):
dependencies:
- eslint-utils: 3.0.0(eslint@8.57.0)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
+ eslint: 9.39.4
requireindex: 1.2.0
- transitivePeerDependencies:
- - eslint
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@7.2.2:
+ eslint-scope@8.4.0:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
+ eslint-scope@9.1.2:
dependencies:
+ '@types/esrecurse': 4.3.1
+ '@types/estree': 1.0.9
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-utils@3.0.0(eslint@8.57.0):
+ eslint-utils@3.0.0(eslint@9.39.4):
dependencies:
- eslint: 8.57.0
+ eslint: 9.39.4
eslint-visitor-keys: 2.1.0
eslint-visitor-keys@2.1.0: {}
eslint-visitor-keys@3.4.3: {}
- eslint@8.57.0:
+ eslint-visitor-keys@4.2.1: {}
+
+ eslint@9.39.4:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.11.0
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.0
- '@humanwhocodes/config-array': 0.11.14
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/config-array': 0.21.2
+ '@eslint/config-helpers': 0.4.2
+ '@eslint/core': 0.17.0
+ '@eslint/eslintrc': 3.3.5
+ '@eslint/js': 9.39.4
+ '@eslint/plugin-kit': 0.4.1
+ '@humanfs/node': 0.16.8
'@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
- ajv: 6.12.6
+ '@humanwhocodes/retry': 0.4.3
+ '@types/estree': 1.0.9
+ ajv: 6.15.0
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.5
- doctrine: 3.0.0
+ cross-spawn: 7.0.6
+ debug: 4.4.3(supports-color@8.1.1)
escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
+ file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
lodash.merge: 4.6.2
- minimatch: 3.1.2
+ minimatch: 3.1.5
natural-compare: 1.4.0
optionator: 0.9.4
- strip-ansi: 6.0.1
- text-table: 0.2.0
transitivePeerDependencies:
- supports-color
esm@3.2.25: {}
- espree@9.6.1:
+ espree@10.4.0:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
- eslint-visitor-keys: 3.4.3
+ acorn: 8.17.0
+ acorn-jsx: 5.3.2(acorn@8.17.0)
+ eslint-visitor-keys: 4.2.1
esprima@3.0.0: {}
@@ -10572,7 +11612,7 @@ snapshots:
estraverse@5.3.0: {}
- estree-walker@0.6.1: {}
+ estree-walker@2.0.2: {}
esutils@2.0.3: {}
@@ -10580,7 +11620,7 @@ snapshots:
eventemitter3@4.0.7: {}
- events-to-array@1.1.2: {}
+ events-to-array@2.0.3: {}
events@3.3.0: {}
@@ -10598,7 +11638,7 @@ snapshots:
execa@2.1.0:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 5.2.0
is-stream: 2.0.1
merge-stream: 2.0.0
@@ -10610,7 +11650,7 @@ snapshots:
execa@3.4.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
@@ -10623,7 +11663,7 @@ snapshots:
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
@@ -10635,7 +11675,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
@@ -10645,11 +11685,26 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
+ execa@9.6.1:
+ dependencies:
+ '@sindresorhus/merge-streams': 4.0.0
+ cross-spawn: 7.0.6
+ figures: 6.1.0
+ get-stream: 9.0.1
+ human-signals: 8.0.1
+ is-plain-obj: 4.1.0
+ is-stream: 4.0.1
+ npm-run-path: 6.0.0
+ pretty-ms: 9.3.0
+ signal-exit: 4.1.0
+ strip-final-newline: 4.0.0
+ yoctocolors: 2.1.2
+
exit@0.1.2: {}
expand-brackets@2.1.4:
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
define-property: 0.2.5
extend-shallow: 2.0.1
posix-character-classes: 0.1.1
@@ -10663,42 +11718,75 @@ snapshots:
dependencies:
homedir-polyfill: 1.0.3
- express@4.19.2:
+ express@4.22.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2
+ body-parser: 1.20.5
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.6.0
+ cookie: 0.7.2
cookie-signature: 1.0.6
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
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.2
fresh: 0.5.2
- http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ http-errors: 2.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.13
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.15.2
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.2
+ serve-static: 1.16.3
setprototypeof: 1.2.0
- statuses: 2.0.1
+ statuses: 2.0.2
type-is: 1.6.18
utils-merge: 1.0.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
+ express@5.2.1:
+ dependencies:
+ accepts: 2.0.0
+ body-parser: 2.3.0
+ content-disposition: 1.1.0
+ content-type: 1.0.5
+ cookie: 0.7.2
+ cookie-signature: 1.2.2
+ debug: 4.4.3(supports-color@8.1.1)
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.2
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.15.2
+ range-parser: 1.2.1
+ router: 2.2.0
+ send: 1.2.1(supports-color@8.1.1)
+ serve-static: 2.2.1
+ statuses: 2.0.2
+ type-is: 2.1.0
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -10731,15 +11819,13 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-diff@1.2.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: {}
@@ -10749,7 +11835,7 @@ snapshots:
dependencies:
blank-object: 1.0.2
- fast-sourcemap-concat@2.1.0:
+ fast-sourcemap-concat@2.1.1:
dependencies:
chalk: 2.4.2
fs-extra: 5.0.0
@@ -10758,7 +11844,6 @@ snapshots:
mkdirp: 0.5.6
source-map: 0.4.4
source-map-url: 0.3.0
- sourcemap-validator: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -10778,6 +11863,10 @@ snapshots:
dependencies:
bser: 2.1.1
+ fdir@6.5.0(picomatch@4.0.4):
+ optionalDependencies:
+ picomatch: 4.0.4
+
figures@2.0.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -10786,13 +11875,17 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- file-entry-cache@6.0.1:
+ figures@6.1.0:
+ dependencies:
+ is-unicode-supported: 2.1.0
+
+ file-entry-cache@11.1.3:
dependencies:
- flat-cache: 3.2.0
+ flat-cache: 6.1.22
- file-entry-cache@7.0.2:
+ file-entry-cache@8.0.0:
dependencies:
- flat-cache: 3.2.0
+ flat-cache: 4.0.1
filesize@10.1.4: {}
@@ -10807,9 +11900,9 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.1.2:
+ finalhandler@1.1.2(supports-color@8.1.1):
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
encodeurl: 1.0.2
escape-html: 1.0.3
on-finished: 2.3.0
@@ -10819,18 +11912,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- finalhandler@1.2.0:
+ finalhandler@1.3.2:
dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
+ debug: 2.6.9(supports-color@8.1.1)
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
- statuses: 2.0.1
+ statuses: 2.0.2
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
+ finalhandler@2.1.1:
+ dependencies:
+ debug: 4.4.3(supports-color@8.1.1)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
find-babel-config@1.2.2:
dependencies:
json5: 1.0.2
@@ -10867,36 +11971,29 @@ 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:
+ findup-sync@5.0.0:
dependencies:
- async: 0.2.10
- is-type: 0.0.1
- lodash.debounce: 3.1.1
- lodash.flatten: 3.0.2
- minimatch: 3.1.2
+ detect-file: 1.0.0
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ resolve-dir: 1.0.1
fixturify-project@1.10.0:
dependencies:
@@ -10926,13 +12023,18 @@ 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.4.2
keyv: 4.5.4
- rimraf: 3.0.2
- flatted@3.3.1: {}
+ flat-cache@6.1.22:
+ dependencies:
+ cacheable: 2.3.5
+ flatted: 3.4.2
+ hookified: 1.15.1
+
+ flatted@3.4.2: {}
flatten@1.0.3: {}
@@ -10944,7 +12046,7 @@ snapshots:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
- mime-types: 2.1.34
+ mime-types: 2.1.35
forwarded@0.2.0: {}
@@ -10954,6 +12056,8 @@ snapshots:
fresh@0.5.2: {}
+ fresh@2.0.0: {}
+
fs-extra@0.24.0:
dependencies:
graceful-fs: 4.2.11
@@ -10967,7 +12071,7 @@ snapshots:
jsonfile: 6.1.0
universalify: 2.0.1
- fs-extra@11.2.0:
+ fs-extra@11.3.5:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
@@ -11045,30 +12149,36 @@ snapshots:
fs.realpath@1.0.0: {}
+ fsevents@2.3.3:
+ optional: true
+
function-bind@1.1.2: {}
- fuse.js@6.5.3: {}
+ fuse.js@7.1.0: {}
- gauge@4.0.4:
- dependencies:
- aproba: 1.2.0
- color-support: 1.1.3
- console-control-strings: 1.1.0
- has-unicode: 2.0.1
- signal-exit: 3.0.7
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wide-align: 1.1.5
+ fuse.js@7.4.2: {}
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
- get-intrinsic@1.1.1:
+ get-intrinsic@1.3.0:
dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.2
function-bind: 1.1.2
- has: 1.0.3
- has-symbols: 1.0.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.4
+ math-intrinsics: 1.1.0
+
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.2
get-stdin@9.0.0: {}
@@ -11082,18 +12192,23 @@ snapshots:
get-stream@6.0.1: {}
+ get-stream@9.0.1:
+ dependencies:
+ '@sec-ant/readable-stream': 0.4.1
+ is-stream: 4.0.1
+
get-symbol-description@1.0.0:
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.3.0
- get-tsconfig@4.7.6:
+ get-tsconfig@4.14.0:
dependencies:
resolve-pkg-maps: 1.0.0
get-value@2.0.6: {}
- git-hooks-list@1.0.3: {}
+ git-hooks-list@3.2.0: {}
git-repo-info@2.1.1: {}
@@ -11107,11 +12222,17 @@ snapshots:
glob-to-regexp@0.4.1: {}
+ glob@13.0.6:
+ dependencies:
+ minimatch: 10.2.5
+ minipass: 7.1.3
+ path-scurry: 2.0.2
+
glob@5.0.15:
dependencies:
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.1.2
+ minimatch: 3.1.5
once: 1.4.0
path-is-absolute: 1.0.1
@@ -11120,7 +12241,7 @@ snapshots:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.1.2
+ minimatch: 3.1.5
once: 1.4.0
path-is-absolute: 1.0.1
@@ -11165,47 +12286,41 @@ snapshots:
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
+ globals@14.0.0: {}
- globalyzer@0.1.0: {}
+ globals@15.15.0: {}
- globby@10.0.0:
- dependencies:
- '@types/glob': 7.2.0
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- glob: 7.2.0
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 3.0.0
+ globals@16.5.0: {}
+
+ globalyzer@0.1.0: {}
globby@11.1.0:
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.1.0:
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: 7.0.5
+ path-type: 6.0.0
+ slash: 5.1.0
+ unicorn-magic: 0.3.0
globjoin@0.1.4: {}
globrex@0.1.2: {}
+ gopd@1.2.0: {}
+
graceful-fs@4.2.11: {}
- graphemer@1.4.0: {}
+ grapheme-splitter@1.0.4: {}
growly@1.3.0: {}
@@ -11218,7 +12333,14 @@ snapshots:
optionalDependencies:
uglify-js: 3.15.0
- hard-rejection@2.1.0: {}
+ handlebars@4.7.9:
+ dependencies:
+ minimist: 1.2.8
+ neo-async: 2.6.2
+ source-map: 0.6.1
+ wordwrap: 1.0.0
+ optionalDependencies:
+ uglify-js: 3.15.0
has-ansi@3.0.0:
dependencies:
@@ -11230,13 +12352,11 @@ snapshots:
has-flag@4.0.0: {}
- has-symbols@1.0.2: {}
+ has-symbols@1.1.0: {}
has-tostringtag@1.0.0:
dependencies:
- has-symbols: 1.0.2
-
- has-unicode@2.0.1: {}
+ has-symbols: 1.1.0
has-value@0.3.1:
dependencies:
@@ -11267,18 +12387,26 @@ snapshots:
heimdalljs: 0.2.6
heimdalljs-logger: 0.1.10
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.12
resolve-package-path: 1.2.7
transitivePeerDependencies:
- supports-color
+ hashery@1.5.1:
+ dependencies:
+ hookified: 1.15.1
+
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
+ hasown@2.0.4:
+ dependencies:
+ function-bind: 1.1.2
+
he@1.2.0: {}
- heimdalljs-fs-monitor@1.1.1:
+ heimdalljs-fs-monitor@1.1.2:
dependencies:
callsites: 3.1.0
clean-stack: 2.2.0
@@ -11292,7 +12420,7 @@ snapshots:
heimdalljs-logger@0.1.10:
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
heimdalljs: 0.2.6
transitivePeerDependencies:
- supports-color
@@ -11305,20 +12433,26 @@ snapshots:
dependencies:
parse-passwd: 1.0.0
- hosted-git-info@4.1.0:
- dependencies:
- lru-cache: 6.0.0
+ hookified@1.15.1: {}
- hosted-git-info@6.1.1:
+ hookified@2.2.0: {}
+
+ hosted-git-info@8.1.0:
dependencies:
- lru-cache: 7.18.3
+ lru-cache: 10.4.3
html-encoding-sniffer@2.0.1:
dependencies:
whatwg-encoding: 1.0.5
+ html-encoding-sniffer@4.0.0:
+ dependencies:
+ whatwg-encoding: 3.1.1
+
html-tags@3.3.1: {}
+ html-tags@5.1.0: {}
+
html2plaintext@2.1.4:
dependencies:
cheerio: 1.0.0-rc.10
@@ -11339,21 +12473,28 @@ snapshots:
setprototypeof: 1.1.0
statuses: 1.5.0
- http-errors@2.0.0:
+ http-errors@2.0.1:
dependencies:
depd: 2.0.0
inherits: 2.0.4
setprototypeof: 1.2.0
- statuses: 2.0.1
+ statuses: 2.0.2
toidentifier: 1.0.1
http-parser-js@0.5.5: {}
- http-proxy-agent@4.0.1:
+ http-proxy-agent@4.0.1(supports-color@8.1.1):
dependencies:
'@tootallnate/once': 1.1.2
- agent-base: 6.0.2
- debug: 4.3.5
+ agent-base: 6.0.2(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ http-proxy-agent@7.0.2:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -11365,10 +12506,17 @@ snapshots:
transitivePeerDependencies:
- debug
- https-proxy-agent@5.0.0:
+ https-proxy-agent@5.0.0(supports-color@8.1.1):
dependencies:
- agent-base: 6.0.2
- debug: 4.3.5
+ agent-base: 6.0.2(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ https-proxy-agent@7.0.6:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -11378,38 +12526,48 @@ snapshots:
human-signals@2.1.0: {}
+ human-signals@8.0.1: {}
+
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.40):
+ iconv-lite@0.6.3:
+ dependencies:
+ safer-buffer: 2.1.2
+
+ iconv-lite@0.7.2:
+ dependencies:
+ safer-buffer: 2.1.2
+
+ icss-utils@5.1.0(postcss@8.5.15):
dependencies:
- postcss: 8.4.40
+ postcss: 8.5.15
ieee754@1.2.1: {}
- ignore@5.3.1: {}
+ ignore@5.3.2: {}
+
+ ignore@7.0.5: {}
import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-lazy@4.0.0: {}
+ import-meta-resolve@4.2.0: {}
imurmurhash@0.1.4: {}
include-path-searcher@0.1.0: {}
- indent-string@5.0.0: {}
-
indexes-of@1.0.1: {}
inflected@1.1.7: {}
inflection@2.0.1: {}
- inflection@3.0.0: {}
+ inflection@3.0.2: {}
inflight@1.0.6:
dependencies:
@@ -11430,7 +12588,7 @@ snapshots:
cli-width: 2.2.1
external-editor: 3.1.0
figures: 2.0.0
- lodash: 4.17.21
+ lodash: 4.18.1
mute-stream: 0.0.7
run-async: 2.4.1
rxjs: 6.6.7
@@ -11446,7 +12604,7 @@ snapshots:
cli-width: 3.0.0
external-editor: 3.1.0
figures: 3.2.0
- lodash: 4.17.21
+ lodash: 4.18.1
mute-stream: 0.0.8
run-async: 2.4.1
rxjs: 6.6.7
@@ -11463,7 +12621,7 @@ snapshots:
mute-stream: 1.0.0
ora: 5.4.1
run-async: 3.0.0
- rxjs: 7.8.1
+ rxjs: 7.8.2
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
@@ -11471,9 +12629,9 @@ snapshots:
internal-slot@1.0.3:
dependencies:
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.3.0
has: 1.0.3
- side-channel: 1.0.4
+ side-channel: 1.1.1
interpret@1.4.0: {}
@@ -11502,16 +12660,16 @@ snapshots:
is-buffer@1.1.6: {}
- is-builtin-module@3.2.1:
- dependencies:
- builtin-modules: 3.3.0
-
is-callable@1.2.4: {}
is-core-module@2.15.0:
dependencies:
hasown: 2.0.2
+ is-core-module@2.16.2:
+ dependencies:
+ hasown: 2.0.4
+
is-data-descriptor@0.1.4:
dependencies:
kind-of: 3.2.2
@@ -11560,7 +12718,7 @@ snapshots:
is-language-code@3.1.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.29.7
is-negative-zero@2.0.2: {}
@@ -11576,11 +12734,7 @@ snapshots:
is-obj@2.0.0: {}
- is-path-inside@3.0.3: {}
-
- is-plain-obj@1.1.0: {}
-
- is-plain-obj@2.1.0: {}
+ is-plain-obj@4.1.0: {}
is-plain-object@2.0.4:
dependencies:
@@ -11590,9 +12744,7 @@ snapshots:
is-potential-custom-element-name@1.0.1: {}
- is-reference@1.2.1:
- dependencies:
- '@types/estree': 1.0.5
+ is-promise@4.0.0: {}
is-regex@1.1.4:
dependencies:
@@ -11605,22 +12757,26 @@ snapshots:
is-stream@2.0.1: {}
+ is-stream@4.0.1: {}
+
is-string@1.0.7:
dependencies:
has-tostringtag: 1.0.0
- is-symbol@1.0.4:
+ is-subdir@1.2.0:
dependencies:
- has-symbols: 1.0.2
+ better-path-resolve: 1.0.0
- is-type@0.0.1:
+ is-symbol@1.0.4:
dependencies:
- core-util-is: 1.0.3
+ has-symbols: 1.1.0
is-typedarray@1.0.0: {}
is-unicode-supported@0.1.0: {}
+ is-unicode-supported@2.1.0: {}
+
is-weakref@1.0.2:
dependencies:
call-bind: 1.0.2
@@ -11635,7 +12791,7 @@ snapshots:
isarray@1.0.0: {}
- isbinaryfile@5.0.2: {}
+ isbinaryfile@5.0.7: {}
isexe@2.0.0: {}
@@ -11676,10 +12832,14 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsdom@17.0.0:
+ js-yaml@4.2.0:
+ dependencies:
+ argparse: 2.0.1
+
+ jsdom@17.0.0(supports-color@8.1.1):
dependencies:
abab: 2.0.5
- acorn: 8.12.1
+ acorn: 8.17.0
acorn-globals: 6.0.0
cssom: 0.5.0
cssstyle: 2.3.0
@@ -11689,8 +12849,8 @@ snapshots:
escodegen: 2.0.0
form-data: 4.0.0
html-encoding-sniffer: 2.0.1
- http-proxy-agent: 4.0.1
- https-proxy-agent: 5.0.0
+ http-proxy-agent: 4.0.1(supports-color@8.1.1)
+ https-proxy-agent: 5.0.0(supports-color@8.1.1)
is-potential-custom-element-name: 1.0.1
nwsapi: 2.2.0
parse5: 6.0.1
@@ -11710,11 +12870,64 @@ snapshots:
- supports-color
- utf-8-validate
- jsesc@0.3.0: {}
+ jsdom@25.0.1:
+ dependencies:
+ cssstyle: 4.6.0
+ data-urls: 5.0.0
+ decimal.js: 10.6.0
+ form-data: 4.0.0
+ 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.24
+ parse5: 7.3.0
+ rrweb-cssom: 0.7.1
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 5.1.2
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.2.0
+ ws: 8.21.0
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ jsdom@26.1.0:
+ dependencies:
+ cssstyle: 4.6.0
+ data-urls: 5.0.0
+ decimal.js: 10.6.0
+ 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.24
+ parse5: 7.3.0
+ rrweb-cssom: 0.8.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 5.1.2
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.2.0
+ ws: 8.21.0
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
jsesc@0.5.0: {}
- jsesc@2.5.2: {}
+ jsesc@3.1.0: {}
json-buffer@3.0.1: {}
@@ -11730,6 +12943,11 @@ snapshots:
dependencies:
jsonify: 0.0.0
+ json-to-ast@2.1.0:
+ dependencies:
+ code-error-fragment: 0.0.230
+ grapheme-splitter: 1.0.4
+
json5@1.0.2:
dependencies:
minimist: 1.2.8
@@ -11739,7 +12957,7 @@ snapshots:
jsonapi-serializer@3.6.7:
dependencies:
inflected: 1.1.7
- lodash: 4.17.21
+ lodash: 4.18.1
jsonfile@2.4.0:
optionalDependencies:
@@ -11761,6 +12979,10 @@ snapshots:
dependencies:
json-buffer: 3.0.1
+ keyv@5.6.0:
+ dependencies:
+ '@keyv/serialize': 1.1.1
+
kind-of@3.2.2:
dependencies:
is-buffer: 1.1.6
@@ -11773,7 +12995,7 @@ snapshots:
kind-of@6.0.3: {}
- known-css-properties@0.29.0: {}
+ known-css-properties@0.37.0: {}
language-subtag-registry@0.3.23: {}
@@ -11795,6 +13017,55 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ lightningcss-android-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-x64@1.32.0:
+ optional: true
+
+ lightningcss-freebsd-x64@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.32.0:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ optional: true
+
+ lightningcss@1.32.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.32.0
+ lightningcss-darwin-arm64: 1.32.0
+ lightningcss-darwin-x64: 1.32.0
+ lightningcss-freebsd-x64: 1.32.0
+ lightningcss-linux-arm-gnueabihf: 1.32.0
+ lightningcss-linux-arm64-gnu: 1.32.0
+ lightningcss-linux-arm64-musl: 1.32.0
+ lightningcss-linux-x64-gnu: 1.32.0
+ lightningcss-linux-x64-musl: 1.32.0
+ lightningcss-win32-arm64-msvc: 1.32.0
+ lightningcss-win32-x64-msvc: 1.32.0
+
line-column@1.0.2:
dependencies:
isarray: 1.0.0
@@ -11802,13 +13073,13 @@ snapshots:
lines-and-columns@1.2.4: {}
- linkify-it@4.0.1:
+ linkify-it@5.0.1:
dependencies:
- uc.micro: 1.0.6
+ uc.micro: 2.1.0
livereload-js@3.3.2: {}
- loader-runner@4.2.0: {}
+ loader-runner@4.3.2: {}
loader-utils@1.4.2:
dependencies:
@@ -11822,10 +13093,6 @@ snapshots:
emojis-list: 3.0.0
json5: 2.2.3
- loader.js@4.7.0: {}
-
- locate-character@2.0.5: {}
-
locate-path@2.0.0:
dependencies:
p-locate: 2.0.0
@@ -11848,56 +13115,17 @@ snapshots:
dependencies:
p-locate: 6.0.0
- lodash._baseflatten@3.1.4:
- dependencies:
- lodash.isarguments: 3.1.0
- lodash.isarray: 3.0.4
-
- lodash._getnative@3.9.1: {}
-
- lodash._isiterateecall@3.0.9: {}
-
- lodash._reinterpolate@3.0.0: {}
-
lodash.camelcase@4.3.0: {}
- lodash.debounce@3.1.1:
- dependencies:
- lodash._getnative: 3.9.1
-
lodash.debounce@4.0.8: {}
- lodash.defaultsdeep@4.6.1: {}
-
- lodash.flatten@3.0.2:
- dependencies:
- lodash._baseflatten: 3.1.4
- lodash._isiterateecall: 3.0.9
-
- lodash.foreach@4.5.0: {}
-
lodash.get@4.4.2: {}
- lodash.isarguments@3.1.0: {}
-
- lodash.isarray@3.0.4: {}
-
lodash.kebabcase@4.1.1: {}
- lodash.memoize@4.1.2: {}
-
lodash.merge@4.6.2: {}
- lodash.omit@4.5.0: {}
-
- lodash.template@4.5.0:
- dependencies:
- lodash._reinterpolate: 3.0.0
- lodash.templatesettings: 4.2.0
-
- lodash.templatesettings@4.2.0:
- dependencies:
- lodash._reinterpolate: 3.0.0
+ lodash.omit@4.5.0: {}
lodash.truncate@4.4.2: {}
@@ -11905,6 +13133,8 @@ snapshots:
lodash@4.17.21: {}
+ lodash@4.18.1: {}
+
log-symbols@2.2.0:
dependencies:
chalk: 2.4.2
@@ -11920,28 +13150,16 @@ snapshots:
lru-cache@10.4.3: {}
+ lru-cache@11.5.1: {}
+
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: {}
-
- magic-string@0.24.1:
- dependencies:
- sourcemap-codec: 1.4.8
-
magic-string@0.25.7:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.10:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
@@ -11956,73 +13174,70 @@ snapshots:
map-cache@0.2.2: {}
- map-obj@1.0.1: {}
-
- map-obj@4.3.0: {}
-
map-visit@1.0.0:
dependencies:
object-visit: 1.0.1
- markdown-it-terminal@0.4.0(markdown-it@13.0.2):
+ markdown-it-terminal@0.4.0(markdown-it@14.2.0):
dependencies:
ansi-styles: 3.2.1
cardinal: 1.0.0
cli-table: 0.3.11
lodash.merge: 4.6.2
- markdown-it: 13.0.2
+ markdown-it: 14.2.0
- markdown-it@13.0.2:
+ markdown-it@14.2.0:
dependencies:
argparse: 2.0.1
- entities: 3.0.1
- linkify-it: 4.0.1
- mdurl: 1.0.1
- uc.micro: 1.0.6
+ entities: 4.5.0
+ linkify-it: 5.0.1
+ mdurl: 2.0.0
+ punycode.js: 2.3.1
+ uc.micro: 2.1.0
matcher-collection@1.1.2:
dependencies:
- minimatch: 3.1.2
+ minimatch: 3.1.5
matcher-collection@2.0.1:
dependencies:
'@types/minimatch': 3.0.5
- minimatch: 3.1.2
+ minimatch: 3.1.5
+
+ math-intrinsics@1.1.0: {}
mathml-tag-names@2.1.3: {}
- mdn-data@2.0.30: {}
+ mathml-tag-names@4.0.0: {}
- mdurl@1.0.1: {}
+ mdn-data@2.27.1: {}
+
+ mdurl@2.0.0: {}
media-typer@0.3.0: {}
+ media-typer@1.1.0: {}
+
mem@5.1.1:
dependencies:
map-age-cleaner: 0.1.3
mimic-fn: 2.1.0
p-is-promise: 2.1.0
+ mem@8.1.1:
+ dependencies:
+ map-age-cleaner: 0.1.3
+ mimic-fn: 3.1.0
+
memory-streams@0.1.3:
dependencies:
readable-stream: 1.0.34
- meow@10.1.5:
- dependencies:
- '@types/minimist': 1.2.5
- camelcase-keys: 7.0.2
- decamelize: 5.0.1
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 3.0.3
- read-pkg-up: 8.0.0
- redent: 4.0.0
- trim-newlines: 4.1.1
- type-fest: 1.4.0
- yargs-parser: 20.2.9
+ meow@13.2.0: {}
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
+
+ merge-descriptors@2.0.0: {}
merge-stream@2.0.0: {}
@@ -12057,16 +13272,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.7:
+ micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
- mime-db@1.51.0: {}
+ mime-db@1.52.0: {}
+
+ mime-db@1.54.0: {}
- mime-types@2.1.34:
+ mime-types@2.1.35:
dependencies:
- mime-db: 1.51.0
+ mime-db: 1.52.0
+
+ mime-types@3.0.2:
+ dependencies:
+ mime-db: 1.54.0
mime@1.6.0: {}
@@ -12074,15 +13295,19 @@ snapshots:
mimic-fn@2.1.0: {}
- min-indent@1.0.1: {}
+ mimic-fn@3.1.0: {}
+
+ mini-css-extract-plugin@2.9.0(webpack@5.107.2(postcss@8.5.15)):
+ dependencies:
+ schema-utils: 4.3.3
+ tapable: 2.3.3
+ webpack: 5.107.2(postcss@8.5.15)
- mini-css-extract-plugin@2.9.0(webpack@5.93.0):
+ minimatch@10.2.5:
dependencies:
- schema-utils: 4.2.0
- tapable: 2.2.1
- webpack: 5.93.0
+ brace-expansion: 5.0.6
- minimatch@3.1.2:
+ minimatch@3.1.5:
dependencies:
brace-expansion: 1.1.11
@@ -12098,22 +13323,11 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimist-options@4.1.0:
- dependencies:
- arrify: 1.0.1
- is-plain-obj: 1.1.0
- kind-of: 6.0.3
-
minimist@1.2.8: {}
- minipass@2.9.0:
- dependencies:
- safe-buffer: 5.2.1
- yallist: 3.1.1
-
minipass@4.2.8: {}
- minipass@7.1.2: {}
+ minipass@7.1.3: {}
mixin-deep@1.3.2:
dependencies:
@@ -12133,7 +13347,7 @@ snapshots:
morgan@1.10.0:
dependencies:
basic-auth: 2.0.1
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
depd: 2.0.0
on-finished: 2.3.0
on-headers: 1.0.2
@@ -12154,7 +13368,7 @@ snapshots:
mute-stream@1.0.0: {}
- nanoid@3.3.7: {}
+ nanoid@3.3.12: {}
nanomatch@1.2.13:
dependencies:
@@ -12176,6 +13390,10 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@0.6.4: {}
+
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
nice-try@1.0.5: {}
@@ -12185,24 +13403,9 @@ snapshots:
lower-case: 2.0.2
tslib: 2.6.3
- node-fetch@2.6.7:
- dependencies:
- whatwg-url: 5.0.0
-
node-int64@0.4.0: {}
- node-modules-path@1.0.2: {}
-
- node-notifier@10.0.1:
- dependencies:
- growly: 1.3.0
- is-wsl: 2.2.0
- semver: 7.6.3
- shellwords: 0.1.1
- uuid: 8.3.2
- which: 2.0.2
-
- node-releases@2.0.18: {}
+ node-releases@2.0.47: {}
node-watch@0.7.3: {}
@@ -12210,13 +13413,6 @@ snapshots:
dependencies:
abbrev: 1.1.1
- normalize-package-data@3.0.3:
- dependencies:
- hosted-git-info: 4.1.0
- is-core-module: 2.15.0
- semver: 7.6.3
- validate-npm-package-license: 3.0.4
-
normalize-path@2.1.1:
dependencies:
remove-trailing-separator: 1.1.0
@@ -12227,12 +13423,12 @@ snapshots:
normalize.css@8.0.1: {}
- npm-package-arg@10.1.0:
+ npm-package-arg@12.0.2:
dependencies:
- hosted-git-info: 6.1.1
- proc-log: 3.0.0
- semver: 7.6.3
- validate-npm-package-name: 5.0.1
+ hosted-git-info: 8.1.0
+ proc-log: 5.0.0
+ semver: 7.8.4
+ validate-npm-package-name: 6.0.2
npm-run-path@2.0.2:
dependencies:
@@ -12246,12 +13442,10 @@ snapshots:
dependencies:
path-key: 3.1.1
- npmlog@6.0.2:
+ npm-run-path@6.0.0:
dependencies:
- are-we-there-yet: 3.0.1
- console-control-strings: 1.1.0
- gauge: 4.0.4
- set-blocking: 2.0.0
+ path-key: 4.0.0
+ unicorn-magic: 0.3.0
nth-check@2.0.1:
dependencies:
@@ -12261,6 +13455,8 @@ snapshots:
nwsapi@2.2.0: {}
+ nwsapi@2.2.24: {}
+
object-assign@4.1.1: {}
object-copy@0.1.0:
@@ -12271,7 +13467,7 @@ snapshots:
object-hash@1.3.1: {}
- object-inspect@1.12.0: {}
+ object-inspect@1.13.4: {}
object-keys@1.1.1: {}
@@ -12283,7 +13479,7 @@ snapshots:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.3
- has-symbols: 1.0.2
+ has-symbols: 1.1.0
object-keys: 1.1.1
object.pick@1.3.0:
@@ -12300,6 +13496,8 @@ snapshots:
on-headers@1.0.2: {}
+ on-headers@1.1.0: {}
+
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -12359,6 +13557,31 @@ snapshots:
os-tmpdir@1.0.2: {}
+ oxc-parser@0.130.0:
+ dependencies:
+ '@oxc-project/types': 0.130.0
+ optionalDependencies:
+ '@oxc-parser/binding-android-arm-eabi': 0.130.0
+ '@oxc-parser/binding-android-arm64': 0.130.0
+ '@oxc-parser/binding-darwin-arm64': 0.130.0
+ '@oxc-parser/binding-darwin-x64': 0.130.0
+ '@oxc-parser/binding-freebsd-x64': 0.130.0
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.130.0
+ '@oxc-parser/binding-linux-arm-musleabihf': 0.130.0
+ '@oxc-parser/binding-linux-arm64-gnu': 0.130.0
+ '@oxc-parser/binding-linux-arm64-musl': 0.130.0
+ '@oxc-parser/binding-linux-ppc64-gnu': 0.130.0
+ '@oxc-parser/binding-linux-riscv64-gnu': 0.130.0
+ '@oxc-parser/binding-linux-riscv64-musl': 0.130.0
+ '@oxc-parser/binding-linux-s390x-gnu': 0.130.0
+ '@oxc-parser/binding-linux-x64-gnu': 0.130.0
+ '@oxc-parser/binding-linux-x64-musl': 0.130.0
+ '@oxc-parser/binding-openharmony-arm64': 0.130.0
+ '@oxc-parser/binding-wasm32-wasi': 0.130.0
+ '@oxc-parser/binding-win32-arm64-msvc': 0.130.0
+ '@oxc-parser/binding-win32-ia32-msvc': 0.130.0
+ '@oxc-parser/binding-win32-x64-msvc': 0.130.0
+
p-defer@1.0.0: {}
p-defer@3.0.0: {}
@@ -12409,18 +13632,20 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.1: {}
+
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.29.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-ms@1.0.1: {}
+ parse-ms@4.0.0: {}
parse-passwd@1.0.0: {}
@@ -12432,6 +13657,10 @@ snapshots:
parse5@6.0.1: {}
+ parse5@7.3.0:
+ dependencies:
+ entities: 6.0.1
+
parseurl@1.3.3: {}
pascalcase@0.1.1: {}
@@ -12448,6 +13677,8 @@ snapshots:
path-key@3.1.1: {}
+ path-key@4.0.0: {}
+
path-parse@1.0.7: {}
path-posix@1.0.0: {}
@@ -12461,24 +13692,37 @@ snapshots:
path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
- minipass: 7.1.2
+ minipass: 7.1.3
+
+ path-scurry@2.0.2:
+ dependencies:
+ lru-cache: 11.5.1
+ minipass: 7.1.3
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.13: {}
+
+ path-to-regexp@8.4.2: {}
path-type@4.0.0: {}
+ path-type@6.0.0: {}
+
picocolors@0.2.1: {}
- picocolors@1.0.1: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
+ picomatch@4.0.4: {}
+
pify@2.3.0: {}
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
+ pkg-entry-points@1.1.2: {}
+
pkg-up@2.0.0:
dependencies:
find-up: 2.1.0
@@ -12586,7 +13830,7 @@ snapshots:
postcss: 7.0.39
postcss-value-parser: 3.3.1
read-cache: 1.0.0
- resolve: 1.22.8
+ resolve: 1.22.12
postcss-initial@3.0.4:
dependencies:
@@ -12606,26 +13850,26 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-modules-extract-imports@3.1.0(postcss@8.4.40):
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.15):
dependencies:
- postcss: 8.4.40
+ postcss: 8.5.15
- postcss-modules-local-by-default@4.0.5(postcss@8.4.40):
+ postcss-modules-local-by-default@4.0.5(postcss@8.5.15):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.40)
- postcss: 8.4.40
+ icss-utils: 5.1.0(postcss@8.5.15)
+ postcss: 8.5.15
postcss-selector-parser: 6.1.1
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.0(postcss@8.4.40):
+ postcss-modules-scope@3.2.0(postcss@8.5.15):
dependencies:
- postcss: 8.4.40
+ postcss: 8.5.15
postcss-selector-parser: 6.1.1
- postcss-modules-values@4.0.0(postcss@8.4.40):
+ postcss-modules-values@4.0.0(postcss@8.5.15):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.40)
- postcss: 8.4.40
+ icss-utils: 5.1.0(postcss@8.5.15)
+ postcss: 8.5.15
postcss-nesting@7.0.1:
dependencies:
@@ -12647,7 +13891,7 @@ snapshots:
postcss-preset-env@6.7.0:
dependencies:
autoprefixer: 9.8.8
- browserslist: 4.23.2
+ browserslist: 4.28.2
caniuse-lite: 1.0.30001643
css-blank-pseudo: 0.1.4
css-has-pseudo: 0.10.0
@@ -12693,11 +13937,11 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-resolve-nested-selector@0.1.4: {}
+ postcss-resolve-nested-selector@0.1.6: {}
- postcss-safe-parser@6.0.0(postcss@8.4.40):
+ postcss-safe-parser@7.0.1(postcss@8.5.15):
dependencies:
- postcss: 8.4.40
+ postcss: 8.5.15
postcss-selector-matches@4.0.0:
dependencies:
@@ -12720,6 +13964,11 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
+ postcss-selector-parser@7.1.4:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
postcss-value-parser@3.3.1: {}
postcss-value-parser@4.2.0: {}
@@ -12735,33 +13984,39 @@ snapshots:
picocolors: 0.2.1
source-map: 0.6.1
- postcss@8.4.40:
+ postcss@8.5.15:
dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ nanoid: 3.3.12
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
prelude-ls@1.1.2: {}
prelude-ls@1.2.1: {}
- prettier-linter-helpers@1.0.0:
+ prettier-plugin-ember-template-tag@2.1.6(prettier@3.8.4):
dependencies:
- fast-diff: 1.2.0
+ '@babel/traverse': 7.29.7(supports-color@8.1.1)
+ content-tag: 4.2.0
+ prettier: 3.8.4
+ transitivePeerDependencies:
+ - supports-color
prettier@2.8.8: {}
- prettier@3.3.3: {}
+ prettier@3.8.4: {}
- pretty-ms@3.2.0:
+ pretty-ms@9.3.0:
dependencies:
- parse-ms: 1.0.1
+ parse-ms: 4.0.0
printf@0.6.1: {}
private@0.1.8: {}
- proc-log@3.0.0: {}
+ proc-log@5.0.0: {}
+
+ proc-log@6.1.0: {}
promise-map-series@0.2.3:
dependencies:
@@ -12789,15 +14044,21 @@ snapshots:
end-of-stream: 1.4.4
once: 1.4.0
+ punycode.js@2.3.1: {}
+
punycode@2.1.1: {}
- qs@6.11.0:
+ punycode@2.3.1: {}
+
+ qified@0.10.1:
dependencies:
- side-channel: 1.0.4
+ hookified: 2.2.0
- queue-microtask@1.2.3: {}
+ qs@6.15.2:
+ dependencies:
+ side-channel: 1.1.1
- quick-lru@5.1.1: {}
+ queue-microtask@1.2.3: {}
quick-temp@0.1.8:
dependencies:
@@ -12805,27 +14066,18 @@ snapshots:
rimraf: 2.7.1
underscore.string: 3.3.6
- qunit-dom@2.0.0:
+ qunit-dom@3.5.1:
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.21.1:
+ qunit@2.26.0:
dependencies:
commander: 7.2.0
node-watch: 0.7.3
tiny-glob: 0.2.9
- randombytes@2.1.0:
- dependencies:
- safe-buffer: 5.2.1
-
range-parser@1.2.1: {}
raw-body@1.1.7:
@@ -12833,29 +14085,23 @@ snapshots:
bytes: 1.0.0
string_decoder: 0.10.31
- raw-body@2.5.2:
+ raw-body@2.5.3:
dependencies:
bytes: 3.1.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
iconv-lite: 0.4.24
unpipe: 1.0.0
- read-cache@1.0.0:
- dependencies:
- pify: 2.3.0
-
- read-pkg-up@8.0.0:
+ raw-body@3.0.2:
dependencies:
- find-up: 5.0.0
- read-pkg: 6.0.0
- type-fest: 1.4.0
+ bytes: 3.1.2
+ http-errors: 2.0.1
+ iconv-lite: 0.7.2
+ unpipe: 1.0.0
- read-pkg@6.0.0:
+ read-cache@1.0.0:
dependencies:
- '@types/normalize-package-data': 2.4.4
- normalize-package-data: 3.0.3
- parse-json: 5.2.0
- type-fest: 1.4.0
+ pify: 2.3.0
readable-stream@1.0.34:
dependencies:
@@ -12870,6 +14116,8 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readdirp@5.0.0: {}
+
recast@0.18.10:
dependencies:
ast-types: 0.13.3
@@ -12879,12 +14127,7 @@ snapshots:
rechoir@0.6.2:
dependencies:
- resolve: 1.22.8
-
- redent@4.0.0:
- dependencies:
- indent-string: 5.0.0
- strip-indent: 4.0.0
+ resolve: 1.22.12
redeyed@1.0.1:
dependencies:
@@ -12898,11 +14141,9 @@ snapshots:
regenerator-runtime@0.13.9: {}
- regenerator-runtime@0.14.1: {}
-
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.29.7
regex-not@1.0.2:
dependencies:
@@ -12931,9 +14172,9 @@ snapshots:
remove-types@1.0.0:
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.24.9)
+ '@babel/core': 7.29.7(supports-color@8.1.1)
+ '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7(supports-color@8.1.1))
+ '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.29.7(supports-color@8.1.1))
prettier: 2.8.8
transitivePeerDependencies:
- supports-color
@@ -12948,8 +14189,6 @@ snapshots:
require-main-filename@2.0.0: {}
- require-relative@0.8.7: {}
-
requireindex@1.2.0: {}
requires-port@1.0.0: {}
@@ -12970,17 +14209,17 @@ snapshots:
resolve-package-path@1.2.7:
dependencies:
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.12
resolve-package-path@2.0.0:
dependencies:
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.12
resolve-package-path@3.1.0:
dependencies:
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.12
resolve-package-path@4.0.3:
dependencies:
@@ -12995,6 +14234,15 @@ snapshots:
resolve-url@0.2.1: {}
+ resolve.exports@2.0.3: {}
+
+ resolve@1.22.12:
+ dependencies:
+ es-errors: 1.3.0
+ is-core-module: 2.16.2
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
resolve@1.22.8:
dependencies:
is-core-module: 2.15.0
@@ -13029,32 +14277,54 @@ snapshots:
dependencies:
glob: 7.2.0
- rollup-pluginutils@2.8.2:
+ rimraf@6.1.3:
dependencies:
- estree-walker: 0.6.1
+ glob: 13.0.6
+ package-json-from-dist: 1.0.1
- rollup@0.57.1:
+ rolldown@1.1.3:
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
+ '@oxc-project/types': 0.137.0
+ '@rolldown/pluginutils': 1.0.1
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.1.3
+ '@rolldown/binding-darwin-arm64': 1.1.3
+ '@rolldown/binding-darwin-x64': 1.1.3
+ '@rolldown/binding-freebsd-x64': 1.1.3
+ '@rolldown/binding-linux-arm-gnueabihf': 1.1.3
+ '@rolldown/binding-linux-arm64-gnu': 1.1.3
+ '@rolldown/binding-linux-arm64-musl': 1.1.3
+ '@rolldown/binding-linux-ppc64-gnu': 1.1.3
+ '@rolldown/binding-linux-s390x-gnu': 1.1.3
+ '@rolldown/binding-linux-x64-gnu': 1.1.3
+ '@rolldown/binding-linux-x64-musl': 1.1.3
+ '@rolldown/binding-openharmony-arm64': 1.1.3
+ '@rolldown/binding-wasm32-wasi': 1.1.3
+ '@rolldown/binding-win32-arm64-msvc': 1.1.3
+ '@rolldown/binding-win32-x64-msvc': 1.1.3
route-recognizer@0.3.4: {}
- router_js@8.0.5(route-recognizer@0.3.4)(rsvp@4.8.5):
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.3(supports-color@8.1.1)
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.4.2
+ transitivePeerDependencies:
+ - supports-color
+
+ 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: {}
+
+ rrweb-cssom@0.8.0: {}
+
rsvp@3.2.1: {}
rsvp@3.6.2: {}
@@ -13073,7 +14343,7 @@ snapshots:
dependencies:
tslib: 1.14.1
- rxjs@7.8.1:
+ rxjs@7.8.2:
dependencies:
tslib: 2.6.3
@@ -13113,7 +14383,7 @@ snapshots:
exec-sh: 0.3.6
execa: 4.1.0
fb-watchman: 2.0.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
minimist: 1.2.8
walker: 1.0.8
@@ -13121,21 +14391,25 @@ snapshots:
dependencies:
xmlchars: 2.2.0
+ saxes@6.0.0:
+ dependencies:
+ xmlchars: 2.2.0
+
schema-utils@2.7.1:
dependencies:
- '@types/json-schema': 7.0.9
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
+ '@types/json-schema': 7.0.15
+ ajv: 6.15.0
+ ajv-keywords: 3.5.2(ajv@6.15.0)
schema-utils@3.3.0:
dependencies:
- '@types/json-schema': 7.0.9
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
+ '@types/json-schema': 7.0.15
+ ajv: 6.15.0
+ ajv-keywords: 3.5.2(ajv@6.15.0)
- schema-utils@4.2.0:
+ schema-utils@4.3.3:
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
ajv: 8.17.1
ajv-formats: 2.1.1(ajv@8.17.1)
ajv-keywords: 5.1.0(ajv@8.17.1)
@@ -13146,34 +14420,57 @@ snapshots:
semver@7.6.3: {}
- send@0.18.0:
+ semver@7.8.4: {}
+
+ send@0.19.2:
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
depd: 2.0.0
destroy: 1.2.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
mime: 1.6.0
ms: 2.1.3
on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 2.0.1
+ statuses: 2.0.2
transitivePeerDependencies:
- supports-color
- serialize-javascript@6.0.2:
+ send@1.2.1(supports-color@8.1.1):
dependencies:
- randombytes: 2.1.0
+ debug: 4.4.3(supports-color@8.1.1)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ mime-types: 3.0.2
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
- serve-static@1.15.0:
+ serve-static@1.16.3:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 0.19.2
+ transitivePeerDependencies:
+ - supports-color
+
+ serve-static@2.2.1:
+ dependencies:
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 1.2.1(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -13202,7 +14499,7 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.1: {}
+ shell-quote@1.8.3: {}
shelljs@0.8.5:
dependencies:
@@ -13216,11 +14513,33 @@ snapshots:
dependencies:
yargs: 14.2.3
- side-channel@1.0.4:
+ side-channel-list@1.0.1:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.1.1
- object-inspect: 1.12.0
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.1
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
signal-exit@3.0.7: {}
@@ -13228,7 +14547,7 @@ snapshots:
silent-error@1.1.1:
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -13236,7 +14555,7 @@ snapshots:
slash@3.0.0: {}
- slash@4.0.0: {}
+ slash@5.1.0: {}
slice-ansi@4.0.0:
dependencies:
@@ -13262,7 +14581,7 @@ snapshots:
snapdragon@0.8.2:
dependencies:
base: 0.11.2
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
define-property: 0.2.5
extend-shallow: 2.0.1
map-cache: 0.2.2
@@ -13288,13 +14607,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- socket.io@4.7.5:
+ socket.io@4.8.3:
dependencies:
accepts: 1.3.8
base64id: 2.0.0
cors: 2.8.5
- debug: 4.3.5
- engine.io: 6.5.5
+ debug: 4.4.3(supports-color@8.1.1)
+ engine.io: 6.6.9
socket.io-adapter: 2.5.5
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -13304,16 +14623,18 @@ snapshots:
sort-object-keys@1.1.3: {}
- sort-package-json@1.57.0:
+ sort-package-json@2.15.1:
dependencies:
- detect-indent: 6.1.0
- detect-newline: 3.1.0
- git-hooks-list: 1.0.3
- globby: 10.0.0
- is-plain-obj: 2.1.0
+ detect-indent: 7.0.2
+ detect-newline: 4.0.1
+ get-stdin: 9.0.0
+ git-hooks-list: 3.2.0
+ is-plain-obj: 4.1.0
+ semver: 7.8.4
sort-object-keys: 1.1.3
+ tinyglobby: 0.2.17
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-resolve@0.5.3:
dependencies:
@@ -13332,10 +14653,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
@@ -13346,31 +14663,8 @@ snapshots:
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: {}
- spawn-command@0.0.2: {}
-
- spdx-correct@3.1.1:
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.11
-
- spdx-exceptions@2.3.0: {}
-
- spdx-expression-parse@3.0.1:
- dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.11
-
- spdx-license-ids@3.0.11: {}
-
split-string@3.1.0:
dependencies:
extend-shallow: 3.0.2
@@ -13379,11 +14673,9 @@ snapshots:
sprintf-js@1.1.2: {}
- sri-toolbox@0.2.0: {}
-
- stagehand@1.0.0:
+ stagehand@1.0.0(supports-color@8.1.1):
dependencies:
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -13404,7 +14696,7 @@ snapshots:
statuses@1.5.0: {}
- statuses@2.0.1: {}
+ statuses@2.0.2: {}
string-template@0.2.1: {}
@@ -13430,11 +14722,11 @@ snapshots:
call-bind: 1.0.2
define-properties: 1.1.3
es-abstract: 1.19.1
- get-intrinsic: 1.1.1
- has-symbols: 1.0.2
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
internal-slot: 1.0.3
regexp.prototype.flags: 1.4.1
- side-channel: 1.0.4
+ side-channel: 1.1.1
string.prototype.trimend@1.0.4:
dependencies:
@@ -13470,78 +14762,67 @@ snapshots:
strip-final-newline@2.0.0: {}
- strip-indent@4.0.0:
- dependencies:
- min-indent: 1.0.1
+ strip-final-newline@4.0.0: {}
strip-json-comments@3.1.1: {}
- style-loader@2.0.0(webpack@5.93.0):
+ style-loader@2.0.0(webpack@5.107.2(postcss@8.5.15)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.93.0
-
- style-search@0.1.0: {}
+ webpack: 5.107.2(postcss@8.5.15)
styled_string@0.0.1: {}
- stylelint-config-recommended@13.0.0(stylelint@15.11.0):
- dependencies:
- stylelint: 15.11.0
-
- stylelint-config-standard@34.0.0(stylelint@15.11.0):
+ stylelint-config-recommended@14.0.1(stylelint@16.26.1(typescript@6.0.3)):
dependencies:
- stylelint: 15.11.0
- stylelint-config-recommended: 13.0.0(stylelint@15.11.0)
+ stylelint: 16.26.1(typescript@6.0.3)
- stylelint-prettier@4.1.0(prettier@3.3.3)(stylelint@15.11.0):
+ stylelint-config-standard@36.0.1(stylelint@16.26.1(typescript@6.0.3)):
dependencies:
- prettier: 3.3.3
- prettier-linter-helpers: 1.0.0
- stylelint: 15.11.0
+ stylelint: 16.26.1(typescript@6.0.3)
+ stylelint-config-recommended: 14.0.1(stylelint@16.26.1(typescript@6.0.3))
- stylelint@15.11.0:
+ stylelint@16.26.1(typescript@6.0.3):
dependencies:
- '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1)
- '@csstools/css-tokenizer': 2.4.1
- '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)
- '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.1)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-syntax-patches-for-csstree': 1.1.5(css-tree@3.2.1)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.4)
+ '@dual-bundle/import-meta-resolve': 4.2.1
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 8.3.6
- css-functions-list: 3.2.2
- css-tree: 2.3.1
- debug: 4.3.5
- fast-glob: 3.3.2
+ cosmiconfig: 9.0.2(typescript@6.0.3)
+ css-functions-list: 3.3.3
+ css-tree: 3.2.1
+ debug: 4.4.3(supports-color@8.1.1)
+ fast-glob: 3.3.3
fastest-levenshtein: 1.0.16
- file-entry-cache: 7.0.2
+ file-entry-cache: 11.1.3
global-modules: 2.0.0
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 5.3.1
- import-lazy: 4.0.0
+ ignore: 7.0.5
imurmurhash: 0.1.4
is-plain-object: 5.0.0
- known-css-properties: 0.29.0
+ known-css-properties: 0.37.0
mathml-tag-names: 2.1.3
- meow: 10.1.5
- micromatch: 4.0.7
+ meow: 13.2.0
+ micromatch: 4.0.8
normalize-path: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.40
- postcss-resolve-nested-selector: 0.1.4
- postcss-safe-parser: 6.0.0(postcss@8.4.40)
- postcss-selector-parser: 6.1.1
+ picocolors: 1.1.1
+ postcss: 8.5.15
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 7.0.1(postcss@8.5.15)
+ postcss-selector-parser: 7.1.4
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
- strip-ansi: 6.0.1
- style-search: 0.1.0
- supports-hyperlinks: 3.0.0
+ supports-hyperlinks: 3.2.0
svg-tags: 1.0.0
- table: 6.8.2
+ table: 6.9.0
write-file-atomic: 5.0.1
transitivePeerDependencies:
- supports-color
@@ -13559,7 +14840,7 @@ snapshots:
dependencies:
has-flag: 4.0.0
- supports-hyperlinks@3.0.0:
+ supports-hyperlinks@3.2.0:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
@@ -13574,7 +14855,7 @@ snapshots:
sync-disk-cache@1.3.4:
dependencies:
- debug: 2.6.9
+ debug: 2.6.9(supports-color@8.1.1)
heimdalljs: 0.2.6
mkdirp: 0.5.6
rimraf: 2.7.1
@@ -13584,7 +14865,7 @@ snapshots:
sync-disk-cache@2.1.0:
dependencies:
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
heimdalljs: 0.2.6
mkdirp: 0.5.6
rimraf: 3.0.2
@@ -13592,12 +14873,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- synckit@0.9.1:
- dependencies:
- '@pkgr/core': 0.1.1
- tslib: 2.6.3
-
- table@6.8.2:
+ table@6.9.0:
dependencies:
ajv: 8.17.1
lodash.truncate: 4.4.2
@@ -13605,66 +14881,70 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- tap-parser@7.0.0:
+ tap-parser@18.3.4:
dependencies:
- events-to-array: 1.1.2
- js-yaml: 3.14.1
- minipass: 2.9.0
+ events-to-array: 2.0.3
+ tap-yaml: 4.4.2
+
+ tap-yaml@4.4.2:
+ dependencies:
+ yaml: 2.9.0
+ yaml-types: 0.4.0(yaml@2.9.0)
- tapable@2.2.1: {}
+ tapable@2.3.3: {}
temp@0.9.4:
dependencies:
mkdirp: 0.5.6
rimraf: 2.6.3
- terser-webpack-plugin@5.3.10(webpack@5.93.0):
+ terser-webpack-plugin@5.6.1(postcss@8.5.15)(webpack@5.107.2(postcss@8.5.15)):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.2
+ schema-utils: 4.3.3
terser: 5.31.3
- webpack: 5.93.0
+ webpack: 5.107.2(postcss@8.5.15)
+ optionalDependencies:
+ postcss: 8.5.15
terser@5.31.3:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.17.0
commander: 2.20.3
source-map-support: 0.5.21
- testem@3.15.1(handlebars@4.7.7)(underscore@1.13.7):
+ testem@3.20.1(@babel/core@7.29.7(supports-color@8.1.1))(handlebars@4.7.9)(underscore@1.13.7):
dependencies:
- '@xmldom/xmldom': 0.8.10
- backbone: 1.6.0
- bluebird: 3.7.2
+ '@xmldom/xmldom': 0.9.10
+ backbone: 1.6.1
charm: 1.0.2
- commander: 2.20.3
- compression: 1.7.4
- consolidate: 0.16.0(handlebars@4.7.7)(lodash@4.17.21)(mustache@4.2.0)(underscore@1.13.7)
- execa: 1.0.0
- express: 4.19.2
- fireworm: 0.7.2
- glob: 7.2.0
+ chokidar: 5.0.0
+ commander: 14.0.3
+ compression: 1.8.1
+ consolidate: 1.0.4(@babel/core@7.29.7(supports-color@8.1.1))(handlebars@4.7.9)(lodash@4.18.1)(mustache@4.2.0)(underscore@1.13.7)
+ execa: 9.6.1
+ express: 5.2.1
+ glob: 13.0.6
http-proxy: 1.18.1
- js-yaml: 3.14.1
- lodash: 4.17.21
+ js-yaml: 4.2.0
+ lodash: 4.18.1
+ minimatch: 10.2.5
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
+ proc-log: 6.1.0
+ rimraf: 6.1.3
+ socket.io: 4.8.3
spawn-args: 0.2.0
styled_string: 0.0.1
- tap-parser: 7.0.0
- tmp: 0.0.33
+ tap-parser: 18.3.4
+ toasted-notifier: 10.1.0
transitivePeerDependencies:
+ - '@babel/core'
- arc-templates
- atpl
- - babel-core
- bracket-template
- bufferutil
- coffee-script
@@ -13682,30 +14962,25 @@ snapshots:
- handlebars
- hogan.js
- htmling
- - jade
- jazz
- jqtpl
- just
- liquid-node
- liquor
- - marko
- mote
- nunjucks
- plates
- pug
- qejs
- ractive
- - razor-tmpl
- react
- react-dom
- slm
- - squirrelly
- supports-color
- swig
- swig-templates
- teacup
- templayed
- - then-jade
- then-pug
- tinyliquid
- toffee
@@ -13718,8 +14993,6 @@ snapshots:
- walrus
- whiskers
- text-table@0.2.0: {}
-
textextensions@2.6.0: {}
through2@3.0.2:
@@ -13729,8 +15002,6 @@ snapshots:
through@2.3.8: {}
- time-zone@1.0.0: {}
-
tiny-glob@0.2.9:
dependencies:
globalyzer: 0.1.0
@@ -13743,10 +15014,21 @@ snapshots:
faye-websocket: 0.11.4
livereload-js: 3.3.2
object-assign: 4.1.1
- qs: 6.11.0
+ qs: 6.15.2
transitivePeerDependencies:
- supports-color
+ tinyglobby@0.2.17:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
+
+ tldts-core@6.1.86: {}
+
+ tldts@6.1.86:
+ dependencies:
+ tldts-core: 6.1.86
+
tmp@0.0.28:
dependencies:
os-tmpdir: 1.0.2
@@ -13761,9 +15043,9 @@ snapshots:
tmp@0.2.3: {}
- tmpl@1.0.5: {}
+ tmp@0.2.7: {}
- to-fast-properties@2.0.0: {}
+ tmpl@1.0.5: {}
to-object-path@0.3.0:
dependencies:
@@ -13785,6 +15067,14 @@ snapshots:
regex-not: 1.0.2
safe-regex: 1.1.0
+ toasted-notifier@10.1.0:
+ dependencies:
+ growly: 1.3.0
+ is-wsl: 2.2.0
+ semver: 7.8.4
+ shellwords: 0.1.1
+ which: 2.0.2
+
toidentifier@1.0.1: {}
tough-cookie@4.0.0:
@@ -13793,28 +15083,36 @@ snapshots:
punycode: 2.1.1
universalify: 0.1.2
- tr46@0.0.3: {}
+ tough-cookie@5.1.2:
+ dependencies:
+ tldts: 6.1.86
tr46@2.1.0:
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
tr46@3.0.0:
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
+
+ tr46@5.1.1:
+ dependencies:
+ punycode: 2.3.1
- tracked-built-ins@3.3.0:
+ tracked-built-ins@3.4.0(@babel/core@7.29.7(supports-color@8.1.1)):
dependencies:
- '@embroider/addon-shim': 1.8.9
+ '@embroider/addon-shim': 1.10.3
+ decorator-transforms: 2.3.2(@babel/core@7.29.7(supports-color@8.1.1))
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
+ debug: 2.6.9(supports-color@8.1.1)
fs-tree-diff: 0.5.9
mkdirp: 0.5.6
quick-temp: 0.1.8
@@ -13824,7 +15122,7 @@ snapshots:
tree-sync@2.1.0:
dependencies:
- debug: 4.3.5
+ debug: 4.4.3(supports-color@8.1.1)
fs-tree-diff: 2.0.1
mkdirp: 0.5.6
quick-temp: 0.1.8
@@ -13832,7 +15130,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- trim-newlines@4.1.1: {}
+ ts-declaration-location@1.0.7(typescript@6.0.3):
+ dependencies:
+ picomatch: 4.0.4
+ typescript: 6.0.3
tslib@1.14.1: {}
@@ -13848,16 +15149,20 @@ snapshots:
type-fest@0.11.0: {}
- type-fest@0.20.2: {}
-
type-fest@0.21.3: {}
- type-fest@1.4.0: {}
+ type-fest@4.41.0: {}
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
- mime-types: 2.1.34
+ mime-types: 2.1.35
+
+ type-is@2.1.0:
+ dependencies:
+ content-type: 2.0.0
+ media-typer: 1.1.0
+ mime-types: 3.0.2
typedarray-to-buffer@3.1.5:
dependencies:
@@ -13865,7 +15170,9 @@ snapshots:
typescript-memoize@1.1.0: {}
- uc.micro@1.0.6: {}
+ typescript@6.0.3: {}
+
+ uc.micro@2.1.0: {}
uglify-js@3.15.0:
optional: true
@@ -13874,7 +15181,7 @@ snapshots:
dependencies:
function-bind: 1.1.2
has-bigints: 1.0.1
- has-symbols: 1.0.2
+ has-symbols: 1.1.0
which-boxed-primitive: 1.0.2
underscore.string@3.3.6:
@@ -13895,6 +15202,10 @@ snapshots:
unicode-property-aliases-ecmascript@2.1.0: {}
+ unicorn-magic@0.1.0: {}
+
+ unicorn-magic@0.3.0: {}
+
union-value@1.0.1:
dependencies:
arr-union: 3.1.0
@@ -13921,15 +15232,15 @@ snapshots:
upath@2.0.1: {}
- update-browserslist-db@1.1.0(browserslist@4.23.2):
+ update-browserslist-db@1.2.3(browserslist@4.28.2):
dependencies:
- browserslist: 4.23.2
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.28.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
urix@0.1.0: {}
@@ -13941,29 +15252,29 @@ snapshots:
utils-merge@1.0.1: {}
- uuid@8.3.2: {}
-
v8-compile-cache@2.3.0: {}
- validate-npm-package-license@3.0.4:
- dependencies:
- spdx-correct: 3.1.1
- spdx-expression-parse: 3.0.1
-
- validate-npm-package-name@5.0.1: {}
+ validate-npm-package-name@6.0.2: {}
validate-peer-dependencies@1.2.0:
dependencies:
resolve-package-path: 3.1.0
- semver: 7.6.3
-
- validate-peer-dependencies@2.0.0:
- dependencies:
- resolve-package-path: 4.0.3
- semver: 7.6.3
+ semver: 7.8.4
vary@1.1.2: {}
+ vite@8.1.0(terser@5.31.3)(yaml@2.9.0):
+ dependencies:
+ lightningcss: 1.32.0
+ picomatch: 4.0.4
+ postcss: 8.5.15
+ rolldown: 1.1.3
+ tinyglobby: 0.2.17
+ optionalDependencies:
+ fsevents: 2.3.3
+ terser: 5.31.3
+ yaml: 2.9.0
+
w3c-hr-time@1.0.2:
dependencies:
browser-process-hrtime: 1.0.0
@@ -13972,10 +15283,9 @@ snapshots:
dependencies:
xml-name-validator: 3.0.0
- walk-sync@0.2.7:
+ w3c-xmlserializer@5.0.0:
dependencies:
- ensure-posix-path: 1.1.1
- matcher-collection: 1.1.2
+ xml-name-validator: 5.0.0
walk-sync@0.3.4:
dependencies:
@@ -13993,14 +15303,14 @@ snapshots:
'@types/minimatch': 3.0.5
ensure-posix-path: 1.1.1
matcher-collection: 2.0.1
- minimatch: 3.1.2
+ minimatch: 3.1.5
walk-sync@3.0.0:
dependencies:
'@types/minimatch': 3.0.5
ensure-posix-path: 1.1.1
matcher-collection: 2.0.1
- minimatch: 3.1.2
+ minimatch: 3.1.5
walker@1.0.8:
dependencies:
@@ -14014,54 +15324,59 @@ snapshots:
transitivePeerDependencies:
- supports-color
- watchpack@2.4.1:
+ watchpack@2.5.2:
dependencies:
- glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
wcwidth@1.0.1:
dependencies:
defaults: 1.0.3
- webidl-conversions@3.0.1: {}
-
webidl-conversions@5.0.0: {}
webidl-conversions@6.1.0: {}
webidl-conversions@7.0.0: {}
- webpack-sources@3.2.3: {}
+ webpack-sources@3.5.0: {}
- webpack@5.93.0:
+ webpack@5.107.2(postcss@8.5.15):
dependencies:
- '@types/eslint-scope': 3.7.3
- '@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.23.2
+ '@types/estree': 1.0.9
+ '@types/json-schema': 7.0.15
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.17.0
+ acorn-import-phases: 1.0.4(acorn@8.17.0)
+ browserslist: 4.28.2
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.17.0
- es-module-lexer: 1.5.4
+ enhanced-resolve: 5.24.0
+ es-module-lexer: 2.1.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.2.0
- mime-types: 2.1.34
+ loader-runner: 4.3.2
+ mime-db: 1.54.0
neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.93.0)
- watchpack: 2.4.1
- webpack-sources: 3.2.3
+ schema-utils: 4.3.3
+ tapable: 2.3.3
+ terser-webpack-plugin: 5.6.1(postcss@8.5.15)(webpack@5.107.2(postcss@8.5.15))
+ watchpack: 2.5.2
+ webpack-sources: 3.5.0
transitivePeerDependencies:
+ - '@minify-html/node'
- '@swc/core'
+ - '@swc/css'
+ - '@swc/html'
+ - clean-css
+ - cssnano
+ - csso
- esbuild
+ - html-minifier-terser
+ - lightningcss
+ - postcss
- uglify-js
websocket-driver@0.7.4:
@@ -14076,21 +15391,25 @@ snapshots:
dependencies:
iconv-lite: 0.4.24
- whatwg-fetch@3.6.2: {}
+ whatwg-encoding@3.1.1:
+ dependencies:
+ iconv-lite: 0.6.3
whatwg-mimetype@2.3.0: {}
whatwg-mimetype@3.0.0: {}
+ whatwg-mimetype@4.0.0: {}
+
whatwg-url@10.0.0:
dependencies:
tr46: 3.0.0
webidl-conversions: 7.0.0
- whatwg-url@5.0.0:
+ whatwg-url@14.2.0:
dependencies:
- tr46: 0.0.3
- webidl-conversions: 3.0.1
+ tr46: 5.1.1
+ webidl-conversions: 7.0.0
whatwg-url@9.1.0:
dependencies:
@@ -14115,17 +15434,13 @@ snapshots:
dependencies:
isexe: 2.0.0
- wide-align@1.1.5:
- dependencies:
- string-width: 4.2.3
-
word-wrap@1.2.5: {}
wordwrap@1.0.0: {}
workerpool@3.1.2:
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.29.7(supports-color@8.1.1)
object-assign: 4.1.1
rsvp: 4.8.5
transitivePeerDependencies:
@@ -14133,6 +15448,8 @@ snapshots:
workerpool@6.5.1: {}
+ workerpool@9.3.4: {}
+
wrap-ansi@5.1.0:
dependencies:
ansi-styles: 3.2.1
@@ -14167,10 +15484,14 @@ snapshots:
ws@8.17.1: {}
+ ws@8.21.0: {}
+
xdg-basedir@4.0.0: {}
xml-name-validator@3.0.0: {}
+ xml-name-validator@5.0.0: {}
+
xmlchars@2.2.0: {}
y18n@4.0.3: {}
@@ -14179,8 +15500,6 @@ snapshots:
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
yam@1.0.0:
dependencies:
fs-extra: 4.0.3
@@ -14191,13 +15510,17 @@ snapshots:
commander: 6.2.1
js-yaml: 3.14.1
+ yaml-types@0.4.0(yaml@2.9.0):
+ dependencies:
+ yaml: 2.9.0
+
+ yaml@2.9.0: {}
+
yargs-parser@15.0.3:
dependencies:
camelcase: 5.3.1
decamelize: 1.2.0
- yargs-parser@20.2.9: {}
-
yargs-parser@21.1.1: {}
yargs@14.2.3:
@@ -14217,7 +15540,7 @@ snapshots:
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
@@ -14229,3 +15552,5 @@ snapshots:
yocto-queue@1.1.1: {}
yoctocolors-cjs@2.1.2: {}
+
+ yoctocolors@2.1.2: {}
diff --git a/testem.js b/testem.js
index 167742c..b49d598 100644
--- a/testem.js
+++ b/testem.js
@@ -1,23 +1,24 @@
'use strict';
-
-module.exports = {
- test_page: 'tests/index.html?hidepassed&nolint',
- disable_watching: true,
- launch_in_ci: ['Chrome'],
- launch_in_dev: ['Chrome'],
- browser_start_timeout: 120,
- browser_args: {
- Chrome: {
- ci: [
- // --no-sandbox is needed when running Chrome inside a container
- process.env.CI ? '--no-sandbox' : null,
- '--headless',
- '--disable-dev-shm-usage',
- '--disable-software-rasterizer',
- '--mute-audio',
- '--remote-debugging-port=0',
- '--window-size=1440,900',
- ].filter(Boolean),
+if (typeof module !== 'undefined') {
+ module.exports = {
+ test_page: 'tests/index.html?hidepassed',
+ disable_watching: true,
+ launch_in_ci: ['Chrome'],
+ launch_in_dev: ['Chrome'],
+ browser_start_timeout: 120,
+ browser_args: {
+ Chrome: {
+ ci: [
+ // --no-sandbox is needed when running Chrome inside a container
+ process.env.CI ? '--no-sandbox' : null,
+ '--headless',
+ '--disable-dev-shm-usage',
+ '--disable-software-rasterizer',
+ '--mute-audio',
+ '--remote-debugging-port=0',
+ '--window-size=1440,900',
+ ].filter(Boolean),
+ },
},
- },
-};
+ };
+}
diff --git a/tests/index.html b/tests/index.html
index 768de50..90f015e 100644
--- a/tests/index.html
+++ b/tests/index.html
@@ -9,9 +9,8 @@
{{content-for "head"}}
{{content-for "test-head"}}
-
-
-
+
+
{{content-for "head-footer"}}
{{content-for "test-head-footer"}}
@@ -28,12 +27,17 @@
-
-
-
-
+
+
+
+
+
{{content-for "body-footer"}}
- {{content-for "test-body-footer"}}
+