From 79e385ada7011b17e3284ea0f62519d0e382ddc7 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Thu, 4 Jan 2024 16:44:11 -0500 Subject: [PATCH 01/52] Progress Updates Remove some deps Deps Deps wip wip linting lint:fix updates oofta Remove unused file something is wrong with the usage test It seems the usage of gts at all is broken in this repo I have a @glimmer/syntax mismatch somewhere Grrr template-compiler Add sidewatch --- ember-statechart-component/.eslintrc.cjs | 20 +- ember-statechart-component/.prettierrc.cjs | 27 + ember-statechart-component/babel.config.cjs | 18 - ember-statechart-component/babel.config.json | 21 + ember-statechart-component/package.json | 34 +- ember-statechart-component/rollup.config.mjs | 63 +- .../src/-private/proxy.ts | 99 --- .../src/-private/statechart-manager.ts | 53 +- ember-statechart-component/src/glint.ts | 4 +- ember-statechart-component/src/index.ts | 2 +- .../src/registration.ts | 12 +- ember-statechart-component/tsconfig.json | 72 +- .../missing-types.d.ts | 20 +- package.json | 24 +- pnpm-lock.yaml | 721 +++++------------- testing/ember-app/.eslintrc.js | 20 +- testing/ember-app/.prettierignore | 1 + testing/ember-app/.prettierrc.js | 34 +- testing/ember-app/.template-lintrc.js | 6 +- testing/ember-app/app/app.js | 2 + testing/ember-app/app/components/.gitkeep | 0 testing/ember-app/app/controllers/.gitkeep | 0 testing/ember-app/app/helpers/to-string.ts | 4 +- testing/ember-app/app/index.html | 14 +- testing/ember-app/app/models/.gitkeep | 0 testing/ember-app/app/routes/.gitkeep | 0 .../ember-app/app/templates/application.gts | 11 + .../ember-app/app/templates/application.hbs | 1 - .../ember-app/app/templates/demos/toggle.gts | 22 + .../ember-app/config/ember-cli-update.json | 4 +- testing/ember-app/config/environment.js | 2 +- testing/ember-app/ember-cli-build.js | 60 +- testing/ember-app/package.json | 27 +- testing/ember-app/tests/index.html | 28 +- .../integration/dynamic-machines-test.ts | 552 +++++++------- .../tests/integration/modifier-test.ts | 94 +-- .../tests/integration/timing-test.ts | 88 +-- .../tests/integration/usage-test.gts | 380 +++++++++ .../ember-app/tests/integration/usage-test.ts | 378 --------- testing/ember-app/tests/test-helper.ts | 2 + testing/ember-app/tsconfig.json | 23 +- .../types/ember-app/glint-registry.d.ts | 56 +- testing/ember-app/types/ember-app/index.d.ts | 9 +- testing/ember-app/types/global.d.ts | 6 - testing/ember-app/types/missing-types.ds.ts | 19 - 45 files changed, 1336 insertions(+), 1697 deletions(-) create mode 100644 ember-statechart-component/.prettierrc.cjs delete mode 100644 ember-statechart-component/babel.config.cjs create mode 100644 ember-statechart-component/babel.config.json delete mode 100644 ember-statechart-component/src/-private/proxy.ts delete mode 100644 testing/ember-app/app/components/.gitkeep delete mode 100644 testing/ember-app/app/controllers/.gitkeep delete mode 100644 testing/ember-app/app/models/.gitkeep delete mode 100644 testing/ember-app/app/routes/.gitkeep create mode 100644 testing/ember-app/app/templates/application.gts delete mode 100644 testing/ember-app/app/templates/application.hbs create mode 100644 testing/ember-app/app/templates/demos/toggle.gts create mode 100644 testing/ember-app/tests/integration/usage-test.gts delete mode 100644 testing/ember-app/tests/integration/usage-test.ts delete mode 100644 testing/ember-app/types/global.d.ts delete mode 100644 testing/ember-app/types/missing-types.ds.ts diff --git a/ember-statechart-component/.eslintrc.cjs b/ember-statechart-component/.eslintrc.cjs index 20282836..e6640041 100644 --- a/ember-statechart-component/.eslintrc.cjs +++ b/ember-statechart-component/.eslintrc.cjs @@ -1,6 +1,6 @@ -"use strict"; +'use strict'; -const { configs } = require("@nullvoxpopuli/eslint-configs"); +const { configs } = require('@nullvoxpopuli/eslint-configs'); const config = configs.ember(); @@ -9,10 +9,20 @@ module.exports = { overrides: [ ...config.overrides, { - files: ["**/*.ts"], + files: ['**/*.gts'], + plugins: ['ember'], + parser: 'ember-eslint-parser', + }, + { + files: ['**/*.gjs'], + plugins: ['ember'], + parser: 'ember-eslint-parser', + }, + { + files: ['**/*.ts'], rules: { - "@typescript-eslint/ban-types": "off", - "@typescript-eslint/no-explicit-any": "off", + '@typescript-eslint/ban-types': 'off', + '@typescript-eslint/no-explicit-any': 'off', }, }, ], diff --git a/ember-statechart-component/.prettierrc.cjs b/ember-statechart-component/.prettierrc.cjs new file mode 100644 index 00000000..021c5522 --- /dev/null +++ b/ember-statechart-component/.prettierrc.cjs @@ -0,0 +1,27 @@ +'use strict'; + +module.exports = { + printWidth: 100, + overrides: [ + { + // Lol, JavaScript + files: ['*.js', '*.ts', '*.cjs', '.mjs', '.cts', '.mts', '.cts'], + options: { + singleQuote: true, + trailingComma: 'es5', + }, + }, + { + files: ['*.json'], + options: { + singleQuote: false, + }, + }, + { + files: ['*.hbs'], + options: { + singleQuote: false, + }, + }, + ], +}; diff --git a/ember-statechart-component/babel.config.cjs b/ember-statechart-component/babel.config.cjs deleted file mode 100644 index 38a54263..00000000 --- a/ember-statechart-component/babel.config.cjs +++ /dev/null @@ -1,18 +0,0 @@ -'use strict'; - -const { resolve } = require; - -module.exports = { - presets: ['@babel/preset-typescript'], - plugins: [ - [ - resolve('@babel/plugin-transform-typescript'), - { - allowDeclareFields: true, - onlyRemoveTypeImports: true, - // Default enums are IIFEs - optimizeConstEnums: true, - }, - ], - ], -}; diff --git a/ember-statechart-component/babel.config.json b/ember-statechart-component/babel.config.json new file mode 100644 index 00000000..aa992d74 --- /dev/null +++ b/ember-statechart-component/babel.config.json @@ -0,0 +1,21 @@ +{ + "plugins": [ + [ + "@babel/plugin-transform-typescript", + { + "allExtensions": true, + "onlyRemoveTypeImports": true, + "allowDeclareFields": true + } + ], + "@embroider/addon-dev/template-colocation-plugin", + [ + "babel-plugin-ember-template-compilation", + { + "targetFormat": "hbs", + "transforms": [] + } + ], + ["module:decorator-transforms", { "runtime": { "import": "decorator-transforms/runtime" } }] + ] +} diff --git a/ember-statechart-component/package.json b/ember-statechart-component/package.json index e6dcc249..13102708 100644 --- a/ember-statechart-component/package.json +++ b/ember-statechart-component/package.json @@ -4,7 +4,6 @@ "keywords": [ "ember-addon" ], - "type": "module", "description": "Use XState Machines *as* Components", "repository": "https://github.com/NullVoxPopuli/ember-statechart-component", "license": "MIT", @@ -25,10 +24,6 @@ ] } }, - "directories": { - "doc": "doc", - "test": "tests" - }, "files": [ "addon-main.cjs", "dist", @@ -42,27 +37,24 @@ "build:js": "rollup -c ./rollup.config.mjs", "build:docs": "cp ../README.md ./README.md", "watch:js": "rollup -c --watch --no-watch.clearScreen", - "lint": "concurrently \"npm:lint:js\"", - "lint:fix": "concurrently \"npm:lint:js:fix\"", + "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"", + "lint:package": "publint", + "lint:published-types": "attw --pack", + "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" && pnpm format:prettier", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", - "test": "echo 'Addon does not have tests, run tests in test-app'", + "format:prettier": "prettier . --write", + "lint:prettier": "prettier . --check", "prepare": "pnpm build", "prepack": "pnpm build" }, "dependencies": { "@embroider/addon-shim": "^1.8.9", - "ember-tracked-storage-polyfill": "^1.0.0" + "@glint/template": ">= 1.0.0" }, "peerDependencies": { - "@glint/template": ">= 0.8.3", "xstate": "^5.18.0" }, - "peerDependenciesMeta": { - "@glint/template": { - "optional": true - } - }, "devDependencies": { "@babel/core": "7.25.7", "@babel/eslint-parser": "^7.25.7", @@ -76,14 +68,14 @@ "@glimmer/env": "^0.1.7", "@glint/template": "^1.4.0", "@nullvoxpopuli/eslint-configs": "^4.2.0", + "@tsconfig/ember": "^3.0.3", "@typescript-eslint/eslint-plugin": "^8.8.0", "@typescript-eslint/parser": "^8.8.0", - "babel-eslint": "10.1.0", "concurrently": "^9.0.1", - "ember-cli-htmlbars": "^6.0.0", + "decorator-transforms": "^2.2.2", + "ember-source": "^5.5.0", "ember-template-lint": "6.0.0", "eslint": "^8.57.0", - "eslint-config-prettier": "^9.1.0", "eslint-plugin-decorator-position": "^5.0.2", "eslint-plugin-ember": "^12.2.1", "eslint-plugin-import": "^2.31.0", @@ -98,9 +90,6 @@ "typescript": "~5.5.0", "xstate": "^5.18.2" }, - "engines": { - "node": ">=12.2.0 < 13 || >= 14" - }, "publishConfig": { "registry": "https://registry.npmjs.org" }, @@ -114,7 +103,6 @@ "app-js": {} }, "volta": { - "extends": "../package.json", - "npm": "8.18.0" + "extends": "../package.json" } } diff --git a/ember-statechart-component/rollup.config.mjs b/ember-statechart-component/rollup.config.mjs index 09e2e75a..af48e24d 100644 --- a/ember-statechart-component/rollup.config.mjs +++ b/ember-statechart-component/rollup.config.mjs @@ -1,76 +1,33 @@ -import ts from 'rollup-plugin-ts'; -import { defineConfig } from 'rollup'; +import { defineConfig } from "rollup"; +import { babel } from "@rollup/plugin-babel"; -import { Addon } from '@embroider/addon-dev/rollup'; +import { Addon } from "@embroider/addon-dev/rollup"; const addon = new Addon({ - srcDir: 'src', - destDir: 'dist', + srcDir: "src", + destDir: "dist", }); const rollupConfig = defineConfig({ - watch: { - chokidar: { - usePolling: true, - }, - }, - - output: { - ...addon.output(), - sourcemap: true, - - // Remove when we no longer import - // - // 8 │ import '@glint/template/-private/integration'; - hoistTransitiveImports: false, - }, - + output: addon.output(), plugins: [ // These are the modules that users should be able to import from your // addon. Anything not listed here may get optimized away. - addon.publicEntrypoints(['index.ts', 'glint.ts']), + addon.publicEntrypoints(["index.ts", "glint.ts"]), // These are the modules that should get reexported into the traditional // "app" tree. Things in here should also be in publicEntrypoints above, but // not everything in publicEntrypoints necessarily needs to go here. // addon.appReexports(['components/**/*.js', 'services/**/*.js']), - - ts({ - // can be changed to swc or other transpilers later - // but we need the ember plugins converted first - // (template compilation and co-location) - transpiler: 'babel', - babelConfig: './babel.config.cjs', - browserslist: ['last 2 firefox versions', 'last 2 chrome versions'], - tsconfig: { - fileName: 'tsconfig.json', - hook: (config) => ({ - ...config, - declaration: true, - // TODO: these aren't being generated? why? - declarationMap: true, - // See: https://devblogs.microsoft.com/typescript/announcing-typescript-4-5/#beta-delta - // Allows us to use `exports` to define types per export - // However, it was declared as not ready - // as a result, we need extra / fallback references in the package.json - declarationDir: './dist', - }), - }, + babel({ + extensions: [".js", ".gjs", ".ts", ".gts"], + babelHelpers: "bundled", }), // Follow the V2 Addon rules about dependencies. Your code can import from // `dependencies` and `peerDependencies` as well as standard Ember-provided // package names. addon.dependencies(), - - // Ensure that standalone .hbs files are properly integrated as Javascript. - // addon.hbs(), - - // addons are allowed to contain imports of .css files, which we want rollup - // to leave alone and keep in the published output. - // addon.keepAssets(['**/*.css']), - - // Remove leftover build artifacts when starting a new build. addon.clean(), ], }); diff --git a/ember-statechart-component/src/-private/proxy.ts b/ember-statechart-component/src/-private/proxy.ts deleted file mode 100644 index 5b5a245b..00000000 --- a/ember-statechart-component/src/-private/proxy.ts +++ /dev/null @@ -1,99 +0,0 @@ -import { assert } from '@ember/debug'; -import { isDestroyed, isDestroying } from '@ember/destroyable'; - -import { createStorage, getValue, setValue } from 'ember-tracked-storage-polyfill'; -import { Interpreter } from 'xstate'; - -import { createMapWithInterceptedSet } from './utils'; - -import type { TrackedStorage } from 'ember-tracked-storage-polyfill'; -import type { DefaultContext, EventObject, State } from 'xstate'; - -export const UPDATE_EVENT_NAME = 'ARGS_UPDATE'; - -const CACHE = new WeakMap, TrackedStorage>(); - -export function reactiveInterpreter(interpreter: Interpreter) { - /** - * atm, only interpreters can be reactive - */ - if (!(interpreter instanceof Interpreter)) { - return interpreter; - } - - ensureStorage(interpreter); - - interpreter.onTransition = interpreter.onTransition.bind(interpreter); - interpreter.onTransition(async (_state: State, event: EventObject) => { - // init always runs, we don't need to dirty - if (event.type === 'xstate.init') return; - // a dirty event already triggered a transition - // if we didn't early return here, we'd end up with - // infinite invalidation - if (event.type === UPDATE_EVENT_NAME) return; - - // wait till next (micro)task queue thing - // we don't "need" to do this, but it keeps linting from - // removing the async from the arrow function, which we *do* - // need because we don't want dirty events to happen in the same - // run loop as a read (which can happen with synchronous changes - // in the interpreter) - await Promise.resolve(); - - if (isDestroyed(interpreter) || isDestroying(interpreter)) { - return; - } - - dirtyState(interpreter); - }); - - let children = new Map(); - let fakeChildrenMap = createMapWithInterceptedSet(children, { - set(key: string, value: Interpreter) { - children.set(key, reactiveInterpreter(value)); - }, - }); - - // children is a public API accessor - interpreter.children = fakeChildrenMap; - - /** - * For spawn/invoked things, references are stored on - * - the interpreter.children as a map (id => interpreter / actor ref) - * - the state.children as an object (id => interpreter / actor ref) - */ - return new Proxy(interpreter, { - get(target, key, receiver) { - switch (key) { - case '_state': { - let storage = ensureStorage(target); - - getValue(storage); - - return Reflect.get(target, key, receiver); - } - } - - return Reflect.get(target, key, receiver); - }, - }); -} - -function ensureStorage(interpreter: Interpreter) { - let storage = CACHE.get(interpreter); - - if (!storage) { - storage = createStorage(null, () => false); - CACHE.set(interpreter, storage); - } - - return storage; -} - -function dirtyState(interpreter: Interpreter) { - let storage = CACHE.get(interpreter); - - assert(`Tracking context lost!`, storage); - - setValue(storage, null); -} diff --git a/ember-statechart-component/src/-private/statechart-manager.ts b/ember-statechart-component/src/-private/statechart-manager.ts index 6c470b28..0719bae3 100644 --- a/ember-statechart-component/src/-private/statechart-manager.ts +++ b/ember-statechart-component/src/-private/statechart-manager.ts @@ -8,11 +8,9 @@ import { assert } from '@ember/debug'; import { destroy, isDestroying } from '@ember/destroyable'; import { cancel, later } from '@ember/runloop'; -import { interpret, State } from 'xstate'; +import { createActor, State } from 'xstate'; -import { reactiveInterpreter, UPDATE_EVENT_NAME } from './proxy'; - -import type { Interpreter, StateNode } from 'xstate'; +import type { Interpreter, StateMachine,StateNode } from 'xstate'; export interface Args { named: Record; @@ -33,57 +31,52 @@ export default class ComponentManager { return manager; } - createComponent(machine: StateNode, args: Args) { + createComponent(machine: StateMachine, args: Args) { let { named } = args; if ('config' in named) { - machine = machine.withConfig(named.config as any); + machine = machine.provide(named['config'] as any); } - let context = { ...machine.context }; + let context = { }; if ('context' in named) { - Object.assign(context, named.context); + Object.assign(context, named['context']); } setOwner(context, getOwner(this) as any); - machine = machine.withContext(context); - - let interpreter = interpret(machine as any, { - devTools: DEBUG, - clock: { - setTimeout(fn, ms) { - return (later as any).call(null, fn, ms); - }, - clearTimeout(timer) { - return cancel.call(null, timer); - }, - }, + let actor = createActor(machine, { + input: context, + }); + + actor.subscribe((snapshot, ...others) => { + console.log(snapshot, { others} ); }); - if ('state' in named) { - assert(`@state must be of type State`, named.state instanceof State); + // if ('state' in named) { + // assert(`@state must be of type State`, named.state instanceof State); - let resolvedState = machine.resolveState(named.state); + // let resolvedState = machine.resolveState(named.state); - let withReactivity = reactiveInterpreter(interpreter); + // let withReactivity = reactiveInterpreter(actor); - withReactivity.start(resolvedState); + // withReactivity.start(resolvedState); - return withReactivity; - } + // return withReactivity; + // } /** * Start the interpreter before we wire in reactivity, * so reactivity may only be "by-use" (from the app), rather than * managed by XState during its internal updates */ - interpreter.start(); + actor.start(); - let withReactivity = reactiveInterpreter(interpreter); + // let withReactivity = reactiveInterpreter(actor); - return withReactivity; + // return withReactivity; + return actor; } /** diff --git a/ember-statechart-component/src/glint.ts b/ember-statechart-component/src/glint.ts index 3f976159..91b66b46 100644 --- a/ember-statechart-component/src/glint.ts +++ b/ember-statechart-component/src/glint.ts @@ -47,7 +47,7 @@ declare module 'xstate' { TAction extends BaseActionObject = BaseActionObject, TServiceMap extends ServiceMap = ServiceMap, // eslint-disable-next-line @typescript-eslint/no-unused-vars - TResolvedTypesMeta = ResolveTypegenMeta, TAction, TServiceMap> + TResolvedTypesMeta = ResolveTypegenMeta, TAction, TServiceMap>, > extends ComponentLike<{ Args: { config?: MachineOptions; @@ -58,7 +58,7 @@ declare module 'xstate' { default: [ Interpreter['state'], Interpreter['send'], - Interpreter['onTransition'] + Interpreter['onTransition'], ]; }; }> { diff --git a/ember-statechart-component/src/index.ts b/ember-statechart-component/src/index.ts index 787a9046..df610c38 100644 --- a/ember-statechart-component/src/index.ts +++ b/ember-statechart-component/src/index.ts @@ -14,4 +14,4 @@ export function getService(context: unknown, service return service; } -export { setupComponentMachines } from './registration'; +export { setupComponentMachines } from './registration.ts'; diff --git a/ember-statechart-component/src/registration.ts b/ember-statechart-component/src/registration.ts index 2e932373..1dc64e9e 100644 --- a/ember-statechart-component/src/registration.ts +++ b/ember-statechart-component/src/registration.ts @@ -1,9 +1,9 @@ import { setComponentManager, setComponentTemplate } from '@ember/component'; -import { hbs } from 'ember-cli-htmlbars'; +import { precompileTemplate } from '@ember/template-compilation'; import { StateNode } from 'xstate'; -import ComponentManager from './-private/statechart-manager'; +import ComponentManager from './-private/statechart-manager.ts'; let isSetup = false; @@ -23,10 +23,16 @@ export function setupComponentMachines(override?: typeof StateNode) { (owner) => ComponentManager.create(owner), override?.prototype || StateNode.prototype ); + setComponentTemplate( - hbs`{{yield this.state this.send this.onTransition}}`, + precompileTemplate(`{{yield this.state this.send this.onTransition}}`, { + strictMode: true, + }), override?.prototype || StateNode.prototype ); isSetup = true; } + +// ‼️ SideEffect +setupComponentMachines(); diff --git a/ember-statechart-component/tsconfig.json b/ember-statechart-component/tsconfig.json index 86899f5c..4aac426b 100644 --- a/ember-statechart-component/tsconfig.json +++ b/ember-statechart-component/tsconfig.json @@ -1,39 +1,39 @@ { - "compilerOptions": { - // Path resolution - "baseUrl": "./src", - "moduleResolution": "node", - // We only use tsc for type checking and declaration output - "declarationDir": "./declarations", - "emitDeclarationOnly": true, - "declaration": true, - // Build settings - "noEmitOnError": false, - "module": "ESNext", - "target": "ESNext", - // Features - "experimentalDecorators": true, - "allowJs": false, - "allowSyntheticDefaultImports": true, - // Strictness / Correctness - "strict": true, - "noImplicitAny": true, - "noImplicitThis": true, - "alwaysStrict": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "noFallthroughCasesInSwitch": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitReturns": true, - "paths": { - // No paths, no absolute imports, only node_modules imports allowed - // But fallback for type-overrides and such - "*": ["types/*"] - } + "extends": "@tsconfig/ember/tsconfig.json", + "include": ["src/**/*", "unpublished-development-types/**/*"], + "glint": { + "environment": ["ember-loose", "ember-template-imports"] }, - "include": [ - "src/**/*", - "types/*" - ] + "compilerOptions": { + "allowJs": true, + "declarationDir": "declarations", + + /** + https://www.typescriptlang.org/tsconfig#rootDir + "Default: The longest common path of all non-declaration input files." + + Because we want our declarations' structure to match our rollup output, + we need this "rootDir" to match the "srcDir" in the rollup.config.mjs. + + This way, we can have simpler `package.json#exports` that matches + imports to files on disk + */ + "rootDir": "./src", + + /** + https://www.typescriptlang.org/tsconfig#verbatimModuleSyntax + + We don't want to include types dependencies in our compiled output, so tell TypeScript + to enforce using `import type` instead of `import` for Types. + */ + "verbatimModuleSyntax": true, + + /** + https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions + + We want our tooling to know how to resolve our custom files so the appropriate plugins + can do the proper transformations on those files. + */ + "allowImportingTsExtensions": true + } } diff --git a/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts b/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts index 84f9cd96..33a43970 100644 --- a/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts +++ b/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts @@ -1,19 +1 @@ -import '@ember/component'; - -import type {TemplateFactory} from 'ember-cli-htmlbars'; - -type TF = TemplateFactory; - -declare module '@ember/component' { - export function setComponentManager(managerId: string, baseClass: T): T; - export function setComponentManager(managerFactory: (owner: any) => {}, baseClass: T): T; - export function setComponentTemplate(template: TF, context: unknown): unknown; - export function capabilities( - version: string, - opts?: { - destructor?: boolean; - asyncLifecycleCallbacks?: boolean; - updateHook?: boolean; - } - ): any; -} +import 'ember-source/types'; diff --git a/package.json b/package.json index 6687d423..024f5612 100644 --- a/package.json +++ b/package.json @@ -10,18 +10,20 @@ "scripts": { "build": "pnpm --filter ember-statechart-component build", "prepare": "pnpm build", - "lint": "pnpm run --filter '*' lint:js --fix" + "lint": "pnpm run --filter '*' lint", + "lint:fix": "pnpm run --filter '*' lint:fix" }, "devDependencies": { + "@babel/core": "7.25.7", + "@typescript-eslint/parser": "^8.8.0", "ember-template-lint": "^6.0.0", - "eslint": "^8.57.0", - "eslint-config-prettier": "^9.1.0", + "eslint": "^8.56.0", "eslint-plugin-ember": "^12.2.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^5.2.1", - "npm-run-all": "^4.1.5", "prettier": "^3.3.3", - "release-plan": "^0.9.0" + "release-plan": "^0.9.0", + "typescript": "^5.5.0" }, "packageManager": "pnpm@9.12.0", "volta": { @@ -30,7 +32,17 @@ }, "pnpm": { "overrides": { - "@types/eslint": "7.29.0" + "ember-cli-babel": "^8.2.0" + }, + "peerDependencyRules": { + "allowAny": [ + "typescript", + "ember-source" + ], + "ignoreMissing": [ + "webpack", + "rsvp" + ] } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 511cbc75..32972fa5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,48 +5,51 @@ settings: excludeLinksFromLockfile: false overrides: - '@types/eslint': 7.29.0 + ember-cli-babel: ^8.2.0 importers: .: devDependencies: + '@babel/core': + specifier: 7.25.7 + version: 7.25.7(supports-color@8.1.1) + '@typescript-eslint/parser': + specifier: ^8.8.0 + version: 8.8.0(eslint@8.57.1)(typescript@5.5.4) ember-template-lint: specifier: ^6.0.0 version: 6.0.0 eslint: - specifier: ^8.57.0 + specifier: ^8.56.0 version: 8.57.1 - eslint-config-prettier: - specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.1) eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) eslint-plugin-node: specifier: ^11.1.0 version: 11.1.0(eslint@8.57.1) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@7.29.0)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) - npm-run-all: - specifier: ^4.1.5 - version: 4.1.5 + version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) prettier: specifier: ^3.3.3 version: 3.3.3 release-plan: specifier: ^0.9.0 version: 0.9.2(encoding@0.1.13) + typescript: + specifier: ^5.5.0 + version: 5.5.4 ember-statechart-component: dependencies: '@embroider/addon-shim': specifier: ^1.8.9 version: 1.8.9 - ember-tracked-storage-polyfill: - specifier: ^1.0.0 - version: 1.0.0 + '@glint/template': + specifier: '>= 1.0.0' + version: 1.4.0 devDependencies: '@babel/core': specifier: 7.25.7 @@ -78,42 +81,39 @@ importers: '@glimmer/env': specifier: ^0.1.7 version: 0.1.7 - '@glint/template': - specifier: ^1.4.0 - version: 1.4.0 '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@7.29.0)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + '@tsconfig/ember': + specifier: ^3.0.3 + version: 3.0.8 '@typescript-eslint/eslint-plugin': specifier: ^8.8.0 version: 8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^8.8.0 version: 8.8.0(eslint@8.57.1)(typescript@5.5.4) - babel-eslint: - specifier: 10.1.0 - version: 10.1.0(eslint@8.57.1) concurrently: specifier: ^9.0.1 version: 9.0.1 - ember-cli-htmlbars: - specifier: ^6.0.0 - version: 6.3.0 + decorator-transforms: + specifier: ^2.2.2 + version: 2.2.2(@babel/core@7.25.7) + ember-source: + specifier: ^5.5.0 + version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) ember-template-lint: specifier: 6.0.0 version: 6.0.0 eslint: specifier: ^8.57.0 version: 8.57.1 - eslint-config-prettier: - specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.1) eslint-plugin-decorator-position: specifier: ^5.0.2 version: 5.0.2(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) eslint-plugin-import: specifier: ^2.31.0 version: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) @@ -125,7 +125,7 @@ importers: version: 11.1.0(eslint@8.57.1) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@7.29.0)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-simple-import-sort: specifier: ^12.1.1 version: 12.1.1(eslint@8.57.1) @@ -150,9 +150,15 @@ importers: testing/ember-app: dependencies: + decorator-transforms: + specifier: ^2.2.2 + version: 2.2.2(@babel/core@7.25.7) + ember-route-template: + specifier: ^1.0.3 + version: 1.0.3 ember-statechart-component: - specifier: '*' - version: 6.1.2(@glint/template@1.4.0)(xstate@5.18.2) + specifier: workspace:* + version: link:../../ember-statechart-component xstate: specifier: ^5.18.2 version: 5.18.2 @@ -201,7 +207,7 @@ importers: version: 1.4.0 '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@7.29.0)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) '@types/htmlbars-inline-precompile': specifier: ^3.0.3 version: 3.0.3 @@ -217,12 +223,9 @@ importers: '@typescript-eslint/parser': specifier: ^8.8.0 version: 8.8.0(eslint@8.57.1)(typescript@5.5.4) - babel-eslint: - specifier: ^10.1.0 - version: 10.1.0(eslint@8.57.1) - broccoli-asset-rev: - specifier: ^3.0.0 - version: 3.0.0 + concurrently: + specifier: ^9.0.1 + version: 9.0.1 ember-auto-import: specifier: ^2.8.1 version: 2.8.1(@glint/template@1.4.0)(webpack@5.95.0) @@ -238,18 +241,15 @@ importers: ember-cli-inject-live-reload: specifier: ^2.1.0 version: 2.1.0 - ember-cli-typescript: - specifier: ^5.3.0 - version: 5.3.0 ember-fetch: specifier: ^8.1.1 - version: 8.1.2(encoding@0.1.13) + version: 8.1.2(@babel/core@7.25.7)(encoding@0.1.13) ember-functions-as-helper-polyfill: specifier: ^2.0.0 - version: 2.1.2(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + version: 2.1.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) ember-functions-as-modifiers-polyfill: specifier: ^1.0.0 - version: 1.0.0 + version: 1.0.0(@babel/core@7.25.7) ember-load-initializers: specifier: ^3.0.1 version: 3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) @@ -258,10 +258,10 @@ importers: version: 8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) ember-qunit: specifier: ^8.1.0 - version: 8.1.0(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0) + version: 8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0) ember-resolver: specifier: ^13.0.2 - version: 13.0.2(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + version: 13.0.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) ember-source: specifier: ~5.12.0 version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) @@ -285,13 +285,13 @@ importers: version: 9.1.0(eslint@8.57.1) eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) eslint-plugin-node: specifier: ^11.1.0 version: 11.1.0(eslint@8.57.1) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@7.29.0)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-qunit: specifier: ^8.1.2 version: 8.1.2(eslint@8.57.1) @@ -304,18 +304,27 @@ importers: prettier: specifier: ^3.3.3 version: 3.3.3 + prettier-plugin-ember-template-tag: + specifier: ^2.0.0 + version: 2.0.2(prettier@3.3.3) qunit: specifier: ^2.22.0 version: 2.22.0 qunit-dom: specifier: ^3.2.1 version: 3.2.1 + read-package-up: + specifier: ^11.0.0 + version: 11.0.0 typescript: specifier: ~5.5.0 version: 5.5.4 webpack: specifier: ^5.95.0 version: 5.95.0 + dependenciesMeta: + ember-statechart-component: + injected: true packages: @@ -354,10 +363,6 @@ packages: '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 - '@babel/generator@7.23.6': - resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} - engines: {node: '>=6.9.0'} - '@babel/generator@7.25.7': resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==} engines: {node: '>=6.9.0'} @@ -1354,10 +1359,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/polyfill@7.12.1': - resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} - deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. - '@babel/preset-env@7.23.6': resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==} engines: {node: '>=6.9.0'} @@ -1403,10 +1404,6 @@ packages: resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.23.6': - resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==} - engines: {node: '>=6.9.0'} - '@babel/traverse@7.25.7': resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} engines: {node: '>=6.9.0'} @@ -1705,26 +1702,14 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} - '@jridgewell/gen-mapping@0.3.3': - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - '@jridgewell/gen-mapping@0.3.5': resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} - '@jridgewell/resolve-uri@3.1.1': - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.1.2': - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} engines: {node: '>=6.0.0'} @@ -1738,9 +1723,6 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@jridgewell/trace-mapping@0.3.20': - resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} - '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} @@ -2043,6 +2025,9 @@ packages: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} + '@tsconfig/ember@3.0.8': + resolution: {integrity: sha512-OVnIsZIt/8q0VEtcdz3rRryNrm6gdJTxXlxefkGIrkZnME0wqslmwHlUEZ7mvh377df9FqBhNKrYNarhCW8zJA==} + '@types/acorn@4.0.6': resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} @@ -2067,8 +2052,11 @@ packages: '@types/cors@2.8.17': resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} - '@types/eslint@7.29.0': - resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} + '@types/eslint@8.56.12': + resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==} + + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} @@ -2082,9 +2070,6 @@ packages: '@types/express@4.17.21': resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} - '@types/fs-extra@5.1.0': - resolution: {integrity: sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ==} - '@types/fs-extra@8.1.5': resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} @@ -2133,6 +2118,9 @@ packages: '@types/node@9.6.61': resolution: {integrity: sha512-/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ==} + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + '@types/object-path@0.11.4': resolution: {integrity: sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==} @@ -2559,13 +2547,6 @@ packages: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} - babel-eslint@10.1.0: - resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} - engines: {node: '>=6'} - deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. - peerDependencies: - eslint: '>= 4.12.1' - babel-import-util@0.2.0: resolution: {integrity: sha512-CtWYYHU/MgK88rxMrLfkD356dApswtR/kWZ/c6JifG1m10e7tBBrs/366dFzWMAoqYmG5/JSh+94tUSpIwh+ag==} engines: {node: '>= 12.*'} @@ -2628,10 +2609,6 @@ packages: resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==} engines: {node: 10.* || >= 12.*} - babel-plugin-module-resolver@3.2.0: - resolution: {integrity: sha512-tjR0GvSndzPew/Iayf4uICWZqjBwnlMWjSx6brryfQ81F9rxBVqwDJtFCV8oOs0+vJeefK9TmdZtkIFdFe1UnA==} - engines: {node: '>= 6.0.0'} - babel-plugin-module-resolver@5.0.0: resolution: {integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==} engines: {node: '>= 16'} @@ -2748,16 +2725,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'} - broccoli-babel-transpiler@8.0.0: resolution: {integrity: sha512-3HEp3flvasUKJGWERcrPgM1SWvHJ0O/fmbEtY9L4kDyMSnqjY6hTYvNvgWCIgbwXAYAUlZP0vjAQsmyLNGLwFw==} engines: {node: 16.* || >= 18} @@ -2788,9 +2755,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==} @@ -2832,9 +2796,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.*} @@ -2861,10 +2822,6 @@ packages: broccoli-slow-trees@3.1.0: resolution: {integrity: sha512-FRI7mRTk2wjIDrdNJd6znS7Kmmne4VkAkl8Ix1R/VoePFMD0g0tEl671xswzFqaRjpT9Qu+CC4hdXDLDJBuzMw==} - broccoli-source@2.1.2: - resolution: {integrity: sha512-1lLayO4wfS0c0Sj50VfHJXNWf94FYY0WUhxj0R77thbs6uWI7USiOWFqQV5dRmhAJnoKaGN4WyLGQbgjgiYFwQ==} - engines: {node: 6.* || 8.* || >= 10.*} - broccoli-source@3.0.1: resolution: {integrity: sha512-ZbGVQjivWi0k220fEeIUioN6Y68xjMy0xiLAc0LdieHI99gw+tafU8w0CggBDYVNsJMKUr006AZaM7gNEwCxEg==} engines: {node: 8.* || 10.* || >= 12.*} @@ -3119,10 +3076,6 @@ packages: common-path-prefix@3.0.0: resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} - common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} - commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} @@ -3366,9 +3319,6 @@ packages: resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 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'} @@ -3379,10 +3329,6 @@ packages: core-js-compat@3.38.1: resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==} - 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. - core-object@3.1.5: resolution: {integrity: sha512-sA2/4+/PZ/KV6CKgjrVrrUVBKCkdDO02CUlQ0YKTQoYUwPYNOtOAcWlbYhd5v/1JqYaA6oZ4sDlOU4ppVw6Wbg==} engines: {node: '>= 4'} @@ -3652,10 +3598,6 @@ packages: resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==} engines: {node: 6.* || 8.* || >= 10.*} - ember-cli-babel@7.26.11: - resolution: {integrity: sha512-JJYeYjiz/JTn34q7F5DSOjkkZqy8qwFOOxXfE6pe9yEJqWGu4qErKxlz8I22JoVEQ/aBUO+OcKTpmctvykM9YA==} - engines: {node: 6.* || 8.* || >= 10.*} - ember-cli-babel@8.2.0: resolution: {integrity: sha512-8H4+jQElCDo6tA7CamksE66NqBXWs7VNpS3a738L9pZCjg2kXIX4zoyHzkORUqCtr0Au7YsCnrlAMi1v2ALo7A==} engines: {node: 16.* || 18.* || >= 20} @@ -3665,10 +3607,6 @@ packages: ember-cli-get-component-path-option@1.0.0: resolution: {integrity: sha512-k47TDwcJ2zPideBCZE8sCiShSxQSpebY2BHcX2DdipMmBox5gsfyVrbKJWIHeSTTKyEUgmBIvQkqTOozEziCZA==} - ember-cli-htmlbars@5.7.2: - resolution: {integrity: sha512-Uj6R+3TtBV5RZoJY14oZn/sNPnc+UgmC8nb5rI4P3fR/gYoyTFIZSXiIM7zl++IpMoIrocxOrgt+mhonKphgGg==} - engines: {node: 10.* || >= 12.*} - ember-cli-htmlbars@6.3.0: resolution: {integrity: sha512-N9Y80oZfcfWLsqickMfRd9YByVcTGyhYRnYQ2XVPVrp6jyUyOeRWmEAPh7ERSXpp8Ws4hr/JB9QVQrn/yZa+Ag==} engines: {node: 12.* || 14.* || >= 16} @@ -3720,10 +3658,6 @@ packages: resolution: {integrity: sha512-PZNSvpzwWgv68hcXxyjREpj3WWb81A7rtYNQq1lLEgrWIchF8ApKJjWP3NBpHjaatwILkZAV8klair5WFlXAKg==} engines: {node: 6.* || 8.* || >= 10.*} - ember-cli-version-checker@4.1.1: - resolution: {integrity: sha512-bzEWsTMXUGEJfxcAGWPe6kI7oHEGD3jaxUWDYPTqzqGhNkgPwXTBgoWs9zG1RaSMaOPFnloWuxRcoHi4TrYS3Q==} - engines: {node: 8.* || 10.* || >= 12.*} - ember-cli-version-checker@5.1.2: resolution: {integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q==} engines: {node: 10.* || >= 12.*} @@ -3792,6 +3726,9 @@ packages: ember-rfc176-data@0.3.18: resolution: {integrity: sha512-JtuLoYGSjay1W3MQAxt3eINWXNYYQliK90tLwtb8aeCuQK8zKGCRbBodVIrkcTqshULMnRuTOS6t1P7oQk3g6Q==} + ember-route-template@1.0.3: + resolution: {integrity: sha512-p//Nk4g4Wu9F8cZdjB69rKxTRi6RRW32a8K5sYsi5cofTcJtPBXRWUXWpQEjJX6qcucgxooQwEm9+7MOy4lwNw==} + ember-router-generator@2.0.0: resolution: {integrity: sha512-89oVHVJwmLDvGvAUWgS87KpBoRhy3aZ6U0Ql6HOmU4TrPkyaa8pM0W81wj9cIwjYprcQtN9EwzZMHnq46+oUyw==} engines: {node: 8.* || 10.* || >= 12} @@ -3807,16 +3744,6 @@ packages: peerDependencies: '@glimmer/component': ^1.1.2 - ember-statechart-component@6.1.2: - resolution: {integrity: sha512-XzDcGINfwDLqJVbRm6T5A6C/mj0gm3eaUcYr9nDh4ZfON9JbY3WReGyfAaUEvahLXBcpH9wX9+Wuk06160zafg==} - engines: {node: '>=12.2.0 < 13 || >= 14'} - peerDependencies: - '@glint/template': '>= 0.8.3' - xstate: ^4.32.1 - peerDependenciesMeta: - '@glint/template': - optional: true - ember-template-imports@3.4.2: resolution: {integrity: sha512-OS8TUVG2kQYYwP3netunLVfeijPoOKIs1SvPQRTNOQX4Pu8xGGBEZmrv0U1YTnQn12Eg+p6w/0UdGbUnITjyzw==} engines: {node: 12.* || >= 14} @@ -3835,10 +3762,6 @@ packages: engines: {node: 12.* || 14.* || >= 16.*} hasBin: true - ember-tracked-storage-polyfill@1.0.0: - resolution: {integrity: sha512-eL7lZat68E6P/D7b9UoTB5bB5Oh/0aju0Z7PCMi3aTwhaydRaxloE7TGrTRYU+NdJuyNVZXeGyxFxn2frvd3TA==} - engines: {node: 12.* || >= 14} - ember-try-config@4.0.0: resolution: {integrity: sha512-jAv7fqYJK7QYYekPc/8Nr7KOqDpv/asqM6F8xcRnbmf9UrD35BkSffY63qUuiD9e0aR5qiMNBIQzH8f65rGDqw==} engines: {node: 10.* || 12.* || >= 14} @@ -4089,7 +4012,7 @@ packages: resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - '@types/eslint': 7.29.0 + '@types/eslint': '>=8.0.0' eslint: '>=8.0.0' eslint-config-prettier: '*' prettier: '>=3.0.0' @@ -4326,10 +4249,6 @@ packages: resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} engines: {node: '>= 0.8'} - find-babel-config@1.2.0: - resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==} - engines: {node: '>=4.0.0'} - find-babel-config@2.0.0: resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==} engines: {node: '>=16.0.0'} @@ -4345,9 +4264,9 @@ packages: find-index@1.1.1: resolution: {integrity: sha512-XYKutXMrIK99YMUPf91KX5QVJoG31/OsgftD6YoTPAObfQIxM4ziA9f0J1AsqKhJmo+IeaIPP0CFopTD4bdUBw==} - find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} + find-up-simple@1.0.0: + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} @@ -4379,17 +4298,10 @@ packages: fireworm@0.7.2: resolution: {integrity: sha512-GjebTzq+NKKhfmDxjKq3RXwQcN9xRmZWhnnuC9L+/x5wBQtR0aaQM50HsjrzJ2wc28v1vSdfOpELok0TKR4ddg==} - fixturify-project@1.10.0: - resolution: {integrity: sha512-L1k9uiBQuN0Yr8tA9Noy2VSQ0dfg0B8qMdvT7Wb5WQKc7f3dn3bzCbSrqlb+etLW+KDV4cBC7R1OvcMg3kcxmA==} - fixturify-project@2.1.1: resolution: {integrity: sha512-sP0gGMTr4iQ8Kdq5Ez0CVJOZOGWqzP5dv/veOTdFNywioKjkNWCHBi1q65DMpcNGUGeoOUWehyji274Q2wRgxA==} engines: {node: 10.* || >= 12.*} - fixturify@1.3.0: - resolution: {integrity: sha512-tL0svlOy56pIMMUQ4bU1xRe6NZbFSa/ABTWMxW2mH38lFGc9TrNAKWcMBQ7eIjo3wqSS8f2ICabFaatFyFmrVQ==} - engines: {node: 6.* || 8.* || >= 10.*} - fixturify@2.1.1: resolution: {integrity: sha512-SRgwIMXlxkb6AUgaVjIX+jCEqdhyXu9hah7mcK+lWynjKtX73Ux1TDv71B7XyaQ+LJxkYRHl5yCL8IycAvQRUw==} engines: {node: 10.* || >= 12.*} @@ -4878,6 +4790,10 @@ packages: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} + index-to-position@0.1.2: + resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==} + engines: {node: '>=18'} + infer-owner@1.0.4: resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} @@ -5219,11 +5135,6 @@ packages: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} @@ -5262,10 +5173,6 @@ packages: resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==} engines: {node: '>= 0.4'} - json5@0.5.1: - resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} - hasBin: true - json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true @@ -5361,10 +5268,6 @@ packages: 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'} - locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} @@ -5954,10 +5857,6 @@ packages: resolution: {integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==} engines: {node: '>=6'} - p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -5970,10 +5869,6 @@ packages: resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - p-locate@3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} engines: {node: '>=6'} @@ -5998,10 +5893,6 @@ packages: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} - p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} @@ -6029,6 +5920,10 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} + parse-json@8.1.0: + resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==} + engines: {node: '>=18'} + parse-ms@1.0.1: resolution: {integrity: sha512-LpH1Cf5EYuVjkBvCDBYvkUPh+iv2bk3FHflxHkpCYT0/FZ1d3N3uJaLiHr4yGuMcFUhv6eAivitTvWZI4B/chg==} engines: {node: '>=0.10.0'} @@ -6147,10 +6042,6 @@ packages: pkg-entry-points@1.1.0: resolution: {integrity: sha512-9vL2T/he5Kb97GVY+V3Ih4jCC1lF3PQGIDUJIUqKM4Q6twmhrUSAa0OFj+kb8IEs4wYzEgB6kcc4oYy21kZnQw==} - pkg-up@2.0.0: - resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==} - engines: {node: '>=4'} - pkg-up@3.1.0: resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} engines: {node: '>=8'} @@ -6330,10 +6221,18 @@ packages: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true + read-package-up@11.0.0: + resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==} + engines: {node: '>=18'} + read-pkg@3.0.0: resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} engines: {node: '>=4'} + read-pkg@9.0.1: + resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==} + engines: {node: '>=18'} + readable-stream@1.0.34: resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} @@ -6459,9 +6358,6 @@ packages: requires-port@1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - reselect@3.0.1: - resolution: {integrity: sha512-b/6tFZCmRhtBMa4xGqiiRp9jh9Aqi2A687Lo265cN0/QohJQEBPiQ52f4QB6i0eF3yp3hmLL21LSGBcML2dlxA==} - reselect@4.1.8: resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} @@ -6476,10 +6372,6 @@ packages: resolve-package-path@1.2.7: resolution: {integrity: sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q==} - resolve-package-path@2.0.0: - resolution: {integrity: sha512-/CLuzodHO2wyyHTzls5Qr+EFeG6RcW4u6//gjYvUfcfyuplIX1SSccU+A5A9A78Gmezkl3NBkFAMxLbzTY9TJA==} - engines: {node: 8.* || 10.* || >= 12} - resolve-package-path@3.1.0: resolution: {integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA==} engines: {node: 10.* || >= 12} @@ -6950,6 +6842,10 @@ packages: string.prototype.matchall@4.0.10: resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} + string.prototype.matchall@4.0.11: + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} + string.prototype.padend@3.1.5: resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} engines: {node: '>= 0.4'} @@ -7001,10 +6897,6 @@ packages: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} - strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - strip-eof@1.0.0: resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} engines: {node: '>=0.10.0'} @@ -7257,6 +7149,10 @@ packages: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} + type-fest@4.26.1: + resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} + engines: {node: '>=16'} + type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} @@ -7587,9 +7483,6 @@ packages: wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - workerpool@3.1.2: - resolution: {integrity: sha512-WJFA0dGqIK7qj7xPTqciWBH5DlJQzoPjsANvc3Y4hNB0SScT+Emjvt0jPPkDBUjBNngX1q9hHgt1Gfwytu6pug==} - workerpool@6.5.1: resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==} @@ -7742,13 +7635,6 @@ snapshots: eslint-visitor-keys: 2.1.0 semver: 6.3.1 - '@babel/generator@7.23.6': - dependencies: - '@babel/types': 7.23.6 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - jsesc: 2.5.2 - '@babel/generator@7.25.7': dependencies: '@babel/types': 7.25.7 @@ -8896,11 +8782,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/polyfill@7.12.1': - dependencies: - core-js: 2.6.12 - regenerator-runtime: 0.13.11 - '@babel/preset-env@7.23.6(@babel/core@7.25.7)': dependencies: '@babel/compat-data': 7.23.5 @@ -9120,21 +9001,6 @@ snapshots: '@babel/parser': 7.25.7 '@babel/types': 7.25.7 - '@babel/traverse@7.23.6': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/traverse@7.25.7(supports-color@8.1.1)': dependencies: '@babel/code-frame': 7.25.7 @@ -9186,9 +9052,9 @@ snapshots: '@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))': dependencies: - '@ember/test-waiters': 3.1.0 + '@ember/test-waiters': 3.1.0(@babel/core@7.25.7) '@embroider/addon-shim': 1.8.9 - '@embroider/macros': 1.16.7(@glint/template@1.4.0) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) '@simple-dom/interface': 1.4.0 decorator-transforms: 2.2.2(@babel/core@7.25.7) dom-element-descriptors: 0.5.1 @@ -9198,13 +9064,14 @@ snapshots: - '@glint/template' - supports-color - '@ember/test-waiters@3.1.0': + '@ember/test-waiters@3.1.0(@babel/core@7.25.7)': dependencies: calculate-cache-key-for-tree: 2.0.0 - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) ember-cli-version-checker: 5.1.2 semver: 7.6.3 transitivePeerDependencies: + - '@babel/core' - supports-color '@embroider/addon-dev@5.0.0(@glint/template@1.4.0)(rollup@4.24.0)': @@ -9256,7 +9123,7 @@ snapshots: '@babel/runtime': 7.25.7 '@babel/traverse': 7.25.7(supports-color@8.1.1) '@embroider/core': 3.4.17(@glint/template@1.4.0) - '@embroider/macros': 1.16.7(@glint/template@1.4.0) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) '@types/babel__code-frame': 7.0.6 '@types/yargs': 17.0.33 assert-never: 1.3.0 @@ -9302,7 +9169,7 @@ snapshots: '@babel/core': 7.25.7(supports-color@8.1.1) '@babel/parser': 7.25.7 '@babel/traverse': 7.25.7(supports-color@8.1.1) - '@embroider/macros': 1.16.7(@glint/template@1.4.0) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) assert-never: 1.3.0 babel-plugin-ember-template-compilation: 2.3.0 @@ -9336,12 +9203,12 @@ snapshots: '@embroider/core': 3.4.17(@glint/template@1.4.0) webpack: 5.95.0 - '@embroider/macros@1.16.7(@glint/template@1.4.0)': + '@embroider/macros@1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0)': dependencies: '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) assert-never: 1.3.0 babel-import-util: 2.1.1 - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) find-up: 5.0.0 lodash: 4.17.21 resolve: 1.22.8 @@ -9349,6 +9216,7 @@ snapshots: optionalDependencies: '@glint/template': 1.4.0 transitivePeerDependencies: + - '@babel/core' - supports-color '@embroider/shared-internals@2.7.0(supports-color@8.1.1)': @@ -9437,7 +9305,7 @@ snapshots: '@glimmer/util': 0.44.0 broccoli-file-creator: 2.1.1 broccoli-merge-trees: 3.0.2 - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) 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 @@ -9682,24 +9550,14 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@jridgewell/gen-mapping@0.3.3': - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.20 - '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.1': {} - '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/set-array@1.1.2': {} - '@jridgewell/set-array@1.2.1': {} '@jridgewell/source-map@0.3.6': @@ -9711,11 +9569,6 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.0': {} - '@jridgewell/trace-mapping@0.3.20': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 @@ -9723,7 +9576,7 @@ snapshots: '@lint-todo/utils@13.1.1': dependencies: - '@types/eslint': 7.29.0 + '@types/eslint': 8.56.12 find-up: 5.0.0 fs-extra: 9.1.0 proper-lockfile: 4.1.2 @@ -9805,7 +9658,7 @@ snapshots: dependencies: which: 4.0.0 - '@nullvoxpopuli/eslint-configs@4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@7.29.0)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)': + '@nullvoxpopuli/eslint-configs@4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)': dependencies: cosmiconfig: 9.0.0(typescript@5.5.4) eslint: 8.57.1 @@ -9814,7 +9667,7 @@ snapshots: eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-json: 3.1.0 eslint-plugin-n: 17.10.3(eslint@8.57.1) - eslint-plugin-prettier: 5.2.1(@types/eslint@7.29.0)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + eslint-plugin-prettier: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-simple-import-sort: 12.1.1(eslint@8.57.1) prettier-plugin-ember-template-tag: 2.0.2(prettier@3.3.3) optionalDependencies: @@ -9823,7 +9676,7 @@ snapshots: '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7) '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) '@typescript-eslint/parser': 8.8.0(eslint@8.57.1)(typescript@5.5.4) - eslint-plugin-ember: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1) + eslint-plugin-ember: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) eslint-plugin-qunit: 8.1.2(eslint@8.57.1) prettier: 3.3.3 transitivePeerDependencies: @@ -10025,6 +9878,8 @@ snapshots: '@tootallnate/once@1.1.2': {} + '@tsconfig/ember@3.0.8': {} + '@types/acorn@4.0.6': dependencies: '@types/estree': 1.0.6 @@ -10052,10 +9907,16 @@ snapshots: dependencies: '@types/node': 22.7.4 - '@types/eslint@7.29.0': + '@types/eslint@8.56.12': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + + '@types/eslint@9.6.1': + dependencies: + '@types/estree': 1.0.6 '@types/json-schema': 7.0.15 + optional: true '@types/estree@1.0.5': {} @@ -10075,10 +9936,6 @@ snapshots: '@types/qs': 6.9.11 '@types/serve-static': 1.15.5 - '@types/fs-extra@5.1.0': - dependencies: - '@types/node': 20.10.5 - '@types/fs-extra@8.1.5': dependencies: '@types/node': 22.7.4 @@ -10125,6 +9982,8 @@ snapshots: '@types/node@9.6.61': {} + '@types/normalize-package-data@2.4.4': {} + '@types/object-path@0.11.4': {} '@types/qs@6.9.11': {} @@ -10611,18 +10470,6 @@ snapshots: dependencies: possible-typed-array-names: 1.0.0 - babel-eslint@10.1.0(eslint@8.57.1): - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.6 - '@babel/traverse': 7.23.6 - '@babel/types': 7.23.6 - eslint: 8.57.1 - eslint-visitor-keys: 1.3.0 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - babel-import-util@0.2.0: {} babel-import-util@2.0.1: {} @@ -10683,14 +10530,6 @@ snapshots: parse-static-imports: 1.1.0 string.prototype.matchall: 4.0.10 - babel-plugin-module-resolver@3.2.0: - dependencies: - find-babel-config: 1.2.0 - glob: 7.2.3 - pkg-up: 2.0.0 - reselect: 3.0.1 - resolve: 1.22.8 - babel-plugin-module-resolver@5.0.0: dependencies: find-babel-config: 2.0.0 @@ -10855,40 +10694,6 @@ 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.1.0 - 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.25.7(supports-color@8.1.1) - '@babel/polyfill': 7.12.1 - broccoli-funnel: 2.0.2 - broccoli-merge-trees: 3.0.2 - broccoli-persistent-filter: 2.3.1 - clone: 2.1.2 - hash-for-dep: 1.5.1 - heimdalljs: 0.2.6 - heimdalljs-logger: 0.1.10 - json-stable-stringify: 1.1.0 - rsvp: 4.8.5 - workerpool: 3.1.2 - transitivePeerDependencies: - - supports-color - broccoli-babel-transpiler@8.0.0(@babel/core@7.25.7): dependencies: '@babel/core': 7.25.7(supports-color@8.1.1) @@ -10973,20 +10778,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: @@ -11059,24 +10850,6 @@ snapshots: 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 - symlink-or-copy: 1.3.1 - walk-sync: 0.3.4 - transitivePeerDependencies: - - supports-color - broccoli-persistent-filter@2.3.1: dependencies: async-disk-cache: 1.3.5 @@ -11158,8 +10931,6 @@ snapshots: dependencies: heimdalljs: 0.2.6 - broccoli-source@2.1.2: {} - broccoli-source@3.0.1: dependencies: broccoli-node-api: 1.7.0 @@ -11489,8 +11260,6 @@ snapshots: common-path-prefix@3.0.0: {} - common-tags@1.8.2: {} - commondir@1.0.1: {} compatfactory@3.0.0(typescript@5.5.4): @@ -11590,8 +11359,6 @@ snapshots: cookie@0.6.0: {} - copy-dereference@1.0.0: {} - copy-descriptor@0.1.1: {} core-js-compat@3.34.0: @@ -11602,8 +11369,6 @@ snapshots: dependencies: browserslist: 4.24.0 - core-js@2.6.12: {} - core-object@3.1.5: dependencies: chalk: 2.4.2 @@ -11862,7 +11627,7 @@ snapshots: '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.7) '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) '@babel/preset-env': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@embroider/macros': 1.16.7(@glint/template@1.4.0) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) babel-loader: 8.4.1(@babel/core@7.25.7)(webpack@5.95.0) babel-plugin-ember-modules-api-polyfill: 3.5.0 @@ -11899,41 +11664,6 @@ snapshots: ember-cli-babel-plugin-helpers@1.1.1: {} - ember-cli-babel@7.26.11: - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-compilation-targets': 7.23.6 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7) - '@babel/plugin-proposal-decorators': 7.23.6(@babel/core@7.25.7) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.7) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.25.7) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-runtime': 7.23.6(@babel/core@7.25.7) - '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7) - '@babel/polyfill': 7.12.1 - '@babel/preset-env': 7.23.6(@babel/core@7.25.7) - '@babel/runtime': 7.12.18 - amd-name-resolver: 1.3.1 - babel-plugin-debug-macros: 0.3.4(@babel/core@7.25.7) - 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 - broccoli-babel-transpiler: 7.8.1 - broccoli-debug: 0.6.5 - broccoli-funnel: 2.0.2 - broccoli-source: 2.1.2 - calculate-cache-key-for-tree: 2.0.0 - clone: 2.1.2 - ember-cli-babel-plugin-helpers: 1.1.1 - ember-cli-version-checker: 4.1.1 - ensure-posix-path: 1.1.1 - fixturify-project: 1.10.0 - resolve-package-path: 3.1.0 - rimraf: 3.0.2 - semver: 5.7.2 - transitivePeerDependencies: - - supports-color - ember-cli-babel@8.2.0(@babel/core@7.25.7): dependencies: '@babel/core': 7.25.7(supports-color@8.1.1) @@ -11969,27 +11699,6 @@ snapshots: ember-cli-get-component-path-option@1.0.0: {} - ember-cli-htmlbars@5.7.2: - dependencies: - '@ember/edition-utils': 1.2.0 - babel-plugin-htmlbars-inline-precompile: 5.3.1 - broccoli-debug: 0.6.5 - broccoli-persistent-filter: 3.1.3 - broccoli-plugin: 4.0.7 - common-tags: 1.8.2 - ember-cli-babel-plugin-helpers: 1.1.1 - ember-cli-version-checker: 5.1.2 - fs-tree-diff: 2.0.1 - hash-for-dep: 1.5.1 - heimdalljs-logger: 0.1.10 - json-stable-stringify: 1.1.0 - semver: 7.5.4 - silent-error: 1.1.1 - strip-bom: 4.0.0 - walk-sync: 2.2.0 - transitivePeerDependencies: - - supports-color - ember-cli-htmlbars@6.3.0: dependencies: '@ember/edition-utils': 1.2.0 @@ -12035,10 +11744,11 @@ snapshots: ember-cli-string-utils@1.1.0: {} - ember-cli-test-loader@3.1.0: + ember-cli-test-loader@3.1.0(@babel/core@7.25.7): dependencies: - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) transitivePeerDependencies: + - '@babel/core' - supports-color ember-cli-typescript-blueprint-polyfill@0.1.0: @@ -12100,14 +11810,6 @@ snapshots: resolve-package-path: 1.2.7 semver: 5.7.2 - ember-cli-version-checker@4.1.1: - dependencies: - resolve-package-path: 2.0.0 - semver: 6.3.1 - silent-error: 1.1.1 - transitivePeerDependencies: - - supports-color - ember-cli-version-checker@5.1.2: dependencies: resolve-package-path: 3.1.0 @@ -12270,7 +11972,7 @@ snapshots: - '@babel/core' - supports-color - ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1): + ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1): dependencies: '@babel/core': 7.25.7(supports-color@8.1.1) '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@8.57.1) @@ -12283,7 +11985,7 @@ snapshots: transitivePeerDependencies: - eslint - ember-fetch@8.1.2(encoding@0.1.13): + ember-fetch@8.1.2(@babel/core@7.25.7)(encoding@0.1.13): dependencies: abortcontroller-polyfill: 1.7.5 broccoli-concat: 4.2.5 @@ -12294,30 +11996,33 @@ snapshots: 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-babel: 8.2.0(@babel/core@7.25.7) ember-cli-typescript: 4.2.1 ember-cli-version-checker: 5.1.2 node-fetch: 2.7.0(encoding@0.1.13) whatwg-fetch: 3.6.20 transitivePeerDependencies: + - '@babel/core' - encoding - supports-color - ember-functions-as-helper-polyfill@2.1.2(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): + ember-functions-as-helper-polyfill@2.1.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) ember-cli-typescript: 5.3.0 ember-cli-version-checker: 5.1.2 ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: + - '@babel/core' - supports-color - ember-functions-as-modifiers-polyfill@1.0.0: + ember-functions-as-modifiers-polyfill@1.0.0(@babel/core@7.25.7): dependencies: - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) ember-cli-htmlbars: 6.3.0 ember-cli-typescript: 4.2.1 transitivePeerDependencies: + - '@babel/core' - supports-color ember-load-initializers@3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): @@ -12332,29 +12037,37 @@ snapshots: transitivePeerDependencies: - supports-color - ember-qunit@8.1.0(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0): + ember-qunit@8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0): dependencies: '@ember/test-helpers': 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) '@embroider/addon-shim': 1.8.9 - '@embroider/macros': 1.16.7(@glint/template@1.4.0) - ember-cli-test-loader: 3.1.0 + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) + ember-cli-test-loader: 3.1.0(@babel/core@7.25.7) ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) qunit: 2.22.0 qunit-theme-ember: 1.0.0 transitivePeerDependencies: + - '@babel/core' - '@glint/template' - supports-color - ember-resolver@13.0.2(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): + ember-resolver@13.0.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: - ember-cli-babel: 7.26.11 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) optionalDependencies: ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: + - '@babel/core' - supports-color ember-rfc176-data@0.3.18: {} + ember-route-template@1.0.3: + dependencies: + '@embroider/addon-shim': 1.8.9 + transitivePeerDependencies: + - supports-color + ember-router-generator@2.0.0: dependencies: '@babel/parser': 7.25.7 @@ -12419,16 +12132,6 @@ snapshots: - supports-color - webpack - ember-statechart-component@6.1.2(@glint/template@1.4.0)(xstate@5.18.2): - dependencies: - '@embroider/addon-shim': 1.8.9 - ember-tracked-storage-polyfill: 1.0.0 - xstate: 5.18.2 - optionalDependencies: - '@glint/template': 1.4.0 - transitivePeerDependencies: - - supports-color - ember-template-imports@3.4.2: dependencies: babel-import-util: 0.2.0 @@ -12438,7 +12141,7 @@ snapshots: line-column: 1.0.2 magic-string: 0.25.9 parse-static-imports: 1.1.0 - string.prototype.matchall: 4.0.10 + string.prototype.matchall: 4.0.11 validate-peer-dependencies: 1.2.0 transitivePeerDependencies: - supports-color @@ -12490,13 +12193,6 @@ snapshots: transitivePeerDependencies: - supports-color - ember-tracked-storage-polyfill@1.0.0: - dependencies: - ember-cli-babel: 7.26.11 - ember-cli-htmlbars: 5.7.2 - transitivePeerDependencies: - - supports-color - ember-try-config@4.0.0(encoding@0.1.13): dependencies: ember-source-channel-url: 3.0.0(encoding@0.1.13) @@ -12817,11 +12513,11 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1): + eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1): dependencies: '@ember-data/rfc395-data': 0.0.4 css-tree: 2.3.1 - ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1))(eslint@8.57.1) + ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) ember-rfc176-data: 0.3.18 eslint: 8.57.1 eslint-utils: 3.0.0(eslint@8.57.1) @@ -12938,14 +12634,14 @@ snapshots: resolve: 1.22.8 semver: 6.3.1 - eslint-plugin-prettier@5.2.1(@types/eslint@7.29.0)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): dependencies: eslint: 8.57.1 prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 optionalDependencies: - '@types/eslint': 7.29.0 + '@types/eslint': 9.6.1 eslint-config-prettier: 9.1.0(eslint@8.57.1) eslint-plugin-qunit@8.1.2(eslint@8.57.1): @@ -13294,11 +12990,6 @@ snapshots: transitivePeerDependencies: - supports-color - find-babel-config@1.2.0: - dependencies: - json5: 0.5.1 - path-exists: 3.0.0 - find-babel-config@2.0.0: dependencies: json5: 2.2.3 @@ -13317,9 +13008,7 @@ snapshots: find-index@1.1.1: {} - find-up@2.1.0: - dependencies: - locate-path: 2.0.0 + find-up-simple@1.0.0: {} find-up@3.0.0: dependencies: @@ -13365,25 +13054,12 @@ snapshots: lodash.flatten: 3.0.2 minimatch: 3.1.2 - fixturify-project@1.10.0: - dependencies: - fixturify: 1.3.0 - tmp: 0.0.33 - fixturify-project@2.1.1: dependencies: fixturify: 2.1.1 tmp: 0.0.33 type-fest: 0.11.0 - fixturify@1.3.0: - dependencies: - '@types/fs-extra': 5.1.0 - '@types/minimatch': 3.0.5 - '@types/rimraf': 2.0.5 - fs-extra: 7.0.1 - matcher-collection: 2.0.1 - fixturify@2.1.1: dependencies: '@types/fs-extra': 8.1.5 @@ -13994,6 +13670,8 @@ snapshots: indent-string@4.0.0: {} + index-to-position@0.1.2: {} + infer-owner@1.0.4: {} inflection@2.0.1: {} @@ -14344,8 +14022,6 @@ snapshots: jsesc@0.5.0: {} - jsesc@2.5.2: {} - jsesc@3.0.2: {} json-buffer@3.0.0: {} @@ -14378,8 +14054,6 @@ snapshots: jsonify: 0.0.1 object-keys: 1.1.1 - json5@0.5.1: {} - json5@1.0.2: dependencies: minimist: 1.2.8 @@ -14475,11 +14149,6 @@ snapshots: locate-character@2.0.5: {} - locate-path@2.0.0: - dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 - locate-path@3.0.0: dependencies: p-locate: 3.0.0 @@ -15108,10 +14777,6 @@ snapshots: p-is-promise@2.1.0: {} - p-limit@1.3.0: - dependencies: - p-try: 1.0.0 - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -15124,10 +14789,6 @@ snapshots: dependencies: yocto-queue: 1.0.0 - p-locate@2.0.0: - dependencies: - p-limit: 1.3.0 - p-locate@3.0.0: dependencies: p-limit: 2.3.0 @@ -15152,8 +14813,6 @@ snapshots: dependencies: aggregate-error: 3.1.0 - p-try@1.0.0: {} - p-try@2.2.0: {} package-json@10.0.1: @@ -15188,6 +14847,12 @@ snapshots: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 + parse-json@8.1.0: + dependencies: + '@babel/code-frame': 7.25.7 + index-to-position: 0.1.2 + type-fest: 4.26.1 + parse-ms@1.0.1: {} parse-passwd@1.0.0: {} @@ -15267,10 +14932,6 @@ snapshots: pkg-entry-points@1.1.0: {} - pkg-up@2.0.0: - dependencies: - find-up: 2.1.0 - pkg-up@3.1.0: dependencies: find-up: 3.0.0 @@ -15437,12 +15098,26 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 + read-package-up@11.0.0: + dependencies: + find-up-simple: 1.0.0 + read-pkg: 9.0.1 + type-fest: 4.26.1 + read-pkg@3.0.0: dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 + read-pkg@9.0.1: + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 6.0.0 + parse-json: 8.1.0 + type-fest: 4.26.1 + unicorn-magic: 0.1.0 + readable-stream@1.0.34: dependencies: core-util-is: 1.0.3 @@ -15597,8 +15272,6 @@ snapshots: requires-port@1.0.0: {} - reselect@3.0.1: {} - reselect@4.1.8: {} resolve-dir@1.0.1: @@ -15613,11 +15286,6 @@ snapshots: path-root: 0.1.1 resolve: 1.22.8 - resolve-package-path@2.0.0: - dependencies: - path-root: 0.1.1 - resolve: 1.22.8 - resolve-package-path@3.1.0: dependencies: path-root: 0.1.1 @@ -16182,6 +15850,21 @@ snapshots: set-function-name: 2.0.1 side-channel: 1.0.4 + string.prototype.matchall@4.0.11: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + regexp.prototype.flags: 1.5.3 + set-function-name: 2.0.2 + side-channel: 1.0.6 + string.prototype.padend@3.1.5: dependencies: call-bind: 1.0.5 @@ -16249,8 +15932,6 @@ snapshots: strip-bom@3.0.0: {} - strip-bom@4.0.0: {} - strip-eof@1.0.0: {} strip-final-newline@2.0.0: {} @@ -16590,6 +16271,8 @@ snapshots: type-fest@0.21.3: {} + type-fest@4.26.1: {} + type-is@1.6.18: dependencies: media-typer: 0.3.0 @@ -16780,7 +16463,7 @@ snapshots: validate-peer-dependencies@1.2.0: dependencies: resolve-package-path: 3.1.0 - semver: 7.5.4 + semver: 7.6.3 vary@1.1.2: {} @@ -16967,14 +16650,6 @@ snapshots: wordwrap@1.0.0: {} - workerpool@3.1.2: - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - object-assign: 4.1.1 - rsvp: 4.8.5 - transitivePeerDependencies: - - supports-color - workerpool@6.5.1: {} wrap-ansi@6.2.0: diff --git a/testing/ember-app/.eslintrc.js b/testing/ember-app/.eslintrc.js index 20282836..e6640041 100644 --- a/testing/ember-app/.eslintrc.js +++ b/testing/ember-app/.eslintrc.js @@ -1,6 +1,6 @@ -"use strict"; +'use strict'; -const { configs } = require("@nullvoxpopuli/eslint-configs"); +const { configs } = require('@nullvoxpopuli/eslint-configs'); const config = configs.ember(); @@ -9,10 +9,20 @@ module.exports = { overrides: [ ...config.overrides, { - files: ["**/*.ts"], + files: ['**/*.gts'], + plugins: ['ember'], + parser: 'ember-eslint-parser', + }, + { + files: ['**/*.gjs'], + plugins: ['ember'], + parser: 'ember-eslint-parser', + }, + { + files: ['**/*.ts'], rules: { - "@typescript-eslint/ban-types": "off", - "@typescript-eslint/no-explicit-any": "off", + '@typescript-eslint/ban-types': 'off', + '@typescript-eslint/no-explicit-any': 'off', }, }, ], diff --git a/testing/ember-app/.prettierignore b/testing/ember-app/.prettierignore index 92216555..5db050f6 100644 --- a/testing/ember-app/.prettierignore +++ b/testing/ember-app/.prettierignore @@ -19,3 +19,4 @@ /.node_modules.ember-try/ /bower.json.ember-try /package.json.ember-try +*.md diff --git a/testing/ember-app/.prettierrc.js b/testing/ember-app/.prettierrc.js index 534e6d35..1ee45a09 100644 --- a/testing/ember-app/.prettierrc.js +++ b/testing/ember-app/.prettierrc.js @@ -1,5 +1,37 @@ 'use strict'; module.exports = { - singleQuote: true, + printWidth: 100, + plugins: ['prettier-plugin-ember-template-tag'], + overrides: [ + { + // Lol, JavaScript + files: ['*.js', '*.ts', '*.cjs', '.mjs', '.cts', '.mts', '.cts'], + options: { + singleQuote: true, + trailingComma: 'es5', + }, + }, + { + files: ['*.json'], + options: { + singleQuote: false, + }, + }, + { + files: ['*.hbs'], + options: { + singleQuote: false, + }, + }, + { + files: ['*.gjs', '*.gts'], + options: { + parser: 'ember-template-tag', + singleQuote: true, + templateSingleQuote: false, + trailingComma: 'es5', + }, + }, + ], }; diff --git a/testing/ember-app/.template-lintrc.js b/testing/ember-app/.template-lintrc.js index 80e8dcf9..ed47bd4d 100644 --- a/testing/ember-app/.template-lintrc.js +++ b/testing/ember-app/.template-lintrc.js @@ -6,8 +6,8 @@ module.exports = { { files: ['tests/**'], rules: { - 'require-button-type': 'off' - } - } + 'require-button-type': 'off', + }, + }, ], }; diff --git a/testing/ember-app/app/app.js b/testing/ember-app/app/app.js index d03600ae..8ffe4a47 100644 --- a/testing/ember-app/app/app.js +++ b/testing/ember-app/app/app.js @@ -1,3 +1,5 @@ +import 'decorator-transforms/globals'; + import Application from '@ember/application'; import config from 'ember-app/config/environment'; diff --git a/testing/ember-app/app/components/.gitkeep b/testing/ember-app/app/components/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/testing/ember-app/app/controllers/.gitkeep b/testing/ember-app/app/controllers/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/testing/ember-app/app/helpers/to-string.ts b/testing/ember-app/app/helpers/to-string.ts index a8f2e0f8..f65d8b19 100644 --- a/testing/ember-app/app/helpers/to-string.ts +++ b/testing/ember-app/app/helpers/to-string.ts @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ -export default function toString(x: any) { +export function toString(x: any) { if (typeof x === 'string') { return x; } @@ -13,3 +13,5 @@ export default function toString(x: any) { return `${x}`; } + +export default toString; diff --git a/testing/ember-app/app/index.html b/testing/ember-app/app/index.html index 00830f94..9e5b7f7d 100644 --- a/testing/ember-app/app/index.html +++ b/testing/ember-app/app/index.html @@ -1,16 +1,16 @@ - + - - + + EmberApp - - + + {{content-for "head"}} - - + + {{content-for "head-footer"}} diff --git a/testing/ember-app/app/models/.gitkeep b/testing/ember-app/app/models/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/testing/ember-app/app/routes/.gitkeep b/testing/ember-app/app/routes/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/testing/ember-app/app/templates/application.gts b/testing/ember-app/app/templates/application.gts new file mode 100644 index 00000000..43e80720 --- /dev/null +++ b/testing/ember-app/app/templates/application.gts @@ -0,0 +1,11 @@ +import Route from 'ember-route-template'; + +import { Toggler } from './demos/toggle'; + +export default Route( + +); diff --git a/testing/ember-app/app/templates/application.hbs b/testing/ember-app/app/templates/application.hbs deleted file mode 100644 index e2147cab..00000000 --- a/testing/ember-app/app/templates/application.hbs +++ /dev/null @@ -1 +0,0 @@ -{{outlet}} \ No newline at end of file diff --git a/testing/ember-app/app/templates/demos/toggle.gts b/testing/ember-app/app/templates/demos/toggle.gts new file mode 100644 index 00000000..8fd30c57 --- /dev/null +++ b/testing/ember-app/app/templates/demos/toggle.gts @@ -0,0 +1,22 @@ +import { createMachine } from 'xstate'; +import { toString } from 'ember-app/helpers/to-string'; +import { on } from '@ember/modifier'; +import { fn } from '@ember/helper'; + +const Toggle = createMachine({ + initial: 'inactive', + states: { + inactive: { on: { TOGGLE: 'active' } }, + active: { on: { TOGGLE: 'inactive' } }, + }, +}); + +export const Toggler = diff --git a/testing/ember-app/config/ember-cli-update.json b/testing/ember-app/config/ember-cli-update.json index f5323411..8ad4622c 100644 --- a/testing/ember-app/config/ember-cli-update.json +++ b/testing/ember-app/config/ember-cli-update.json @@ -10,9 +10,7 @@ "outputRepo": "https://github.com/ember-cli/ember-new-output", "codemodsSource": "ember-app-codemods-manifest@1", "isBaseBlueprint": true, - "options": [ - "--pnpm" - ] + "options": ["--pnpm"] } ] } diff --git a/testing/ember-app/config/environment.js b/testing/ember-app/config/environment.js index 5a7adc97..365e9813 100644 --- a/testing/ember-app/config/environment.js +++ b/testing/ember-app/config/environment.js @@ -5,7 +5,7 @@ module.exports = function (environment) { modulePrefix: 'ember-app', environment, rootURL: '/', - locationType: 'auto', + locationType: 'history', EmberENV: { FEATURES: { // Here you can enable experimental features on an ember canary build diff --git a/testing/ember-app/ember-cli-build.js b/testing/ember-app/ember-cli-build.js index c2c8d424..a9095139 100644 --- a/testing/ember-app/ember-cli-build.js +++ b/testing/ember-app/ember-cli-build.js @@ -1,20 +1,66 @@ 'use strict'; +const path = require('path'); +const fs = require('fs'); const EmberApp = require('ember-cli/lib/broccoli/ember-app'); -module.exports = function (defaults) { +module.exports = async function (defaults) { + const { readPackageUpSync } = await import('read-package-up'); + let app = new EmberApp(defaults, { - autoImport: { - watchDependencies: ['ember-statechart-component'], - webpack: { - devtool: 'inline-source-map', - }, + // Temporary until I upgrade the test app to vite + trees: { + app: (() => { + let sideWatch = require('@embroider/broccoli-side-watch'); + + let paths = ['ember-statechart-component'].map((libraryName) => { + let entry = require.resolve(libraryName); + let { packageJson, path: packageJsonPath } = readPackageUpSync({ cwd: entry }); + let packagePath = path.dirname(packageJsonPath); + + console.debug( + `Side-watching ${libraryName} from ${packagePath}, which started in ${entry}` + ); + + let toWatch = packageJson.files + .map((f) => path.join(packagePath, f)) + .filter((p) => { + if (!fs.existsSync(p)) return false; + if (!fs.lstatSync(p).isDirectory()) return false; + + return !p.endsWith('/src'); + }); + + return toWatch; + }); + + return sideWatch('app', { watching: paths.flat() }); + })(), + }, + 'ember-cli-babel': { + enableTypeScriptTransform: true, + // turn off the old transform + // (for this to work when using Embroider you need https://github.com/embroider-build/embroider/pull/1673) + disableDecoratorTransforms: true, + }, + babel: { + plugins: [ + // add the new transform. + require.resolve('decorator-transforms'), + ], }, }); const { Webpack } = require('@embroider/webpack'); return require('@embroider/compat').compatBuild(app, Webpack, { + extraPublicTrees: [], + staticAddonTrees: true, + staticAddonTestSupportTrees: true, + staticHelpers: true, + staticModifiers: true, + staticComponents: true, + staticEmberSource: true, packageRules: [ { package: 'ember-app', @@ -28,7 +74,7 @@ module.exports = function (defaults) { ], packagerOptions: { webpackConfig: { - devtool: 'inline-source-map', + devtool: 'source-map', }, }, }); diff --git a/testing/ember-app/package.json b/testing/ember-app/package.json index 79749c22..20387ad4 100644 --- a/testing/ember-app/package.json +++ b/testing/ember-app/package.json @@ -11,16 +11,16 @@ "test": "tests" }, "scripts": { - "build": "ember build --environment=production", - "lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"", - "lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix", + "lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'", + "lint:fix": "pnpm lint:js:fix && pnpm lint:prettier:fix", "lint:hbs": "ember-template-lint .", "lint:hbs:fix": "ember-template-lint . --fix", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "start": "ember serve", - "test": "npm-run-all lint test:*", - "test:ember": "ember test" + "test:ember": "ember test", + "format:prettier": "prettier . --write", + "lint:prettier": "prettier . --check" }, "devDependencies": { "@babel/core": "7.25.7", @@ -43,14 +43,12 @@ "@types/rsvp": "^4.0.9", "@typescript-eslint/eslint-plugin": "^8.8.0", "@typescript-eslint/parser": "^8.8.0", - "babel-eslint": "^10.1.0", - "broccoli-asset-rev": "^3.0.0", + "concurrently": "^9.0.1", "ember-auto-import": "^2.8.1", "ember-cli": "~5.12.0", "ember-cli-babel": "^8.2.0", "ember-cli-htmlbars": "^6.0.1", "ember-cli-inject-live-reload": "^2.1.0", - "ember-cli-typescript": "^5.3.0", "ember-fetch": "^8.1.1", "ember-functions-as-helper-polyfill": "^2.0.0", "ember-functions-as-modifiers-polyfill": "^1.0.0", @@ -72,21 +70,30 @@ "loader.js": "^4.7.0", "npm-run-all": "^4.1.5", "prettier": "^3.3.3", + "prettier-plugin-ember-template-tag": "^2.0.0", "qunit": "^2.22.0", "qunit-dom": "^3.2.1", + "read-package-up": "^11.0.0", "typescript": "~5.5.0", "webpack": "^5.95.0" }, "engines": { - "node": "12.* || 14.* || >= 16" + "node": ">= 16" }, "ember": { "edition": "octane" }, "dependencies": { - "ember-statechart-component": "*", + "decorator-transforms": "^2.2.2", + "ember-route-template": "^1.0.3", + "ember-statechart-component": "workspace:*", "xstate": "^5.18.2" }, + "dependenciesMeta": { + "ember-statechart-component": { + "injected": true + } + }, "volta": { "extends": "../../package.json" } diff --git a/testing/ember-app/tests/index.html b/testing/ember-app/tests/index.html index 09871171..3ab53cd9 100644 --- a/testing/ember-app/tests/index.html +++ b/testing/ember-app/tests/index.html @@ -1,25 +1,22 @@ - + - - + + EmberApp Tests - - + + - {{content-for "head"}} - {{content-for "test-head"}} + {{content-for "head"}} {{content-for "test-head"}} - - - + + + - {{content-for "head-footer"}} - {{content-for "test-head-footer"}} + {{content-for "head-footer"}} {{content-for "test-head-footer"}} - {{content-for "body"}} - {{content-for "test-body"}} + {{content-for "body"}} {{content-for "test-body"}}
@@ -34,7 +31,6 @@ - {{content-for "body-footer"}} - {{content-for "test-body-footer"}} + {{content-for "body-footer"}} {{content-for "test-body-footer"}} diff --git a/testing/ember-app/tests/integration/dynamic-machines-test.ts b/testing/ember-app/tests/integration/dynamic-machines-test.ts index d613d093..67747fe2 100644 --- a/testing/ember-app/tests/integration/dynamic-machines-test.ts +++ b/testing/ember-app/tests/integration/dynamic-machines-test.ts @@ -1,276 +1,276 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* eslint-disable @typescript-eslint/no-unused-vars */ -import { clearRender, click, render } from '@ember/test-helpers'; -import { hbs } from 'ember-cli-htmlbars'; -import { module, test } from 'qunit'; -import { setupRenderingTest } from 'ember-qunit'; - -import { assign, createMachine, spawn } from 'xstate'; - -import type { Interpreter } from 'xstate'; - -type Send = Interpreter['send']; - -module('Dynamic Machines', function (hooks) { - setupRenderingTest(hooks); - - module('xstate#spawn', function () { - test('Can have a dynamically created machine and is reactive', async function (assert) { - function createNested(context: Record, config: any = {}) { - return createMachine({ - id: 'nested', - initial: 'inactive', - - context: { - inactive: 0, - active: 0, - ...context, - }, - - states: { - inactive: { - entry: ['incrementInactive'], - on: { TOGGLE: 'active' }, - }, - active: { - entry: ['incrementActive'], - on: { TOGGLE: 'inactive' }, - }, - }, - }).withConfig(config); - } - - const parentMachine = createMachine({ - id: 'parent', - initial: 'idle', - - states: { - idle: { - on: { - SPAWN: 'spawnNested', - }, - }, - spawnNested: { - entry: assign({ - someRef: (_context, { nested, id }: any) => { - return spawn(nested, id); - }, - }), - }, - }, - }); - - this.owner.register('component:test-machine', parentMachine); - - let active = 0; - let inactive = 0; - - this.setProperties({ - startNested: (send: Send) => - send('SPAWN', { - id: 'named-spawned-machine', - nested: createNested( - { active: 3 }, - { - actions: { - incrementActive: () => active++, - incrementInactive: () => inactive++, - }, - } - ), - }), - }); - - await render(hbs` - - {{to-string state.value}} - - - - {{#if (to-any state 'context.someRef')}} - {{!-- - someRef.state does not have a reactive wrapper, like the root interpreter does - - TODO: make this reactive - --}} - {{to-any state 'context.someRef.state.value'}} - - - {{/if}} - - - `); - - assert.dom().containsText('idle'); - assert.strictEqual(active, 0); - assert.strictEqual(inactive, 0); - - await click('#spawn'); - assert.strictEqual(active, 0); - assert.strictEqual(inactive, 1); - - assert.dom().containsText('spawnNested'); - - /** - * There is not a way to easily access spawned machines - * internal state, so we've wired up some actions / callbacks - * - * (the way to access the nested state is state.children[machine-id].state) - */ - await click('#toggle'); - - assert.strictEqual(active, 1); - assert.strictEqual(inactive, 1); - - await click('#toggle'); - - assert.strictEqual(active, 1); - assert.strictEqual(inactive, 2); - }); - }); - - module('xstate#invoke', function () { - test('it works with invoked machines', async function (assert) { - // Invoked child machine - const minuteMachine = createMachine({ - initial: 'active', - states: { - active: { - on: { - DECLARE_DONE: 'finished', - }, - }, - finished: { type: 'final' }, - }, - }); - - const parentMachine = createMachine({ - id: 'parent', - initial: 'pending', - states: { - pending: { - invoke: { - id: 'timer', - src: minuteMachine, - onDone: 'timesUp', - }, - }, - timesUp: { - type: 'final', - }, - }, - }); - - this.setProperties({ - parentMachine, - }); - - await render(hbs` - -
{{state.value}}
-
{{state.children.timer.state.value}}
- - -
- `); - - assert.dom('#parent').containsText('pending'); - assert.dom('#child').containsText('active'); - - await click('button'); - - assert.dom('#parent').containsText('timesUp'); - assert.dom('#child').hasNoText('the machine destroyed itself (on purpose)'); - }); - - test('it works with the child machine updating its own context', async function (assert) { - const childMachine = createMachine( - { - id: 'child-machine', - initial: 'idleChild', - states: { - idleChild: { - entry: () => assert.step('entry: child.idleChild'), - exit: () => assert.step('exit: child.idleChild'), - on: { - UPDATE_CONTEXT: { actions: ['updateContext'] }, - }, - }, - }, - }, - { - actions: { - updateContext: assign({ prop1: 'new value' }), - }, - } - ); - - const parentMachine = createMachine({ - id: 'parent-state-machine', - initial: 'idle', - states: { - idle: { - entry: () => assert.step('entry: parent.idle'), - exit: () => assert.step('exit: parent.idle'), - on: { INVOKE_CHILD: 'withChildMachine' }, - }, - withChildMachine: { - entry: () => assert.step('entry: parent.withChildMachine'), - exit: () => assert.step('exit: parent.withChildMachine'), - invoke: { - id: 'child-machine', - src: childMachine, - data: { - prop1: 'original value', - }, - }, - on: { - RESET: 'idle', - }, - }, - }, - }); - - this.setProperties({ parentMachine }); - - await render(hbs` - - - {{#if (state.matches 'idle')}} - - {{else}} - - - - - - {{state.children.child-machine.state.context.prop1}} - {{/if}} - - `); - - await click('#invoke-child'); - - assert.dom('out').containsText('original value'); - - await click('#update-context'); - - assert.dom('out').containsText('new value'); - - assert.verifySteps([ - 'entry: parent.idle', - 'exit: parent.idle', - 'entry: child.idleChild', - 'entry: parent.withChildMachine', - ]); - - await clearRender(); - - assert.verifySteps(['exit: parent.withChildMachine', 'exit: child.idleChild']); - }); - }); -}); +// /* eslint-disable @typescript-eslint/no-explicit-any */ +// /* eslint-disable @typescript-eslint/no-unused-vars */ +// import { clearRender, click, render } from '@ember/test-helpers'; +// import { hbs } from 'ember-cli-htmlbars'; +// import { module, test } from 'qunit'; +// import { setupRenderingTest } from 'ember-qunit'; + +// import { assign, createMachine, spawn } from 'xstate'; + +// import type { Interpreter } from 'xstate'; + +// type Send = Interpreter['send']; + +// module('Dynamic Machines', function (hooks) { +// setupRenderingTest(hooks); + +// module('xstate#spawn', function () { +// test('Can have a dynamically created machine and is reactive', async function (assert) { +// function createNested(context: Record, config: any = {}) { +// return createMachine({ +// id: 'nested', +// initial: 'inactive', + +// context: { +// inactive: 0, +// active: 0, +// ...context, +// }, + +// states: { +// inactive: { +// entry: ['incrementInactive'], +// on: { TOGGLE: 'active' }, +// }, +// active: { +// entry: ['incrementActive'], +// on: { TOGGLE: 'inactive' }, +// }, +// }, +// }).withConfig(config); +// } + +// const parentMachine = createMachine({ +// id: 'parent', +// initial: 'idle', + +// states: { +// idle: { +// on: { +// SPAWN: 'spawnNested', +// }, +// }, +// spawnNested: { +// entry: assign({ +// someRef: (_context, { nested, id }: any) => { +// return spawn(nested, id); +// }, +// }), +// }, +// }, +// }); + +// this.owner.register('component:test-machine', parentMachine); + +// let active = 0; +// let inactive = 0; + +// this.setProperties({ +// startNested: (send: Send) => +// send('SPAWN', { +// id: 'named-spawned-machine', +// nested: createNested( +// { active: 3 }, +// { +// actions: { +// incrementActive: () => active++, +// incrementInactive: () => inactive++, +// }, +// } +// ), +// }), +// }); + +// await render(hbs` +// +// {{to-string state.value}} + +// + +// {{#if (to-any state 'context.someRef')}} +// {{!-- +// someRef.state does not have a reactive wrapper, like the root interpreter does + +// TODO: make this reactive +// --}} +// {{to-any state 'context.someRef.state.value'}} + +// +// {{/if}} + +// +// `); + +// assert.dom().containsText('idle'); +// assert.strictEqual(active, 0); +// assert.strictEqual(inactive, 0); + +// await click('#spawn'); +// assert.strictEqual(active, 0); +// assert.strictEqual(inactive, 1); + +// assert.dom().containsText('spawnNested'); + +// /** +// * There is not a way to easily access spawned machines +// * internal state, so we've wired up some actions / callbacks +// * +// * (the way to access the nested state is state.children[machine-id].state) +// */ +// await click('#toggle'); + +// assert.strictEqual(active, 1); +// assert.strictEqual(inactive, 1); + +// await click('#toggle'); + +// assert.strictEqual(active, 1); +// assert.strictEqual(inactive, 2); +// }); +// }); + +// module('xstate#invoke', function () { +// test('it works with invoked machines', async function (assert) { +// // Invoked child machine +// const minuteMachine = createMachine({ +// initial: 'active', +// states: { +// active: { +// on: { +// DECLARE_DONE: 'finished', +// }, +// }, +// finished: { type: 'final' }, +// }, +// }); + +// const parentMachine = createMachine({ +// id: 'parent', +// initial: 'pending', +// states: { +// pending: { +// invoke: { +// id: 'timer', +// src: minuteMachine, +// onDone: 'timesUp', +// }, +// }, +// timesUp: { +// type: 'final', +// }, +// }, +// }); + +// this.setProperties({ +// parentMachine, +// }); + +// await render(hbs` +// +//
{{state.value}}
+//
{{state.children.timer.state.value}}
+ +// +//
+// `); + +// assert.dom('#parent').containsText('pending'); +// assert.dom('#child').containsText('active'); + +// await click('button'); + +// assert.dom('#parent').containsText('timesUp'); +// assert.dom('#child').hasNoText('the machine destroyed itself (on purpose)'); +// }); + +// test('it works with the child machine updating its own context', async function (assert) { +// const childMachine = createMachine( +// { +// id: 'child-machine', +// initial: 'idleChild', +// states: { +// idleChild: { +// entry: () => assert.step('entry: child.idleChild'), +// exit: () => assert.step('exit: child.idleChild'), +// on: { +// UPDATE_CONTEXT: { actions: ['updateContext'] }, +// }, +// }, +// }, +// }, +// { +// actions: { +// updateContext: assign({ prop1: 'new value' }), +// }, +// } +// ); + +// const parentMachine = createMachine({ +// id: 'parent-state-machine', +// initial: 'idle', +// states: { +// idle: { +// entry: () => assert.step('entry: parent.idle'), +// exit: () => assert.step('exit: parent.idle'), +// on: { INVOKE_CHILD: 'withChildMachine' }, +// }, +// withChildMachine: { +// entry: () => assert.step('entry: parent.withChildMachine'), +// exit: () => assert.step('exit: parent.withChildMachine'), +// invoke: { +// id: 'child-machine', +// src: childMachine, +// data: { +// prop1: 'original value', +// }, +// }, +// on: { +// RESET: 'idle', +// }, +// }, +// }, +// }); + +// this.setProperties({ parentMachine }); + +// await render(hbs` +// + +// {{#if (state.matches 'idle')}} +// +// {{else}} +// + + +// + +// {{state.children.child-machine.state.context.prop1}} +// {{/if}} +// +// `); + +// await click('#invoke-child'); + +// assert.dom('out').containsText('original value'); + +// await click('#update-context'); + +// assert.dom('out').containsText('new value'); + +// assert.verifySteps([ +// 'entry: parent.idle', +// 'exit: parent.idle', +// 'entry: child.idleChild', +// 'entry: parent.withChildMachine', +// ]); + +// await clearRender(); + +// assert.verifySteps(['exit: parent.withChildMachine', 'exit: child.idleChild']); +// }); +// }); +// }); diff --git a/testing/ember-app/tests/integration/modifier-test.ts b/testing/ember-app/tests/integration/modifier-test.ts index 3842d641..f7106808 100644 --- a/testing/ember-app/tests/integration/modifier-test.ts +++ b/testing/ember-app/tests/integration/modifier-test.ts @@ -1,47 +1,47 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* eslint-disable @typescript-eslint/no-unused-vars */ -import { render } from '@ember/test-helpers'; -import { hbs } from 'ember-cli-htmlbars'; -import { module, test } from 'qunit'; -import { setupRenderingTest } from 'ember-qunit'; - -import { createMachine } from 'xstate'; - -declare module '@ember/service' { - interface Registry { - 'test-state': any; // determined in tests - } -} - -module('Modifiers', function (hooks) { - setupRenderingTest(hooks); - - test('a modifier can trigger an update to a machine', async function (assert) { - this.setProperties({ - customModifier: (_element: Element, toggle: () => void) => toggle(), - }); - - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - this.owner.register('component:toggle-machine', toggle); - - await render(hbs` - - {{to-string state.value}} - - - - `); - - assert.dom().doesNotContainText('inactive'); - assert.dom().containsText('active'); - }); -}); +// /* eslint-disable @typescript-eslint/no-explicit-any */ +// /* eslint-disable @typescript-eslint/no-unused-vars */ +// import { render } from '@ember/test-helpers'; +// import { hbs } from 'ember-cli-htmlbars'; +// import { module, test } from 'qunit'; +// import { setupRenderingTest } from 'ember-qunit'; + +// import { createMachine } from 'xstate'; + +// declare module '@ember/service' { +// interface Registry { +// 'test-state': any; // determined in tests +// } +// } + +// module('Modifiers', function (hooks) { +// setupRenderingTest(hooks); + +// test('a modifier can trigger an update to a machine', async function (assert) { +// this.setProperties({ +// customModifier: (_element: Element, toggle: () => void) => toggle(), +// }); + +// let toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// this.owner.register('component:toggle-machine', toggle); + +// await render(hbs` +// +// {{to-string state.value}} + +// +// +// `); + +// assert.dom().doesNotContainText('inactive'); +// assert.dom().containsText('active'); +// }); +// }); diff --git a/testing/ember-app/tests/integration/timing-test.ts b/testing/ember-app/tests/integration/timing-test.ts index 0d2c8f4d..e5023cdc 100644 --- a/testing/ember-app/tests/integration/timing-test.ts +++ b/testing/ember-app/tests/integration/timing-test.ts @@ -1,51 +1,51 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* eslint-disable @typescript-eslint/no-unused-vars */ -import { render } from '@ember/test-helpers'; -import { hbs } from 'ember-cli-htmlbars'; -import { module, test } from 'qunit'; -import { setupRenderingTest } from 'ember-qunit'; +// /* eslint-disable @typescript-eslint/no-explicit-any */ +// /* eslint-disable @typescript-eslint/no-unused-vars */ +// import { render } from '@ember/test-helpers'; +// import { hbs } from 'ember-cli-htmlbars'; +// import { module, test } from 'qunit'; +// import { setupRenderingTest } from 'ember-qunit'; -import { createMachine } from 'xstate'; +// import { createMachine } from 'xstate'; -declare module '@ember/service' { - interface Registry { - 'test-state': any; // determined in tests - } -} +// declare module '@ember/service' { +// interface Registry { +// 'test-state': any; // determined in tests +// } +// } -module('Timing', function (hooks) { - setupRenderingTest(hooks); +// module('Timing', function (hooks) { +// setupRenderingTest(hooks); - module('Infinite (Re|In)validation messaging', function () { - test('Can have an initial state with invoke', async function (assert) { - let machine = createMachine({ - initial: 'waiting', - states: { - stateA: {}, - waiting: { - invoke: { - src: () => (send) => { - send('IMPLICTLY_NEXT'); - }, - onDone: {}, - onError: {}, - }, - on: { - IMPLICTLY_NEXT: 'stateA', - }, - }, - }, - }); +// module('Infinite (Re|In)validation messaging', function () { +// test('Can have an initial state with invoke', async function (assert) { +// let machine = createMachine({ +// initial: 'waiting', +// states: { +// stateA: {}, +// waiting: { +// invoke: { +// src: () => (send) => { +// send('IMPLICTLY_NEXT'); +// }, +// onDone: {}, +// onError: {}, +// }, +// on: { +// IMPLICTLY_NEXT: 'stateA', +// }, +// }, +// }, +// }); - this.owner.register('component:test-machine', machine); +// this.owner.register('component:test-machine', machine); - await render(hbs` - - {{to-string state.value}} - - `); +// await render(hbs` +// +// {{to-string state.value}} +// +// `); - assert.dom().containsText('stateA'); - }); - }); -}); +// assert.dom().containsText('stateA'); +// }); +// }); +// }); diff --git a/testing/ember-app/tests/integration/usage-test.gts b/testing/ember-app/tests/integration/usage-test.gts new file mode 100644 index 00000000..f22c4d0e --- /dev/null +++ b/testing/ember-app/tests/integration/usage-test.gts @@ -0,0 +1,380 @@ +// /* eslint-disable @typescript-eslint/no-explicit-any */ +// /* eslint-disable @typescript-eslint/no-unused-vars */ +// import { fn } from '@ember/helper'; +// import { on } from '@ember/modifier'; +// import Service from '@ember/service'; +// import { clearRender, render } from '@ember/test-helpers'; +// import click from '@ember/test-helpers/dom/click'; +// import { module, test } from 'qunit'; +// import { setupRenderingTest } from 'ember-qunit'; + +// import toAny from 'ember-app/helpers/to-any'; +// import toString from 'ember-app/helpers/to-string'; +// import { getService } from 'ember-statechart-component'; +// import { assign, createMachine } from 'xstate'; + +// import type { State } from 'xstate'; + +// declare module '@ember/service' { +// interface Registry { +// 'test-state': any; // determined in tests +// } +// } + +// /** +// * any casting will be fixed when tests can be gts +// */ +// module('Usage', function (hooks) { +// setupRenderingTest(hooks); + +// test('it works', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// await render( +// +// ); + +// await this.pauseTest(); +// assert.dom().containsText('inactive'); + +// await click('button'); + +// assert.dom().doesNotContainText('inactive'); +// assert.dom().containsText('active'); +// }); + +// test('can use services', async function (assert) { +// let Toggle = createMachine( +// { +// initial: 'inactive', +// states: { +// inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, +// active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, +// }, +// }, +// { +// actions: { +// increment: (ctx) => { +// getService(ctx, 'test-state').foo++; +// }, +// }, +// } +// ); + +// this.owner.register( +// 'service:test-state', +// class TestState extends Service { +// foo = 0; +// } +// ); + +// await render( +// +// ); + +// let testState = this.owner.lookup('service:test-state') as { foo: number }; + +// assert.strictEqual(testState.foo, 1); + +// await click('button'); +// assert.strictEqual(testState.foo, 2); + +// await click('button'); +// assert.strictEqual(testState.foo, 3); +// }); + +// test(`it can use XState's builtin matches function`, async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// await render( +// +// ); + +// assert.dom().containsText('The inactive state'); + +// await click('button'); + +// assert.dom().containsText('The active state'); +// }); + +// test('multiple invocations have their own state', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// await render( +// +// ); + +// assert.dom('#one').containsText('inactive'); +// assert.dom('#two').containsText('inactive'); + +// await click('#one button'); + +// assert.dom('#one').doesNotContainText('inactive'); +// assert.dom('#one').containsText('active'); +// assert.dom('#two').containsText('inactive'); +// }); + +// test('can pass config', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, +// active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// let numCalled = 0; + +// let config = { +// actions: { +// increment: () => numCalled++, +// }, +// }; + +// await render( +// +// ); + +// assert.strictEqual(numCalled, 1); + +// await click('button'); +// assert.strictEqual(numCalled, 2); + +// await click('button'); +// assert.strictEqual(numCalled, 3); +// }); + +// test('can pass context', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// context: { +// numCalled: 0, +// }, +// states: { +// inactive: { +// entry: assign({ +// numCalled: (ctx: any) => ctx.numCalled + 1, +// }), +// on: { TOGGLE: 'active' }, +// }, +// active: { +// entry: assign({ +// numCalled: (ctx: any) => ctx.numCalled + 1, +// }), +// on: { TOGGLE: 'inactive' }, +// }, +// }, +// }); + +// let context = { +// numCalled: 10, +// }; + +// const report = (data: any) => (context = data); + +// await render( +// +// ); + +// assert.strictEqual(context.numCalled, 11); + +// await click('button'); +// assert.strictEqual(context.numCalled, 12); + +// await click('button'); +// assert.strictEqual(context.numCalled, 13); +// }); + +// test('merging passed context by default', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// context: { foo: 'foo' }, +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// let context = { bar: 'bar' }; + +// await render( +// +// ); + +// assert.dom().containsText('foo, bar'); +// }); + +// test('can pass initial state', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// let previousState: State | null = null; + +// const report = (state: State) => (previousState = state); + +// await render( +// +// ); + +// assert.dom().containsText('inactive'); + +// await click('button'); + +// assert.dom().doesNotContainText('inactive'); +// assert.dom().containsText('active'); + +// assert.ok(previousState, 'previous state has been captured'); + +// await clearRender(); + +// assert.dom().hasNoText('component unmounted'); + +// await render( +// +// ); + +// assert.dom().doesNotContainText('inactive'); +// assert.dom().containsText('active'); + +// await click('button'); + +// assert.dom().containsText('inactive'); +// }); + +// // eslint-disable-next-line qunit/require-expect +// test('can pass onTransition callback', async function (assert) { +// let Toggle = createMachine({ +// initial: 'inactive', +// states: { +// inactive: { on: { TOGGLE: 'active' } }, +// active: { on: { TOGGLE: 'inactive' } }, +// }, +// }); + +// assert.expect(2); + +// const doSomething = (state: { value: string }, event: { type: string }) => { +// assert.strictEqual(state.value, event.type === 'xstate.init' ? 'inactive' : 'active'); +// }; + +// await render( +// +// ); +// }); +// }); diff --git a/testing/ember-app/tests/integration/usage-test.ts b/testing/ember-app/tests/integration/usage-test.ts deleted file mode 100644 index a1bd1469..00000000 --- a/testing/ember-app/tests/integration/usage-test.ts +++ /dev/null @@ -1,378 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* eslint-disable @typescript-eslint/no-unused-vars */ -import Service from '@ember/service'; -import { clearRender, render } from '@ember/test-helpers'; -import click from '@ember/test-helpers/dom/click'; -import { hbs } from 'ember-cli-htmlbars'; -import { module, test } from 'qunit'; -import { setupRenderingTest } from 'ember-qunit'; - -import { getService } from 'ember-statechart-component'; -import { assign, createMachine } from 'xstate'; - -import type { State } from 'xstate'; - -declare module '@ember/service' { - interface Registry { - 'test-state': any; // determined in tests - } -} - -/** - * any casting will be fixed when tests can be gts - */ -module('Usage', function (hooks) { - setupRenderingTest(hooks); - - test('it works', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - this.owner.register('component:toggle-machine', toggle); - - await render(hbs` - - {{to-string state.value}} - - - - `); - - assert.dom().containsText('inactive'); - - await click('button'); - - assert.dom().doesNotContainText('inactive'); - assert.dom().containsText('active'); - }); - - test('can use services', async function (assert) { - let toggle = createMachine( - { - initial: 'inactive', - states: { - inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, - active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, - }, - }, - { - actions: { - increment: (ctx) => { - getService(ctx, 'test-state').foo++; - }, - }, - } - ); - - this.owner.register('component:toggle-machine', toggle); - this.owner.register( - 'service:test-state', - class TestState extends Service { - foo = 0; - } - ); - - await render(hbs` - - {{to-string state.value}} - - - - `); - - let testState = this.owner.lookup('service:test-state') as { foo: number }; - - assert.strictEqual(testState.foo, 1); - - await click('button'); - assert.strictEqual(testState.foo, 2); - - await click('button'); - assert.strictEqual(testState.foo, 3); - }); - - test(`it can use XState's builtin matches function`, async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - this.owner.register('component:toggle-machine', toggle); - - await render(hbs` - - {{#let (to-any state 'matches') as |typelessMatches|}} - {{#if (typelessMatches 'inactive')}} - The inactive state - {{else if (typelessMatches 'active')}} - The active state - {{else}} - Unknown state - {{/if}} - {{/let}} - - - - `); - - assert.dom().containsText('The inactive state'); - - await click('button'); - - assert.dom().containsText('The active state'); - }); - - test('multiple invocations have their own state', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - this.owner.register('component:toggle-machine', toggle); - - await render(hbs` -
- - {{to-string state.value}} - - - -
-
- - {{to-string state.value}} - - - -
- `); - - assert.dom('#one').containsText('inactive'); - assert.dom('#two').containsText('inactive'); - - await click('#one button'); - - assert.dom('#one').doesNotContainText('inactive'); - assert.dom('#one').containsText('active'); - assert.dom('#two').containsText('inactive'); - }); - - test('can pass config', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, - active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, - }, - }); - - this.owner.register('component:toggle-machine', toggle); - - let numCalled = 0; - - this.setProperties({ - config: { - actions: { - increment: () => numCalled++, - }, - }, - }); - - await render(hbs` - - - - `); - - assert.strictEqual(numCalled, 1); - - await click('button'); - assert.strictEqual(numCalled, 2); - - await click('button'); - assert.strictEqual(numCalled, 3); - }); - - test('can pass context', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - context: { - numCalled: 0, - }, - states: { - inactive: { - entry: assign({ - numCalled: (ctx: any) => ctx.numCalled + 1, - }), - on: { TOGGLE: 'active' }, - }, - active: { - entry: assign({ - numCalled: (ctx: any) => ctx.numCalled + 1, - }), - on: { TOGGLE: 'inactive' }, - }, - }, - }); - - this.owner.register('component:toggle-machine', toggle); - - let context: any; - - this.setProperties({ - context: { - numCalled: 10, - }, - }); - - this.owner.register('helper:report', (data: any) => (context = data)); - - await render(hbs` - - {{report state.context}} - - - - `); - - assert.strictEqual(context.numCalled, 11); - - await click('button'); - assert.strictEqual(context.numCalled, 12); - - await click('button'); - assert.strictEqual(context.numCalled, 13); - }); - - test('merging passed context by default', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - context: { foo: 'foo' }, - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - this.setProperties({ toggle, context: { bar: 'bar' } }); - - await render(hbs` - - {{state.context.foo}}, {{state.context.bar}} - - `); - - assert.dom().containsText('foo, bar'); - }); - - test('can pass initial state', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - let previousState: State | null = null; - - this.owner.register('component:toggle-machine', toggle); - this.owner.register('helper:report', (state: State) => (previousState = state)); - - await render(hbs` - - {{to-string state.value}} - {{report state}} - - - - `); - - assert.dom().containsText('inactive'); - - await click('button'); - - assert.dom().doesNotContainText('inactive'); - assert.dom().containsText('active'); - - assert.ok(previousState, 'previous state has been captured'); - - await clearRender(); - - assert.dom().hasNoText('component unmounted'); - - this.setProperties({ previousState }); - - await render(hbs` - - {{to-string state.value}} - {{report state}} - - - - `); - - assert.dom().doesNotContainText('inactive'); - assert.dom().containsText('active'); - - await click('button'); - - assert.dom().containsText('inactive'); - }); - - // eslint-disable-next-line qunit/require-expect - test('can pass onTransition callback', async function (assert) { - let toggle = createMachine({ - initial: 'inactive', - states: { - inactive: { on: { TOGGLE: 'active' } }, - active: { on: { TOGGLE: 'inactive' } }, - }, - }); - - assert.expect(2); - - this.setProperties({ - toggle, - doSomething: (state: { value: string }, event: { type: string }) => { - assert.strictEqual(state.value, event.type === 'xstate.init' ? 'inactive' : 'active'); - }, - }); - - await render(hbs` - - {{onTransition this.doSomething}} - {{send "TOGGLE"}} - - `); - }); -}); diff --git a/testing/ember-app/tests/test-helper.ts b/testing/ember-app/tests/test-helper.ts index efb724c9..10743a37 100644 --- a/testing/ember-app/tests/test-helper.ts +++ b/testing/ember-app/tests/test-helper.ts @@ -1,3 +1,5 @@ +import "decorator-transforms/globals"; + import { setApplication } from '@ember/test-helpers'; import * as QUnit from 'qunit'; import { setup } from 'qunit-dom'; diff --git a/testing/ember-app/tsconfig.json b/testing/ember-app/tsconfig.json index 0dbfde83..ca729476 100644 --- a/testing/ember-app/tsconfig.json +++ b/testing/ember-app/tsconfig.json @@ -1,9 +1,6 @@ { "glint": { - "environment": [ - "ember-loose", - "ember-template-imports" - ] + "environment": ["ember-loose", "ember-template-imports"] }, "compilerOptions": { "target": "es2020", @@ -27,20 +24,10 @@ "module": "es6", "experimentalDecorators": true, "paths": { - "ember-app/tests/*": [ - "tests/*" - ], - "ember-app/*": [ - "app/*" - ], - "*": [ - "types/*" - ] + "ember-app/tests/*": ["tests/*"], + "ember-app/*": ["app/*"], + "*": ["types/*"] } }, - "include": [ - "app/**/*", - "tests/**/*", - "types/**/*" - ] + "include": ["app/**/*", "tests/**/*", "types/**/*"] } diff --git a/testing/ember-app/types/ember-app/glint-registry.d.ts b/testing/ember-app/types/ember-app/glint-registry.d.ts index 5e53d0ee..236e41a6 100644 --- a/testing/ember-app/types/ember-app/glint-registry.d.ts +++ b/testing/ember-app/types/ember-app/glint-registry.d.ts @@ -1,15 +1,15 @@ -import "@glint/environment-ember-loose"; -import "@glint/environment-ember-loose/native-integration"; -import "ember-page-title/glint"; +import '@glint/environment-ember-loose'; +import '@glint/environment-ember-loose/native-integration'; +import 'ember-page-title/glint'; -import type { HelperLike } from "@glint/template"; +import type { HelperLike } from '@glint/template'; import type { MachineComponent } from 'ember-statechart-component/glint'; // declare module '@fortawesome/ember-fontawesome/components/fa-icon' { // export default ComponentLike; // } -declare module "@glint/environment-ember-loose/registry" { +declare module '@glint/environment-ember-loose/registry' { export default interface Registry { // How to define globals from external addons // state: HelperLike<{ Args: {}, Return: State }>; @@ -18,34 +18,34 @@ declare module "@glint/environment-ember-loose/registry" { /** * Components */ - 'ToggleMachine': MachineComponent; - 'TestMachine': MachineComponent; + ToggleMachine: MachineComponent; + TestMachine: MachineComponent; /** * Helpers */ - report: HelperLike<{ - Args: { - Positional: [any] - }, - Return: any - }> - 'to-string': HelperLike<{ - Args: { - Positional: [any] - }, - Return: string; - }>; - /** - * lazy way of not being able to disable + report: HelperLike<{ + Args: { + Positional: [any]; + }; + Return: any; + }>; + 'to-string': HelperLike<{ + Args: { + Positional: [any]; + }; + Return: string; + }>; + /** + * lazy way of not being able to disable * glint type checking in some templates - */ - 'to-any': HelperLike<{ - Args: { - Positional: [any, string] - }, - Return: any; - }>; + */ + 'to-any': HelperLike<{ + Args: { + Positional: [any, string]; + }; + Return: any; + }>; /** * Modifiers diff --git a/testing/ember-app/types/ember-app/index.d.ts b/testing/ember-app/types/ember-app/index.d.ts index 16750dc5..33a43970 100644 --- a/testing/ember-app/types/ember-app/index.d.ts +++ b/testing/ember-app/types/ember-app/index.d.ts @@ -1,8 +1 @@ -import type Ember from 'ember'; - -declare global { - interface Array extends Ember.ArrayPrototypeExtensions {} - // interface Function extends Ember.FunctionPrototypeExtensions {} -} - -export {}; +import 'ember-source/types'; diff --git a/testing/ember-app/types/global.d.ts b/testing/ember-app/types/global.d.ts deleted file mode 100644 index 9e38be63..00000000 --- a/testing/ember-app/types/global.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Types for compiled templates -declare module 'ember-app/templates/*' { - import type { TemplateFactory } from 'htmlbars-inline-precompile'; - const tmpl: TemplateFactory; - export default tmpl; -} diff --git a/testing/ember-app/types/missing-types.ds.ts b/testing/ember-app/types/missing-types.ds.ts deleted file mode 100644 index 84f9cd96..00000000 --- a/testing/ember-app/types/missing-types.ds.ts +++ /dev/null @@ -1,19 +0,0 @@ -import '@ember/component'; - -import type {TemplateFactory} from 'ember-cli-htmlbars'; - -type TF = TemplateFactory; - -declare module '@ember/component' { - export function setComponentManager(managerId: string, baseClass: T): T; - export function setComponentManager(managerFactory: (owner: any) => {}, baseClass: T): T; - export function setComponentTemplate(template: TF, context: unknown): unknown; - export function capabilities( - version: string, - opts?: { - destructor?: boolean; - asyncLifecycleCallbacks?: boolean; - updateHook?: boolean; - } - ): any; -} From 99fa2fcf6a879bb6f14d2e0d0d79fdf5a71a5eaf Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 6 Oct 2024 21:19:51 -0400 Subject: [PATCH 02/52] eh --- README.md | 20 -- ember-statechart-component/package.json | 22 +- ember-statechart-component/rollup.config.mjs | 6 +- package.json | 2 + pnpm-lock.yaml | 326 ++++++++++++++++--- 5 files changed, 295 insertions(+), 81 deletions(-) diff --git a/README.md b/README.md index 39377956..386e9fa9 100644 --- a/README.md +++ b/README.md @@ -151,26 +151,6 @@ Usage: ``` -### Glint - -Having type checking with these state machines can be done automatically -after importing the `/glint` file in your `types//glint-registry.d.ts`. - -```ts -import "@glint/environment-ember-loose"; -import "@glint/environment-ember-loose/native-integration"; -import "ember-page-title/glint"; - -// This import extends the type of `StateMachine` to be glint-compatible -import 'ember-statechart-component/glint'; - -declare module "@glint/environment-ember-loose/registry" { - export default interface Registry { - // How to define globals from external addons - } -} -``` - ### API #### `@config` diff --git a/ember-statechart-component/package.json b/ember-statechart-component/package.json index 13102708..eeb34c82 100644 --- a/ember-statechart-component/package.json +++ b/ember-statechart-component/package.json @@ -9,21 +9,12 @@ "license": "MIT", "author": "NullVoxPopuli", "exports": { - ".": "./dist/index.js", - "./glint": "./dist/glint.js", - "./*": "./dist/*", + ".": { + "types": "./ahhhh.d.ts", + "default": "./dist/index.js" + }, "./addon-main.js": "./addon-main.cjs" }, - "typesVersions": { - "*": { - "*": [ - "./dist/*" - ], - "glint": [ - "./dist/glint.d.ts" - ] - } - }, "files": [ "addon-main.cjs", "dist", @@ -56,6 +47,7 @@ "xstate": "^5.18.0" }, "devDependencies": { + "@arethetypeswrong/cli": "^0.16.4", "@babel/core": "7.25.7", "@babel/eslint-parser": "^7.25.7", "@babel/plugin-proposal-class-properties": "7.18.6", @@ -66,8 +58,11 @@ "@glimmer/compiler": "^0.92.4", "@glimmer/component": "^1.0.4", "@glimmer/env": "^0.1.7", + "@glint/core": "^1.4.0", + "@glint/environment-ember-template-imports": "^1.4.0", "@glint/template": "^1.4.0", "@nullvoxpopuli/eslint-configs": "^4.2.0", + "@rollup/plugin-babel": "^6.0.4", "@tsconfig/ember": "^3.0.3", "@typescript-eslint/eslint-plugin": "^8.8.0", "@typescript-eslint/parser": "^8.8.0", @@ -85,6 +80,7 @@ "eslint-plugin-simple-import-sort": "^12.1.1", "npm-run-all": "4.1.5", "prettier": "^3.3.3", + "publint": "^0.2.11", "rollup": "4.24.0", "rollup-plugin-ts": "^3.0.2", "typescript": "~5.5.0", diff --git a/ember-statechart-component/rollup.config.mjs b/ember-statechart-component/rollup.config.mjs index af48e24d..2350918c 100644 --- a/ember-statechart-component/rollup.config.mjs +++ b/ember-statechart-component/rollup.config.mjs @@ -1,8 +1,8 @@ -import { defineConfig } from "rollup"; -import { babel } from "@rollup/plugin-babel"; - import { Addon } from "@embroider/addon-dev/rollup"; +import { babel } from "@rollup/plugin-babel"; +import { defineConfig } from "rollup"; + const addon = new Addon({ srcDir: "src", destDir: "dist", diff --git a/package.json b/package.json index 024f5612..669cf734 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,8 @@ }, "devDependencies": { "@babel/core": "7.25.7", + "@glint/core": "^1.4.0", + "@glint/template": "^1.4.0", "@typescript-eslint/parser": "^8.8.0", "ember-template-lint": "^6.0.0", "eslint": "^8.56.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 32972fa5..743e1920 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,6 +14,12 @@ importers: '@babel/core': specifier: 7.25.7 version: 7.25.7(supports-color@8.1.1) + '@glint/core': + specifier: ^1.4.0 + version: 1.4.0(typescript@5.5.4) + '@glint/template': + specifier: ^1.4.0 + version: 1.4.0 '@typescript-eslint/parser': specifier: ^8.8.0 version: 8.8.0(eslint@8.57.1)(typescript@5.5.4) @@ -31,7 +37,7 @@ importers: version: 11.1.0(eslint@8.57.1) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) prettier: specifier: ^3.3.3 version: 3.3.3 @@ -51,6 +57,9 @@ importers: specifier: '>= 1.0.0' version: 1.4.0 devDependencies: + '@arethetypeswrong/cli': + specifier: ^0.16.4 + version: 0.16.4 '@babel/core': specifier: 7.25.7 version: 7.25.7(supports-color@8.1.1) @@ -81,9 +90,18 @@ importers: '@glimmer/env': specifier: ^0.1.7 version: 0.1.7 + '@glint/core': + specifier: ^1.4.0 + version: 1.4.0(typescript@5.5.4) + '@glint/environment-ember-template-imports': + specifier: ^1.4.0 + version: 1.4.0(@glint/environment-ember-loose@1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0))(@glint/template@1.4.0) '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + '@rollup/plugin-babel': + specifier: ^6.0.4 + version: 6.0.4(@babel/core@7.25.7)(rollup@4.24.0) '@tsconfig/ember': specifier: ^3.0.3 version: 3.0.8 @@ -125,7 +143,7 @@ importers: version: 11.1.0(eslint@8.57.1) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-simple-import-sort: specifier: ^12.1.1 version: 12.1.1(eslint@8.57.1) @@ -135,6 +153,9 @@ importers: prettier: specifier: ^3.3.3 version: 3.3.3 + publint: + specifier: ^0.2.11 + version: 0.2.11 rollup: specifier: 4.24.0 version: 4.24.0 @@ -207,7 +228,7 @@ importers: version: 1.4.0 '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) '@types/htmlbars-inline-precompile': specifier: ^3.0.3 version: 3.0.3 @@ -291,7 +312,7 @@ importers: version: 11.1.0(eslint@8.57.1) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-qunit: specifier: ^8.1.2 version: 8.1.2(eslint@8.57.1) @@ -336,6 +357,18 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} + '@andrewbranch/untar.js@1.0.3': + resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==} + + '@arethetypeswrong/cli@0.16.4': + resolution: {integrity: sha512-qMmdVlJon5FtA+ahn0c1oAVNxiq4xW5lqFiTZ21XHIeVwAVIQ+uRz4UEivqRMsjVV1grzRgJSKqaOrq1MvlVyQ==} + engines: {node: '>=18'} + hasBin: true + + '@arethetypeswrong/core@0.16.4': + resolution: {integrity: sha512-RI3HXgSuKTfcBf1hSEg1P9/cOvmI0flsMm6/QL3L3wju4AlHDqd55JFPfXs4pzgEAgy5L9pul4/HPPz99x2GvA==} + engines: {node: '>=18'} + '@babel/code-frame@7.23.5': resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} @@ -435,10 +468,6 @@ packages: resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==} engines: {node: '>=6.9.0'} - '@babel/helper-module-imports@7.22.15': - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: '>=6.9.0'} - '@babel/helper-module-imports@7.25.7': resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} engines: {node: '>=6.9.0'} @@ -1904,6 +1933,19 @@ packages: resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==} engines: {node: '>=12'} + '@rollup/plugin-babel@6.0.4': + resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + rollup: + optional: true + '@rollup/pluginutils@4.2.1': resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} @@ -2010,6 +2052,10 @@ packages: resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} engines: {node: '>=6'} + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + '@sindresorhus/merge-streams@2.3.0': resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} @@ -2055,12 +2101,6 @@ packages: '@types/eslint@8.56.12': resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==} - '@types/eslint@9.6.1': - resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} - - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} @@ -2374,6 +2414,10 @@ packages: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + ansi-html@0.0.7: resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} engines: {'0': node >= 0.8.0} @@ -2932,6 +2976,10 @@ packages: resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -2954,6 +3002,9 @@ packages: resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} engines: {node: '>=8'} + cjs-module-lexer@1.4.1: + resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==} + class-utils@0.3.6: resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} engines: {node: '>=0.10.0'} @@ -2989,6 +3040,10 @@ packages: resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} engines: {node: 10.* || >= 12.*} + cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} + cli-table@0.3.11: resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==} engines: {node: '>= 0.2.0'} @@ -3055,6 +3110,10 @@ packages: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -3776,6 +3835,9 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emojilib@2.4.0: + resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} + emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} @@ -3824,6 +3886,10 @@ packages: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + err-code@2.0.3: resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} @@ -4213,6 +4279,9 @@ packages: fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fflate@0.8.2: + resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + figures@2.0.0: resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} engines: {node: '>=4'} @@ -4770,6 +4839,10 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + ignore-walk@5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + ignore@5.3.0: resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} engines: {node: '>= 4'} @@ -5361,6 +5434,9 @@ packages: resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} engines: {node: 14 || >=16.14} + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} @@ -5414,6 +5490,17 @@ packages: resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==} hasBin: true + marked-terminal@7.1.0: + resolution: {integrity: sha512-+pvwa14KZL74MVXjYdPR3nSInhGhNvPce/3mqLVZT2oUvt654sL1XImFuLZ1pkA866IYZ3ikDTOFUIC7XzpZZg==} + engines: {node: '>=16.0.0'} + peerDependencies: + marked: '>=1 <14' + + marked@9.1.6: + resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==} + engines: {node: '>= 16'} + hasBin: true + matcher-collection@1.1.2: resolution: {integrity: sha512-YQ/teqaOIIfUHedRam08PB3NK7Mjct6BvzRnJmpGDm8uFXpNr1sbY4yuflI5JcEs6COpYA0FpRQhSDBf1tT95g==} @@ -5592,6 +5679,10 @@ packages: resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} engines: {node: '>= 0.8.0'} + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -5643,6 +5734,10 @@ packages: no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + node-emoji@2.1.3: + resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==} + engines: {node: '>=18'} + node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -5694,10 +5789,18 @@ packages: resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} engines: {node: '>=8'} + npm-bundled@2.0.1: + resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-install-checks@6.3.0: resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-normalize-package-bin@2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-normalize-package-bin@3.0.1: resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -5710,6 +5813,11 @@ packages: resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} engines: {node: ^16.14.0 || >=18.0.0} + npm-packlist@5.1.3: + resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + npm-pick-manifest@9.0.0: resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6012,9 +6120,6 @@ packages: resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} engines: {node: '>=12'} - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - picocolors@1.1.0: resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} @@ -6174,6 +6279,11 @@ packages: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} + publint@0.2.11: + resolution: {integrity: sha512-/kxbd+sD/uEG515N/ZYpC6gYs8h89cQ4UIsAq1y6VT4qlNh8xmiSwcP2xU2MbzXFl8J0l2IdONKFweLfYoqhcA==} + engines: {node: '>=16'} + hasBin: true + pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} @@ -6526,6 +6636,10 @@ packages: rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + safe-array-concat@1.0.1: resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} @@ -6687,6 +6801,10 @@ packages: simple-html-tokenizer@0.5.11: resolution: {integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==} + skin-tone@2.0.0: + resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} + engines: {node: '>=8'} + slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -6934,6 +7052,10 @@ packages: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} + supports-hyperlinks@3.1.0: + resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==} + engines: {node: '>=14.18'} + supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} @@ -7199,6 +7321,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.6.1-rc: + resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==} + engines: {node: '>=14.17'} + hasBin: true + ua-parser-js@1.0.37: resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} @@ -7229,6 +7356,10 @@ packages: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} engines: {node: '>=4'} + unicode-emoji-modifier-base@1.0.0: + resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} + engines: {node: '>=4'} + unicode-match-property-ecmascript@2.0.0: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} engines: {node: '>=4'} @@ -7593,6 +7724,28 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 + '@andrewbranch/untar.js@1.0.3': {} + + '@arethetypeswrong/cli@0.16.4': + dependencies: + '@arethetypeswrong/core': 0.16.4 + chalk: 4.1.2 + cli-table3: 0.6.3 + commander: 10.0.1 + marked: 9.1.6 + marked-terminal: 7.1.0(marked@9.1.6) + semver: 7.6.3 + + '@arethetypeswrong/core@0.16.4': + dependencies: + '@andrewbranch/untar.js': 1.0.3 + cjs-module-lexer: 1.4.1 + fflate: 0.8.2 + lru-cache: 10.4.3 + semver: 7.6.3 + typescript: 5.6.1-rc + validate-npm-package-name: 5.0.1 + '@babel/code-frame@7.23.5': dependencies: '@babel/highlight': 7.23.4 @@ -7727,11 +7880,11 @@ snapshots: '@babel/helper-function-name@7.23.0': dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.6 + '@babel/types': 7.25.7 '@babel/helper-hoist-variables@7.22.5': dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.25.7 '@babel/helper-member-expression-to-functions@7.23.0': dependencies: @@ -7744,10 +7897,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-imports@7.22.15': - dependencies: - '@babel/types': 7.25.7 - '@babel/helper-module-imports@7.25.7(supports-color@8.1.1)': dependencies: '@babel/traverse': 7.25.7(supports-color@8.1.1) @@ -7869,7 +8018,7 @@ snapshots: '@babel/parser@7.23.6': dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.25.7 '@babel/parser@7.25.7': dependencies: @@ -8639,7 +8788,7 @@ snapshots: '@babel/plugin-transform-runtime@7.23.6(@babel/core@7.25.7)': dependencies: '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.25.7 babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.25.7) babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.25.7) @@ -8993,7 +9142,7 @@ snapshots: dependencies: '@babel/code-frame': 7.23.5 '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 + '@babel/types': 7.25.7 '@babel/template@7.25.7': dependencies: @@ -9658,7 +9807,7 @@ snapshots: dependencies: which: 4.0.0 - '@nullvoxpopuli/eslint-configs@4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)': + '@nullvoxpopuli/eslint-configs@4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)': dependencies: cosmiconfig: 9.0.0(typescript@5.5.4) eslint: 8.57.1 @@ -9667,7 +9816,7 @@ snapshots: eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-json: 3.1.0 eslint-plugin-n: 17.10.3(eslint@8.57.1) - eslint-plugin-prettier: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-simple-import-sort: 12.1.1(eslint@8.57.1) prettier-plugin-ember-template-tag: 2.0.2(prettier@3.3.3) optionalDependencies: @@ -9797,6 +9946,16 @@ snapshots: '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 + '@rollup/plugin-babel@6.0.4(@babel/core@7.25.7)(rollup@4.24.0)': + dependencies: + '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) + '@rollup/pluginutils': 5.1.0(rollup@4.24.0) + optionalDependencies: + rollup: 4.24.0 + transitivePeerDependencies: + - supports-color + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 @@ -9804,7 +9963,7 @@ snapshots: '@rollup/pluginutils@5.1.0(rollup@4.24.0)': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: @@ -9868,6 +10027,8 @@ snapshots: '@sindresorhus/is@0.14.0': {} + '@sindresorhus/is@4.6.0': {} + '@sindresorhus/merge-streams@2.3.0': {} '@socket.io/component-emitter@3.1.2': {} @@ -9912,14 +10073,6 @@ snapshots: '@types/estree': 1.0.6 '@types/json-schema': 7.0.15 - '@types/eslint@9.6.1': - dependencies: - '@types/estree': 1.0.6 - '@types/json-schema': 7.0.15 - optional: true - - '@types/estree@1.0.5': {} - '@types/estree@1.0.6': {} '@types/express-serve-static-core@4.17.41': @@ -10283,6 +10436,10 @@ snapshots: dependencies: type-fest: 0.21.3 + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 + ansi-html@0.0.7: {} ansi-regex@3.0.1: {} @@ -11139,6 +11296,8 @@ snapshots: chalk@5.3.0: {} + char-regex@1.0.2: {} + chardet@0.7.0: {} charm@1.0.2: @@ -11153,6 +11312,8 @@ snapshots: ci-info@4.0.0: {} + cjs-module-lexer@1.4.1: {} + class-utils@0.3.6: dependencies: arr-union: 3.1.0 @@ -11191,6 +11352,12 @@ snapshots: optionalDependencies: '@colors/colors': 1.5.0 + cli-table3@0.6.5: + dependencies: + string-width: 4.2.3 + optionalDependencies: + '@colors/colors': 1.5.0 + cli-table@0.3.11: dependencies: colors: 1.0.3 @@ -11248,6 +11415,8 @@ snapshots: dependencies: delayed-stream: 1.0.0 + commander@10.0.1: {} + commander@2.20.3: {} commander@4.1.1: {} @@ -11420,7 +11589,7 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.32) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 - semver: 7.5.4 + semver: 7.6.3 webpack: 5.95.0 css-tree@1.1.3: @@ -12199,7 +12368,7 @@ snapshots: lodash: 4.17.21 package-json: 6.5.0 remote-git-tags: 3.0.0 - semver: 7.5.4 + semver: 7.6.3 transitivePeerDependencies: - encoding @@ -12224,6 +12393,8 @@ snapshots: emoji-regex@9.2.2: {} + emojilib@2.4.0: {} + emojis-list@3.0.0: {} encodeurl@1.0.2: {} @@ -12273,6 +12444,8 @@ snapshots: env-paths@2.2.1: {} + environment@1.1.0: {} + err-code@2.0.3: {} errlop@2.2.0: {} @@ -12634,14 +12807,14 @@ snapshots: resolve: 1.22.8 semver: 6.3.1 - eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): dependencies: eslint: 8.57.1 prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 optionalDependencies: - '@types/eslint': 9.6.1 + '@types/eslint': 8.56.12 eslint-config-prettier: 9.1.0(eslint@8.57.1) eslint-plugin-qunit@8.1.2(eslint@8.57.1): @@ -12937,6 +13110,8 @@ snapshots: dependencies: bser: 2.1.1 + fflate@0.8.2: {} + figures@2.0.0: dependencies: escape-string-regexp: 1.0.5 @@ -13657,6 +13832,10 @@ snapshots: ieee754@1.2.1: {} + ignore-walk@5.0.1: + dependencies: + minimatch: 5.1.6 + ignore@5.3.0: {} ignore@5.3.2: {} @@ -14234,6 +14413,8 @@ snapshots: lru-cache@10.1.0: {} + lru-cache@10.4.3: {} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 @@ -14312,6 +14493,18 @@ snapshots: mdurl: 1.0.1 uc.micro: 1.0.6 + marked-terminal@7.1.0(marked@9.1.6): + dependencies: + ansi-escapes: 7.0.0 + chalk: 5.3.0 + cli-highlight: 2.1.11 + cli-table3: 0.6.5 + marked: 9.1.6 + node-emoji: 2.1.3 + supports-hyperlinks: 3.1.0 + + marked@9.1.6: {} + matcher-collection@1.1.2: dependencies: minimatch: 3.1.2 @@ -14491,6 +14684,8 @@ snapshots: transitivePeerDependencies: - supports-color + mri@1.2.0: {} + ms@2.0.0: {} ms@2.1.2: {} @@ -14542,6 +14737,13 @@ snapshots: lower-case: 2.0.2 tslib: 2.6.2 + node-emoji@2.1.3: + dependencies: + '@sindresorhus/is': 4.6.0 + char-regex: 1.0.2 + emojilib: 2.4.0 + skin-tone: 2.0.0 + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 @@ -14593,10 +14795,16 @@ snapshots: normalize-url@4.5.1: {} + npm-bundled@2.0.1: + dependencies: + npm-normalize-package-bin: 2.0.0 + npm-install-checks@6.3.0: dependencies: semver: 7.6.3 + npm-normalize-package-bin@2.0.0: {} + npm-normalize-package-bin@3.0.1: {} npm-package-arg@10.1.0: @@ -14613,6 +14821,13 @@ snapshots: semver: 7.6.3 validate-npm-package-name: 5.0.1 + npm-packlist@5.1.3: + dependencies: + glob: 8.1.0 + ignore-walk: 5.0.1 + npm-bundled: 2.0.1 + npm-normalize-package-bin: 2.0.0 + npm-pick-manifest@9.0.0: dependencies: npm-install-checks: 6.3.0 @@ -14912,8 +15127,6 @@ snapshots: path-type@5.0.0: {} - picocolors@1.0.0: {} - picocolors@1.1.0: {} picomatch@2.3.1: {} @@ -15042,6 +15255,12 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 + publint@0.2.11: + dependencies: + npm-packlist: 5.1.3 + picocolors: 1.1.0 + sade: 1.8.1 + pump@3.0.0: dependencies: end-of-stream: 1.4.4 @@ -15444,6 +15663,10 @@ snapshots: dependencies: tslib: 2.7.0 + sade@1.8.1: + dependencies: + mri: 1.2.0 + safe-array-concat@1.0.1: dependencies: call-bind: 1.0.5 @@ -15657,6 +15880,10 @@ snapshots: simple-html-tokenizer@0.5.11: {} + skin-tone@2.0.0: + dependencies: + unicode-emoji-modifier-base: 1.0.0 + slash@3.0.0: {} slash@5.1.0: {} @@ -15960,6 +16187,11 @@ snapshots: dependencies: has-flag: 4.0.0 + supports-hyperlinks@3.1.0: + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + supports-preserve-symlinks-flag@1.0.0: {} symbol-tree@3.2.4: {} @@ -16345,6 +16577,8 @@ snapshots: typescript@5.5.4: {} + typescript@5.6.1-rc: {} + ua-parser-js@1.0.37: {} uc.micro@1.0.6: {} @@ -16372,6 +16606,8 @@ snapshots: unicode-canonical-property-names-ecmascript@2.0.0: {} + unicode-emoji-modifier-base@1.0.0: {} + unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 @@ -16423,7 +16659,7 @@ snapshots: dependencies: browserslist: 4.22.2 escalade: 3.1.1 - picocolors: 1.0.0 + picocolors: 1.1.0 update-browserslist-db@1.1.1(browserslist@4.24.0): dependencies: From 949fb5f3e9d68ca4710b7bb086da39c636904c64 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 6 Oct 2024 22:21:40 -0400 Subject: [PATCH 03/52] Use vite for tests --- ember-statechart-component/package.json | 7 +- ember-statechart-component/rollup.config.mjs | 2 +- package.json | 13 +- pnpm-lock.yaml | 6017 ++++++++--------- pnpm-workspace.yaml | 2 +- {testing/ember-app => test-app}/.editorconfig | 0 test-app/.ember-cli | 7 + {testing/ember-app => test-app}/.gitignore | 14 +- .../.eslintignore => test-app/.prettierignore | 9 - .../.prettierrc.cjs | 10 +- test-app/.stylelintignore | 8 + test-app/.stylelintrc.js | 5 + test-app/.template-lintrc.js | 5 + test-app/.watchmanconfig | 3 + test-app/README.md | 57 + .../app/app.js => test-app/app/app.ts | 12 +- .../app/config/environment.d.ts | 8 +- test-app/app/config/environment.js | 3 + .../app/router.js => test-app/app/router.ts | 7 +- .../helpers => test-app/app/routes}/.gitkeep | 0 test-app/app/styles/app.css | 1 + .../app/templates/application.gts | 5 +- .../app/templates/demos}/to-any.ts | 0 .../app/templates/demos}/to-string.ts | 0 .../app/templates/demos/toggle.gts | 4 +- test-app/babel.config.cjs | 52 + test-app/config/ember-cli-update.json | 1 + .../config/environment.js | 9 +- .../config/optional-features.json | 3 +- test-app/config/targets.js | 11 + test-app/ember-cli-build.js | 10 + test-app/eslint.config.mjs | 146 + test-app/index.html | 29 + test-app/package.json | 108 + .../ember-app => test-app}/public/robots.txt | 0 test-app/testem.js | 25 + test-app/tests/index.html | 40 + .../integration/dynamic-machines-test.gts | 0 .../tests/integration/modifier-test.gts | 0 .../tests/integration/timing-test.gts | 0 .../tests/integration/usage-test.gts | 0 test-app/tests/test-helper.ts | 16 + test-app/tsconfig.json | 45 + test-app/types/index.d.ts | 1 + test-app/vite.config.mjs | 62 + testing/ember-app/.ember-cli | 9 - testing/ember-app/.eslintrc.js | 29 - testing/ember-app/.prettierignore | 22 - testing/ember-app/.template-lintrc.js | 13 - testing/ember-app/.travis.yml | 28 - testing/ember-app/.watchmanconfig | 3 - testing/ember-app/README.md | 56 - testing/ember-app/app/index.html | 25 - testing/ember-app/app/styles/app.css | 0 .../ember-app/config/ember-cli-update.json | 18 - testing/ember-app/config/ember-try.js | 51 - testing/ember-app/config/targets.js | 7 - testing/ember-app/ember-cli-build.js | 81 - testing/ember-app/package.json | 100 - testing/ember-app/testem.js | 23 - testing/ember-app/tests/helpers/.gitkeep | 0 testing/ember-app/tests/index.html | 36 - testing/ember-app/tests/test-helper.ts | 17 - testing/ember-app/tsconfig.json | 33 - .../types/ember-app/glint-registry.d.ts | 54 - testing/ember-app/types/ember-app/index.d.ts | 1 - testing/ember-app/vendor/.gitkeep | 0 67 files changed, 3492 insertions(+), 3871 deletions(-) rename {testing/ember-app => test-app}/.editorconfig (100%) create mode 100644 test-app/.ember-cli rename {testing/ember-app => test-app}/.gitignore (56%) rename testing/ember-app/.eslintignore => test-app/.prettierignore (51%) rename testing/ember-app/.prettierrc.js => test-app/.prettierrc.cjs (84%) create mode 100644 test-app/.stylelintignore create mode 100644 test-app/.stylelintrc.js create mode 100644 test-app/.template-lintrc.js create mode 100644 test-app/.watchmanconfig create mode 100644 test-app/README.md rename testing/ember-app/app/app.js => test-app/app/app.ts (56%) rename {testing/ember-app => test-app}/app/config/environment.d.ts (67%) create mode 100644 test-app/app/config/environment.js rename testing/ember-app/app/router.js => test-app/app/router.ts (59%) rename {testing/ember-app/app/helpers => test-app/app/routes}/.gitkeep (100%) create mode 100644 test-app/app/styles/app.css rename {testing/ember-app => test-app}/app/templates/application.gts (70%) rename {testing/ember-app/app/helpers => test-app/app/templates/demos}/to-any.ts (100%) rename {testing/ember-app/app/helpers => test-app/app/templates/demos}/to-string.ts (100%) rename {testing/ember-app => test-app}/app/templates/demos/toggle.gts (87%) create mode 100644 test-app/babel.config.cjs create mode 100644 test-app/config/ember-cli-update.json rename {testing/ember-app => test-app}/config/environment.js (87%) rename {testing/ember-app => test-app}/config/optional-features.json (58%) create mode 100644 test-app/config/targets.js create mode 100644 test-app/ember-cli-build.js create mode 100644 test-app/eslint.config.mjs create mode 100644 test-app/index.html create mode 100644 test-app/package.json rename {testing/ember-app => test-app}/public/robots.txt (100%) create mode 100644 test-app/testem.js create mode 100644 test-app/tests/index.html rename testing/ember-app/tests/integration/dynamic-machines-test.ts => test-app/tests/integration/dynamic-machines-test.gts (100%) rename testing/ember-app/tests/integration/modifier-test.ts => test-app/tests/integration/modifier-test.gts (100%) rename testing/ember-app/tests/integration/timing-test.ts => test-app/tests/integration/timing-test.gts (100%) rename {testing/ember-app => test-app}/tests/integration/usage-test.gts (100%) create mode 100644 test-app/tests/test-helper.ts create mode 100644 test-app/tsconfig.json create mode 100644 test-app/types/index.d.ts create mode 100644 test-app/vite.config.mjs delete mode 100644 testing/ember-app/.ember-cli delete mode 100644 testing/ember-app/.eslintrc.js delete mode 100644 testing/ember-app/.prettierignore delete mode 100644 testing/ember-app/.template-lintrc.js delete mode 100644 testing/ember-app/.travis.yml delete mode 100644 testing/ember-app/.watchmanconfig delete mode 100644 testing/ember-app/README.md delete mode 100644 testing/ember-app/app/index.html delete mode 100644 testing/ember-app/app/styles/app.css delete mode 100644 testing/ember-app/config/ember-cli-update.json delete mode 100644 testing/ember-app/config/ember-try.js delete mode 100644 testing/ember-app/config/targets.js delete mode 100644 testing/ember-app/ember-cli-build.js delete mode 100644 testing/ember-app/package.json delete mode 100644 testing/ember-app/testem.js delete mode 100644 testing/ember-app/tests/helpers/.gitkeep delete mode 100644 testing/ember-app/tests/index.html delete mode 100644 testing/ember-app/tests/test-helper.ts delete mode 100644 testing/ember-app/tsconfig.json delete mode 100644 testing/ember-app/types/ember-app/glint-registry.d.ts delete mode 100644 testing/ember-app/types/ember-app/index.d.ts delete mode 100644 testing/ember-app/vendor/.gitkeep diff --git a/ember-statechart-component/package.json b/ember-statechart-component/package.json index eeb34c82..13c458d9 100644 --- a/ember-statechart-component/package.json +++ b/ember-statechart-component/package.json @@ -58,9 +58,10 @@ "@glimmer/compiler": "^0.92.4", "@glimmer/component": "^1.0.4", "@glimmer/env": "^0.1.7", - "@glint/core": "^1.4.0", - "@glint/environment-ember-template-imports": "^1.4.0", - "@glint/template": "^1.4.0", + "@glint/core": "1.4.1-unstable.b29a807", + "@glint/environment-ember-loose": "1.4.1-unstable.b29a807", + "@glint/environment-ember-template-imports": "1.4.1-unstable.b29a807", + "@glint/template": "1.4.1-unstable.b29a807", "@nullvoxpopuli/eslint-configs": "^4.2.0", "@rollup/plugin-babel": "^6.0.4", "@tsconfig/ember": "^3.0.3", diff --git a/ember-statechart-component/rollup.config.mjs b/ember-statechart-component/rollup.config.mjs index 2350918c..7c8795ce 100644 --- a/ember-statechart-component/rollup.config.mjs +++ b/ember-statechart-component/rollup.config.mjs @@ -13,7 +13,7 @@ const rollupConfig = defineConfig({ plugins: [ // These are the modules that users should be able to import from your // addon. Anything not listed here may get optimized away. - addon.publicEntrypoints(["index.ts", "glint.ts"]), + addon.publicEntrypoints(["index.ts"]), // These are the modules that should get reexported into the traditional // "app" tree. Things in here should also be in publicEntrypoints above, but diff --git a/package.json b/package.json index 669cf734..3a2db8b7 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,10 @@ }, "devDependencies": { "@babel/core": "7.25.7", - "@glint/core": "^1.4.0", - "@glint/template": "^1.4.0", + "@glint/core": "1.4.1-unstable.b29a807", + "@glint/environment-ember-loose": "1.4.1-unstable.b29a807", + "@glint/environment-ember-template-imports": "1.4.1-unstable.b29a807", + "@glint/template": "1.4.1-unstable.b29a807", "@typescript-eslint/parser": "^8.8.0", "ember-template-lint": "^6.0.0", "eslint": "^8.56.0", @@ -34,7 +36,12 @@ }, "pnpm": { "overrides": { - "ember-cli-babel": "^8.2.0" + "@glint/core": "1.4.1-unstable.b29a807", + "@glint/environment-ember-loose": "1.4.1-unstable.b29a807", + "@glint/environment-ember-template-imports": "1.4.1-unstable.b29a807", + "@glint/template": "1.4.1-unstable.b29a807", + "ember-cli-babel": "^8.2.0", + "ember-cli-typescript": "5.3.0" }, "peerDependencyRules": { "allowAny": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 743e1920..3934124a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,7 +5,12 @@ settings: excludeLinksFromLockfile: false overrides: + '@glint/core': 1.4.1-unstable.b29a807 + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807 + '@glint/environment-ember-template-imports': 1.4.1-unstable.b29a807 + '@glint/template': 1.4.1-unstable.b29a807 ember-cli-babel: ^8.2.0 + ember-cli-typescript: 5.3.0 importers: @@ -13,16 +18,22 @@ importers: devDependencies: '@babel/core': specifier: 7.25.7 - version: 7.25.7(supports-color@8.1.1) + version: 7.25.7 '@glint/core': - specifier: ^1.4.0 - version: 1.4.0(typescript@5.5.4) + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(typescript@5.6.2) + '@glint/environment-ember-loose': + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + '@glint/environment-ember-template-imports': + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': - specifier: ^1.4.0 - version: 1.4.0 + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807 '@typescript-eslint/parser': specifier: ^8.8.0 - version: 8.8.0(eslint@8.57.1)(typescript@5.5.4) + version: 8.8.0(eslint@8.57.1)(typescript@5.6.2) ember-template-lint: specifier: ^6.0.0 version: 6.0.0 @@ -31,7 +42,7 @@ importers: version: 8.57.1 eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1) eslint-plugin-node: specifier: ^11.1.0 version: 11.1.0(eslint@8.57.1) @@ -46,7 +57,7 @@ importers: version: 0.9.2(encoding@0.1.13) typescript: specifier: ^5.5.0 - version: 5.5.4 + version: 5.6.2 ember-statechart-component: dependencies: @@ -54,15 +65,15 @@ importers: specifier: ^1.8.9 version: 1.8.9 '@glint/template': - specifier: '>= 1.0.0' - version: 1.4.0 + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807 devDependencies: '@arethetypeswrong/cli': specifier: ^0.16.4 version: 0.16.4 '@babel/core': specifier: 7.25.7 - version: 7.25.7(supports-color@8.1.1) + version: 7.25.7 '@babel/eslint-parser': specifier: ^7.25.7 version: 7.25.7(@babel/core@7.25.7)(eslint@8.57.1) @@ -80,7 +91,7 @@ importers: version: 7.25.7(@babel/core@7.25.7) '@embroider/addon-dev': specifier: ^5.0.0 - version: 5.0.0(@glint/template@1.4.0)(rollup@4.24.0) + version: 5.0.0(@glint/template@1.4.1-unstable.b29a807)(rollup@4.24.0) '@glimmer/compiler': specifier: ^0.92.4 version: 0.92.4 @@ -91,11 +102,14 @@ importers: specifier: ^0.1.7 version: 0.1.7 '@glint/core': - specifier: ^1.4.0 - version: 1.4.0(typescript@5.5.4) + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(typescript@5.5.4) + '@glint/environment-ember-loose': + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) '@glint/environment-ember-template-imports': - specifier: ^1.4.0 - version: 1.4.0(@glint/environment-ember-loose@1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0))(@glint/template@1.4.0) + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) @@ -119,7 +133,7 @@ importers: version: 2.2.2(@babel/core@7.25.7) ember-source: specifier: ^5.5.0 - version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5) ember-template-lint: specifier: 6.0.0 version: 6.0.0 @@ -134,7 +148,7 @@ importers: version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) eslint-plugin-import: specifier: ^2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + version: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-json: specifier: ^4.0.1 version: 4.0.1 @@ -169,27 +183,24 @@ importers: specifier: ^5.18.2 version: 5.18.2 - testing/ember-app: + test-app: dependencies: - decorator-transforms: - specifier: ^2.2.2 - version: 2.2.2(@babel/core@7.25.7) - ember-route-template: - specifier: ^1.0.3 - version: 1.0.3 ember-statechart-component: specifier: workspace:* - version: link:../../ember-statechart-component + version: link:../ember-statechart-component xstate: specifier: ^5.18.2 version: 5.18.2 devDependencies: '@babel/core': - specifier: 7.25.7 - version: 7.25.7(supports-color@8.1.1) + specifier: ^7.25.2 + version: 7.25.7 '@babel/eslint-parser': specifier: ^7.25.7 - version: 7.25.7(@babel/core@7.25.7)(eslint@8.57.1) + version: 7.25.7(@babel/core@7.25.7)(eslint@9.12.0) + '@babel/plugin-transform-typescript': + specifier: ^7.25.7 + version: 7.25.7(@babel/core@7.25.7) '@ember/optional-features': specifier: ^2.1.0 version: 2.1.0 @@ -198,16 +209,22 @@ importers: version: 4.0.0 '@ember/test-helpers': specifier: ^4.0.4 - version: 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + version: 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) '@embroider/compat': - specifier: ^3.6.2 - version: 3.6.2(@embroider/core@3.4.17(@glint/template@1.4.0))(@glint/template@1.4.0) + specifier: 3.6.2-unstable.89d7d7f + version: 3.6.2-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807) + '@embroider/config-meta-loader': + specifier: 0.0.1-unstable.89d7d7f + version: 0.0.1-unstable.89d7d7f '@embroider/core': - specifier: ^3.4.17 - version: 3.4.17(@glint/template@1.4.0) - '@embroider/webpack': - specifier: ^4.0.6 - version: 4.0.6(@embroider/core@3.4.17(@glint/template@1.4.0))(webpack@5.95.0) + specifier: 3.4.16-unstable.89d7d7f + version: 3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807) + '@embroider/test-setup': + specifier: 4.0.1-unstable.89d7d7f + version: 4.0.1-unstable.89d7d7f(@embroider/compat@3.6.2-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807))(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807)) + '@embroider/vite': + specifier: 0.2.1-unstable.89d7d7f + version: 0.2.1-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.4)(terser@5.34.1)) '@glimmer/component': specifier: ^1.1.2 version: 1.1.2(@babel/core@7.25.7) @@ -215,23 +232,26 @@ importers: specifier: ^1.1.2 version: 1.1.2 '@glint/core': - specifier: ^1.4.0 - version: 1.4.0(typescript@5.5.4) + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(typescript@5.6.2) '@glint/environment-ember-loose': - specifier: ^1.4.0 - version: 1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0) + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': - specifier: ^1.4.0 - version: 1.4.0(@glint/environment-ember-loose@1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0))(@glint/template@1.4.0) + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': - specifier: ^1.4.0 - version: 1.4.0 - '@nullvoxpopuli/eslint-configs': - specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) - '@types/htmlbars-inline-precompile': - specifier: ^3.0.3 - version: 3.0.3 + specifier: 1.4.1-unstable.b29a807 + version: 1.4.1-unstable.b29a807 + '@rollup/plugin-babel': + specifier: ^6.0.4 + version: 6.0.4(@babel/core@7.25.7)(rollup@4.24.0) + '@tsconfig/ember': + specifier: ^3.0.8 + version: 3.0.8 + '@types/eslint__js': + specifier: ^8.42.3 + version: 8.42.3 '@types/qunit': specifier: ^2.19.10 version: 2.19.10 @@ -240,16 +260,22 @@ importers: version: 4.0.9 '@typescript-eslint/eslint-plugin': specifier: ^8.8.0 - version: 8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) + version: 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0)(typescript@5.6.2) '@typescript-eslint/parser': specifier: ^8.8.0 - version: 8.8.0(eslint@8.57.1)(typescript@5.5.4) + version: 8.8.0(eslint@9.12.0)(typescript@5.6.2) + babel-plugin-ember-template-compilation: + specifier: ^2.3.0 + version: 2.3.0 concurrently: specifier: ^9.0.1 version: 9.0.1 + decorator-transforms: + specifier: ^2.2.2 + version: 2.2.2(@babel/core@7.25.7) ember-auto-import: specifier: ^2.8.1 - version: 2.8.1(@glint/template@1.4.0)(webpack@5.95.0) + version: 2.8.1(@glint/template@1.4.1-unstable.b29a807)(webpack@5.95.0) ember-cli: specifier: ~5.12.0 version: 5.12.0(handlebars@4.7.8)(underscore@1.13.7) @@ -257,76 +283,64 @@ importers: specifier: ^8.2.0 version: 8.2.0(@babel/core@7.25.7) ember-cli-htmlbars: - specifier: ^6.0.1 + specifier: ^6.3.0 version: 6.3.0 ember-cli-inject-live-reload: specifier: ^2.1.0 version: 2.1.0 - ember-fetch: - specifier: ^8.1.1 - version: 8.1.2(@babel/core@7.25.7)(encoding@0.1.13) - ember-functions-as-helper-polyfill: - specifier: ^2.0.0 - version: 2.1.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) - ember-functions-as-modifiers-polyfill: - specifier: ^1.0.0 - version: 1.0.0(@babel/core@7.25.7) ember-load-initializers: specifier: ^3.0.1 - version: 3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + version: 3.0.1(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + ember-modifier: + specifier: ^4.2.0 + version: 4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-page-title: specifier: ^8.2.3 - version: 8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + version: 8.2.3(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-qunit: specifier: ^8.1.0 - version: 8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0) + version: 8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0) ember-resolver: specifier: ^13.0.2 - version: 13.0.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + version: 13.0.2(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + ember-route-template: + specifier: ^1.0.3 + version: 1.0.3 ember-source: - specifier: ~5.12.0 - version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) - ember-source-channel-url: - specifier: ^3.0.0 - version: 3.0.0(encoding@0.1.13) - ember-template-imports: - specifier: ^4.1.2 - version: 4.1.2 + specifier: 6.1.0-alpha.1 + version: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) ember-template-lint: specifier: ^6.0.0 version: 6.0.0 - ember-try: - specifier: ^3.0.0 - version: 3.0.0(encoding@0.1.13) eslint: - specifier: ^8.57.0 - version: 8.57.1 + specifier: ^9.12.0 + version: 9.12.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.1) + version: 9.1.0(eslint@9.12.0) eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1) - eslint-plugin-node: - specifier: ^11.1.0 - version: 11.1.0(eslint@8.57.1) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0) + eslint-plugin-n: + specifier: ^17.10.3 + version: 17.10.3(eslint@9.12.0) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@9.12.0))(eslint@9.12.0)(prettier@3.3.3) eslint-plugin-qunit: specifier: ^8.1.2 - version: 8.1.2(eslint@8.57.1) + version: 8.1.2(eslint@9.12.0) + globals: + specifier: ^15.10.0 + version: 15.10.0 loader.js: specifier: ^4.7.0 version: 4.7.0 - npm-run-all: - specifier: ^4.1.5 - version: 4.1.5 prettier: specifier: ^3.3.3 version: 3.3.3 prettier-plugin-ember-template-tag: - specifier: ^2.0.0 + specifier: ^2.0.2 version: 2.0.2(prettier@3.3.3) qunit: specifier: ^2.22.0 @@ -334,25 +348,33 @@ importers: qunit-dom: specifier: ^3.2.1 version: 3.2.1 - read-package-up: - specifier: ^11.0.0 - version: 11.0.0 + stylelint: + specifier: ^16.9.0 + version: 16.9.0(typescript@5.6.2) + stylelint-config-standard: + specifier: ^36.0.1 + version: 36.0.1(stylelint@16.9.0(typescript@5.6.2)) + stylelint-prettier: + specifier: ^5.0.2 + version: 5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.6.2)) + tracked-built-ins: + specifier: ^3.3.0 + version: 3.3.0(@babel/core@7.25.7) typescript: - specifier: ~5.5.0 - version: 5.5.4 + specifier: ^5.5.4 + version: 5.6.2 + typescript-eslint: + specifier: ^8.8.0 + version: 8.8.0(eslint@9.12.0)(typescript@5.6.2) + vite: + specifier: ^5.4.8 + version: 5.4.8(@types/node@22.7.4)(terser@5.34.1) webpack: specifier: ^5.95.0 version: 5.95.0 - dependenciesMeta: - ember-statechart-component: - injected: true packages: - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} @@ -369,18 +391,10 @@ packages: resolution: {integrity: sha512-RI3HXgSuKTfcBf1hSEg1P9/cOvmI0flsMm6/QL3L3wju4AlHDqd55JFPfXs4pzgEAgy5L9pul4/HPPz99x2GvA==} engines: {node: '>=18'} - '@babel/code-frame@7.23.5': - resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} - engines: {node: '>=6.9.0'} - '@babel/code-frame@7.25.7': resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.23.5': - resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} - engines: {node: '>=6.9.0'} - '@babel/compat-data@7.25.7': resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==} engines: {node: '>=6.9.0'} @@ -404,18 +418,10 @@ packages: resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==} engines: {node: '>=6.9.0'} - '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: '>=6.9.0'} - '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7': resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.23.6': - resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.25.7': resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==} engines: {node: '>=6.9.0'} @@ -426,44 +432,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-create-regexp-features-plugin@7.22.15': - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-create-regexp-features-plugin@7.25.7': resolution: {integrity: sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-define-polyfill-provider@0.4.4': - resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-define-polyfill-provider@0.6.2': resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-environment-visitor@7.22.20': - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.23.0': - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@7.22.5': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@7.23.0': - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} - engines: {node: '>=6.9.0'} - '@babel/helper-member-expression-to-functions@7.25.7': resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==} engines: {node: '>=6.9.0'} @@ -478,10 +457,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.22.5': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} - '@babel/helper-optimise-call-expression@7.25.7': resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==} engines: {node: '>=6.9.0'} @@ -490,24 +465,12 @@ packages: resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} engines: {node: '>=6.9.0'} - '@babel/helper-remap-async-to-generator@7.22.20': - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-remap-async-to-generator@7.25.7': resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-replace-supers@7.22.20': - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-replace-supers@7.25.7': resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==} engines: {node: '>=6.9.0'} @@ -522,22 +485,10 @@ packages: resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==} engines: {node: '>=6.9.0'} - '@babel/helper-split-export-declaration@7.22.6': - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.23.4': - resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.7': resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.22.20': - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.7': resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} engines: {node: '>=6.9.0'} @@ -546,10 +497,6 @@ packages: resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==} engines: {node: '>=6.9.0'} - '@babel/helper-wrap-function@7.22.20': - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: '>=6.9.0'} - '@babel/helper-wrap-function@7.25.7': resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==} engines: {node: '>=6.9.0'} @@ -558,19 +505,10 @@ packages: resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.23.4': - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} - engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.7': resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.23.6': - resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.25.7': resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} engines: {node: '>=6.0.0'} @@ -588,36 +526,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7': resolution: {integrity: sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3': - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7': resolution: {integrity: sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3': - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7': resolution: {integrity: sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==} engines: {node: '>=6.9.0'} @@ -631,12 +551,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-proposal-decorators@7.23.6': - resolution: {integrity: sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-proposal-decorators@7.25.7': resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==} engines: {node: '>=6.9.0'} @@ -695,24 +609,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.23.3': - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.25.7': resolution: {integrity: sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-attributes@7.23.3': - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-attributes@7.25.7': resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==} engines: {node: '>=6.9.0'} @@ -789,144 +691,72 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-arrow-functions@7.23.3': - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-arrow-functions@7.25.7': resolution: {integrity: sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.23.4': - resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.25.7': resolution: {integrity: sha512-4B6OhTrwYKHYYgcwErvZjbmH9X5TxQBsaBHdzEIB4l71gR5jh/tuHGlb9in47udL2+wVUcOz5XXhhfhVJwEpEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-to-generator@7.23.3': - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-to-generator@7.25.7': resolution: {integrity: sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.23.3': - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.25.7': resolution: {integrity: sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.23.4': - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.25.7': resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-properties@7.23.3': - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-properties@7.25.7': resolution: {integrity: sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-static-block@7.23.4': - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - '@babel/plugin-transform-class-static-block@7.25.7': resolution: {integrity: sha512-rvUUtoVlkDWtDWxGAiiQj0aNktTPn3eFynBcMC2IhsXweehwgdI9ODe+XjWw515kEmv22sSOTp/rxIRuTiB7zg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 - '@babel/plugin-transform-classes@7.23.5': - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-classes@7.25.7': resolution: {integrity: sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.23.3': - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.25.7': resolution: {integrity: sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.23.3': - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.25.7': resolution: {integrity: sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dotall-regex@7.23.3': - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dotall-regex@7.25.7': resolution: {integrity: sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-keys@7.23.3': - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-keys@7.25.7': resolution: {integrity: sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==} engines: {node: '>=6.9.0'} @@ -939,120 +769,60 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-dynamic-import@7.23.4': - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dynamic-import@7.25.7': resolution: {integrity: sha512-UvcLuual4h7/GfylKm2IAA3aph9rwvAM2XBA0uPKU3lca+Maai4jBjjEVUS568ld6kJcgbouuumCBhMd/Yz17w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.23.3': - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.25.7': resolution: {integrity: sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-export-namespace-from@7.23.4': - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-export-namespace-from@7.25.7': resolution: {integrity: sha512-h3MDAP5l34NQkkNulsTNyjdaR+OiB0Im67VU//sFupouP8Q6m9Spy7l66DcaAQxtmCqGdanPByLsnwFttxKISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.23.6': - resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.25.7': resolution: {integrity: sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.23.3': - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.25.7': resolution: {integrity: sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-json-strings@7.23.4': - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-json-strings@7.25.7': resolution: {integrity: sha512-Ot43PrL9TEAiCe8C/2erAjXMeVSnE/BLEx6eyrKLNFCCw5jvhTHKyHxdI1pA0kz5njZRYAnMO2KObGqOCRDYSA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.23.3': - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.25.7': resolution: {integrity: sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.23.4': - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.25.7': resolution: {integrity: sha512-iImzbA55BjiovLyG2bggWS+V+OLkaBorNvc/yJoeeDQGztknRnDdYfp2d/UPmunZYEnZi6Lg8QcTmNMHOB0lGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.23.3': - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.25.7': resolution: {integrity: sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.23.3': - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.25.7': resolution: {integrity: sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==} engines: {node: '>=6.9.0'} @@ -1065,264 +835,132 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.23.3': - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.25.7': resolution: {integrity: sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-umd@7.23.3': - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-umd@7.25.7': resolution: {integrity: sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.25.7': resolution: {integrity: sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-new-target@7.23.3': - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-new-target@7.25.7': resolution: {integrity: sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4': - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.25.7': resolution: {integrity: sha512-FbuJ63/4LEL32mIxrxwYaqjJxpbzxPVQj5a+Ebrc8JICV6YX8nE53jY+K0RZT3um56GoNWgkS2BQ/uLGTjtwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-numeric-separator@7.23.4': - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-numeric-separator@7.25.7': resolution: {integrity: sha512-8CbutzSSh4hmD+jJHIA8vdTNk15kAzOnFLVVgBSMGr28rt85ouT01/rezMecks9pkU939wDInImwCKv4ahU4IA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-rest-spread@7.23.4': - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-rest-spread@7.25.7': resolution: {integrity: sha512-1JdVKPhD7Y5PvgfFy0Mv2brdrolzpzSoUq2pr6xsR+m+3viGGeHEokFKsCgOkbeFOQxfB1Vt2F0cPJLRpFI4Zg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.23.3': - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.25.7': resolution: {integrity: sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-catch-binding@7.23.4': - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-catch-binding@7.25.7': resolution: {integrity: sha512-m9obYBA39mDPN7lJzD5WkGGb0GO54PPLXsbcnj1Hyeu8mSRz7Gb4b1A6zxNX32ZuUySDK4G6it8SDFWD1nCnqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-chaining@7.23.4': - resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-chaining@7.25.7': resolution: {integrity: sha512-h39agClImgPWg4H8mYVAbD1qP9vClFbEjqoJmt87Zen8pjqK8FTPUwrOXAvqu5soytwxrLMd2fx2KSCp2CHcNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.23.3': - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.25.7': resolution: {integrity: sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-methods@7.23.3': - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-methods@7.25.7': resolution: {integrity: sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-property-in-object@7.23.4': - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-property-in-object@7.25.7': resolution: {integrity: sha512-LzA5ESzBy7tqj00Yjey9yWfs3FKy4EmJyKOSWld144OxkTji81WWnUT8nkLUn+imN/zHL8ZQlOu/MTUAhHaX3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.23.3': - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.25.7': resolution: {integrity: sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-regenerator@7.23.3': - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-regenerator@7.25.7': resolution: {integrity: sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.23.3': - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.25.7': resolution: {integrity: sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.23.6': - resolution: {integrity: sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.25.7': resolution: {integrity: sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.23.3': - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.25.7': resolution: {integrity: sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.23.3': - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.25.7': resolution: {integrity: sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-sticky-regex@7.23.3': - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-sticky-regex@7.25.7': resolution: {integrity: sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.23.3': - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.25.7': resolution: {integrity: sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.23.3': - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.25.7': resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==} engines: {node: '>=6.9.0'} @@ -1335,65 +973,30 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.5.5': - resolution: {integrity: sha512-pehKf4m640myZu5B2ZviLaiBlxMCjSZ1qTEO459AXKX5GnPueyulJeCqZFs1nz/Ya2dDzXQ1NxZ/kKNWyD4h6w==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.23.3': - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-escapes@7.25.7': resolution: {integrity: sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-property-regex@7.23.3': - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-property-regex@7.25.7': resolution: {integrity: sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-regex@7.23.3': - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-regex@7.25.7': resolution: {integrity: sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-sets-regex@7.23.3': - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-transform-unicode-sets-regex@7.25.7': resolution: {integrity: sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/preset-env@7.23.6': - resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/preset-env@7.25.7': resolution: {integrity: sha512-Gibz4OUdyNqqLj+7OAvBZxOD7CklCtMA5/j0JgUEwOnaRULsPDXmic2iKxL2DX2vQduPR5wH2hjZas/Vr/Oc0g==} engines: {node: '>=6.9.0'} @@ -1411,24 +1014,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/regjsgen@0.8.0': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - '@babel/runtime@7.12.18': resolution: {integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==} - '@babel/runtime@7.23.6': - resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==} - engines: {node: '>=6.9.0'} - '@babel/runtime@7.25.7': resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==} engines: {node: '>=6.9.0'} - '@babel/template@7.22.15': - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} - '@babel/template@7.25.7': resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} engines: {node: '>=6.9.0'} @@ -1437,10 +1029,6 @@ packages: resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} engines: {node: '>=6.9.0'} - '@babel/types@7.23.6': - resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} - engines: {node: '>=6.9.0'} - '@babel/types@7.25.7': resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} engines: {node: '>=6.9.0'} @@ -1454,6 +1042,32 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} + '@csstools/css-parser-algorithms@3.0.1': + resolution: {integrity: sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-tokenizer': ^3.0.1 + + '@csstools/css-tokenizer@3.0.1': + resolution: {integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==} + engines: {node: '>=18'} + + '@csstools/media-query-list-parser@3.0.1': + resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-parser-algorithms': ^3.0.1 + '@csstools/css-tokenizer': ^3.0.1 + + '@csstools/selector-specificity@4.0.0': + resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==} + engines: {node: '>=18'} + peerDependencies: + postcss-selector-parser: ^6.1.0 + + '@dual-bundle/import-meta-resolve@4.1.0': + resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==} + '@ember-data/rfc395-data@0.0.4': resolution: {integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ==} @@ -1490,49 +1104,344 @@ packages: resolution: {integrity: sha512-qyN64T1jMHZ99ihlk7VFHCWHYZHLE1DOdHi0J7lmn5waV1DoW7gD8JLi1i7FregzXtKhbDc7shyEmTmWPTs8MQ==} engines: {node: 12.* || 14.* || >= 16} - '@embroider/babel-loader-9@3.1.1': - resolution: {integrity: sha512-8mIDRXvwntYIQc2JFVvGXEppHUJRhw+6aEzHtbCZDr4oOKw55IyY+RHzas3JILRq64owLA+Ox0yu6nkwL1ApRQ==} + '@embroider/compat@3.6.2-unstable.89d7d7f': + resolution: {integrity: sha512-eXtHblV7mdKvfIH7UugmKgOMH6uvu0SklYIn862nFVHBV6MqYf19x1Hh8wKrMl6gR4tmVkofy+oXDU0yflFgKw==} engines: {node: 12.* || 14.* || >= 16} + hasBin: true peerDependencies: - '@embroider/core': ^3.4.0 + '@embroider/core': ^3.4.16-unstable.89d7d7f - '@embroider/compat@3.6.2': - resolution: {integrity: sha512-5KLR/VLNdLlfUNSdukWlmQYJaPcztWVP36cxTMMZdGuMzs6/zM2cU875hlaYd4Ndh1Id7exFqd1rBDrTG6gwLA==} + '@embroider/config-meta-loader@0.0.1-unstable.89d7d7f': + resolution: {integrity: sha512-8y4gydYxzEf2F6mmMHfPQ4xhJFYqFdQG+RdSkoYzOgfEG1Gip5ZTvlHN87XyEa4NPealHFNSlEWFU1NIQHiGtw==} + engines: {node: 12.* || 14.* || >= 16} + + '@embroider/core@3.4.16-unstable.89d7d7f': + resolution: {integrity: sha512-EPE5K5cxFAPCPf/R9DXvlgxmH8laIOWgoAMbODZ5RR2S+fCDri/WMKTZfMJSygYTNMjIYiRJvdR2JsxMqm7ZQw==} engines: {node: 12.* || 14.* || >= 16} - hasBin: true - peerDependencies: - '@embroider/core': ^3.4.17 '@embroider/core@3.4.17': resolution: {integrity: sha512-5mgIQSR4gsH3T7/+FskxL4I6bzkHbKGAXHf3ZnOSb0byqoCfQT8yVu6GktwMzLxMlvP1ziLIsyEesMQ8zjLBpA==} engines: {node: 12.* || 14.* || >= 16} - '@embroider/hbs-loader@3.0.3': - resolution: {integrity: sha512-sI2K3/III1WGGxS+aIf8uW5tgcNiE7APNhThn2ZTwqU47fK20Uz8TJZhst0GfNZFsCsmuQMRUikRJvQU8naSWA==} + '@embroider/macros@1.16.7': + resolution: {integrity: sha512-iGCTF19AvjtIf5KXhJu1ukJY9d9LXoiViMis1dfSS8NGF1eyiXHOhgyTnJvh+wW88xIveHJDufJai5KV/i8ukg==} engines: {node: 12.* || 14.* || >= 16} peerDependencies: - '@embroider/core': ^3.4.0 - webpack: ^5 + '@glint/template': 1.4.1-unstable.b29a807 + peerDependenciesMeta: + '@glint/template': + optional: true - '@embroider/macros@1.16.7': - resolution: {integrity: sha512-iGCTF19AvjtIf5KXhJu1ukJY9d9LXoiViMis1dfSS8NGF1eyiXHOhgyTnJvh+wW88xIveHJDufJai5KV/i8ukg==} + '@embroider/macros@1.16.7-unstable.89d7d7f': + resolution: {integrity: sha512-VY8e9WksrPhhm4YVRXypFhXfQzEYnMwZz2k1LOaW3u/c2m3+bUMtBQnAmVRz6ZiCS6r8C8ucNW8yN3ZryWhFoQ==} engines: {node: 12.* || 14.* || >= 16} peerDependencies: - '@glint/template': ^1.0.0 + '@glint/template': 1.4.1-unstable.b29a807 peerDependenciesMeta: '@glint/template': optional: true + '@embroider/reverse-exports@0.1.1-unstable.89d7d7f': + resolution: {integrity: sha512-7jTv6ihYYBKAy43JTr70OzAseSM10RKqe6Oi9gkqOjiDIoDfMIFmOLCZb1sD+7RnDi3yXzwOI2/1tUJH8S7DvQ==} + + '@embroider/shared-internals@2.6.4-unstable.89d7d7f': + resolution: {integrity: sha512-v4kfkMESqBZ55jpXaOwlhQ4N8j9DR0G4/1v9mCQe/viRDF8IkWct4RNvDRyCkNfZYu4T5Vjmw01a1xj452MgsQ==} + engines: {node: 12.* || 14.* || >= 16} + '@embroider/shared-internals@2.7.0': resolution: {integrity: sha512-ISaVmGvTI+y7QRwo+Qku9mDm1p35DV4Gi7luSoizL88PlC2UZHuK6nOEEF2hjsqUnHwmEv0jd3/tpOCohwgk6w==} engines: {node: 12.* || 14.* || >= 16} - '@embroider/webpack@4.0.6': - resolution: {integrity: sha512-Vxti9xuC6Atl/eOgSFWtQQx0EnNzIvSkqoaH2OE+ntlS3U4GE+Aog1IIvQwHiQVpSBco6qGowqnn4AHuPAmLmw==} + '@embroider/test-setup@4.0.1-unstable.89d7d7f': + resolution: {integrity: sha512-4ejptfNALzEGneefJppcXDVaV0qP8LB5EVsCmgcXfQtMjHOMNMy6whyTzZx1a2tKtIvAvCbwuQbZtc4s9/2y1A==} engines: {node: 12.* || 14.* || >= 16} peerDependencies: - '@embroider/core': ^3.4.17 - webpack: ^5.0.0 + '@embroider/compat': ^3.6.2-unstable.89d7d7f + '@embroider/core': ^3.4.16-unstable.89d7d7f + '@embroider/webpack': ^4.0.6-unstable.89d7d7f + peerDependenciesMeta: + '@embroider/compat': + optional: true + '@embroider/core': + optional: true + '@embroider/webpack': + optional: true + + '@embroider/vite@0.2.1-unstable.89d7d7f': + resolution: {integrity: sha512-CrE9bHPpN5Ybmm7Ich5sHDVBKFXJASt7FLKytdgTRcEEVjOZLH9nv+D+oINJAU651nzI+fpc/KsP03aavgbnfw==} + peerDependencies: + '@embroider/core': ^3.4.16-unstable.89d7d7f + vite: ^5.2.0 + + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.17.19': + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.17.19': + resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.17.19': + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.17.19': + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.17.19': + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.17.19': + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.17.19': + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.17.19': + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.17.19': + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.17.19': + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.17.19': + resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.17.19': + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.17.19': + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.17.19': + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.17.19': + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.17.19': + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.17.19': + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.17.19': + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.17.19': + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.17.19': + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.17.19': + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.17.19': + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] '@eslint-community/eslint-utils@4.4.0': resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} @@ -1544,14 +1453,38 @@ packages: resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@eslint/config-array@0.18.0': + resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.6.0': + resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@2.1.4': resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/eslintrc@3.1.0': + resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@8.57.1': resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/js@9.12.0': + resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.4': + resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.2.0': + resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@gar/promisify@1.1.3': resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} @@ -1651,17 +1584,17 @@ packages: '@glimmer/wire-format@0.92.3': resolution: {integrity: sha512-gFz81Q9+V7Xs0X8mSq6y8qacHm0dPaGJo2/Bfcsdow1hLOKNgTCLr4XeDBhRML8f6I6Gk9ugH4QDxyIOXOpC4w==} - '@glint/core@1.4.0': - resolution: {integrity: sha512-nq27a/1R6kc3lsuciz8z9IZO1NQCbNkEBxf5KJI7AUrnps6RzQzmq3pmwO24zQYmFcH4sqpod8fleNIpg8YEqg==} + '@glint/core@1.4.1-unstable.b29a807': + resolution: {integrity: sha512-LJw2YHvbSHvKaU4eFsE13AIzzEmEGXecXR3fh3dLFqtTWDJoTXAtOU7Cf0NrpVWPsyM6Uz8eqOiOJWGJPjIl5A==} hasBin: true peerDependencies: - typescript: '>=4.8.0' + typescript: '>=5.4.0' - '@glint/environment-ember-loose@1.4.0': - resolution: {integrity: sha512-vFR3qgPTisGzS36e04195wTUrtUc6GuVwm6hsC/XXx6PeRw/6rtMxhK08Aw/VtDc00UqQzM9sIEghPVKHwqVVQ==} + '@glint/environment-ember-loose@1.4.1-unstable.b29a807': + resolution: {integrity: sha512-1HNoxHwhzPGiyDu3ipPWU43wos4ITwQ131A9zI450AmFWCA+vLEu8dACBidejl+CJTwaX/Y4GO7nAODfF55TvA==} peerDependencies: '@glimmer/component': ^1.1.2 - '@glint/template': ^1.4.0 + '@glint/template': 1.4.1-unstable.b29a807 '@types/ember__array': ^4.0.2 '@types/ember__component': ^4.0.10 '@types/ember__controller': ^4.0.2 @@ -1685,11 +1618,11 @@ packages: ember-modifier: optional: true - '@glint/environment-ember-template-imports@1.4.0': - resolution: {integrity: sha512-VXcUgea92l7NFShU26rpQn+hYUZ7ex/rNtU9vnw2BAVZaPfxZROokW8ABj8aMaCUDe60CoMVZ1/QSeONSCln3w==} + '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807': + resolution: {integrity: sha512-qTcb3XLPKKm7rPc9WnWmdY0g3XIkN+NBkwJ/xZjmt74daHAIimpf8TP06+vOtWo9V3NYUHK4TbB87DDC+lnpFA==} peerDependencies: - '@glint/environment-ember-loose': ^1.4.0 - '@glint/template': ^1.4.0 + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807 + '@glint/template': 1.4.1-unstable.b29a807 '@types/ember__component': ^4.0.10 '@types/ember__helper': ^4.0.1 '@types/ember__modifier': ^4.0.3 @@ -1704,12 +1637,20 @@ packages: '@types/ember__routing': optional: true - '@glint/template@1.4.0': - resolution: {integrity: sha512-yD271NhLei/HSQ6utm6hKgoU+B5D5DY+B1irPvgI4KsDEcZI7v/INf5HAMJfzCg92bP1sIxSOuXu5DU6VsY7Mw==} + '@glint/template@1.4.1-unstable.b29a807': + resolution: {integrity: sha512-/+1LrUVCcJHXbBbeljdzgJCfLzZkQoe6MKzfF17AtUPBweokGyUX5ow9xc/ZspRhrp5f5Kyk1MnXMvVuOz+Hpg==} '@handlebars/parser@2.0.0': resolution: {integrity: sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA==} + '@humanfs/core@0.19.0': + resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.5': + resolution: {integrity: sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==} + engines: {node: '>=18.18.0'} + '@humanwhocodes/config-array@0.13.0': resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} engines: {node: '>=10.10.0'} @@ -1723,8 +1664,12 @@ packages: resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} deprecated: Use @eslint/object-schema instead - '@inquirer/figures@1.0.6': - resolution: {integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==} + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@inquirer/figures@1.0.7': + resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==} engines: {node: '>=18'} '@isaacs/cliui@8.0.2': @@ -1746,9 +1691,6 @@ packages: '@jridgewell/source-map@0.3.6': resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - '@jridgewell/sourcemap-codec@1.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} @@ -1771,8 +1713,8 @@ packages: resolution: {integrity: sha512-3lBouSuF7CqlseLB+FKES0K4FQ02JrbEoRtJhxnsyB1s5v4AP03gsoohN8jp7DcOImhaR9scYdztq3/sLfk/qQ==} engines: {node: '>=14.18.0'} - '@mdn/browser-compat-data@5.5.2': - resolution: {integrity: sha512-HZX4YUlQXDrtuuyAw3ZrzS3LIlsBVL5AhRTROa9cwn6rUpBgtrMWy63S+ahvYhrJgbLmsrEmYwsd5YJBGk5btg==} + '@mdn/browser-compat-data@5.6.4': + resolution: {integrity: sha512-bOOF4GGzn0exmvNHpSWmTfOXB9beTpIFCm2KPY2UVoCdn1YVfr8heuHr1C++BYI9Tun8REgi5TNVdKbBs249CA==} '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} @@ -1796,8 +1738,8 @@ packages: '@npmcli/fs@1.1.1': resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} - '@npmcli/git@5.0.3': - resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==} + '@npmcli/git@5.0.8': + resolution: {integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==} engines: {node: ^16.14.0 || >=18.0.0} '@npmcli/move-file@1.1.2': @@ -1805,12 +1747,12 @@ packages: engines: {node: '>=10'} deprecated: This functionality has been moved to @npmcli/fs - '@npmcli/package-json@5.0.0': - resolution: {integrity: sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g==} + '@npmcli/package-json@5.2.1': + resolution: {integrity: sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==} engines: {node: ^16.14.0 || >=18.0.0} - '@npmcli/promise-spawn@7.0.0': - resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==} + '@npmcli/promise-spawn@7.0.2': + resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} engines: {node: ^16.14.0 || >=18.0.0} '@nullvoxpopuli/eslint-configs@4.2.0': @@ -1950,8 +1892,8 @@ packages: resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + '@rollup/pluginutils@5.1.2': + resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -2048,10 +1990,6 @@ packages: '@simple-dom/interface@1.4.0': resolution: {integrity: sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA==} - '@sindresorhus/is@0.14.0': - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - '@sindresorhus/is@4.6.0': resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} @@ -2063,10 +2001,6 @@ packages: '@socket.io/component-emitter@3.1.2': resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} - '@szmarczak/http-timer@1.1.2': - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} - '@tootallnate/once@1.1.2': resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} @@ -2074,9 +2008,6 @@ packages: '@tsconfig/ember@3.0.8': resolution: {integrity: sha512-OVnIsZIt/8q0VEtcdz3rRryNrm6gdJTxXlxefkGIrkZnME0wqslmwHlUEZ7mvh377df9FqBhNKrYNarhCW8zJA==} - '@types/acorn@4.0.6': - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - '@types/babel__code-frame@7.0.6': resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==} @@ -2086,8 +2017,8 @@ packages: '@types/chai-as-promised@7.1.8': resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==} - '@types/chai@4.3.11': - resolution: {integrity: sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==} + '@types/chai@4.3.20': + resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==} '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} @@ -2101,11 +2032,14 @@ packages: '@types/eslint@8.56.12': resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==} + '@types/eslint__js@8.42.3': + resolution: {integrity: sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==} + '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} - '@types/express-serve-static-core@4.17.41': - resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} + '@types/express-serve-static-core@4.19.6': + resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==} '@types/express@4.17.21': resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} @@ -2119,9 +2053,6 @@ packages: '@types/glob@8.1.0': resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} - '@types/htmlbars-inline-precompile@3.0.3': - resolution: {integrity: sha512-utarMsjpGrHc67F0o4AitUwNOW8YWeF2JfAixWQoZIOy/tyIOxw/qHHQS5AnuazDa1Rt2Mlr9OlHDFD72QJMrA==} - '@types/http-errors@2.0.4': resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} @@ -2131,15 +2062,9 @@ packages: '@types/json5@0.0.29': resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - '@types/keyv@3.1.4': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - '@types/mime@3.0.4': - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} - '@types/minimatch@3.0.5': resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} @@ -2149,23 +2074,14 @@ packages: '@types/node@17.0.45': resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - '@types/node@20.10.5': - resolution: {integrity: sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==} - '@types/node@22.7.4': resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==} - '@types/node@9.6.61': - resolution: {integrity: sha512-/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/object-path@0.11.4': resolution: {integrity: sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==} - '@types/qs@6.9.11': - resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==} + '@types/qs@6.9.16': + resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==} '@types/qunit@2.19.10': resolution: {integrity: sha512-gVB+rxvxmbyPFWa6yjjKgcumWal3hyqoTXI0Oil161uWfo1OCzWZ/rnEumsx+6uVgrwPrCrhpQbLkzfildkSbg==} @@ -2173,26 +2089,20 @@ packages: '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/responselike@1.0.3': - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - '@types/rimraf@2.0.5': resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==} '@types/rsvp@4.0.9': resolution: {integrity: sha512-F6vaN5mbxw2MBCu/AD9fSKwrhnto2pE77dyUsi415qz9IP9ni9ZOWXHxnXfsM4NW9UjW+it189jvvqnhv37Z7Q==} - '@types/semver@7.5.6': - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} '@types/send@0.17.4': resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - '@types/serve-static@1.15.5': - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} - - '@types/supports-color@8.1.3': - resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} '@types/symlink-or-copy@1.2.2': resolution: {integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA==} @@ -2266,6 +2176,32 @@ packages: '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + '@volar/kit@2.4.0-alpha.16': + resolution: {integrity: sha512-jRPfMrxl8N53UkFINMoY777FBqG49RUqWkJt4yOlNEW8CmUS8fmUw4cz/jMv08KnQUyD3IeZWFtt3XZcQqe4Zw==} + peerDependencies: + typescript: '*' + + '@volar/language-core@2.4.0-alpha.16': + resolution: {integrity: sha512-oOTnIZlx0P/idFwVw+W0NbzKDtZAQMzXSdIFfTePCKcXlb4Ys12GaGkx8NF9dsvPYV3nbv3ZsSxnkZWBmNKd7A==} + + '@volar/language-server@2.4.0-alpha.16': + resolution: {integrity: sha512-DswMBlmmXPo9fb1Dmb2qrCtxRDgQPej5jUjAoUm+1wO5k02Tk+jIvbbd/R3EzyHFTARmiRH5/bSOfRefHyuMsg==} + + '@volar/language-service@2.4.0-alpha.16': + resolution: {integrity: sha512-iIRUY0EL9jp8Od7Py/GlYpCu469GFDYl7ai716pQgwipjpjEjRQiuGAD2+cSFjOVXDsMPFpJ+Dpei7aSvE/8pQ==} + + '@volar/snapshot-document@2.4.0-alpha.16': + resolution: {integrity: sha512-X9xZeLvkmhjkrz27J6nq9JhYWV8AUT1KS9fi4s+Mo1FOh5HHUIx/QzhrwsUN/pY1z3kO+vtrl2DE6NVJRYwwbw==} + + '@volar/source-map@2.4.0-alpha.16': + resolution: {integrity: sha512-sL9vNG7iR2hiKZor7UkD5Sufu3QCia4cbp2gX/nGRNSdaPbhOpdAoavwlBm0PrVkpiA19NZuavZoobD8krviFg==} + + '@volar/test-utils@2.4.0-alpha.16': + resolution: {integrity: sha512-O2MIR0H8f0LGSEWrFk+1g9PQmO9qlsv+djpnrnsBhx+mmnKmsX1T35CujOCvx8LLvlob+qlINrh3kTYCCUH7ww==} + + '@volar/typescript@2.4.0-alpha.16': + resolution: {integrity: sha512-WCx7z5O81McCQp2cC0c8081y+MgTiAR2WAiJjVL4tr4Qh4GgqK0lgn3CqAjcKizaK1R5y3wfrUqgIYr+QeFYcw==} + '@webassemblyjs/ast@1.12.1': resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} @@ -2325,19 +2261,19 @@ packages: '@xtuc/long@4.2.2': resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - abortcontroller-polyfill@1.7.5: - resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} - 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 + 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==} @@ -2349,8 +2285,12 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn@5.7.4: - resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==} + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true @@ -2391,8 +2331,8 @@ packages: ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} amd-name-resolver@1.3.1: resolution: {integrity: sha512-26qTEWqZQ+cxSYygZ4Cf8tsjDBLceJahhtewxtKZA3SRa4PluuqYCuheemDQD+7Mf5B7sr+zhTDWAHDh02a1Dw==} @@ -2435,8 +2375,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} engines: {node: '>=12'} ansi-styles@3.2.1: @@ -2499,9 +2439,6 @@ packages: resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} engines: {node: '>=0.10.0'} - array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} - array-buffer-byte-length@1.0.1: resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} engines: {node: '>= 0.4'} @@ -2533,11 +2470,7 @@ packages: engines: {node: '>= 0.4'} array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} - - arraybuffer.prototype.slice@1.0.2: - resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} engines: {node: '>= 0.4'} arraybuffer.prototype.slice@1.0.3: @@ -2555,6 +2488,10 @@ packages: resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} engines: {node: '>=4'} + astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + async-disk-cache@1.3.5: resolution: {integrity: sha512-VZpqfR0R7CEOJZ/0FOTgWq70lCrZyS1rkI8PXugDUkTKyyAUgZ2zQ09gLhMkEn+wN8LYeUTPxZdXtlX/kmbXKQ==} @@ -2583,10 +2520,6 @@ packages: engines: {node: '>= 4.5.0'} hasBin: true - available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} - available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -2595,10 +2528,6 @@ packages: resolution: {integrity: sha512-CtWYYHU/MgK88rxMrLfkD356dApswtR/kWZ/c6JifG1m10e7tBBrs/366dFzWMAoqYmG5/JSh+94tUSpIwh+ag==} engines: {node: '>= 12.*'} - babel-import-util@2.0.1: - resolution: {integrity: sha512-N1ZfNprtf/37x0R05J0QCW/9pCAcuI+bjZIK9tlu0JEkwEST7ssdD++gxHRbD58AiG5QE5OuNYhRoEFsc1wESw==} - engines: {node: '>= 12.*'} - babel-import-util@2.1.1: resolution: {integrity: sha512-3qBQWRjzP9NreSH/YrOEU1Lj5F60+pWSLP0kIdCWxjFHH7pX2YPHIxQ67el4gnMNfYoDxSDGcT0zpVlZ+gVtQA==} engines: {node: '>= 12.*'} @@ -2614,13 +2543,6 @@ packages: '@babel/core': ^7.0.0 webpack: '>=2' - babel-loader@9.2.1: - resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' - babel-plugin-debug-macros@0.2.0: resolution: {integrity: sha512-Wpmw4TbhR3Eq2t3W51eBAQSdKlr+uAyF0GI4GtPfMCD12Y4cIdpKC9l0RjNTH/P9isFypSqqewMPm7//fnZlNA==} engines: {node: '>=4'} @@ -2633,6 +2555,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 + babel-plugin-debug-macros@1.0.2: + resolution: {integrity: sha512-ADkMh1LL45678c+4iGn3Fp8hdI9qvxGBkH5x9HNiIlgYJGdQWmYNcA2cS3XAr76N85kDCg4VpqsTN1hFX2jbEA==} + 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.*} @@ -2641,10 +2569,6 @@ packages: resolution: {integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA==} engines: {node: 6.* || 8.* || >= 10.*} - babel-plugin-ember-template-compilation@2.2.1: - resolution: {integrity: sha512-alinprIQcLficqkuIyeKKfD4HQOpMOiHK6pt6Skj/yjoPoQYBuwAJ2BoPAlRe9k/URPeVkpMefbN3m6jEp7RsA==} - engines: {node: '>= 12.*'} - babel-plugin-ember-template-compilation@2.3.0: resolution: {integrity: sha512-4ZrKVSqdw5PxEKRbqfOpPhrrNBDG3mFPhyT6N1Oyyem81ZIkCvNo7TPKvlTHeFxqb6HtUvCACP/pzFpZ74J4pg==} engines: {node: '>= 12.*'} @@ -2653,35 +2577,19 @@ packages: resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==} engines: {node: 10.* || >= 12.*} - babel-plugin-module-resolver@5.0.0: - resolution: {integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==} - engines: {node: '>= 16'} + babel-plugin-module-resolver@5.0.2: + resolution: {integrity: sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==} babel-plugin-polyfill-corejs2@0.4.11: resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs2@0.4.7: - resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.10.6: resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.8.7: - resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-regenerator@0.5.4: - resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.6.2: resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} peerDependencies: @@ -2703,6 +2611,9 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + balanced-match@2.0.0: + resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} + base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -2761,10 +2672,6 @@ packages: resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} engines: {node: '>=0.10.0'} - braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -2859,10 +2766,6 @@ packages: resolution: {integrity: sha512-a4zUsWtA1uns1K7p9rExYVYG99rdKeGRymW0qOCNkvDPHQxVi3yVyJHhQbM3EZwdt2E0mnhr5e0c/bPpJ7p3Wg==} engines: {node: 10.* || >= 12.*} - broccoli-rollup@2.1.1: - resolution: {integrity: sha512-aky/Ovg5DbsrsJEx2QCXxHLA6ZR+9u1TNVTf85soP4gL8CjGGKQ/JU8R3BZ2ntkWzo6/83RCKzX6O+nlNKR5MQ==} - engines: {node: '>=4.0'} - broccoli-slow-trees@3.1.0: resolution: {integrity: sha512-FRI7mRTk2wjIDrdNJd6znS7Kmmne4VkAkl8Ix1R/VoePFMD0g0tEl671xswzFqaRjpT9Qu+CC4hdXDLDJBuzMw==} @@ -2874,22 +2777,16 @@ 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@3.5.2: resolution: {integrity: sha512-sWi3b3fTUSVPDsz5KsQ5eCQNVAtLgkIE/HYFkEZXR/07clqmd4E/gFiuwSaqa9b+QTXc1Uemfb7TVWbEIURWDg==} engines: {node: 8.* || >= 10.*} - browserslist-generator@2.1.0: - resolution: {integrity: sha512-ZFz4mAOgqm0cbwKaZsfJbYDbTXGoPANlte7qRsRJOfjB9KmmISQrXJxAVrnXG8C8v/QHNzXyeJt0Cfcks6zZvQ==} - engines: {node: '>=16.15.1', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'} + browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} - browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist-generator@2.3.0: + resolution: {integrity: sha512-NEvS2dNlBKfSL3qDUTM3NkJMfjMAPEjvEGnhMZKql6ZNzJ8asqFpmuTizwOpRQeYA0/VktmOXa+mFPv8nvcIGw==} + engines: {node: '>=16.15.1', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'} browserslist@4.24.0: resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} @@ -2924,17 +2821,10 @@ packages: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} - cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} - calculate-cache-key-for-tree@2.0.0: resolution: {integrity: sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ==} engines: {node: 6.* || 8.* || >= 10.*} - call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} - call-bind@1.0.7: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} @@ -2947,12 +2837,6 @@ packages: 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.30001572: - resolution: {integrity: sha512-1Pbh5FLmn5y4+QhNyJE9j3/7dK44dGB83/ZMjv/qJk86TvDbjk0LosiZo0i0WB0Vx607qMX9jYrn1VLHCkN4rw==} - caniuse-lite@1.0.30001667: resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==} @@ -3036,10 +2920,6 @@ packages: resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} - cli-table3@0.6.3: - resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} - engines: {node: 10.* || >= 12.*} - cli-table3@0.6.5: resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} engines: {node: 10.* || >= 12.*} @@ -3066,9 +2946,6 @@ packages: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} - clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} - clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} @@ -3098,6 +2975,9 @@ packages: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + colors@1.0.3: resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} @@ -3132,8 +3012,9 @@ packages: common-ancestor-path@1.0.1: resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} @@ -3155,6 +3036,9 @@ packages: resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} engines: {node: '>= 0.8.0'} + computeds@0.0.1: + resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==} + concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -3382,9 +3266,6 @@ packages: resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} engines: {node: '>=0.10.0'} - core-js-compat@3.34.0: - resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==} - core-js-compat@3.38.1: resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==} @@ -3424,16 +3305,16 @@ packages: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} + css-functions-list@3.2.2: + resolution: {integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==} + engines: {node: '>=12 || >=16'} + css-loader@5.2.7: resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.27.0 || ^5.0.0 - css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - css-tree@2.3.1: resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} @@ -3443,9 +3324,15 @@ packages: engines: {node: '>=4'} hasBin: true - csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} cssstyle@4.1.0: resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==} @@ -3454,6 +3341,10 @@ packages: dag-map@2.0.2: resolution: {integrity: sha512-xnsprIzYuDeiyu5zSKwilV/ajRHxnoMlAhEREfyfTgTSViMVY2fGP1ZcHJbtwup26oCkofySU/m6oKJ3HrkW7w==} + data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} + data-urls@5.0.0: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} @@ -3473,10 +3364,6 @@ packages: date-fns@3.6.0: resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==} - date-time@2.1.0: - resolution: {integrity: sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==} - engines: {node: '>=4'} - debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: @@ -3493,15 +3380,6 @@ packages: supports-color: optional: true - debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.3.7: resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} @@ -3518,10 +3396,6 @@ packages: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} - decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} - decorator-transforms@2.2.2: resolution: {integrity: sha512-NHCSJXOUQ29YFli1QzstXWo72EyASpoVx+s0YdkMwswpovf/iAJP580nD1tB0Ph9exvtbfWdVrSAloXrWVo1Xg==} @@ -3535,13 +3409,6 @@ packages: defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} - - define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} - engines: {node: '>= 0.4'} - define-data-property@1.1.4: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} @@ -3619,6 +3486,11 @@ packages: dom-element-descriptors@0.5.1: resolution: {integrity: sha512-DLayMRQ+yJaziF4JJX1FMjwjdr7wdTr1y9XvZ+NfHELfOMcYDnCHneAYXAS4FT1gLILh4V0juMZohhH1N5FsoQ==} + domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead + dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} @@ -3626,9 +3498,6 @@ packages: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} - duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} - eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} @@ -3643,9 +3512,6 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.4.616: - resolution: {integrity: sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==} - electron-to-chromium@1.5.32: resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==} @@ -3666,6 +3532,10 @@ packages: ember-cli-get-component-path-option@1.0.0: resolution: {integrity: sha512-k47TDwcJ2zPideBCZE8sCiShSxQSpebY2BHcX2DdipMmBox5gsfyVrbKJWIHeSTTKyEUgmBIvQkqTOozEziCZA==} + ember-cli-htmlbars@5.7.2: + resolution: {integrity: sha512-Uj6R+3TtBV5RZoJY14oZn/sNPnc+UgmC8nb5rI4P3fR/gYoyTFIZSXiIM7zl++IpMoIrocxOrgt+mhonKphgGg==} + engines: {node: 10.* || >= 12.*} + ember-cli-htmlbars@6.3.0: resolution: {integrity: sha512-N9Y80oZfcfWLsqickMfRd9YByVcTGyhYRnYQ2XVPVrp6jyUyOeRWmEAPh7ERSXpp8Ws4hr/JB9QVQrn/yZa+Ag==} engines: {node: 12.* || 14.* || >= 16} @@ -3701,14 +3571,6 @@ packages: ember-cli-typescript-blueprint-polyfill@0.1.0: resolution: {integrity: sha512-g0weUTOnHmPGqVZzkQTl3Nbk9fzEdFkEXydCs5mT1qBjXh8eQ6VlmjjGD5/998UXKuA0pLSCVVMbSp/linLzGA==} - ember-cli-typescript@3.0.0: - resolution: {integrity: sha512-lo5YArbJzJi5ssvaGqTt6+FnhTALnSvYVuxM7lfyL1UCMudyNJ94ovH5C7n5il7ATd6WsNiAPRUO/v+s5Jq/aA==} - engines: {node: 8.* || >= 10.*} - - ember-cli-typescript@4.2.1: - resolution: {integrity: sha512-0iKTZ+/wH6UB/VTWKvGuXlmwiE8HSIGcxHamwNhEC5x1mN3z8RfvsFZdQWYUzIWFN2Tek0gmepGRPTwWdBYl/A==} - engines: {node: 10.* || >= 12.*} - ember-cli-typescript@5.3.0: resolution: {integrity: sha512-gFA+ZwmsvvFwo2Jz/B9GMduEn+fPoGb69qWGP0Tp3+Tu5xypDtIKVSZ5086I3Cr19cLXD4HkrOR3YQvdUKzAkQ==} engines: {node: '>= 12.*'} @@ -3740,26 +3602,20 @@ packages: '@typescript-eslint/parser': optional: true - ember-fetch@8.1.2: - resolution: {integrity: sha512-TVx24/jrvDIuPL296DV0hBwp7BWLcSMf0I8464KGz01sPytAB+ZAePbc9ooBTJDkKZEGFgatJa4nj3yF1S9Bpw==} - engines: {node: '>= 10'} - - ember-functions-as-helper-polyfill@2.1.2: - resolution: {integrity: sha512-yvW6xykvZEIYzzwlrC/g9yu6LtLkkj5F+ho6U+BDxN1uREMgoMOZnji7sSILn5ITVpaJ055DPcO+utEFD7IZOA==} - engines: {node: '>= 14.0.0'} - peerDependencies: - ember-source: ^3.25.0 || >=4.0.0 - - ember-functions-as-modifiers-polyfill@1.0.0: - resolution: {integrity: sha512-WyFtKJA3KWSyvuwoQmUHvqYM8PX7ao6rz5WmxCRuiOC6ZeBLrSr6Tw0vCM0ha1MIU0VcK8YlLz+bygdbV1spbA==} - engines: {node: 12.* || 14.* || >= 16} - ember-load-initializers@3.0.1: resolution: {integrity: sha512-qV3vxJKw5+7TVDdtdLPy8PhVsh58MlK8jwzqh5xeOwJPNP7o0+BlhvwoIlLYTPzGaHdfjEIFCgVSyMRGd74E1g==} engines: {node: '>= 18.*'} peerDependencies: ember-source: '>= 5' + ember-modifier@4.2.0: + resolution: {integrity: sha512-BJ48eTEGxD8J7+lofwVmee7xDgNDgpr5dd6+MSu4gk+I6xb35099RMNorXY5hjjwMJEyi/IRR6Yn3M7iJMz8Zw==} + peerDependencies: + ember-source: ^3.24 || >=4.0 + peerDependenciesMeta: + ember-source: + optional: true + ember-page-title@8.2.3: resolution: {integrity: sha512-9XH4EVPCpSCyXRsLPzdDydU4HgQnaVeJJTrRF0WVh5bZERI9DgxuHv1NPmZU28todHRH91KcBc5nx8kIVJmqUw==} engines: {node: 16.* || >= 18} @@ -3792,25 +3648,22 @@ packages: resolution: {integrity: sha512-89oVHVJwmLDvGvAUWgS87KpBoRhy3aZ6U0Ql6HOmU4TrPkyaa8pM0W81wj9cIwjYprcQtN9EwzZMHnq46+oUyw==} engines: {node: 8.* || 10.* || >= 12} - ember-source-channel-url@3.0.0: - resolution: {integrity: sha512-vF/8BraOc66ZxIDo3VuNP7iiDrnXEINclJgSJmqwAAEpg84Zb1DHPI22XTXSDA+E8fW5btPUxu65c3ZXi8AQFA==} - engines: {node: 10.* || 12.* || >= 14} - hasBin: true - ember-source@5.12.0: resolution: {integrity: sha512-2MWlJmQEeeiIk9p5CDMuvD470YPi7/4wXgU41ftbWc9svwF+0usoe4PLoLC0T/jV6YX+3SY5tumQfxLSLoFhmQ==} engines: {node: '>= 18.*'} peerDependencies: '@glimmer/component': ^1.1.2 + ember-source@6.1.0-alpha.1: + resolution: {integrity: sha512-ZG7dRVfSGIE8zrI9WRCv6wp5kKkNHHoG3SG2Dw32xWKxNSiUpWLVio0so3D3/M32S7jG298cAgDborGucj3HwQ==} + engines: {node: '>= 18.*'} + peerDependencies: + '@glimmer/component': ^1.1.2 + ember-template-imports@3.4.2: resolution: {integrity: sha512-OS8TUVG2kQYYwP3netunLVfeijPoOKIs1SvPQRTNOQX4Pu8xGGBEZmrv0U1YTnQn12Eg+p6w/0UdGbUnITjyzw==} engines: {node: 12.* || >= 14} - ember-template-imports@4.1.2: - resolution: {integrity: sha512-6A7s+9QlmKkkpTkI0VGDFqyX+HrAsHQKB32VB/vbj/ITTDN/l/CCtEfvN4/LANKoG5yAvbg6q9wzcOjK9XwmWw==} - engines: {node: 16.* || >= 18} - ember-template-lint@6.0.0: resolution: {integrity: sha512-TWWt/qCd4KoQ50T3We5nCoKcsrAT8Ip79Kmm9eyWjjyL+LAbRFu0z+GxcmW7MR+QCNW/1LQs3kwEdtIcaHEGiA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -3821,13 +3674,9 @@ packages: engines: {node: 12.* || 14.* || >= 16.*} hasBin: true - ember-try-config@4.0.0: - resolution: {integrity: sha512-jAv7fqYJK7QYYekPc/8Nr7KOqDpv/asqM6F8xcRnbmf9UrD35BkSffY63qUuiD9e0aR5qiMNBIQzH8f65rGDqw==} - engines: {node: 10.* || 12.* || >= 14} - - ember-try@3.0.0: - resolution: {integrity: sha512-ZYVKYWMnrHSD3vywo7rV76kPCOC9ATIEnGGG/PEKfCcFE0lB26jltRDnOrhORfLKq0JFp62fFxC/4940U+MwRQ==} - engines: {node: 16.* || >= 18.*} + ember-tracked-storage-polyfill@1.0.0: + resolution: {integrity: sha512-eL7lZat68E6P/D7b9UoTB5bB5Oh/0aju0Z7PCMi3aTwhaydRaxloE7TGrTRYU+NdJuyNVZXeGyxFxn2frvd3TA==} + engines: {node: 12.* || >= 14} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -3903,10 +3752,6 @@ packages: error@7.2.1: resolution: {integrity: sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==} - es-abstract@1.22.3: - resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} - engines: {node: '>= 0.4'} - es-abstract@1.23.3: resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} engines: {node: '>= 0.4'} @@ -3926,10 +3771,6 @@ packages: resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} engines: {node: '>= 0.4'} - es-set-tostringtag@2.0.2: - resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} - engines: {node: '>= 0.4'} - es-set-tostringtag@2.0.3: resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} engines: {node: '>= 0.4'} @@ -3941,9 +3782,15 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} - escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + esbuild@0.17.19: + resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} @@ -3960,6 +3807,11 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + eslint-compat-utils@0.5.1: resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} engines: {node: '>=12'} @@ -4105,6 +3957,10 @@ packages: resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@8.1.0: + resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} @@ -4127,16 +3983,34 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@4.1.0: + resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint@8.57.1: resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} 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. hasBin: true + eslint@9.12.0: + resolution: {integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==} + 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@10.2.0: + resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4151,8 +4025,8 @@ packages: engines: {node: '>=4'} hasBin: true - esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} esrecurse@4.3.0: @@ -4167,9 +4041,6 @@ 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==} @@ -4198,10 +4069,6 @@ packages: resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} engines: {node: '>=6'} - execa@2.1.0: - resolution: {integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==} - engines: {node: ^8.12.0 || >=9.7.0} - execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} @@ -4269,8 +4136,15 @@ packages: resolution: {integrity: sha512-7h9/x25c6AQwdU3mA8MZDUMR3UCy50f237egBrBkuwjnUZSmfu4ptCf91PZSKzON2Uh5VvIHozYKWcPPgcjxIw==} engines: {node: 10.* || >= 12.*} - fastq@1.16.0: - resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + fast-uri@3.0.2: + resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==} + + fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} faye-websocket@0.11.4: resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} @@ -4294,6 +4168,14 @@ packages: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + file-entry-cache@9.1.0: + resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==} + engines: {node: '>=18'} + filesize@10.1.6: resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==} engines: {node: '>= 10.4.0'} @@ -4302,10 +4184,6 @@ packages: resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} engines: {node: '>=0.10.0'} - fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} @@ -4318,25 +4196,16 @@ packages: resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} engines: {node: '>= 0.8'} - find-babel-config@2.0.0: - resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==} - engines: {node: '>=16.0.0'} + find-babel-config@2.1.2: + resolution: {integrity: sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==} find-cache-dir@3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} engines: {node: '>=8'} - find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} - find-index@1.1.1: resolution: {integrity: sha512-XYKutXMrIK99YMUPf91KX5QVJoG31/OsgftD6YoTPAObfQIxM4ziA9f0J1AsqKhJmo+IeaIPP0CFopTD4bdUBw==} - find-up-simple@1.0.0: - resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} - engines: {node: '>=18'} - find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} @@ -4349,10 +4218,6 @@ 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-up@7.0.0: resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} engines: {node: '>=18'} @@ -4379,8 +4244,16 @@ packages: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} - flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flat-cache@5.0.0: + resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==} + engines: {node: '>=18'} + + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} follow-redirects@1.15.9: resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} @@ -4398,10 +4271,14 @@ packages: resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} engines: {node: '>=0.10.0'} - foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} + form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -4435,9 +4312,6 @@ packages: fs-extra@5.0.0: resolution: {integrity: sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==} - fs-extra@6.0.1: - resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==} - fs-extra@7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} @@ -4503,9 +4377,6 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} - get-intrinsic@1.2.4: resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} engines: {node: '>= 0.4'} @@ -4526,10 +4397,6 @@ packages: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} - get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} - get-symbol-description@1.0.2: resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} @@ -4564,9 +4431,8 @@ packages: glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} hasBin: true glob@5.0.15: @@ -4582,14 +4448,26 @@ packages: engines: {node: '>=12'} deprecated: Glob versions prior to v9 are no longer supported + glob@9.3.5: + resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} + engines: {node: '>=16 || 14 >=14.17'} + global-modules@1.0.0: resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} engines: {node: '>=0.10.0'} + global-modules@2.0.0: + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} + global-prefix@1.0.2: resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} engines: {node: '>=0.10.0'} + global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} @@ -4598,14 +4476,14 @@ packages: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + globals@15.10.0: resolution: {integrity: sha512-tqFIbz83w4Y5TCbtgjZjApohbuh7K9BxGYFm7ifwDR240tvdb7P9x+/9VvUKlmkPoiknoJtanI8UOrqxS3a7lQ==} engines: {node: '>=18'} - globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} - globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} @@ -4629,16 +4507,15 @@ packages: resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} engines: {node: '>=18'} + globjoin@0.1.4: + resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} + globrex@0.1.2: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} - graceful-fs@4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} @@ -4671,16 +4548,9 @@ packages: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} - has-property-descriptors@1.0.2: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} - has-proto@1.0.3: resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} engines: {node: '>= 0.4'} @@ -4689,10 +4559,6 @@ packages: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} - has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} - has-tostringtag@1.0.2: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} @@ -4719,10 +4585,6 @@ packages: hash-for-dep@1.5.1: resolution: {integrity: sha512-/dQ/A2cl7FBPI2pO0CANkvuuVi/IFS5oTyJ0PsOb6jW6WbVW1js5qJXMJTNbWHXBIPdFTWFbabjB+mE0d+gelw==} - hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} - engines: {node: '>= 0.4'} - hasown@2.0.2: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} @@ -4762,10 +4624,14 @@ packages: resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hosted-git-info@7.0.1: - resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==} + hosted-git-info@7.0.2: + resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} engines: {node: ^16.14.0 || >=18.0.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'} @@ -4843,10 +4709,6 @@ packages: resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - ignore@5.3.0: - resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} - engines: {node: '>= 4'} - ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} @@ -4863,10 +4725,6 @@ packages: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} - index-to-position@0.1.2: - resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==} - engines: {node: '>=18'} - infer-owner@1.0.4: resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} @@ -4887,6 +4745,10 @@ packages: ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + ini@4.1.3: + resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + inquirer@6.5.2: resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} engines: {node: '>=6.0.0'} @@ -4899,10 +4761,6 @@ packages: resolution: {integrity: sha512-LJKFHCSeIRq9hanN14IlOtPSTe3lNES7TYDTE2xxdAy1LS5rYphajK1qtwvj3YmQXvvk0U2Vbmcni8P9EIQW9w==} engines: {node: '>=18'} - internal-slot@1.0.6: - resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} - engines: {node: '>= 0.4'} - internal-slot@1.0.7: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} @@ -4911,8 +4769,9 @@ packages: resolution: {integrity: sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==} engines: {node: '>=8'} - ip@2.0.0: - resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} @@ -4922,9 +4781,6 @@ packages: resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} engines: {node: '>= 0.10'} - is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} - is-array-buffer@3.0.4: resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} engines: {node: '>= 0.4'} @@ -4949,9 +4805,6 @@ packages: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} - is-core-module@2.15.1: resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} engines: {node: '>= 0.4'} @@ -5019,10 +4872,6 @@ packages: is-language-code@3.1.0: resolution: {integrity: sha512-zJdQ3QTeLye+iphMeK3wks+vXSRFKh68/Pnlw7aOfApFSEIOhYa8P9vwwa6QrImNNBMJTiL1PpYF0f4BxDuEgA==} - is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - is-negative-zero@2.0.3: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} @@ -5066,16 +4915,10 @@ 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-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} - is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} - is-shared-array-buffer@1.0.3: resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} engines: {node: '>= 0.4'} @@ -5103,10 +4946,6 @@ packages: is-type@0.0.1: resolution: {integrity: sha512-YwJh/zBVrcJ90aAnPBM0CbHvm7lG9ao7lIFeqTZ1UQj4iFLpM5CikdaU+dGGesrMJwxLqPGmjjrUrQ6Kn3Zh+w==} - is-typed-array@1.1.12: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} - engines: {node: '>= 0.4'} - is-typed-array@1.1.13: resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} @@ -5142,8 +4981,8 @@ packages: resolution: {integrity: sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==} engines: {node: '>= 18.0.0'} - isbot@3.7.1: - resolution: {integrity: sha512-JfqOaY3O1lcWt2nc+D6Mq231CNpwZrBboLa59Go0J8hjGH+gY/Sy0CA/YLUSIScINmAVwTdJZIsOTk4PfBtRuw==} + isbot@3.8.0: + resolution: {integrity: sha512-vne1mzQUTR+qsMLeCBL9+/tgnDXRyc2pygLGl/WsgA+EZKIiB5Ehu0CiVTHIIk30zhJ24uGz4M5Ppse37aR0Hg==} engines: {node: '>=12'} isexe@2.0.0: @@ -5169,9 +5008,8 @@ packages: resolution: {integrity: sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==} engines: {node: '>=0.12'} - jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} @@ -5195,6 +5033,18 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsdom@16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + jsdom@25.0.1: resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} engines: {node: '>=18'} @@ -5204,18 +5054,11 @@ packages: canvas: optional: true - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} hasBin: true - json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} - json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} @@ -5225,8 +5068,8 @@ packages: json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - json-parse-even-better-errors@3.0.1: - resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==} + json-parse-even-better-errors@3.0.2: + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} json-schema-traverse@0.4.1: @@ -5238,10 +5081,6 @@ packages: json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - json-stable-stringify@1.1.0: - resolution: {integrity: sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA==} - engines: {node: '>= 0.4'} - json-stable-stringify@1.1.1: resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==} engines: {node: '>= 0.4'} @@ -5270,9 +5109,6 @@ packages: jsonify@0.0.1: resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} - keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} - keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} @@ -5288,6 +5124,9 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} + known-css-properties@0.34.0: + resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==} + ky@1.7.2: resolution: {integrity: sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==} engines: {node: '>=18'} @@ -5338,9 +5177,6 @@ packages: loader.js@4.7.0: resolution: {integrity: sha512-9M2KvGT6duzGMgkOcTkWb+PR/Q2Oe54df/tLgHGVmFpAmtqJ553xJh6N63iFYI2yjo2PeJXbS5skHi/QpJq4vA==} - locate-character@2.0.5: - resolution: {integrity: sha512-n2GmejDXtOPBAZdIiEFy5dJ5N38xBCXLNOtw2WpB9kGh6pnrEuKlwYI+Tkpofc4wDtVXHtoAOJaMRlYG/oYaxg==} - locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} @@ -5366,9 +5202,6 @@ packages: 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==} @@ -5390,20 +5223,14 @@ packages: 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==} lodash.omit@4.5.0: resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==} - lodash.template@4.5.0: - resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} - - lodash.templatesettings@4.2.0: - resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} @@ -5422,18 +5249,6 @@ packages: lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} - - lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - - lru-cache@10.1.0: - resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} - engines: {node: 14 || >=16.14} - lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} @@ -5448,15 +5263,11 @@ packages: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} - magic-string@0.24.1: - resolution: {integrity: sha512-YBfNxbJiixMzxW40XqJEIldzHyh5f7CZKalo1uZffevyrPEX8Qgo9s0dmcORLHdV47UyvJg8/zD+6hQG3qvJrA==} - magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - magic-string@0.30.5: - resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} - engines: {node: '>=12'} + magic-string@0.30.11: + resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} @@ -5508,8 +5319,8 @@ packages: resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} engines: {node: 6.* || 8.* || >= 10.*} - mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + 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==} @@ -5532,6 +5343,10 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} + meow@13.2.0: + resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} + engines: {node: '>=18'} + merge-descriptors@1.0.3: resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} @@ -5553,10 +5368,6 @@ packages: resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} engines: {node: '>=0.10.0'} - micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - micromatch@4.0.8: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} @@ -5586,10 +5397,6 @@ packages: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} - mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - mini-css-extract-plugin@2.9.1: resolution: {integrity: sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==} engines: {node: '>= 12.13.0'} @@ -5607,6 +5414,10 @@ packages: resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} engines: {node: '>=10'} + minimatch@8.0.4: + resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} + engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} @@ -5641,12 +5452,16 @@ packages: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} + minipass@4.2.8: + resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + engines: {node: '>=8'} + minipass@5.0.0: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} - minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} minizlib@2.1.2: @@ -5686,9 +5501,6 @@ packages: ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -5750,15 +5562,9 @@ packages: 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.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - node-releases@2.0.18: resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} @@ -5773,8 +5579,8 @@ packages: normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - normalize-package-data@6.0.0: - resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==} + normalize-package-data@6.0.2: + resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} engines: {node: ^16.14.0 || >=18.0.0} normalize-path@2.1.1: @@ -5785,10 +5591,6 @@ packages: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} - normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} - npm-bundled@2.0.1: resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -5809,8 +5611,8 @@ packages: resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - npm-package-arg@11.0.1: - resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} + npm-package-arg@11.0.3: + resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==} engines: {node: ^16.14.0 || >=18.0.0} npm-packlist@5.1.3: @@ -5818,8 +5620,8 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true - npm-pick-manifest@9.0.0: - resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==} + npm-pick-manifest@9.1.0: + resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==} engines: {node: ^16.14.0 || >=18.0.0} npm-run-all@4.1.5: @@ -5831,10 +5633,6 @@ packages: resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} engines: {node: '>=4'} - npm-run-path@3.1.0: - resolution: {integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==} - engines: {node: '>=8'} - npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -5859,9 +5657,6 @@ packages: resolution: {integrity: sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==} engines: {node: '>= 0.10.0'} - object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - object-inspect@1.13.2: resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} engines: {node: '>= 0.4'} @@ -5921,8 +5716,8 @@ packages: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} ora@3.4.0: @@ -5941,10 +5736,6 @@ packages: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} - p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} - p-defer@1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} engines: {node: '>=4'} @@ -5957,10 +5748,6 @@ packages: resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} - p-finally@2.0.1: - resolution: {integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==} - engines: {node: '>=8'} - p-is-promise@2.1.0: resolution: {integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==} engines: {node: '>=6'} @@ -6005,14 +5792,13 @@ 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==} + package-json@10.0.1: resolution: {integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==} engines: {node: '>=18'} - package-json@6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} - parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -6028,14 +5814,6 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} - parse-json@8.1.0: - resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==} - engines: {node: '>=18'} - - parse-ms@1.0.1: - resolution: {integrity: sha512-LpH1Cf5EYuVjkBvCDBYvkUPh+iv2bk3FHflxHkpCYT0/FZ1d3N3uJaLiHr4yGuMcFUhv6eAivitTvWZI4B/chg==} - engines: {node: '>=0.10.0'} - parse-passwd@1.0.0: resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} engines: {node: '>=0.10.0'} @@ -6063,6 +5841,9 @@ packages: resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} engines: {node: '>=0.10.0'} + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} @@ -6101,9 +5882,9 @@ packages: resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} engines: {node: '>=0.10.0'} - path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} path-to-regexp@0.1.10: resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==} @@ -6140,10 +5921,6 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} - pkg-entry-points@1.1.0: resolution: {integrity: sha512-9vL2T/he5Kb97GVY+V3Ih4jCC1lF3PQGIDUJIUqKM4Q6twmhrUSAa0OFj+kb8IEs4wYzEgB6kcc4oYy21kZnQw==} @@ -6163,20 +5940,20 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - postcss-modules-extract-imports@3.0.0: - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 - postcss-modules-local-by-default@4.0.3: - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} + postcss-modules-local-by-default@4.0.5: + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 - postcss-modules-scope@3.1.0: - resolution: {integrity: sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==} + postcss-modules-scope@3.2.0: + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 @@ -6187,25 +5964,30 @@ packages: peerDependencies: postcss: ^8.1.0 - postcss-selector-parser@6.0.14: - resolution: {integrity: sha512-65xXYsT40i9GyWzlHQ5ShZoK7JZdySeOozi/tz2EezDo6c04q6+ckYMeoY7idaie1qp2dT5KoYQ2yky6JuoHnA==} + postcss-resolve-nested-selector@0.1.6: + resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==} + + postcss-safe-parser@7.0.1: + resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==} + engines: {node: '>=18.0'} + peerDependencies: + postcss: ^8.4.31 + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} engines: {node: '>=4'} postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.32: - resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} + postcss@8.4.47: + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} - prettier-linter-helpers@1.0.0: resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} engines: {node: '>=6.0.0'} @@ -6226,10 +6008,6 @@ packages: engines: {node: '>=14'} hasBin: true - pretty-ms@3.2.0: - resolution: {integrity: sha512-ZypexbfVUGTFxb0v+m1bUyy92DHe5SyYlnyY0msyms5zd3RwyvNgyxZZsXXgoyzlxjx5MiqtXUdhUfvQbe0A2Q==} - engines: {node: '>=4'} - printf@0.6.1: resolution: {integrity: sha512-is0ctgGdPJ5951KulgfzvHGwJtZ5ck8l042vRkV6jrkpBzTmb/lueTqguWHy2JfVA+RY6gFVlaZgUS0j7S/dsw==} engines: {node: '>= 0.9.0'} @@ -6242,6 +6020,10 @@ packages: resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + proc-log@4.2.0: + resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} @@ -6279,13 +6061,16 @@ packages: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} + psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + publint@0.2.11: resolution: {integrity: sha512-/kxbd+sD/uEG515N/ZYpC6gYs8h89cQ4UIsAq1y6VT4qlNh8xmiSwcP2xU2MbzXFl8J0l2IdONKFweLfYoqhcA==} engines: {node: '>=16'} hasBin: true - pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} @@ -6295,6 +6080,9 @@ packages: resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -6331,18 +6119,10 @@ packages: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true - read-package-up@11.0.0: - resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==} - engines: {node: '>=18'} - read-pkg@3.0.0: resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} engines: {node: '>=4'} - read-pkg@9.0.1: - resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==} - engines: {node: '>=18'} - readable-stream@1.0.34: resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} @@ -6357,10 +6137,6 @@ packages: redeyed@1.0.1: resolution: {integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ==} - regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} - regenerate-unicode-properties@10.2.0: resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} engines: {node: '>=4'} @@ -6381,10 +6157,6 @@ packages: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} engines: {node: '>=0.10.0'} - regexp.prototype.flags@1.5.1: - resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} - engines: {node: '>= 0.4'} - regexp.prototype.flags@1.5.3: resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} @@ -6393,26 +6165,14 @@ packages: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} - regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} - regexpu-core@6.1.1: resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==} engines: {node: '>=4'} - registry-auth-token@4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} - registry-auth-token@5.0.2: resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} engines: {node: '>=14'} - registry-url@5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} - registry-url@6.0.1: resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} engines: {node: '>=12'} @@ -6424,18 +6184,10 @@ packages: resolution: {integrity: sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==} hasBin: true - regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - release-plan@0.9.2: resolution: {integrity: sha512-KSK81V5vPNeKgRcfQftG1DL/ZAX7V+NNp/Y/LNIbYrCUs6AmgLioThz71O2AcDTCwndyEanq1VjuF4oJmpAJXg==} hasBin: true - remote-git-tags@3.0.0: - resolution: {integrity: sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==} - engines: {node: '>=8'} - remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} @@ -6450,6 +6202,9 @@ packages: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} + request-light@0.7.0: + resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} + require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} @@ -6458,9 +6213,6 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - require-relative@0.8.7: - resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==} - requireindex@1.2.0: resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} engines: {node: '>=0.10.5'} @@ -6479,6 +6231,10 @@ packages: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + resolve-package-path@1.2.7: resolution: {integrity: sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q==} @@ -6501,13 +6257,14 @@ packages: resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated + resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} + resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true - responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} - restore-cursor@2.0.0: resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} engines: {node: '>=4'} @@ -6548,9 +6305,11 @@ packages: peerDependencies: rollup: '>=1.1.2' - rollup-plugin-delete@2.0.0: - resolution: {integrity: sha512-/VpLMtDy+8wwRlDANuYmDa9ss/knGsAgrDhM+tEwB1npHwNu4DYNmDfUL55csse/GHs9Q+SMT/rw9uiaZ3pnzA==} + rollup-plugin-delete@2.1.0: + resolution: {integrity: sha512-TEbqJd7giLvzQDTu4jSPufwhTJs/iYVN2LfR/YIYkqjC/oZ0/h9Q0AeljifIhzBzJYZtHQTWKEbMms5fbh54pw==} engines: {node: '>=10'} + peerDependencies: + rollup: '*' rollup-plugin-ts@3.4.5: resolution: {integrity: sha512-9iCstRJpEZXSRQuXitlSZAzcGlrqTbJg1pE4CMbEi6xYldxVncdPyzA2I+j6vnh73wBymZckerS+Q/iEE/M3Ow==} @@ -6582,13 +6341,6 @@ packages: '@swc/helpers': optional: true - rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - - rollup@0.57.1: - resolution: {integrity: sha512-I18GBqP0qJoJC1K1osYjreqA8VAKovxuI3I81RSk0Dmr4TgloI0tAULjZaox8OsJ+n7XRrhH6i0G2By/pj1LCA==} - hasBin: true - rollup@4.24.0: resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -6640,10 +6392,6 @@ packages: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} engines: {node: '>=6'} - safe-array-concat@1.0.1: - resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} - engines: {node: '>=0.4'} - safe-array-concat@1.1.2: resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} engines: {node: '>=0.4'} @@ -6657,9 +6405,6 @@ packages: safe-json-parse@1.0.1: resolution: {integrity: sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==} - safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} - safe-regex-test@1.0.3: resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} @@ -6685,6 +6430,10 @@ packages: engines: {node: 10.* || >= 12.*} hasBin: true + saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} + saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} @@ -6709,16 +6458,15 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - semver@7.6.3: resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} hasBin: true + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + send@0.19.0: resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} @@ -6733,18 +6481,10 @@ packages: set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-function-length@1.1.1: - resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} - engines: {node: '>= 0.4'} - set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} - set-function-name@2.0.1: - resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} - engines: {node: '>= 0.4'} - set-function-name@2.0.2: resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} engines: {node: '>= 0.4'} @@ -6781,9 +6521,6 @@ packages: shellwords@0.1.1: resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} - side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} @@ -6813,6 +6550,10 @@ packages: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} + slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} @@ -6847,9 +6588,9 @@ packages: resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} engines: {node: '>= 10'} - socks@2.7.1: - resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} sort-object-keys@1.1.3: resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} @@ -6858,10 +6599,6 @@ packages: resolution: {integrity: sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==} hasBin: true - source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -6903,14 +6640,14 @@ packages: spdx-correct@3.2.0: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - spdx-license-ids@3.0.16: - resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + spdx-license-ids@3.0.20: + resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} split-string@3.1.0: resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} @@ -6957,34 +6694,21 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} - string.prototype.matchall@4.0.10: - resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} - string.prototype.matchall@4.0.11: resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} engines: {node: '>= 0.4'} - string.prototype.padend@3.1.5: - resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} - engines: {node: '>= 0.4'} - - string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} engines: {node: '>= 0.4'} string.prototype.trim@1.2.9: resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} engines: {node: '>= 0.4'} - string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} - string.prototype.trimend@1.0.8: resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} - string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} - string.prototype.trimstart@1.0.8: resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} engines: {node: '>= 0.4'} @@ -7015,6 +6739,10 @@ packages: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + strip-eof@1.0.0: resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} engines: {node: '>=0.10.0'} @@ -7040,6 +6768,30 @@ packages: styled_string@0.0.1: resolution: {integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA==} + stylelint-config-recommended@14.0.1: + resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==} + engines: {node: '>=18.12.0'} + peerDependencies: + stylelint: ^16.1.0 + + stylelint-config-standard@36.0.1: + resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==} + engines: {node: '>=18.12.0'} + peerDependencies: + stylelint: ^16.1.0 + + stylelint-prettier@5.0.2: + resolution: {integrity: sha512-qJ+BN+1T2ZcKz9WIrv0x+eFGHzSUnXfXd5gL///T6XoJvr3D8/ztzz2fhtmXef7Vb8P33zBXmLTTveByr0nwBw==} + engines: {node: '>=18.12.0'} + peerDependencies: + prettier: '>=3.0.0' + stylelint: '>=16.0.0' + + stylelint@16.9.0: + resolution: {integrity: sha512-31Nm3WjxGOBGpQqF43o3wO9L5AC36TPIe6030Lnm13H3vDMTcS21DrLh69bMX+DBilKqMMVLian4iG6ybBoNRQ==} + engines: {node: '>=18.12.0'} + hasBin: true + supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -7060,6 +6812,9 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} + svg-tags@1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -7077,6 +6832,10 @@ packages: resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} engines: {node: ^14.18.0 || >=16.0.0} + table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} + tap-parser@7.0.0: resolution: {integrity: sha512-05G8/LrzqOOFvZhhAk32wsGiPZ1lfUrl+iV7+OkKgfofZxiceZWMHkKmow71YsyVQ8IvGBP2EjcIjE5gL4l5lA==} hasBin: true @@ -7085,8 +6844,8 @@ packages: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - tar@6.2.0: - resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} temp@0.9.4: @@ -7133,22 +6892,12 @@ packages: thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} - thread-loader@3.0.4: - resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.27.0 || ^5.0.0 - through2@3.0.2: resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==} 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==} @@ -7189,10 +6938,6 @@ packages: resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} engines: {node: '>=0.10.0'} - to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} - to-regex-range@2.1.1: resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} engines: {node: '>=0.10.0'} @@ -7209,6 +6954,10 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + tough-cookie@5.0.0: resolution: {integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==} engines: {node: '>=16'} @@ -7216,10 +6965,17 @@ packages: tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} + tr46@5.0.0: resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} engines: {node: '>=18'} + tracked-built-ins@3.3.0: + resolution: {integrity: sha512-ewKFrW/AQs05oLPM5isOUb/1aOwBRfHfmF408CCzTk21FLAhKrKVOP5Q5ebX+zCT4kvg81PGBGwrBiEGND1nWA==} + tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true @@ -7249,9 +7005,6 @@ packages: tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - tslib@2.7.0: resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} @@ -7271,41 +7024,22 @@ packages: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} - type-fest@4.26.1: - resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} - engines: {node: '>=16'} - type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} - typed-array-buffer@1.0.0: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} - engines: {node: '>= 0.4'} - typed-array-buffer@1.0.2: resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} engines: {node: '>= 0.4'} - typed-array-byte-length@1.0.0: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} - engines: {node: '>= 0.4'} - typed-array-byte-length@1.0.1: resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} engines: {node: '>= 0.4'} - typed-array-byte-offset@1.0.0: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} - engines: {node: '>= 0.4'} - typed-array-byte-offset@1.0.2: resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} engines: {node: '>= 0.4'} - typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} - typed-array-length@1.0.6: resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} engines: {node: '>= 0.4'} @@ -7313,6 +7047,21 @@ packages: typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + typesafe-path@0.2.2: + resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} + + typescript-auto-import-cache@0.3.3: + resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} + + typescript-eslint@8.8.0: + resolution: {integrity: sha512-BjIT/VwJ8+0rVO01ZQ2ZVnjE1svFBiRczcpr1t1Yxt7sT25VSbPfrJtDsQ8uQTy2pilX5nI9gwxhUyLULNentw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + typescript-memoize@1.1.1: resolution: {integrity: sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA==} @@ -7326,8 +7075,14 @@ packages: engines: {node: '>=14.17'} hasBin: true - ua-parser-js@1.0.37: - resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} + typescript@5.6.2: + resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} + engines: {node: '>=14.17'} + hasBin: true + + ua-parser-js@1.0.39: + resolution: {integrity: sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==} + hasBin: true uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} @@ -7346,14 +7101,11 @@ packages: underscore@1.13.7: resolution: {integrity: sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} unicode-emoji-modifier-base@1.0.0: @@ -7364,10 +7116,6 @@ packages: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} engines: {node: '>=4'} - unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - unicode-match-property-value-ecmascript@2.2.0: resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} engines: {node: '>=4'} @@ -7401,6 +7149,10 @@ packages: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + universalify@2.0.1: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} @@ -7417,12 +7169,6 @@ packages: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} - update-browserslist-db@1.0.13: - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - update-browserslist-db@1.1.1: resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true @@ -7436,9 +7182,8 @@ packages: resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated - url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} use@3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} @@ -7475,27 +7220,63 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} + vite@5.4.8: + resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + volar-service-typescript@0.0.62: + resolution: {integrity: sha512-p7MPi71q7KOsH0eAbZwPBiKPp9B2+qrdHAd6VY5oTo9BUXatsOAdakTm9Yf0DUj6uWBAaOT01BSeVOPwucMV1g==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + vscode-json-languageservice@4.2.1: resolution: {integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==} - vscode-jsonrpc@8.1.0: - resolution: {integrity: sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==} + vscode-jsonrpc@8.2.0: + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} engines: {node: '>=14.0.0'} - vscode-languageserver-protocol@3.17.3: - resolution: {integrity: sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==} + vscode-languageserver-protocol@3.17.5: + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} vscode-languageserver-textdocument@1.0.12: resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} - vscode-languageserver-types@3.17.3: - resolution: {integrity: sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==} - vscode-languageserver-types@3.17.5: resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} - vscode-languageserver@8.1.0: - resolution: {integrity: sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==} + vscode-languageserver@9.0.1: + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} hasBin: true vscode-nls@5.2.0: @@ -7504,6 +7285,14 @@ packages: vscode-uri@3.0.8: resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. + + w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} + w3c-xmlserializer@5.0.0: resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} engines: {node: '>=18'} @@ -7539,6 +7328,14 @@ packages: webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + + webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + webidl-conversions@7.0.0: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} engines: {node: '>=12'} @@ -7565,12 +7362,15 @@ packages: resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} engines: {node: '>=0.8.0'} + whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + whatwg-encoding@3.1.1: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} - whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} whatwg-mimetype@4.0.0: resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} @@ -7583,13 +7383,13 @@ packages: whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} + which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - which-typed-array@1.1.13: - resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} - engines: {node: '>= 0.4'} - which-typed-array@1.1.15: resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} @@ -7611,6 +7411,10 @@ packages: 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'} + wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} @@ -7635,6 +7439,22 @@ packages: write-file-atomic@3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + write-file-atomic@5.0.1: + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + ws@8.17.1: resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} engines: {node: '>=10.0.0'} @@ -7663,6 +7483,9 @@ packages: resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} engines: {node: '>=8'} + xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + xml-name-validator@5.0.0: resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} engines: {node: '>=18'} @@ -7707,8 +7530,8 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} yoctocolors-cjs@2.1.2: @@ -7717,8 +7540,6 @@ packages: snapshots: - '@aashutoshrathi/word-wrap@1.2.6': {} - '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.5 @@ -7730,7 +7551,7 @@ snapshots: dependencies: '@arethetypeswrong/core': 0.16.4 chalk: 4.1.2 - cli-table3: 0.6.3 + cli-table3: 0.6.5 commander: 10.0.1 marked: 9.1.6 marked-terminal: 7.1.0(marked@9.1.6) @@ -7746,34 +7567,27 @@ snapshots: typescript: 5.6.1-rc validate-npm-package-name: 5.0.1 - '@babel/code-frame@7.23.5': - dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - '@babel/code-frame@7.25.7': dependencies: '@babel/highlight': 7.25.7 picocolors: 1.1.0 - '@babel/compat-data@7.23.5': {} - '@babel/compat-data@7.25.7': {} - '@babel/core@7.25.7(supports-color@8.1.1)': + '@babel/core@7.25.7': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.25.7 '@babel/generator': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) '@babel/helpers': 7.25.7 '@babel/parser': 7.25.7 '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -7782,12 +7596,20 @@ snapshots: '@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.57.1 eslint-visitor-keys: 2.1.0 semver: 6.3.1 + '@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@9.12.0)': + dependencies: + '@babel/core': 7.25.7 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 + eslint: 9.12.0 + eslint-visitor-keys: 2.1.0 + semver: 6.3.1 + '@babel/generator@7.25.7': dependencies: '@babel/types': 7.25.7 @@ -7799,25 +7621,13 @@ snapshots: dependencies: '@babel/types': 7.25.7 - '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': - dependencies: - '@babel/types': 7.25.7 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7(supports-color@8.1.1)': + '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7': dependencies: - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-compilation-targets@7.23.6': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.25.7 - browserslist: 4.22.2 - lru-cache: 5.1.1 - semver: 6.3.1 - '@babel/helper-compilation-targets@7.25.7': dependencies: '@babel/compat-data': 7.25.7 @@ -7826,174 +7636,109 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-member-expression-to-functions': 7.25.7(supports-color@8.1.1) + '@babel/helper-member-expression-to-functions': 7.25.7 '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/traverse': 7.25.7 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-annotate-as-pure': 7.25.7 - regexpu-core: 5.3.2 - semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 regexpu-core: 6.1.1 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - debug: 4.3.7(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@babel/helper-environment-visitor@7.22.20': {} - - '@babel/helper-function-name@7.23.0': - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.25.7 - - '@babel/helper-hoist-variables@7.22.5': - dependencies: - '@babel/types': 7.25.7 - - '@babel/helper-member-expression-to-functions@7.23.0': - dependencies: - '@babel/types': 7.25.7 - - '@babel/helper-member-expression-to-functions@7.25.7(supports-color@8.1.1)': + '@babel/helper-member-expression-to-functions@7.25.7': dependencies: - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-module-imports@7.25.7(supports-color@8.1.1)': + '@babel/helper-module-imports@7.25.7': dependencies: - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) - '@babel/helper-simple-access': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-simple-access': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-optimise-call-expression@7.22.5': - dependencies: - '@babel/types': 7.25.7 - '@babel/helper-optimise-call-expression@7.25.7': dependencies: '@babel/types': 7.25.7 '@babel/helper-plugin-utils@7.25.7': {} - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - - '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-wrap-function': 7.25.7(supports-color@8.1.1) - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/helper-wrap-function': 7.25.7 + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.22.20(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - - '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-member-expression-to-functions': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-member-expression-to-functions': 7.25.7 '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-simple-access@7.25.7(supports-color@8.1.1)': + '@babel/helper-simple-access@7.25.7': dependencies: - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.25.7(supports-color@8.1.1)': + '@babel/helper-skip-transparent-expression-wrappers@7.25.7': dependencies: - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/helper-split-export-declaration@7.22.6': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-string-parser@7.23.4': {} - '@babel/helper-string-parser@7.25.7': {} - '@babel/helper-validator-identifier@7.22.20': {} - '@babel/helper-validator-identifier@7.25.7': {} '@babel/helper-validator-option@7.25.7': {} - '@babel/helper-wrap-function@7.22.20': - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.25.7 - '@babel/types': 7.25.7 - - '@babel/helper-wrap-function@7.25.7(supports-color@8.1.1)': + '@babel/helper-wrap-function@7.25.7': dependencies: '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color @@ -8003,106 +7748,64 @@ snapshots: '@babel/template': 7.25.7 '@babel/types': 7.25.7 - '@babel/highlight@7.23.4': - dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - '@babel/highlight@7.25.7': dependencies: - '@babel/helper-validator-identifier': 7.25.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.0 - - '@babel/parser@7.23.6': - dependencies: - '@babel/types': 7.25.7 - - '@babel/parser@7.25.7': - dependencies: - '@babel/types': 7.25.7 - - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.1.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.7)': + '@babel/parser@7.25.7': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 + '@babel/types': 7.25.7 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.25.7)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.25.7) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.25.7)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-environment-visitor': 7.22.20 + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.7)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-decorators@7.23.6(@babel/core@7.25.7)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: @@ -8110,21 +7813,21 @@ snapshots: '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) transitivePeerDependencies: @@ -8132,903 +7835,474 @@ snapshots: '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-environment-visitor': 7.22.20 + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) - '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) - '@babel/traverse': 7.25.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.7) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.25.7)': + '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.23.5(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) + '@babel/traverse': 7.25.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/template': 7.25.7 - '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/template': 7.25.7 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.7) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-simple-access': 7.25.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.25.7)': + '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 + '@babel/helper-simple-access': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.25.7)': + '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.25.7)': + '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-runtime@7.23.6(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.25.7) - babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.25.7) - babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.25.7) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7)(supports-color@8.1.1) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7)(supports-color@8.1.1) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7)(supports-color@8.1.1) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.25.7)': + '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7(supports-color@8.1.1) - '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-typescript@7.5.5(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.7) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.7)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/preset-env@7.23.6(@babel/core@7.25.7)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-validator-option': 7.25.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.7) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.25.7) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.25.7) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.25.7) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.25.7) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.7) - babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.25.7) - babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.25.7) - babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.25.7) - core-js-compat: 3.34.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 - '@babel/preset-env@7.25.7(@babel/core@7.25.7)(supports-color@8.1.1)': + '@babel/preset-env@7.25.7(@babel/core@7.25.7)': dependencies: '@babel/compat-data': 7.25.7 - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-validator-option': 7.25.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.7) '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.7) '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.7) '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7) @@ -9049,47 +8323,47 @@ snapshots: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.7) '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.7) @@ -9098,9 +8372,9 @@ snapshots: '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.7) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.7) - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7)(supports-color@8.1.1) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7)(supports-color@8.1.1) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7)(supports-color@8.1.1) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7) core-js-compat: 3.38.1 semver: 6.3.1 transitivePeerDependencies: @@ -9108,66 +8382,48 @@ snapshots: '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/types': 7.25.7 esutils: 2.0.3 '@babel/preset-typescript@7.25.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-validator-option': 7.25.7 '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/regjsgen@0.8.0': {} - '@babel/runtime@7.12.18': dependencies: regenerator-runtime: 0.13.11 - '@babel/runtime@7.23.6': - dependencies: - regenerator-runtime: 0.14.1 - '@babel/runtime@7.25.7': dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.22.15': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.6 - '@babel/types': 7.25.7 - '@babel/template@7.25.7': dependencies: '@babel/code-frame': 7.25.7 '@babel/parser': 7.25.7 '@babel/types': 7.25.7 - '@babel/traverse@7.25.7(supports-color@8.1.1)': + '@babel/traverse@7.25.7': dependencies: '@babel/code-frame': 7.25.7 '@babel/generator': 7.25.7 '@babel/parser': 7.25.7 '@babel/template': 7.25.7 '@babel/types': 7.25.7 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.23.6': - dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - '@babel/types@7.25.7': dependencies: '@babel/helper-string-parser': 7.25.7 @@ -9182,6 +8438,23 @@ snapshots: '@colors/colors@1.5.0': optional: true + '@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)': + dependencies: + '@csstools/css-tokenizer': 3.0.1 + + '@csstools/css-tokenizer@3.0.1': {} + + '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)': + dependencies: + '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) + '@csstools/css-tokenizer': 3.0.1 + + '@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)': + dependencies: + postcss-selector-parser: 6.1.2 + + '@dual-bundle/import-meta-resolve@4.1.0': {} + '@ember-data/rfc395-data@0.0.4': {} '@ember/edition-utils@1.2.0': {} @@ -9199,15 +8472,15 @@ snapshots: '@ember/string@4.0.0': {} - '@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))': + '@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))': dependencies: '@ember/test-waiters': 3.1.0(@babel/core@7.25.7) '@embroider/addon-shim': 1.8.9 - '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) '@simple-dom/interface': 1.4.0 decorator-transforms: 2.2.2(@babel/core@7.25.7) dom-element-descriptors: 0.5.1 - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - '@babel/core' - '@glint/template' @@ -9223,15 +8496,15 @@ snapshots: - '@babel/core' - supports-color - '@embroider/addon-dev@5.0.0(@glint/template@1.4.0)(rollup@4.24.0)': + '@embroider/addon-dev@5.0.0(@glint/template@1.4.1-unstable.b29a807)(rollup@4.24.0)': dependencies: - '@embroider/core': 3.4.17(@glint/template@1.4.0) + '@embroider/core': 3.4.17(@glint/template@1.4.1-unstable.b29a807) '@rollup/pluginutils': 4.2.1 content-tag: 2.0.2 fs-extra: 10.1.0 minimatch: 3.1.2 rollup-plugin-copy-assets: 2.0.3(rollup@4.24.0) - rollup-plugin-delete: 2.0.0 + rollup-plugin-delete: 2.1.0(rollup@4.24.0) walk-sync: 3.0.0 yargs: 17.7.2 optionalDependencies: @@ -9245,38 +8518,30 @@ snapshots: '@embroider/addon-shim@1.8.9': dependencies: - '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) + '@embroider/shared-internals': 2.7.0 broccoli-funnel: 3.0.8 common-ancestor-path: 1.0.1 semver: 7.6.3 transitivePeerDependencies: - supports-color - '@embroider/babel-loader-9@3.1.1(@embroider/core@3.4.17(@glint/template@1.4.0))(supports-color@8.1.1)(webpack@5.95.0)': - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@embroider/core': 3.4.17(@glint/template@1.4.0) - babel-loader: 9.2.1(@babel/core@7.25.7)(webpack@5.95.0) - transitivePeerDependencies: - - supports-color - - webpack - - '@embroider/compat@3.6.2(@embroider/core@3.4.17(@glint/template@1.4.0))(@glint/template@1.4.0)': + '@embroider/compat@3.6.2-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807)': dependencies: '@babel/code-frame': 7.25.7 - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.7) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.7) - '@babel/preset-env': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/preset-env': 7.25.7(@babel/core@7.25.7) '@babel/runtime': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) - '@embroider/core': 3.4.17(@glint/template@1.4.0) - '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) + '@babel/traverse': 7.25.7 + '@embroider/core': 3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807) + '@embroider/macros': 1.16.7-unstable.89d7d7f(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) '@types/babel__code-frame': 7.0.6 '@types/yargs': 17.0.33 assert-never: 1.3.0 babel-import-util: 2.1.1 + babel-plugin-debug-macros: 1.0.2(@babel/core@7.25.7) babel-plugin-ember-template-compilation: 2.3.0 babel-plugin-syntax-dynamic-import: 6.18.0 babylon: 6.18.0 @@ -9290,16 +8555,16 @@ snapshots: broccoli-plugin: 4.0.7 broccoli-source: 3.0.1 chalk: 4.1.2 - debug: 4.3.7(supports-color@8.1.1) - escape-string-regexp: 4.0.0 + debug: 4.3.7 fast-sourcemap-concat: 2.1.1 fs-extra: 9.1.0 fs-tree-diff: 2.0.1 - jsdom: 25.0.1(supports-color@8.1.1) + jsdom: 16.7.0 lodash: 4.17.21 pkg-up: 3.1.0 resolve: 1.22.8 resolve-package-path: 4.0.3 + resolve.exports: 2.0.2 semver: 7.6.3 symlink-or-copy: 1.3.1 tree-sync: 2.1.0 @@ -9313,27 +8578,64 @@ snapshots: - supports-color - utf-8-validate - '@embroider/core@3.4.17(@glint/template@1.4.0)': + '@embroider/config-meta-loader@0.0.1-unstable.89d7d7f': {} + + '@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807)': + dependencies: + '@babel/core': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/traverse': 7.25.7 + '@embroider/macros': 1.16.7-unstable.89d7d7f(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) + '@embroider/reverse-exports': 0.1.1-unstable.89d7d7f + '@embroider/shared-internals': 2.6.4-unstable.89d7d7f + assert-never: 1.3.0 + babel-plugin-ember-template-compilation: 2.3.0 + broccoli-node-api: 1.7.0 + broccoli-persistent-filter: 3.1.3 + broccoli-plugin: 4.0.7 + broccoli-source: 3.0.1 + debug: 4.3.7 + 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.8 + js-string-escape: 1.0.1 + jsdom: 16.7.0 + lodash: 4.17.21 + resolve: 1.22.8 + resolve-package-path: 4.0.3 + resolve.exports: 2.0.2 + typescript-memoize: 1.1.1 + walk-sync: 3.0.0 + transitivePeerDependencies: + - '@glint/template' + - bufferutil + - canvas + - supports-color + - utf-8-validate + + '@embroider/core@3.4.17(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/parser': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) - '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) - '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) + '@babel/traverse': 7.25.7 + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) + '@embroider/shared-internals': 2.7.0 assert-never: 1.3.0 babel-plugin-ember-template-compilation: 2.3.0 broccoli-node-api: 1.7.0 broccoli-persistent-filter: 3.1.3 broccoli-plugin: 4.0.7 broccoli-source: 3.0.1 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 fast-sourcemap-concat: 2.1.1 filesize: 10.1.6 fs-extra: 9.1.0 fs-tree-diff: 2.0.1 handlebars: 4.7.8 js-string-escape: 1.0.1 - jsdom: 25.0.1(supports-color@8.1.1) + jsdom: 25.0.1 lodash: 4.17.21 resolve: 1.22.8 resolve-package-path: 4.0.3 @@ -9347,14 +8649,25 @@ snapshots: - supports-color - utf-8-validate - '@embroider/hbs-loader@3.0.3(@embroider/core@3.4.17(@glint/template@1.4.0))(webpack@5.95.0)': + '@embroider/macros@1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@embroider/core': 3.4.17(@glint/template@1.4.0) - webpack: 5.95.0 + '@embroider/shared-internals': 2.7.0 + assert-never: 1.3.0 + babel-import-util: 2.1.1 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) + find-up: 5.0.0 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 7.6.3 + optionalDependencies: + '@glint/template': 1.4.1-unstable.b29a807 + transitivePeerDependencies: + - '@babel/core' + - supports-color - '@embroider/macros@1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0)': + '@embroider/macros@1.16.7-unstable.89d7d7f(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) + '@embroider/shared-internals': 2.6.4-unstable.89d7d7f assert-never: 1.3.0 babel-import-util: 2.1.1 ember-cli-babel: 8.2.0(@babel/core@7.25.7) @@ -9363,68 +8676,244 @@ snapshots: resolve: 1.22.8 semver: 7.6.3 optionalDependencies: - '@glint/template': 1.4.0 + '@glint/template': 1.4.1-unstable.b29a807 transitivePeerDependencies: - '@babel/core' - supports-color - '@embroider/shared-internals@2.7.0(supports-color@8.1.1)': + '@embroider/reverse-exports@0.1.1-unstable.89d7d7f': + dependencies: + resolve.exports: 2.0.2 + + '@embroider/shared-internals@2.6.4-unstable.89d7d7f': dependencies: babel-import-util: 2.1.1 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 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 resolve-package-path: 4.0.3 + resolve.exports: 2.0.2 semver: 7.6.3 typescript-memoize: 1.1.1 transitivePeerDependencies: - supports-color - '@embroider/webpack@4.0.6(@embroider/core@3.4.17(@glint/template@1.4.0))(webpack@5.95.0)': + '@embroider/shared-internals@2.7.0': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/preset-env': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@embroider/babel-loader-9': 3.1.1(@embroider/core@3.4.17(@glint/template@1.4.0))(supports-color@8.1.1)(webpack@5.95.0) - '@embroider/core': 3.4.17(@glint/template@1.4.0) - '@embroider/hbs-loader': 3.0.3(@embroider/core@3.4.17(@glint/template@1.4.0))(webpack@5.95.0) - '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) - '@types/supports-color': 8.1.3 - assert-never: 1.3.0 - babel-loader: 8.4.1(@babel/core@7.25.7)(webpack@5.95.0) - css-loader: 5.2.7(webpack@5.95.0) - csso: 4.2.0 - debug: 4.3.7(supports-color@8.1.1) - escape-string-regexp: 4.0.0 + babel-import-util: 2.1.1 + debug: 4.3.7 + ember-rfc176-data: 0.3.18 fs-extra: 9.1.0 - jsdom: 25.0.1(supports-color@8.1.1) + js-string-escape: 1.0.1 lodash: 4.17.21 - mini-css-extract-plugin: 2.9.1(webpack@5.95.0) + minimatch: 3.1.2 + resolve-package-path: 4.0.3 semver: 7.6.3 + typescript-memoize: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@embroider/test-setup@4.0.1-unstable.89d7d7f(@embroider/compat@3.6.2-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807))(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))': + dependencies: + broccoli-plugin: 4.0.7 + lodash: 4.17.21 + resolve: 1.22.8 + optionalDependencies: + '@embroider/compat': 3.6.2-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807) + '@embroider/core': 3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807) + transitivePeerDependencies: + - supports-color + + '@embroider/vite@0.2.1-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.4)(terser@5.34.1))': + dependencies: + '@babel/core': 7.25.7 + '@embroider/core': 3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807) + '@embroider/macros': 1.16.7-unstable.89d7d7f(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) + '@embroider/reverse-exports': 0.1.1-unstable.89d7d7f + '@rollup/pluginutils': 5.1.2(rollup@4.24.0) + assert-never: 1.3.0 + content-tag: 2.0.2 + debug: 4.3.7 + esbuild: 0.17.19 + fast-glob: 3.3.2 + fs-extra: 10.1.0 + jsdom: 16.7.0 + send: 0.18.0 source-map-url: 0.4.1 - style-loader: 2.0.0(webpack@5.95.0) - supports-color: 8.1.1 terser: 5.34.1 - thread-loader: 3.0.4(webpack@5.95.0) - webpack: 5.95.0 + vite: 5.4.8(@types/node@22.7.4)(terser@5.34.1) transitivePeerDependencies: + - '@glint/template' - bufferutil - canvas + - rollup + - supports-color - utf-8-validate + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.17.19': + optional: true + + '@esbuild/android-arm64@0.21.5': + optional: true + + '@esbuild/android-arm@0.17.19': + optional: true + + '@esbuild/android-arm@0.21.5': + optional: true + + '@esbuild/android-x64@0.17.19': + optional: true + + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.17.19': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.17.19': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.17.19': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.17.19': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.17.19': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm@0.17.19': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.17.19': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.17.19': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.17.19': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.17.19': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.17.19': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.17.19': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-x64@0.17.19': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.17.19': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.17.19': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.17.19': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.17.19': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.17.19': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-x64@0.17.19': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true + '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)': dependencies: eslint: 8.57.1 eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.4.0(eslint@9.12.0)': + dependencies: + eslint: 9.12.0 + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.11.1': {} + '@eslint/config-array@0.18.0': + dependencies: + '@eslint/object-schema': 2.1.4 + debug: 4.3.7 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/core@0.6.0': {} + '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 @@ -9435,8 +8924,30 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/eslintrc@3.1.0': + dependencies: + ajv: 6.12.6 + debug: 4.3.7 + espree: 10.2.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + '@eslint/js@8.57.1': {} + '@eslint/js@9.12.0': {} + + '@eslint/object-schema@2.1.4': {} + + '@eslint/plugin-kit@0.2.0': + dependencies: + levn: 0.4.1 + '@gar/promisify@1.1.3': {} '@glimmer/compiler@0.92.4': @@ -9460,7 +8971,7 @@ 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.25.7) + ember-cli-typescript: 5.3.0 ember-cli-version-checker: 3.1.3 ember-compatibility-helpers: 1.2.7(@babel/core@7.25.7) transitivePeerDependencies: @@ -9644,42 +9155,95 @@ snapshots: '@glimmer/interfaces': 0.92.3 '@glimmer/util': 0.92.3 - '@glint/core@1.4.0(typescript@5.5.4)': + '@glint/core@1.4.1-unstable.b29a807(typescript@5.5.4)': dependencies: '@glimmer/syntax': 0.84.3 + '@volar/kit': 2.4.0-alpha.16(typescript@5.5.4) + '@volar/language-core': 2.4.0-alpha.16 + '@volar/language-server': 2.4.0-alpha.16 + '@volar/language-service': 2.4.0-alpha.16 + '@volar/source-map': 2.4.0-alpha.16 + '@volar/test-utils': 2.4.0-alpha.16 + '@volar/typescript': 2.4.0-alpha.16 + computeds: 0.0.1 escape-string-regexp: 4.0.0 semver: 7.6.3 silent-error: 1.1.1 typescript: 5.5.4 uuid: 8.3.2 - vscode-languageserver: 8.1.0 + volar-service-typescript: 0.0.62(@volar/language-service@2.4.0-alpha.16) + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color + + '@glint/core@1.4.1-unstable.b29a807(typescript@5.6.2)': + dependencies: + '@glimmer/syntax': 0.84.3 + '@volar/kit': 2.4.0-alpha.16(typescript@5.6.2) + '@volar/language-core': 2.4.0-alpha.16 + '@volar/language-server': 2.4.0-alpha.16 + '@volar/language-service': 2.4.0-alpha.16 + '@volar/source-map': 2.4.0-alpha.16 + '@volar/test-utils': 2.4.0-alpha.16 + '@volar/typescript': 2.4.0-alpha.16 + computeds: 0.0.1 + escape-string-regexp: 4.0.0 + semver: 7.6.3 + silent-error: 1.1.1 + typescript: 5.6.2 + uuid: 8.3.2 + volar-service-typescript: 0.0.62(@volar/language-service@2.4.0-alpha.16) vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.0.8 yargs: 17.7.2 transitivePeerDependencies: - supports-color - '@glint/environment-ember-loose@1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0)': + '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)))': dependencies: '@glimmer/component': 1.1.2(@babel/core@7.25.7) - '@glint/template': 1.4.0 + '@glint/template': 1.4.1-unstable.b29a807 optionalDependencies: ember-cli-htmlbars: 6.3.0 + ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)) + + '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))': + dependencies: + '@glimmer/component': 1.1.2(@babel/core@7.25.7) + '@glint/template': 1.4.1-unstable.b29a807 + optionalDependencies: + ember-cli-htmlbars: 6.3.0 + ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + + '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807)': + dependencies: + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + '@glint/template': 1.4.1-unstable.b29a807 + content-tag: 2.0.2 - '@glint/environment-ember-template-imports@1.4.0(@glint/environment-ember-loose@1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0))(@glint/template@1.4.0)': + '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@glint/environment-ember-loose': 1.4.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(ember-cli-htmlbars@6.3.0) - '@glint/template': 1.4.0 + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + '@glint/template': 1.4.1-unstable.b29a807 content-tag: 2.0.2 - '@glint/template@1.4.0': {} + '@glint/template@1.4.1-unstable.b29a807': {} '@handlebars/parser@2.0.0': {} + '@humanfs/core@0.19.0': {} + + '@humanfs/node@0.16.5': + dependencies: + '@humanfs/core': 0.19.0 + '@humanwhocodes/retry': 0.3.1 + '@humanwhocodes/config-array@0.13.0': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -9688,7 +9252,9 @@ snapshots: '@humanwhocodes/object-schema@2.0.3': {} - '@inquirer/figures@1.0.6': {} + '@humanwhocodes/retry@0.3.1': {} + + '@inquirer/figures@1.0.7': {} '@isaacs/cliui@8.0.2': dependencies: @@ -9714,8 +9280,6 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/sourcemap-codec@1.4.15': {} - '@jridgewell/sourcemap-codec@1.5.0': {} '@jridgewell/trace-mapping@0.3.25': @@ -9748,7 +9312,7 @@ snapshots: jju: 1.4.0 js-yaml: 4.1.0 - '@mdn/browser-compat-data@5.5.2': {} + '@mdn/browser-compat-data@5.6.4': {} '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: @@ -9764,7 +9328,7 @@ snapshots: '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.16.0 + fastq: 1.17.1 '@nolyfill/is-core-module@1.0.39': {} @@ -9773,12 +9337,13 @@ snapshots: '@gar/promisify': 1.1.3 semver: 7.6.3 - '@npmcli/git@5.0.3': + '@npmcli/git@5.0.8': dependencies: - '@npmcli/promise-spawn': 7.0.0 - lru-cache: 10.1.0 - npm-pick-manifest: 9.0.0 - proc-log: 3.0.0 + '@npmcli/promise-spawn': 7.0.2 + ini: 4.1.3 + lru-cache: 10.4.3 + npm-pick-manifest: 9.1.0 + proc-log: 4.2.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 semver: 7.6.3 @@ -9791,19 +9356,19 @@ snapshots: mkdirp: 1.0.4 rimraf: 3.0.2 - '@npmcli/package-json@5.0.0': + '@npmcli/package-json@5.2.1': dependencies: - '@npmcli/git': 5.0.3 - glob: 10.3.10 - hosted-git-info: 7.0.1 - json-parse-even-better-errors: 3.0.1 - normalize-package-data: 6.0.0 - proc-log: 3.0.0 + '@npmcli/git': 5.0.8 + glob: 10.4.5 + hosted-git-info: 7.0.2 + json-parse-even-better-errors: 3.0.2 + normalize-package-data: 6.0.2 + proc-log: 4.2.0 semver: 7.6.3 transitivePeerDependencies: - bluebird - '@npmcli/promise-spawn@7.0.0': + '@npmcli/promise-spawn@7.0.2': dependencies: which: 4.0.0 @@ -9820,7 +9385,7 @@ snapshots: eslint-plugin-simple-import-sort: 12.1.1(eslint@8.57.1) prettier-plugin-ember-template-tag: 2.0.2(prettier@3.3.3) optionalDependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@8.57.1) '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7) '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) @@ -9948,9 +9513,9 @@ snapshots: '@rollup/plugin-babel@6.0.4(@babel/core@7.25.7)(rollup@4.24.0)': dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-module-imports': 7.25.7(supports-color@8.1.1) - '@rollup/pluginutils': 5.1.0(rollup@4.24.0) + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@rollup/pluginutils': 5.1.2(rollup@4.24.0) optionalDependencies: rollup: 4.24.0 transitivePeerDependencies: @@ -9961,7 +9526,7 @@ snapshots: estree-walker: 2.0.2 picomatch: 2.3.1 - '@rollup/pluginutils@5.1.0(rollup@4.24.0)': + '@rollup/pluginutils@5.1.2(rollup@4.24.0)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 @@ -10025,42 +9590,32 @@ snapshots: '@simple-dom/interface@1.4.0': {} - '@sindresorhus/is@0.14.0': {} - '@sindresorhus/is@4.6.0': {} '@sindresorhus/merge-streams@2.3.0': {} '@socket.io/component-emitter@3.1.2': {} - '@szmarczak/http-timer@1.1.2': - dependencies: - defer-to-connect: 1.1.3 - '@tootallnate/once@1.1.2': {} - '@tsconfig/ember@3.0.8': {} - - '@types/acorn@4.0.6': - dependencies: - '@types/estree': 1.0.6 - + '@tsconfig/ember@3.0.8': {} + '@types/babel__code-frame@7.0.6': {} '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.10.5 + '@types/node': 22.7.4 '@types/chai-as-promised@7.1.8': dependencies: - '@types/chai': 4.3.11 + '@types/chai': 4.3.20 - '@types/chai@4.3.11': {} + '@types/chai@4.3.20': {} '@types/connect@3.4.38': dependencies: - '@types/node': 20.10.5 + '@types/node': 22.7.4 '@types/cookie@0.4.1': {} @@ -10073,21 +9628,25 @@ snapshots: '@types/estree': 1.0.6 '@types/json-schema': 7.0.15 + '@types/eslint__js@8.42.3': + dependencies: + '@types/eslint': 8.56.12 + '@types/estree@1.0.6': {} - '@types/express-serve-static-core@4.17.41': + '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 20.10.5 - '@types/qs': 6.9.11 + '@types/node': 22.7.4 + '@types/qs': 6.9.16 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.41 - '@types/qs': 6.9.11 - '@types/serve-static': 1.15.5 + '@types/express-serve-static-core': 4.19.6 + '@types/qs': 6.9.16 + '@types/serve-static': 1.15.7 '@types/fs-extra@8.1.5': dependencies: @@ -10096,14 +9655,12 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.10.5 + '@types/node': 22.7.4 '@types/glob@8.1.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.10.5 - - '@types/htmlbars-inline-precompile@3.0.3': {} + '@types/node': 22.7.4 '@types/http-errors@2.0.4': {} @@ -10111,65 +9668,45 @@ snapshots: '@types/json5@0.0.29': {} - '@types/keyv@3.1.4': - dependencies: - '@types/node': 20.10.5 - '@types/mime@1.3.5': {} - '@types/mime@3.0.4': {} - '@types/minimatch@3.0.5': {} '@types/minimatch@5.1.2': {} '@types/node@17.0.45': {} - '@types/node@20.10.5': - dependencies: - undici-types: 5.26.5 - '@types/node@22.7.4': dependencies: undici-types: 6.19.8 - '@types/node@9.6.61': {} - - '@types/normalize-package-data@2.4.4': {} - '@types/object-path@0.11.4': {} - '@types/qs@6.9.11': {} + '@types/qs@6.9.16': {} '@types/qunit@2.19.10': {} '@types/range-parser@1.2.7': {} - '@types/responselike@1.0.3': - dependencies: - '@types/node': 20.10.5 - '@types/rimraf@2.0.5': dependencies: '@types/glob': 8.1.0 - '@types/node': 20.10.5 + '@types/node': 22.7.4 '@types/rsvp@4.0.9': {} - '@types/semver@7.5.6': {} + '@types/semver@7.5.8': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.10.5 + '@types/node': 22.7.4 - '@types/serve-static@1.15.5': + '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/mime': 3.0.4 - '@types/node': 20.10.5 - - '@types/supports-color@8.1.3': {} + '@types/node': 22.7.4 + '@types/send': 0.17.4 '@types/symlink-or-copy@1.2.2': {} @@ -10199,19 +9736,63 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0)(typescript@5.6.2)': + dependencies: + '@eslint-community/regexpp': 4.11.1 + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/scope-manager': 8.8.0 + '@typescript-eslint/type-utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.8.0 + eslint: 9.12.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.6.2) + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4)': dependencies: '@typescript-eslint/scope-manager': 8.8.0 '@typescript-eslint/types': 8.8.0 '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) '@typescript-eslint/visitor-keys': 8.8.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 eslint: 8.57.1 optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color + '@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.6.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.8.0 + '@typescript-eslint/types': 8.8.0 + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.8.0 + debug: 4.3.7 + eslint: 8.57.1 + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.8.0 + '@typescript-eslint/types': 8.8.0 + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.8.0 + debug: 4.3.7 + eslint: 9.12.0 + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/scope-manager@8.8.0': dependencies: '@typescript-eslint/types': 8.8.0 @@ -10221,7 +9802,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) '@typescript-eslint/utils': 8.8.0(eslint@8.57.1)(typescript@5.5.4) - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 @@ -10229,13 +9810,25 @@ snapshots: - eslint - supports-color + '@typescript-eslint/type-utils@8.8.0(eslint@9.12.0)(typescript@5.6.2)': + dependencies: + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) + '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + debug: 4.3.7 + ts-api-utils: 1.3.0(typescript@5.6.2) + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - eslint + - supports-color + '@typescript-eslint/types@8.8.0': {} '@typescript-eslint/typescript-estree@8.8.0(typescript@5.5.4)': dependencies: '@typescript-eslint/types': 8.8.0 '@typescript-eslint/visitor-keys': 8.8.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 @@ -10246,6 +9839,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.8.0(typescript@5.6.2)': + dependencies: + '@typescript-eslint/types': 8.8.0 + '@typescript-eslint/visitor-keys': 8.8.0 + debug: 4.3.7 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.6.2) + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.8.0(eslint@8.57.1)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) @@ -10257,6 +9865,17 @@ snapshots: - supports-color - typescript + '@typescript-eslint/utils@8.8.0(eslint@9.12.0)(typescript@5.6.2)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) + '@typescript-eslint/scope-manager': 8.8.0 + '@typescript-eslint/types': 8.8.0 + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) + eslint: 9.12.0 + transitivePeerDependencies: + - supports-color + - typescript + '@typescript-eslint/visitor-keys@8.8.0': dependencies: '@typescript-eslint/types': 8.8.0 @@ -10264,6 +9883,68 @@ snapshots: '@ungap/structured-clone@1.2.0': {} + '@volar/kit@2.4.0-alpha.16(typescript@5.5.4)': + dependencies: + '@volar/language-service': 2.4.0-alpha.16 + '@volar/typescript': 2.4.0-alpha.16 + typesafe-path: 0.2.2 + typescript: 5.5.4 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + + '@volar/kit@2.4.0-alpha.16(typescript@5.6.2)': + dependencies: + '@volar/language-service': 2.4.0-alpha.16 + '@volar/typescript': 2.4.0-alpha.16 + typesafe-path: 0.2.2 + typescript: 5.6.2 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + + '@volar/language-core@2.4.0-alpha.16': + dependencies: + '@volar/source-map': 2.4.0-alpha.16 + + '@volar/language-server@2.4.0-alpha.16': + dependencies: + '@volar/language-core': 2.4.0-alpha.16 + '@volar/language-service': 2.4.0-alpha.16 + '@volar/snapshot-document': 2.4.0-alpha.16 + '@volar/typescript': 2.4.0-alpha.16 + path-browserify: 1.0.1 + request-light: 0.7.0 + vscode-languageserver: 9.0.1 + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + + '@volar/language-service@2.4.0-alpha.16': + dependencies: + '@volar/language-core': 2.4.0-alpha.16 + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + + '@volar/snapshot-document@2.4.0-alpha.16': + dependencies: + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.12 + + '@volar/source-map@2.4.0-alpha.16': {} + + '@volar/test-utils@2.4.0-alpha.16': + dependencies: + '@volar/language-core': 2.4.0-alpha.16 + '@volar/language-server': 2.4.0-alpha.16 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + + '@volar/typescript@2.4.0-alpha.16': + dependencies: + '@volar/language-core': 2.4.0-alpha.16 + path-browserify: 1.0.1 + vscode-uri: 3.0.8 + '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 @@ -10348,18 +10029,19 @@ snapshots: '@xtuc/long@4.2.2': {} - abbrev@1.1.1: {} + abab@2.0.6: {} - abortcontroller-polyfill@1.7.5: {} + abbrev@1.1.1: {} accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-dynamic-import@3.0.0: + acorn-globals@6.0.0: dependencies: - acorn: 5.7.4 + acorn: 7.4.1 + acorn-walk: 7.2.0 acorn-import-attributes@1.9.5(acorn@8.12.1): dependencies: @@ -10369,19 +10051,21 @@ snapshots: dependencies: acorn: 8.12.1 - acorn@5.7.4: {} + acorn-walk@7.2.0: {} + + acorn@7.4.1: {} acorn@8.12.1: {} agent-base@6.0.2: dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color - agent-base@7.1.1(supports-color@8.1.1): + agent-base@7.1.1: dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -10396,15 +10080,15 @@ snapshots: ajv-formats@2.1.1: dependencies: - ajv: 8.12.0 + ajv: 8.17.1 ajv-keywords@3.5.2(ajv@6.12.6): dependencies: ajv: 6.12.6 - ajv-keywords@5.1.0(ajv@8.12.0): + ajv-keywords@5.1.0(ajv@8.17.1): dependencies: - ajv: 8.12.0 + ajv: 8.17.1 fast-deep-equal: 3.1.3 ajv@6.12.6: @@ -10414,12 +10098,12 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.12.0: + ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 + fast-uri: 3.0.2 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - uri-js: 4.4.1 amd-name-resolver@1.3.1: dependencies: @@ -10448,7 +10132,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.1.0: {} ansi-styles@3.2.1: dependencies: @@ -10501,11 +10185,6 @@ snapshots: arr-union@3.1.0: {} - array-buffer-byte-length@1.0.0: - dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 - array-buffer-byte-length@1.0.1: dependencies: call-bind: 1.0.7 @@ -10551,16 +10230,6 @@ snapshots: es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - arraybuffer.prototype.slice@1.0.2: - dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 - is-shared-array-buffer: 1.0.2 - arraybuffer.prototype.slice@1.0.3: dependencies: array-buffer-byte-length: 1.0.1 @@ -10578,6 +10247,8 @@ snapshots: ast-types@0.13.3: {} + astral-regex@2.0.0: {} + async-disk-cache@1.3.5: dependencies: debug: 2.6.9 @@ -10592,7 +10263,7 @@ snapshots: async-disk-cache@2.1.0: dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 heimdalljs: 0.2.6 istextorbinary: 2.6.0 mkdirp: 0.5.6 @@ -10621,46 +10292,41 @@ snapshots: atob@2.1.2: {} - available-typed-arrays@1.0.5: {} - available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 babel-import-util@0.2.0: {} - babel-import-util@2.0.1: {} - babel-import-util@2.1.1: {} babel-import-util@3.0.0: {} babel-loader@8.4.1(@babel/core@7.25.7)(webpack@5.95.0): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.95.0 - babel-loader@9.2.1(@babel/core@7.25.7)(webpack@5.95.0): - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.95.0 - babel-plugin-debug-macros@0.2.0(@babel/core@7.25.7): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 semver: 5.7.2 babel-plugin-debug-macros@0.3.4(@babel/core@7.25.7): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 semver: 5.7.2 + babel-plugin-debug-macros@1.0.2(@babel/core@7.25.7): + dependencies: + '@babel/core': 7.25.7 + babel-import-util: 2.1.1 + semver: 7.6.3 + babel-plugin-ember-data-packages-polyfill@0.1.2: dependencies: '@ember-data/rfc395-data': 0.0.4 @@ -10669,11 +10335,6 @@ snapshots: dependencies: ember-rfc176-data: 0.3.18 - babel-plugin-ember-template-compilation@2.2.1: - dependencies: - '@glimmer/syntax': 0.84.3 - babel-import-util: 2.0.1 - babel-plugin-ember-template-compilation@2.3.0: dependencies: '@glimmer/syntax': 0.84.3 @@ -10685,61 +10346,37 @@ snapshots: line-column: 1.0.2 magic-string: 0.25.9 parse-static-imports: 1.1.0 - string.prototype.matchall: 4.0.10 + string.prototype.matchall: 4.0.11 - babel-plugin-module-resolver@5.0.0: + babel-plugin-module-resolver@5.0.2: dependencies: - find-babel-config: 2.0.0 - glob: 8.1.0 + find-babel-config: 2.1.2 + glob: 9.3.5 pkg-up: 3.1.0 reselect: 4.1.8 resolve: 1.22.8 - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.7)(supports-color@8.1.1): - dependencies: - '@babel/compat-data': 7.25.7 - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)(supports-color@8.1.1) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.25.7): + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.7): dependencies: '@babel/compat-data': 7.25.7 - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.25.7) + '@babel/core': 7.25.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.7)(supports-color@8.1.1): + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.7): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7) core-js-compat: 3.38.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.25.7): - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.25.7) - core-js-compat: 3.34.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.25.7): - dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.25.7) - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.7)(supports-color@8.1.1): + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.7): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/core': 7.25.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7) transitivePeerDependencies: - supports-color @@ -10755,6 +10392,8 @@ snapshots: balanced-match@1.0.2: {} + balanced-match@2.0.0: {} + base64-js@1.5.1: {} base64id@2.0.0: {} @@ -10843,23 +10482,19 @@ snapshots: transitivePeerDependencies: - supports-color - braces@3.0.2: - dependencies: - fill-range: 7.0.1 - braces@3.0.3: dependencies: fill-range: 7.1.1 broccoli-babel-transpiler@8.0.0(@babel/core@7.25.7): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 broccoli-persistent-filter: 3.1.3 clone: 2.1.2 hash-for-dep: 1.5.1 heimdalljs: 0.2.6 heimdalljs-logger: 0.1.10 - json-stable-stringify: 1.1.0 + json-stable-stringify: 1.1.1 rsvp: 4.8.5 workerpool: 6.5.1 transitivePeerDependencies: @@ -10959,7 +10594,7 @@ snapshots: dependencies: array-equal: 1.0.2 broccoli-plugin: 4.0.7 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 fs-tree-diff: 2.0.1 heimdalljs: 0.2.6 minimatch: 3.1.2 @@ -11068,22 +10703,6 @@ snapshots: transitivePeerDependencies: - supports-color - broccoli-rollup@2.1.1: - dependencies: - '@types/node': 9.6.61 - amd-name-resolver: 1.3.1 - broccoli-plugin: 1.3.1 - fs-tree-diff: 0.5.9 - heimdalljs: 0.2.6 - heimdalljs-logger: 0.1.10 - magic-string: 0.24.1 - node-modules-path: 1.0.2 - rollup: 0.57.1 - symlink-or-copy: 1.3.1 - walk-sync: 0.3.4 - transitivePeerDependencies: - - supports-color - broccoli-slow-trees@3.1.0: dependencies: heimdalljs: 0.2.6 @@ -11100,7 +10719,7 @@ snapshots: broccoli-persistent-filter: 2.3.1 broccoli-plugin: 2.1.0 chalk: 2.4.2 - debug: 4.3.4 + debug: 4.3.7 ensure-posix-path: 1.1.1 fs-extra: 8.1.0 minimatch: 3.1.2 @@ -11111,19 +10730,9 @@ snapshots: 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@3.5.2: dependencies: - '@types/chai': 4.3.11 + '@types/chai': 4.3.20 '@types/chai-as-promised': 7.1.8 '@types/express': 4.17.21 ansi-html: 0.0.7 @@ -11150,25 +10759,20 @@ snapshots: transitivePeerDependencies: - supports-color - browserslist-generator@2.1.0: + browser-process-hrtime@1.0.0: {} + + browserslist-generator@2.3.0: dependencies: - '@mdn/browser-compat-data': 5.5.2 + '@mdn/browser-compat-data': 5.6.4 '@types/object-path': 0.11.4 - '@types/semver': 7.5.6 + '@types/semver': 7.5.8 '@types/ua-parser-js': 0.7.39 - browserslist: 4.22.2 - caniuse-lite: 1.0.30001572 - isbot: 3.7.1 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001667 + isbot: 3.8.0 object-path: 0.11.8 - semver: 7.5.4 - ua-parser-js: 1.0.37 - - browserslist@4.22.2: - dependencies: - caniuse-lite: 1.0.30001572 - electron-to-chromium: 1.4.616 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) + semver: 7.6.3 + ua-parser-js: 1.0.39 browserslist@4.24.0: dependencies: @@ -11212,7 +10816,7 @@ snapshots: promise-inflight: 1.0.1 rimraf: 3.0.2 ssri: 8.0.1 - tar: 6.2.0 + tar: 6.2.1 unique-filename: 1.1.1 transitivePeerDependencies: - bluebird @@ -11229,25 +10833,9 @@ snapshots: union-value: 1.0.1 unset-value: 1.0.0 - cacheable-request@6.1.0: - dependencies: - clone-response: 1.0.3 - get-stream: 5.2.0 - http-cache-semantics: 4.1.1 - keyv: 3.1.0 - lowercase-keys: 2.0.0 - normalize-url: 4.5.1 - responselike: 1.0.2 - calculate-cache-key-for-tree@2.0.0: dependencies: - json-stable-stringify: 1.1.0 - - call-bind@1.0.5: - dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.1.1 + json-stable-stringify: 1.1.1 call-bind@1.0.7: dependencies: @@ -11263,15 +10851,6 @@ snapshots: dependencies: tmp: 0.0.28 - caniuse-api@3.0.0: - dependencies: - browserslist: 4.22.2 - caniuse-lite: 1.0.30001572 - lodash.memoize: 4.1.2 - lodash.uniq: 4.5.0 - - caniuse-lite@1.0.30001572: {} - caniuse-lite@1.0.30001667: {} capture-exit@2.0.0: @@ -11346,12 +10925,6 @@ snapshots: cli-spinners@2.9.2: {} - cli-table3@0.6.3: - dependencies: - string-width: 4.2.3 - optionalDependencies: - '@colors/colors': 1.5.0 - cli-table3@0.6.5: dependencies: string-width: 4.2.3 @@ -11380,10 +10953,6 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clone-response@1.0.3: - dependencies: - mimic-response: 1.0.1 - clone@1.0.4: {} clone@2.1.2: {} @@ -11407,6 +10976,8 @@ snapshots: color-support@1.1.3: {} + colord@2.9.3: {} + colors@1.0.3: {} colors@1.4.0: {} @@ -11427,7 +10998,7 @@ snapshots: common-ancestor-path@1.0.1: {} - common-path-prefix@3.0.0: {} + common-tags@1.8.2: {} commondir@1.0.1: {} @@ -11454,6 +11025,8 @@ snapshots: transitivePeerDependencies: - supports-color + computeds@0.0.1: {} + concat-map@0.0.1: {} concurrently@9.0.1: @@ -11530,10 +11103,6 @@ snapshots: copy-descriptor@0.1.1: {} - core-js-compat@3.34.0: - dependencies: - browserslist: 4.24.0 - core-js-compat@3.38.1: dependencies: browserslist: 4.24.0 @@ -11558,6 +11127,15 @@ snapshots: optionalDependencies: typescript: 5.5.4 + cosmiconfig@9.0.0(typescript@5.6.2): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.6.2 + cross-spawn@6.0.5: dependencies: nice-try: 1.0.5 @@ -11578,25 +11156,22 @@ snapshots: crypto-random-string@2.0.0: {} + css-functions-list@3.2.2: {} + css-loader@5.2.7(webpack@5.95.0): dependencies: - icss-utils: 5.1.0(postcss@8.4.32) + icss-utils: 5.1.0(postcss@8.4.47) loader-utils: 2.0.4 - postcss: 8.4.32 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.32) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.32) - postcss-modules-scope: 3.1.0(postcss@8.4.32) - postcss-modules-values: 4.0.0(postcss@8.4.32) + postcss: 8.4.47 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.47) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.47) + postcss-modules-scope: 3.2.0(postcss@8.4.47) + postcss-modules-values: 4.0.0(postcss@8.4.47) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.3 webpack: 5.95.0 - css-tree@1.1.3: - dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 - css-tree@2.3.1: dependencies: mdn-data: 2.0.30 @@ -11604,9 +11179,13 @@ snapshots: cssesc@3.0.0: {} - csso@4.2.0: + cssom@0.3.8: {} + + cssom@0.4.4: {} + + cssstyle@2.3.0: dependencies: - css-tree: 1.1.3 + cssom: 0.3.8 cssstyle@4.1.0: dependencies: @@ -11614,6 +11193,12 @@ snapshots: dag-map@2.0.2: {} + data-urls@2.0.0: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 @@ -11639,10 +11224,6 @@ snapshots: date-fns@3.6.0: {} - date-time@2.1.0: - dependencies: - time-zone: 1.0.0 - debug@2.6.9: dependencies: ms: 2.0.0 @@ -11651,24 +11232,14 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.3.4: - dependencies: - ms: 2.1.2 - - debug@4.3.7(supports-color@8.1.1): + debug@4.3.7: dependencies: ms: 2.1.3 - optionalDependencies: - supports-color: 8.1.1 decimal.js@10.4.3: {} decode-uri-component@0.2.2: {} - decompress-response@3.3.0: - dependencies: - mimic-response: 1.0.1 - decorator-transforms@2.2.2(@babel/core@7.25.7): dependencies: '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.7) @@ -11684,14 +11255,6 @@ snapshots: dependencies: clone: 1.0.4 - defer-to-connect@1.1.3: {} - - define-data-property@1.1.1: - dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - define-data-property@1.1.4: dependencies: es-define-property: 1.0.0 @@ -11700,8 +11263,8 @@ snapshots: define-properties@1.2.1: dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 object-keys: 1.1.1 define-property@0.2.5: @@ -11762,17 +11325,19 @@ snapshots: dom-element-descriptors@0.5.1: {} + domexception@2.0.1: + dependencies: + webidl-conversions: 5.0.0 + dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 dot-prop@5.3.0: dependencies: is-obj: 2.0.0 - duplexer3@0.1.5: {} - eastasianwidth@0.2.0: {} editions@1.3.4: {} @@ -11784,20 +11349,18 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.4.616: {} - electron-to-chromium@1.5.32: {} - ember-auto-import@2.8.1(@glint/template@1.4.0)(webpack@5.95.0): + ember-auto-import@2.8.1(@glint/template@1.4.1-unstable.b29a807)(webpack@5.95.0): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7) '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7) '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.7) - '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@babel/preset-env': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) - '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) - '@embroider/shared-internals': 2.7.0(supports-color@8.1.1) + '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7) + '@babel/preset-env': 7.25.7(@babel/core@7.25.7) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) + '@embroider/shared-internals': 2.7.0 babel-loader: 8.4.1(@babel/core@7.25.7)(webpack@5.95.0) babel-plugin-ember-modules-api-polyfill: 3.5.0 babel-plugin-ember-template-compilation: 2.3.0 @@ -11809,7 +11372,7 @@ snapshots: broccoli-plugin: 4.0.7 broccoli-source: 3.0.1 css-loader: 5.2.7(webpack@5.95.0) - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 fs-extra: 10.1.0 fs-tree-diff: 2.0.1 handlebars: 4.7.8 @@ -11835,23 +11398,23 @@ snapshots: ember-cli-babel@8.2.0(@babel/core@7.25.7): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/helper-compilation-targets': 7.23.6 + '@babel/core': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7) - '@babel/plugin-proposal-decorators': 7.23.6(@babel/core@7.25.7) + '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7) '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.7) '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.25.7) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.25.7) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.25.7) - '@babel/plugin-transform-runtime': 7.23.6(@babel/core@7.25.7) + '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7) - '@babel/preset-env': 7.23.6(@babel/core@7.25.7) + '@babel/preset-env': 7.25.7(@babel/core@7.25.7) '@babel/runtime': 7.12.18 amd-name-resolver: 1.3.1 babel-plugin-debug-macros: 0.3.4(@babel/core@7.25.7) babel-plugin-ember-data-packages-polyfill: 0.1.2 babel-plugin-ember-modules-api-polyfill: 3.5.0 - babel-plugin-module-resolver: 5.0.0 + babel-plugin-module-resolver: 5.0.2 broccoli-babel-transpiler: 8.0.0(@babel/core@7.25.7) broccoli-debug: 0.6.5 broccoli-funnel: 3.0.8 @@ -11862,16 +11425,37 @@ snapshots: ember-cli-version-checker: 5.1.2 ensure-posix-path: 1.1.1 resolve-package-path: 4.0.3 - semver: 7.5.4 + semver: 7.6.3 + transitivePeerDependencies: + - supports-color + + ember-cli-get-component-path-option@1.0.0: {} + + ember-cli-htmlbars@5.7.2: + dependencies: + '@ember/edition-utils': 1.2.0 + babel-plugin-htmlbars-inline-precompile: 5.3.1 + broccoli-debug: 0.6.5 + broccoli-persistent-filter: 3.1.3 + broccoli-plugin: 4.0.7 + common-tags: 1.8.2 + ember-cli-babel-plugin-helpers: 1.1.1 + ember-cli-version-checker: 5.1.2 + fs-tree-diff: 2.0.1 + hash-for-dep: 1.5.1 + heimdalljs-logger: 0.1.10 + json-stable-stringify: 1.1.1 + semver: 7.6.3 + silent-error: 1.1.1 + strip-bom: 4.0.0 + walk-sync: 2.2.0 transitivePeerDependencies: - supports-color - ember-cli-get-component-path-option@1.0.0: {} - ember-cli-htmlbars@6.3.0: dependencies: '@ember/edition-utils': 1.2.0 - babel-plugin-ember-template-compilation: 2.2.1 + babel-plugin-ember-template-compilation: 2.3.0 babel-plugin-htmlbars-inline-precompile: 5.3.1 broccoli-debug: 0.6.5 broccoli-persistent-filter: 3.1.3 @@ -11881,7 +11465,7 @@ snapshots: hash-for-dep: 1.5.1 heimdalljs-logger: 0.1.10 js-string-escape: 1.0.1 - semver: 7.5.4 + semver: 7.6.3 silent-error: 1.1.1 walk-sync: 2.2.0 transitivePeerDependencies: @@ -11907,7 +11491,7 @@ snapshots: ember-cli-preprocess-registry@5.0.1: dependencies: broccoli-funnel: 3.0.8 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -11927,43 +11511,11 @@ snapshots: transitivePeerDependencies: - supports-color - ember-cli-typescript@3.0.0(@babel/core@7.25.7): - dependencies: - '@babel/plugin-transform-typescript': 7.5.5(@babel/core@7.25.7) - ansi-to-html: 0.6.15 - debug: 4.3.4 - ember-cli-babel-plugin-helpers: 1.1.1 - execa: 2.1.0 - fs-extra: 8.1.0 - resolve: 1.22.8 - rsvp: 4.8.5 - semver: 6.3.1 - stagehand: 1.0.1 - walk-sync: 2.2.0 - transitivePeerDependencies: - - '@babel/core' - - supports-color - - ember-cli-typescript@4.2.1: - dependencies: - ansi-to-html: 0.6.15 - broccoli-stew: 3.0.0 - debug: 4.3.7(supports-color@8.1.1) - execa: 4.1.0 - fs-extra: 9.1.0 - resolve: 1.22.8 - rsvp: 4.8.5 - semver: 7.6.3 - stagehand: 1.0.1 - walk-sync: 2.2.0 - transitivePeerDependencies: - - supports-color - ember-cli-typescript@5.3.0: dependencies: ansi-to-html: 0.6.15 broccoli-stew: 3.0.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 execa: 4.1.0 fs-extra: 9.1.0 resolve: 1.22.8 @@ -11982,7 +11534,7 @@ snapshots: ember-cli-version-checker@5.1.2: dependencies: resolve-package-path: 3.1.0 - semver: 7.5.4 + semver: 7.6.3 silent-error: 1.1.1 transitivePeerDependencies: - supports-color @@ -12143,7 +11695,7 @@ snapshots: ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@8.57.1) '@glimmer/syntax': 0.92.3 content-tag: 2.0.2 @@ -12154,65 +11706,76 @@ snapshots: transitivePeerDependencies: - eslint - ember-fetch@8.1.2(@babel/core@7.25.7)(encoding@0.1.13): + ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1): dependencies: - abortcontroller-polyfill: 1.7.5 - 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: 8.2.0(@babel/core@7.25.7) - ember-cli-typescript: 4.2.1 - ember-cli-version-checker: 5.1.2 - node-fetch: 2.7.0(encoding@0.1.13) - whatwg-fetch: 3.6.20 + '@babel/core': 7.25.7 + '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@8.57.1) + '@glimmer/syntax': 0.92.3 + content-tag: 2.0.2 + eslint-scope: 7.2.2 + html-tags: 3.3.1 + optionalDependencies: + '@typescript-eslint/parser': 8.8.0(eslint@8.57.1)(typescript@5.6.2) transitivePeerDependencies: - - '@babel/core' - - encoding - - supports-color + - eslint - ember-functions-as-helper-polyfill@2.1.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): + ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0): dependencies: - ember-cli-babel: 8.2.0(@babel/core@7.25.7) - ember-cli-typescript: 5.3.0 - ember-cli-version-checker: 5.1.2 - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + '@babel/core': 7.25.7 + '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@9.12.0) + '@glimmer/syntax': 0.92.3 + content-tag: 2.0.2 + eslint-scope: 7.2.2 + html-tags: 3.3.1 + optionalDependencies: + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) transitivePeerDependencies: - - '@babel/core' - - supports-color + - eslint - ember-functions-as-modifiers-polyfill@1.0.0(@babel/core@7.25.7): + ember-load-initializers@3.0.1(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: - ember-cli-babel: 8.2.0(@babel/core@7.25.7) - ember-cli-htmlbars: 6.3.0 - ember-cli-typescript: 4.2.1 + ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + + ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)): + dependencies: + '@embroider/addon-shim': 1.8.9 + decorator-transforms: 2.2.2(@babel/core@7.25.7) + ember-cli-normalize-entity-name: 1.0.0 + ember-cli-string-utils: 1.1.0 + optionalDependencies: + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5) transitivePeerDependencies: - '@babel/core' - supports-color + optional: true - ember-load-initializers@3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): + ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + '@embroider/addon-shim': 1.8.9 + decorator-transforms: 2.2.2(@babel/core@7.25.7) + ember-cli-normalize-entity-name: 1.0.0 + ember-cli-string-utils: 1.1.0 + optionalDependencies: + ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + transitivePeerDependencies: + - '@babel/core' + - supports-color - ember-page-title@8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): + ember-page-title@8.2.3(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: '@embroider/addon-shim': 1.8.9 '@simple-dom/document': 1.4.0 - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - supports-color - ember-qunit@8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0): + ember-qunit@8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0): dependencies: - '@ember/test-helpers': 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.0)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)) + '@ember/test-helpers': 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) '@embroider/addon-shim': 1.8.9 - '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.0) + '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) ember-cli-test-loader: 3.1.0(@babel/core@7.25.7) - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) qunit: 2.22.0 qunit-theme-ember: 1.0.0 transitivePeerDependencies: @@ -12220,11 +11783,11 @@ snapshots: - '@glint/template' - supports-color - ember-resolver@13.0.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0)): + ember-resolver@13.0.2(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: ember-cli-babel: 8.2.0(@babel/core@7.25.7) optionalDependencies: - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - '@babel/core' - supports-color @@ -12240,20 +11803,64 @@ snapshots: ember-router-generator@2.0.0: dependencies: '@babel/parser': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@8.1.1) + '@babel/traverse': 7.25.7 recast: 0.18.10 transitivePeerDependencies: - supports-color - ember-source-channel-url@3.0.0(encoding@0.1.13): + ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5): dependencies: - node-fetch: 2.7.0(encoding@0.1.13) + '@babel/core': 7.25.7 + '@ember/edition-utils': 1.2.0 + '@glimmer/compiler': 0.92.4 + '@glimmer/component': 1.1.2(@babel/core@7.25.7) + '@glimmer/destroyable': 0.92.3 + '@glimmer/env': 0.1.7 + '@glimmer/global-context': 0.92.3 + '@glimmer/interfaces': 0.92.3 + '@glimmer/manager': 0.92.4 + '@glimmer/node': 0.92.4 + '@glimmer/opcode-compiler': 0.92.4 + '@glimmer/owner': 0.92.3 + '@glimmer/program': 0.92.4 + '@glimmer/reference': 0.92.3 + '@glimmer/runtime': 0.92.4 + '@glimmer/syntax': 0.92.3 + '@glimmer/util': 0.92.3 + '@glimmer/validator': 0.92.3 + '@glimmer/vm': 0.92.3 + '@glimmer/vm-babel-plugins': 0.92.3(@babel/core@7.25.7) + '@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.8.1(@glint/template@1.4.1-unstable.b29a807)(webpack@5.95.0) + ember-cli-babel: 8.2.0(@babel/core@7.25.7) + ember-cli-get-component-path-option: 1.0.0 + ember-cli-is-package-missing: 1.0.0 + ember-cli-normalize-entity-name: 1.0.0 + ember-cli-path-utils: 1.0.0 + ember-cli-string-utils: 1.1.0 + ember-cli-typescript-blueprint-polyfill: 0.1.0 + ember-cli-version-checker: 5.1.2 + ember-router-generator: 2.0.0 + inflection: 2.0.1 + route-recognizer: 0.3.4 + router_js: 8.0.6(route-recognizer@0.3.4)(rsvp@4.8.5) + semver: 7.6.3 + silent-error: 1.1.1 + simple-html-tokenizer: 0.5.11 transitivePeerDependencies: - - encoding + - '@glint/template' + - rsvp + - supports-color + - webpack - ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.0)(rsvp@4.8.5)(webpack@5.95.0): + ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@ember/edition-utils': 1.2.0 '@glimmer/compiler': 0.92.4 '@glimmer/component': 1.1.2(@babel/core@7.25.7) @@ -12279,7 +11886,7 @@ snapshots: broccoli-funnel: 3.0.8 broccoli-merge-trees: 4.2.0 chalk: 4.1.2 - ember-auto-import: 2.8.1(@glint/template@1.4.0)(webpack@5.95.0) + ember-auto-import: 2.8.1(@glint/template@1.4.1-unstable.b29a807)(webpack@5.95.0) ember-cli-babel: 8.2.0(@babel/core@7.25.7) ember-cli-get-component-path-option: 1.0.0 ember-cli-is-package-missing: 1.0.0 @@ -12315,14 +11922,6 @@ snapshots: transitivePeerDependencies: - supports-color - ember-template-imports@4.1.2: - dependencies: - broccoli-stew: 3.0.0 - content-tag: 2.0.2 - ember-cli-version-checker: 5.1.2 - transitivePeerDependencies: - - supports-color - ember-template-lint@6.0.0: dependencies: '@lint-todo/utils': 13.1.1 @@ -12362,31 +11961,12 @@ snapshots: transitivePeerDependencies: - supports-color - ember-try-config@4.0.0(encoding@0.1.13): - dependencies: - ember-source-channel-url: 3.0.0(encoding@0.1.13) - lodash: 4.17.21 - package-json: 6.5.0 - remote-git-tags: 3.0.0 - semver: 7.6.3 - transitivePeerDependencies: - - encoding - - ember-try@3.0.0(encoding@0.1.13): + ember-tracked-storage-polyfill@1.0.0(@babel/core@7.25.7): dependencies: - chalk: 4.1.2 - cli-table3: 0.6.3 - core-object: 3.1.5 - debug: 4.3.4 - ember-try-config: 4.0.0(encoding@0.1.13) - execa: 4.1.0 - fs-extra: 6.0.1 - resolve: 1.22.8 - rimraf: 3.0.2 - semver: 7.5.4 - walk-sync: 2.2.0 + ember-cli-babel: 8.2.0(@babel/core@7.25.7) + ember-cli-htmlbars: 5.7.2 transitivePeerDependencies: - - encoding + - '@babel/core' - supports-color emoji-regex@8.0.0: {} @@ -12421,7 +12001,7 @@ snapshots: base64id: 2.0.0 cookie: 0.4.2 cors: 2.8.5 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 engine.io-parser: 5.2.3 ws: 8.17.1 transitivePeerDependencies: @@ -12458,48 +12038,6 @@ snapshots: dependencies: string-template: 0.2.1 - es-abstract@1.22.3: - dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.12 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.0.1 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.8 - string.prototype.trimend: 1.0.7 - string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.0 - typed-array-byte-length: 1.0.0 - typed-array-byte-offset: 1.0.0 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 - es-abstract@1.23.3: dependencies: array-buffer-byte-length: 1.0.1 @@ -12561,12 +12099,6 @@ snapshots: dependencies: es-errors: 1.3.0 - es-set-tostringtag@2.0.2: - dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 - es-set-tostringtag@2.0.3: dependencies: get-intrinsic: 1.2.4 @@ -12583,7 +12115,56 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 - escalade@3.1.1: {} + esbuild@0.17.19: + optionalDependencies: + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 + + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 escalade@3.2.0: {} @@ -12593,14 +12174,32 @@ snapshots: escape-string-regexp@4.0.0: {} + escodegen@2.1.0: + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + eslint-compat-utils@0.5.1(eslint@8.57.1): dependencies: eslint: 8.57.1 semver: 7.6.3 + eslint-compat-utils@0.5.1(eslint@9.12.0): + dependencies: + eslint: 9.12.0 + semver: 7.6.3 + eslint-config-prettier@9.1.0(eslint@8.57.1): dependencies: eslint: 8.57.1 + optional: true + + eslint-config-prettier@9.1.0(eslint@9.12.0): + dependencies: + eslint: 9.12.0 eslint-formatter-kakoune@1.0.0: {} @@ -12615,7 +12214,7 @@ snapshots: eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.57.1 eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) @@ -12624,32 +12223,12 @@ snapshots: is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - - supports-color - - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0)(eslint@8.57.1): - dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.7(supports-color@8.1.1) - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - fast-glob: 3.3.2 - get-tsconfig: 4.8.1 - is-bun-module: 1.2.1 - is-glob: 4.0.3 - optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - optional: true eslint-module-utils@2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): dependencies: @@ -12662,21 +12241,10 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): - dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 8.8.0(eslint@8.57.1)(typescript@5.5.4) - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0)(eslint@8.57.1) - transitivePeerDependencies: - - supports-color - eslint-plugin-decorator-position@5.0.2(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(eslint@8.57.1): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) - '@babel/plugin-proposal-decorators': 7.23.6(@babel/core@7.25.7) + '@babel/core': 7.25.7 + '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7) '@ember-data/rfc395-data': 0.0.4 ember-rfc176-data: 0.3.18 eslint: 8.57.1 @@ -12704,49 +12272,63 @@ snapshots: transitivePeerDependencies: - '@babel/core' - eslint-plugin-es-x@7.8.0(eslint@8.57.1): - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - '@eslint-community/regexpp': 4.11.1 - eslint: 8.57.1 - eslint-compat-utils: 0.5.1(eslint@8.57.1) - - eslint-plugin-es@3.0.1(eslint@8.57.1): + eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1): dependencies: + '@ember-data/rfc395-data': 0.0.4 + css-tree: 2.3.1 + ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1) + ember-rfc176-data: 0.3.18 eslint: 8.57.1 - eslint-utils: 2.1.0 - regexpp: 3.2.0 + eslint-utils: 3.0.0(eslint@8.57.1) + estraverse: 5.3.0 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + requireindex: 1.2.0 + snake-case: 3.0.4 + optionalDependencies: + '@typescript-eslint/parser': 8.8.0(eslint@8.57.1)(typescript@5.6.2) + transitivePeerDependencies: + - '@babel/core' - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): + eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0): dependencies: - '@rtsao/scc': 1.1.0 - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) - hasown: 2.0.2 - is-core-module: 2.15.1 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - string.prototype.trimend: 1.0.8 - tsconfig-paths: 3.15.0 + '@ember-data/rfc395-data': 0.0.4 + css-tree: 2.3.1 + ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0) + ember-rfc176-data: 0.3.18 + eslint: 9.12.0 + eslint-utils: 3.0.0(eslint@9.12.0) + estraverse: 5.3.0 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + requireindex: 1.2.0 + snake-case: 3.0.4 optionalDependencies: - '@typescript-eslint/parser': 8.8.0(eslint@8.57.1)(typescript@5.5.4) + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color + - '@babel/core' + + eslint-plugin-es-x@7.8.0(eslint@8.57.1): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) + '@eslint-community/regexpp': 4.11.1 + eslint: 8.57.1 + eslint-compat-utils: 0.5.1(eslint@8.57.1) + + eslint-plugin-es-x@7.8.0(eslint@9.12.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) + '@eslint-community/regexpp': 4.11.1 + eslint: 9.12.0 + eslint-compat-utils: 0.5.1(eslint@9.12.0) - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-plugin-es@3.0.1(eslint@8.57.1): + dependencies: + eslint: 8.57.1 + eslint-utils: 2.1.0 + regexpp: 3.2.0 + + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -12757,7 +12339,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -12797,12 +12379,24 @@ snapshots: minimatch: 9.0.5 semver: 7.6.3 + eslint-plugin-n@17.10.3(eslint@9.12.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) + enhanced-resolve: 5.17.1 + eslint: 9.12.0 + eslint-plugin-es-x: 7.8.0(eslint@9.12.0) + get-tsconfig: 4.8.1 + globals: 15.10.0 + ignore: 5.3.2 + minimatch: 9.0.5 + semver: 7.6.3 + eslint-plugin-node@11.1.0(eslint@8.57.1): dependencies: eslint: 8.57.1 eslint-plugin-es: 3.0.1(eslint@8.57.1) eslint-utils: 2.1.0 - ignore: 5.3.0 + ignore: 5.3.2 minimatch: 3.1.2 resolve: 1.22.8 semver: 6.3.1 @@ -12817,12 +12411,30 @@ snapshots: '@types/eslint': 8.56.12 eslint-config-prettier: 9.1.0(eslint@8.57.1) + eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@9.12.0))(eslint@9.12.0)(prettier@3.3.3): + dependencies: + eslint: 9.12.0 + prettier: 3.3.3 + prettier-linter-helpers: 1.0.0 + synckit: 0.9.1 + optionalDependencies: + '@types/eslint': 8.56.12 + eslint-config-prettier: 9.1.0(eslint@9.12.0) + eslint-plugin-qunit@8.1.2(eslint@8.57.1): dependencies: eslint-utils: 3.0.0(eslint@8.57.1) requireindex: 1.2.0 transitivePeerDependencies: - eslint + optional: true + + eslint-plugin-qunit@8.1.2(eslint@9.12.0): + dependencies: + eslint-utils: 3.0.0(eslint@9.12.0) + requireindex: 1.2.0 + transitivePeerDependencies: + - eslint eslint-plugin-simple-import-sort@12.1.1(eslint@8.57.1): dependencies: @@ -12838,6 +12450,11 @@ snapshots: esrecurse: 4.3.0 estraverse: 5.3.0 + eslint-scope@8.1.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + eslint-utils@2.1.0: dependencies: eslint-visitor-keys: 1.3.0 @@ -12847,12 +12464,19 @@ snapshots: eslint: 8.57.1 eslint-visitor-keys: 2.1.0 + eslint-utils@3.0.0(eslint@9.12.0): + dependencies: + eslint: 9.12.0 + eslint-visitor-keys: 2.1.0 + eslint-visitor-keys@1.3.0: {} eslint-visitor-keys@2.1.0: {} eslint-visitor-keys@3.4.3: {} + eslint-visitor-keys@4.1.0: {} + eslint@8.57.1: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) @@ -12866,13 +12490,13 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - esquery: 1.5.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 @@ -12890,14 +12514,60 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color + eslint@9.12.0: + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) + '@eslint-community/regexpp': 4.11.1 + '@eslint/config-array': 0.18.0 + '@eslint/core': 0.6.0 + '@eslint/eslintrc': 3.1.0 + '@eslint/js': 9.12.0 + '@eslint/plugin-kit': 0.2.0 + '@humanfs/node': 0.16.5 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.3.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.7 + escape-string-regexp: 4.0.0 + eslint-scope: 8.1.0 + eslint-visitor-keys: 4.1.0 + espree: 10.2.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + esm@3.2.25: {} + espree@10.2.0: + dependencies: + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) + eslint-visitor-keys: 4.1.0 + espree@9.6.1: dependencies: acorn: 8.12.1 @@ -12908,7 +12578,7 @@ snapshots: esprima@4.0.1: {} - esquery@1.5.0: + esquery@1.6.0: dependencies: estraverse: 5.3.0 @@ -12920,8 +12590,6 @@ snapshots: estraverse@5.3.0: {} - estree-walker@0.6.1: {} - estree-walker@2.0.2: {} esutils@2.0.3: {} @@ -12946,18 +12614,6 @@ snapshots: signal-exit: 3.0.7 strip-eof: 1.0.0 - execa@2.1.0: - dependencies: - cross-spawn: 7.0.3 - get-stream: 5.2.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 3.1.0 - onetime: 5.1.2 - p-finally: 2.0.1 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - execa@4.1.0: dependencies: cross-spawn: 7.0.3 @@ -13076,7 +12732,7 @@ snapshots: '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.5 + micromatch: 4.0.8 fast-json-stable-stringify@2.1.0: {} @@ -13098,7 +12754,11 @@ snapshots: transitivePeerDependencies: - supports-color - fastq@1.16.0: + fast-uri@3.0.2: {} + + fastest-levenshtein@1.0.16: {} + + fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -13124,6 +12784,14 @@ snapshots: dependencies: flat-cache: 3.2.0 + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + file-entry-cache@9.1.0: + dependencies: + flat-cache: 5.0.0 + filesize@10.1.6: {} fill-range@4.0.0: @@ -13133,10 +12801,6 @@ snapshots: repeat-string: 1.6.1 to-regex-range: 2.1.1 - fill-range@7.0.1: - dependencies: - to-regex-range: 5.0.1 - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -13165,10 +12829,9 @@ snapshots: transitivePeerDependencies: - supports-color - find-babel-config@2.0.0: + find-babel-config@2.1.2: dependencies: json5: 2.2.3 - path-exists: 4.0.0 find-cache-dir@3.3.2: dependencies: @@ -13176,15 +12839,8 @@ snapshots: make-dir: 3.1.0 pkg-dir: 4.2.0 - find-cache-dir@4.0.0: - dependencies: - common-path-prefix: 3.0.0 - pkg-dir: 7.0.0 - find-index@1.1.1: {} - find-up-simple@1.0.0: {} - find-up@3.0.0: dependencies: locate-path: 3.0.0 @@ -13199,11 +12855,6 @@ snapshots: locate-path: 6.0.0 path-exists: 4.0.0 - find-up@6.3.0: - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - find-up@7.0.0: dependencies: locate-path: 7.2.0 @@ -13218,7 +12869,7 @@ snapshots: dependencies: detect-file: 1.0.0 is-glob: 4.0.3 - micromatch: 4.0.5 + micromatch: 4.0.8 resolve-dir: 1.0.1 fireworm@0.7.2: @@ -13246,11 +12897,21 @@ snapshots: flat-cache@3.2.0: dependencies: - flatted: 3.2.9 + flatted: 3.3.1 keyv: 4.5.4 rimraf: 3.0.2 - flatted@3.2.9: {} + flat-cache@4.0.1: + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + + flat-cache@5.0.0: + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + + flatted@3.3.1: {} follow-redirects@1.15.9: {} @@ -13260,11 +12921,17 @@ snapshots: for-in@1.0.2: {} - foreground-child@3.1.1: + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 + form-data@3.0.1: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + form-data@4.0.0: dependencies: asynckit: 0.4.0 @@ -13310,12 +12977,6 @@ snapshots: jsonfile: 4.0.0 universalify: 0.1.2 - fs-extra@6.0.1: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 @@ -13387,9 +13048,9 @@ snapshots: function.prototype.name@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 functions-have-names: 1.2.3 functions-have-names@1.2.3: {} @@ -13411,13 +13072,6 @@ snapshots: get-caller-file@2.0.5: {} - get-intrinsic@1.2.2: - dependencies: - function-bind: 1.1.2 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - get-intrinsic@1.2.4: dependencies: es-errors: 1.3.0 @@ -13430,19 +13084,14 @@ snapshots: get-stream@4.1.0: dependencies: - pump: 3.0.0 + pump: 3.0.2 get-stream@5.2.0: dependencies: - pump: 3.0.0 + pump: 3.0.2 get-stream@6.0.1: {} - get-symbol-description@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - get-symbol-description@1.0.2: dependencies: call-bind: 1.0.7 @@ -13484,13 +13133,14 @@ snapshots: glob-to-regexp@0.4.1: {} - glob@10.3.10: + glob@10.4.5: dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 + foreground-child: 3.3.0 + jackspeak: 3.4.3 minimatch: 9.0.5 - minipass: 7.0.4 - path-scurry: 1.10.1 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 glob@5.0.15: dependencies: @@ -13517,12 +13167,23 @@ snapshots: minimatch: 5.1.6 once: 1.4.0 + glob@9.3.5: + dependencies: + fs.realpath: 1.0.0 + minimatch: 8.0.4 + minipass: 4.2.8 + path-scurry: 1.11.1 + global-modules@1.0.0: dependencies: global-prefix: 1.0.2 is-windows: 1.0.2 resolve-dir: 1.0.1 + global-modules@2.0.0: + dependencies: + global-prefix: 3.0.0 + global-prefix@1.0.2: dependencies: expand-tilde: 2.0.2 @@ -13531,17 +13192,21 @@ snapshots: is-windows: 1.0.2 which: 1.3.1 + global-prefix@3.0.0: + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + globals@11.12.0: {} globals@13.24.0: dependencies: type-fest: 0.20.2 - globals@15.10.0: {} + globals@14.0.0: {} - globalthis@1.0.3: - dependencies: - define-properties: 1.2.1 + globals@15.10.0: {} globalthis@1.0.4: dependencies: @@ -13590,27 +13255,13 @@ snapshots: slash: 5.1.0 unicorn-magic: 0.1.0 + globjoin@0.1.4: {} + globrex@0.1.2: {} gopd@1.0.1: dependencies: - get-intrinsic: 1.2.2 - - got@9.6.0: - dependencies: - '@sindresorhus/is': 0.14.0 - '@szmarczak/http-timer': 1.1.2 - '@types/keyv': 3.1.4 - '@types/responselike': 1.0.3 - cacheable-request: 6.1.0 - decompress-response: 3.3.0 - duplexer3: 0.1.5 - get-stream: 4.1.0 - lowercase-keys: 1.0.1 - mimic-response: 1.0.1 - p-cancelable: 1.1.0 - to-readable-stream: 1.0.0 - url-parse-lax: 3.0.0 + get-intrinsic: 1.2.4 graceful-fs@4.2.10: {} @@ -13639,24 +13290,14 @@ snapshots: has-flag@4.0.0: {} - has-property-descriptors@1.0.1: - dependencies: - get-intrinsic: 1.2.2 - has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.0 - has-proto@1.0.1: {} - has-proto@1.0.3: {} has-symbols@1.0.3: {} - has-tostringtag@1.0.0: - dependencies: - has-symbols: 1.0.3 - has-tostringtag@1.0.2: dependencies: has-symbols: 1.0.3 @@ -13693,10 +13334,6 @@ snapshots: transitivePeerDependencies: - supports-color - hasown@2.0.0: - dependencies: - function-bind: 1.1.2 - hasown@2.0.2: dependencies: function-bind: 1.1.2 @@ -13742,9 +13379,13 @@ snapshots: dependencies: lru-cache: 7.18.3 - hosted-git-info@7.0.1: + hosted-git-info@7.0.2: + dependencies: + lru-cache: 10.4.3 + + html-encoding-sniffer@2.0.1: dependencies: - lru-cache: 10.1.0 + whatwg-encoding: 1.0.5 html-encoding-sniffer@4.0.0: dependencies: @@ -13775,14 +13416,14 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color - http-proxy-agent@7.0.2(supports-color@8.1.1): + http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.1(supports-color@8.1.1) - debug: 4.3.7(supports-color@8.1.1) + agent-base: 7.1.1 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -13797,14 +13438,14 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color - https-proxy-agent@7.0.5(supports-color@8.1.1): + https-proxy-agent@7.0.5: dependencies: - agent-base: 7.1.1(supports-color@8.1.1) - debug: 4.3.7(supports-color@8.1.1) + agent-base: 7.1.1 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -13826,9 +13467,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.4.32): + icss-utils@5.1.0(postcss@8.4.47): dependencies: - postcss: 8.4.32 + postcss: 8.4.47 ieee754@1.2.1: {} @@ -13836,8 +13477,6 @@ snapshots: dependencies: minimatch: 5.1.6 - ignore@5.3.0: {} - ignore@5.3.2: {} import-fresh@3.3.0: @@ -13849,8 +13488,6 @@ snapshots: indent-string@4.0.0: {} - index-to-position@0.1.2: {} - infer-owner@1.0.4: {} inflection@2.0.1: {} @@ -13866,6 +13503,8 @@ snapshots: ini@1.3.8: {} + ini@4.1.3: {} + inquirer@6.5.2: dependencies: ansi-escapes: 3.2.0 @@ -13900,7 +13539,7 @@ snapshots: inquirer@9.3.7: dependencies: - '@inquirer/figures': 1.0.6 + '@inquirer/figures': 1.0.7 ansi-escapes: 4.3.2 cli-width: 4.1.0 external-editor: 3.1.0 @@ -13913,12 +13552,6 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 - internal-slot@1.0.6: - dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 - internal-slot@1.0.7: dependencies: es-errors: 1.3.0 @@ -13927,19 +13560,16 @@ snapshots: invert-kv@3.0.1: {} - ip@2.0.0: {} + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 ipaddr.js@1.9.1: {} is-accessor-descriptor@1.0.1: dependencies: - hasown: 2.0.0 - - is-array-buffer@3.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + hasown: 2.0.2 is-array-buffer@3.0.4: dependencies: @@ -13954,8 +13584,8 @@ snapshots: is-boolean-object@1.1.2: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 is-buffer@1.1.6: {} @@ -13965,17 +13595,13 @@ snapshots: is-callable@1.2.7: {} - is-core-module@2.13.1: - dependencies: - hasown: 2.0.0 - is-core-module@2.15.1: dependencies: hasown: 2.0.2 is-data-descriptor@1.0.1: dependencies: - hasown: 2.0.0 + hasown: 2.0.2 is-data-view@1.0.1: dependencies: @@ -13983,7 +13609,7 @@ snapshots: is-date-object@1.0.5: dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 is-descriptor@0.1.7: dependencies: @@ -14023,13 +13649,11 @@ snapshots: dependencies: '@babel/runtime': 7.25.7 - is-negative-zero@2.0.2: {} - is-negative-zero@2.0.3: {} is-number-object@1.0.7: dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 is-number@3.0.0: dependencies: @@ -14053,18 +13677,10 @@ snapshots: is-potential-custom-element-name@1.0.1: {} - is-reference@1.2.1: - dependencies: - '@types/estree': 1.0.6 - is-regex@1.1.4: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - - is-shared-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 is-shared-array-buffer@1.0.3: dependencies: @@ -14076,7 +13692,7 @@ snapshots: is-string@1.0.7: dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 is-subdir@1.2.0: dependencies: @@ -14090,10 +13706,6 @@ snapshots: dependencies: core-util-is: 1.0.3 - is-typed-array@1.1.12: - dependencies: - which-typed-array: 1.1.13 - is-typed-array@1.1.13: dependencies: which-typed-array: 1.1.15 @@ -14104,7 +13716,7 @@ snapshots: is-weakref@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 is-windows@1.0.2: {} @@ -14120,7 +13732,7 @@ snapshots: isbinaryfile@5.0.2: {} - isbot@3.7.1: {} + isbot@3.8.0: {} isexe@2.0.0: {} @@ -14144,7 +13756,7 @@ snapshots: editions: 2.3.1 textextensions: 2.6.0 - jackspeak@2.3.6: + jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: @@ -14171,15 +13783,51 @@ snapshots: dependencies: argparse: 2.0.1 - jsdom@25.0.1(supports-color@8.1.1): + jsbn@1.1.0: {} + + jsdom@16.7.0: + dependencies: + abab: 2.0.6 + acorn: 8.12.1 + acorn-globals: 6.0.0 + cssom: 0.4.4 + cssstyle: 2.3.0 + data-urls: 2.0.0 + decimal.js: 10.4.3 + domexception: 2.0.1 + escodegen: 2.1.0 + form-data: 3.0.1 + html-encoding-sniffer: 2.0.1 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.13 + parse5: 6.0.1 + saxes: 5.0.1 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-hr-time: 1.0.2 + w3c-xmlserializer: 2.0.0 + webidl-conversions: 6.1.0 + whatwg-encoding: 1.0.5 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + ws: 7.5.10 + xml-name-validator: 3.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsdom@25.0.1: dependencies: cssstyle: 4.1.0 data-urls: 5.0.0 decimal.js: 10.4.3 form-data: 4.0.0 html-encoding-sniffer: 4.0.0 - http-proxy-agent: 7.0.2(supports-color@8.1.1) - https-proxy-agent: 7.0.5(supports-color@8.1.1) + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.5 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.13 parse5: 7.1.2 @@ -14199,19 +13847,15 @@ snapshots: - supports-color - utf-8-validate - jsesc@0.5.0: {} - jsesc@3.0.2: {} - json-buffer@3.0.0: {} - json-buffer@3.0.1: {} json-parse-better-errors@1.0.2: {} json-parse-even-better-errors@2.3.1: {} - json-parse-even-better-errors@3.0.1: {} + json-parse-even-better-errors@3.0.2: {} json-schema-traverse@0.4.1: {} @@ -14219,13 +13863,6 @@ snapshots: json-stable-stringify-without-jsonify@1.0.1: {} - json-stable-stringify@1.1.0: - dependencies: - call-bind: 1.0.5 - isarray: 2.0.5 - jsonify: 0.0.1 - object-keys: 1.1.1 - json-stable-stringify@1.1.1: dependencies: call-bind: 1.0.7 @@ -14257,10 +13894,6 @@ snapshots: jsonify@0.0.1: {} - keyv@3.1.0: - dependencies: - json-buffer: 3.0.0 - keyv@4.5.4: dependencies: json-buffer: 3.0.1 @@ -14275,6 +13908,8 @@ snapshots: kind-of@6.0.3: {} + known-css-properties@0.34.0: {} + ky@1.7.2: {} language-subtag-registry@0.3.23: {} @@ -14326,8 +13961,6 @@ snapshots: loader.js@4.7.0: {} - locate-character@2.0.5: {} - locate-path@3.0.0: dependencies: p-locate: 3.0.0 @@ -14354,8 +13987,6 @@ snapshots: lodash._isiterateecall@3.0.9: {} - lodash._reinterpolate@3.0.0: {} - lodash.camelcase@4.3.0: {} lodash.debounce@3.1.1: @@ -14375,20 +14006,11 @@ snapshots: 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.truncate@4.4.2: {} lodash.uniq@4.5.0: {} @@ -14405,13 +14027,7 @@ snapshots: lower-case@2.0.2: dependencies: - tslib: 2.6.2 - - lowercase-keys@1.0.1: {} - - lowercase-keys@2.0.0: {} - - lru-cache@10.1.0: {} + tslib: 2.7.0 lru-cache@10.4.3: {} @@ -14425,17 +14041,13 @@ snapshots: lru-cache@7.18.3: {} - magic-string@0.24.1: - dependencies: - sourcemap-codec: 1.4.8 - magic-string@0.25.9: dependencies: sourcemap-codec: 1.4.8 - magic-string@0.30.5: + magic-string@0.30.11: dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/sourcemap-codec': 1.5.0 make-dir@3.1.0: dependencies: @@ -14514,7 +14126,7 @@ snapshots: '@types/minimatch': 3.0.5 minimatch: 3.1.2 - mdn-data@2.0.14: {} + mathml-tag-names@2.1.3: {} mdn-data@2.0.30: {} @@ -14534,6 +14146,8 @@ snapshots: memorystream@0.3.1: {} + meow@13.2.0: {} + merge-descriptors@1.0.3: {} merge-stream@2.0.0: {} @@ -14567,11 +14181,6 @@ snapshots: transitivePeerDependencies: - supports-color - micromatch@4.0.5: - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - micromatch@4.0.8: dependencies: braces: 3.0.3 @@ -14591,8 +14200,6 @@ snapshots: mimic-fn@2.1.0: {} - mimic-response@1.0.1: {} - mini-css-extract-plugin@2.9.1(webpack@5.95.0): dependencies: schema-utils: 4.2.0 @@ -14611,6 +14218,10 @@ snapshots: dependencies: brace-expansion: 2.0.1 + minimatch@8.0.4: + dependencies: + brace-expansion: 2.0.1 + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -14650,9 +14261,11 @@ snapshots: dependencies: yallist: 4.0.0 + minipass@4.2.8: {} + minipass@5.0.0: {} - minipass@7.0.4: {} + minipass@7.1.2: {} minizlib@2.1.2: dependencies: @@ -14688,8 +14301,6 @@ snapshots: ms@2.0.0: {} - ms@2.1.2: {} - ms@2.1.3: {} mustache@4.2.0: {} @@ -14735,7 +14346,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.6.2 + tslib: 2.7.0 node-emoji@2.1.3: dependencies: @@ -14752,8 +14363,6 @@ snapshots: node-int64@0.4.0: {} - node-modules-path@1.0.2: {} - node-notifier@10.0.1: dependencies: growly: 1.3.0 @@ -14763,8 +14372,6 @@ snapshots: uuid: 8.3.2 which: 2.0.2 - node-releases@2.0.14: {} - node-releases@2.0.18: {} node-watch@0.7.3: {} @@ -14780,10 +14387,9 @@ snapshots: semver: 5.7.2 validate-npm-package-license: 3.0.4 - normalize-package-data@6.0.0: + normalize-package-data@6.0.2: dependencies: - hosted-git-info: 7.0.1 - is-core-module: 2.15.1 + hosted-git-info: 7.0.2 semver: 7.6.3 validate-npm-package-license: 3.0.4 @@ -14793,8 +14399,6 @@ snapshots: normalize-path@3.0.0: {} - normalize-url@4.5.1: {} - npm-bundled@2.0.1: dependencies: npm-normalize-package-bin: 2.0.0 @@ -14814,10 +14418,10 @@ snapshots: semver: 7.6.3 validate-npm-package-name: 5.0.1 - npm-package-arg@11.0.1: + npm-package-arg@11.0.3: dependencies: - hosted-git-info: 7.0.1 - proc-log: 3.0.0 + hosted-git-info: 7.0.2 + proc-log: 4.2.0 semver: 7.6.3 validate-npm-package-name: 5.0.1 @@ -14828,11 +14432,11 @@ snapshots: npm-bundled: 2.0.1 npm-normalize-package-bin: 2.0.0 - npm-pick-manifest@9.0.0: + npm-pick-manifest@9.1.0: dependencies: npm-install-checks: 6.3.0 npm-normalize-package-bin: 3.0.1 - npm-package-arg: 11.0.1 + npm-package-arg: 11.0.3 semver: 7.6.3 npm-run-all@4.1.5: @@ -14845,15 +14449,11 @@ snapshots: pidtree: 0.3.1 read-pkg: 3.0.0 shell-quote: 1.8.1 - string.prototype.padend: 3.1.5 + string.prototype.padend: 3.1.6 npm-run-path@2.0.2: dependencies: - path-key: 2.0.1 - - npm-run-path@3.1.0: - dependencies: - path-key: 3.1.1 + path-key: 2.0.1 npm-run-path@4.0.1: dependencies: @@ -14878,8 +14478,6 @@ snapshots: object-hash@1.3.1: {} - object-inspect@1.13.1: {} - object-inspect@1.13.2: {} object-keys@1.1.1: {} @@ -14892,7 +14490,7 @@ snapshots: object.assign@4.1.5: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -14942,14 +14540,14 @@ snapshots: dependencies: mimic-fn: 2.1.0 - optionator@0.9.3: + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 ora@3.4.0: dependencies: @@ -14980,16 +14578,12 @@ snapshots: os-tmpdir@1.0.2: {} - p-cancelable@1.1.0: {} - p-defer@1.0.0: {} p-defer@3.0.0: {} p-finally@1.0.0: {} - p-finally@2.0.1: {} - p-is-promise@2.1.0: {} p-limit@2.3.0: @@ -15002,7 +14596,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.0.0 + yocto-queue: 1.1.1 p-locate@3.0.0: dependencies: @@ -15030,6 +14624,8 @@ snapshots: p-try@2.2.0: {} + package-json-from-dist@1.0.1: {} + package-json@10.0.1: dependencies: ky: 1.7.2 @@ -15037,13 +14633,6 @@ snapshots: registry-url: 6.0.1 semver: 7.6.3 - package-json@6.5.0: - dependencies: - got: 9.6.0 - registry-auth-token: 4.2.2 - registry-url: 5.1.0 - semver: 6.3.1 - parent-module@1.0.1: dependencies: callsites: 3.1.0 @@ -15062,14 +14651,6 @@ snapshots: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - parse-json@8.1.0: - dependencies: - '@babel/code-frame': 7.25.7 - index-to-position: 0.1.2 - type-fest: 4.26.1 - - parse-ms@1.0.1: {} - parse-passwd@1.0.0: {} parse-static-imports@1.1.0: {} @@ -15090,6 +14671,8 @@ snapshots: pascalcase@0.1.1: {} + path-browserify@1.0.1: {} + path-exists@3.0.0: {} path-exists@4.0.0: {} @@ -15112,10 +14695,10 @@ snapshots: dependencies: path-root-regex: 0.1.2 - path-scurry@1.10.1: + path-scurry@1.11.1: dependencies: - lru-cache: 10.1.0 - minipass: 7.0.4 + lru-cache: 10.4.3 + minipass: 7.1.2 path-to-regexp@0.1.10: {} @@ -15139,10 +14722,6 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-dir@7.0.0: - dependencies: - find-up: 6.3.0 - pkg-entry-points@1.1.0: {} pkg-up@3.1.0: @@ -15161,51 +14740,55 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-modules-extract-imports@3.0.0(postcss@8.4.32): + postcss-modules-extract-imports@3.1.0(postcss@8.4.47): dependencies: - postcss: 8.4.32 + postcss: 8.4.47 - postcss-modules-local-by-default@4.0.3(postcss@8.4.32): + postcss-modules-local-by-default@4.0.5(postcss@8.4.47): dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-selector-parser: 6.0.14 + icss-utils: 5.1.0(postcss@8.4.47) + postcss: 8.4.47 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.1.0(postcss@8.4.32): + postcss-modules-scope@3.2.0(postcss@8.4.47): + dependencies: + postcss: 8.4.47 + postcss-selector-parser: 6.1.2 + + postcss-modules-values@4.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.14 + icss-utils: 5.1.0(postcss@8.4.47) + postcss: 8.4.47 - postcss-modules-values@4.0.0(postcss@8.4.32): + postcss-resolve-nested-selector@0.1.6: {} + + postcss-safe-parser@7.0.1(postcss@8.4.47): dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 + postcss: 8.4.47 - postcss-selector-parser@6.0.14: + postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 postcss-value-parser@4.2.0: {} - postcss@8.4.32: + postcss@8.4.47: dependencies: nanoid: 3.3.7 picocolors: 1.1.0 - source-map-js: 1.0.2 + source-map-js: 1.2.1 prelude-ls@1.2.1: {} - prepend-http@2.0.0: {} - prettier-linter-helpers@1.0.0: dependencies: fast-diff: 1.3.0 prettier-plugin-ember-template-tag@2.0.2(prettier@3.3.3): dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 content-tag: 1.2.2 prettier: 3.3.3 transitivePeerDependencies: @@ -15215,16 +14798,14 @@ snapshots: prettier@3.3.3: {} - pretty-ms@3.2.0: - dependencies: - parse-ms: 1.0.1 - printf@0.6.1: {} private@0.1.8: {} proc-log@3.0.0: {} + proc-log@4.2.0: {} + progress@2.0.3: {} promise-inflight@1.0.1: {} @@ -15255,13 +14836,15 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 + psl@1.9.0: {} + publint@0.2.11: dependencies: npm-packlist: 5.1.3 picocolors: 1.1.0 sade: 1.8.1 - pump@3.0.0: + pump@3.0.2: dependencies: end-of-stream: 1.4.4 once: 1.4.0 @@ -15272,6 +14855,8 @@ snapshots: dependencies: side-channel: 1.0.6 + querystringify@2.2.0: {} + queue-microtask@1.2.3: {} quick-temp@0.1.8: @@ -15317,26 +14902,12 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - read-package-up@11.0.0: - dependencies: - find-up-simple: 1.0.0 - read-pkg: 9.0.1 - type-fest: 4.26.1 - read-pkg@3.0.0: dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 - read-pkg@9.0.1: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 6.0.0 - parse-json: 8.1.0 - type-fest: 4.26.1 - unicorn-magic: 0.1.0 - readable-stream@1.0.34: dependencies: core-util-is: 1.0.3 @@ -15361,10 +14932,6 @@ snapshots: dependencies: esprima: 3.0.0 - regenerate-unicode-properties@10.1.1: - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties@10.2.0: dependencies: regenerate: 1.4.2 @@ -15377,19 +14944,13 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.23.6 + '@babel/runtime': 7.25.7 regex-not@1.0.2: dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 - regexp.prototype.flags@1.5.1: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - set-function-name: 2.0.1 - regexp.prototype.flags@1.5.3: dependencies: call-bind: 1.0.7 @@ -15399,15 +14960,6 @@ snapshots: regexpp@3.2.0: {} - regexpu-core@5.3.2: - dependencies: - '@babel/regjsgen': 0.8.0 - regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 - regexpu-core@6.1.1: dependencies: regenerate: 1.4.2 @@ -15417,18 +14969,10 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.2.0 - registry-auth-token@4.2.2: - dependencies: - rc: 1.2.8 - registry-auth-token@5.0.2: dependencies: '@pnpm/npm-conf': 2.3.1 - registry-url@5.1.0: - dependencies: - rc: 1.2.8 - registry-url@6.0.1: dependencies: rc: 1.2.8 @@ -15439,14 +14983,10 @@ snapshots: dependencies: jsesc: 3.0.2 - regjsparser@0.9.1: - dependencies: - jsesc: 0.5.0 - release-plan@0.9.2(encoding@0.1.13): dependencies: '@manypkg/get-packages': 2.2.2 - '@npmcli/package-json': 5.0.0 + '@npmcli/package-json': 5.2.1 '@octokit/rest': 19.0.13(encoding@0.1.13) assert-never: 1.3.0 chalk: 4.1.2 @@ -15464,13 +15004,11 @@ snapshots: - encoding - supports-color - remote-git-tags@3.0.0: {} - remove-trailing-separator@1.1.0: {} remove-types@1.0.0: dependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.7) '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7) prettier: 2.8.8 @@ -15481,12 +15019,12 @@ snapshots: repeat-string@1.6.1: {} + request-light@0.7.0: {} + require-directory@2.1.1: {} require-from-string@2.0.2: {} - require-relative@0.8.7: {} - requireindex@1.2.0: {} requires-port@1.0.0: {} @@ -15500,6 +15038,8 @@ snapshots: resolve-from@4.0.0: {} + resolve-from@5.0.0: {} + resolve-package-path@1.2.7: dependencies: path-root: 0.1.1 @@ -15523,16 +15063,14 @@ snapshots: resolve-url@0.2.1: {} + resolve.exports@2.0.2: {} + resolve@1.22.8: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.15.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - responselike@1.0.2: - dependencies: - lowercase-keys: 1.0.1 - restore-cursor@2.0.0: dependencies: onetime: 2.0.1 @@ -15566,49 +15104,32 @@ snapshots: fs-extra: 7.0.1 rollup: 4.24.0 - rollup-plugin-delete@2.0.0: + rollup-plugin-delete@2.1.0(rollup@4.24.0): dependencies: del: 5.1.0 + rollup: 4.24.0 rollup-plugin-ts@3.4.5(@babel/core@7.25.7)(@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.7))(@babel/preset-env@7.25.7(@babel/core@7.25.7))(@babel/preset-typescript@7.25.7(@babel/core@7.25.7))(@babel/runtime@7.25.7)(rollup@4.24.0)(typescript@5.5.4): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.24.0) + '@rollup/pluginutils': 5.1.2(rollup@4.24.0) '@wessberg/stringutil': 1.0.19 ansi-colors: 4.1.3 - browserslist: 4.22.2 - browserslist-generator: 2.1.0 + browserslist: 4.24.0 + browserslist-generator: 2.3.0 compatfactory: 3.0.0(typescript@5.5.4) crosspath: 2.0.0 - magic-string: 0.30.5 + magic-string: 0.30.11 rollup: 4.24.0 ts-clone-node: 3.0.0(typescript@5.5.4) - tslib: 2.6.2 + tslib: 2.7.0 typescript: 5.5.4 optionalDependencies: - '@babel/core': 7.25.7(supports-color@8.1.1) + '@babel/core': 7.25.7 '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.7) - '@babel/preset-env': 7.25.7(@babel/core@7.25.7)(supports-color@8.1.1) + '@babel/preset-env': 7.25.7(@babel/core@7.25.7) '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7) '@babel/runtime': 7.25.7 - rollup-pluginutils@2.8.2: - dependencies: - estree-walker: 0.6.1 - - rollup@0.57.1: - dependencies: - '@types/acorn': 4.0.6 - acorn: 5.7.4 - acorn-dynamic-import: 3.0.0 - date-time: 2.1.0 - is-reference: 1.2.1 - locate-character: 2.0.5 - pretty-ms: 3.2.0 - require-relative: 0.8.7 - rollup-pluginutils: 2.8.2 - signal-exit: 3.0.7 - sourcemap-codec: 1.4.8 - rollup@4.24.0: dependencies: '@types/estree': 1.0.6 @@ -15667,13 +15188,6 @@ snapshots: dependencies: mri: 1.2.0 - safe-array-concat@1.0.1: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 - isarray: 2.0.5 - safe-array-concat@1.1.2: dependencies: call-bind: 1.0.7 @@ -15687,12 +15201,6 @@ snapshots: safe-json-parse@1.0.1: {} - safe-regex-test@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-regex: 1.1.4 - safe-regex-test@1.0.3: dependencies: call-bind: 1.0.7 @@ -15733,6 +15241,10 @@ snapshots: minimist: 1.2.8 walker: 1.0.8 + saxes@5.0.1: + dependencies: + xmlchars: 2.2.0 + saxes@6.0.0: dependencies: xmlchars: 2.2.0 @@ -15752,20 +15264,34 @@ snapshots: schema-utils@4.2.0: dependencies: '@types/json-schema': 7.0.15 - ajv: 8.12.0 + ajv: 8.17.1 ajv-formats: 2.1.1 - ajv-keywords: 5.1.0(ajv@8.12.0) + ajv-keywords: 5.1.0(ajv@8.17.1) semver@5.7.2: {} semver@6.3.1: {} - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - semver@7.6.3: {} + send@0.18.0: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + send@0.19.0: dependencies: debug: 2.6.9 @@ -15799,13 +15325,6 @@ snapshots: set-blocking@2.0.0: {} - set-function-length@1.1.1: - dependencies: - define-data-property: 1.1.1 - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -15815,12 +15334,6 @@ snapshots: gopd: 1.0.1 has-property-descriptors: 1.0.2 - set-function-name@2.0.1: - dependencies: - define-data-property: 1.1.1 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 - set-function-name@2.0.2: dependencies: define-data-property: 1.1.4 @@ -15855,12 +15368,6 @@ snapshots: shellwords@0.1.1: {} - side-channel@1.0.4: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 - side-channel@1.0.6: dependencies: call-bind: 1.0.7 @@ -15888,12 +15395,18 @@ snapshots: slash@5.1.0: {} + slice-ansi@4.0.0: + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + smart-buffer@4.2.0: {} snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 snapdragon-node@2.1.1: dependencies: @@ -15920,7 +15433,7 @@ snapshots: socket.io-adapter@2.5.5: dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 ws: 8.17.1 transitivePeerDependencies: - bufferutil @@ -15930,7 +15443,7 @@ snapshots: socket.io-parser@4.2.4: dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -15939,7 +15452,7 @@ snapshots: accepts: 1.3.8 base64id: 2.0.0 cors: 2.8.5 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 engine.io: 6.6.1 socket.io-adapter: 2.5.5 socket.io-parser: 4.2.4 @@ -15951,14 +15464,14 @@ snapshots: socks-proxy-agent@6.2.1: dependencies: agent-base: 6.0.2 - debug: 4.3.7(supports-color@8.1.1) - socks: 2.7.1 + debug: 4.3.7 + socks: 2.8.3 transitivePeerDependencies: - supports-color - socks@2.7.1: + socks@2.8.3: dependencies: - ip: 2.0.0 + ip-address: 9.0.5 smart-buffer: 4.2.0 sort-object-keys@1.1.3: {} @@ -15972,8 +15485,6 @@ snapshots: is-plain-obj: 2.1.0 sort-object-keys: 1.1.3 - source-map-js@1.0.2: {} - source-map-js@1.2.1: {} source-map-resolve@0.5.3: @@ -16008,16 +15519,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.16 + spdx-license-ids: 3.0.20 - spdx-exceptions@2.3.0: {} + spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.16 + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 - spdx-license-ids@3.0.16: {} + spdx-license-ids@3.0.20: {} split-string@3.1.0: dependencies: @@ -16033,7 +15544,7 @@ snapshots: stagehand@1.0.1: dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -16065,18 +15576,6 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string.prototype.matchall@4.0.10: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 - internal-slot: 1.0.6 - regexp.prototype.flags: 1.5.1 - set-function-name: 2.0.1 - side-channel: 1.0.4 - string.prototype.matchall@4.0.11: dependencies: call-bind: 1.0.7 @@ -16092,17 +15591,12 @@ snapshots: set-function-name: 2.0.2 side-channel: 1.0.6 - string.prototype.padend@3.1.5: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - - string.prototype.trim@1.2.8: + string.prototype.padend@3.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 string.prototype.trim@1.2.9: dependencies: @@ -16111,24 +15605,12 @@ snapshots: es-abstract: 1.23.3 es-object-atoms: 1.0.0 - string.prototype.trimend@1.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - string.prototype.trimend@1.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - string.prototype.trimstart@1.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - string.prototype.trimstart@1.0.8: dependencies: call-bind: 1.0.7 @@ -16155,10 +15637,12 @@ snapshots: strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-bom@3.0.0: {} + strip-bom@4.0.0: {} + strip-eof@1.0.0: {} strip-final-newline@2.0.0: {} @@ -16175,6 +15659,66 @@ snapshots: styled_string@0.0.1: {} + stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.6.2)): + dependencies: + stylelint: 16.9.0(typescript@5.6.2) + + stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.6.2)): + dependencies: + stylelint: 16.9.0(typescript@5.6.2) + stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2)) + + stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.6.2)): + dependencies: + prettier: 3.3.3 + prettier-linter-helpers: 1.0.0 + stylelint: 16.9.0(typescript@5.6.2) + + stylelint@16.9.0(typescript@5.6.2): + dependencies: + '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) + '@csstools/css-tokenizer': 3.0.1 + '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2) + '@dual-bundle/import-meta-resolve': 4.1.0 + balanced-match: 2.0.0 + colord: 2.9.3 + cosmiconfig: 9.0.0(typescript@5.6.2) + css-functions-list: 3.2.2 + css-tree: 2.3.1 + debug: 4.3.7 + fast-glob: 3.3.2 + fastest-levenshtein: 1.0.16 + file-entry-cache: 9.1.0 + global-modules: 2.0.0 + globby: 11.1.0 + globjoin: 0.1.4 + html-tags: 3.3.1 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-plain-object: 5.0.0 + known-css-properties: 0.34.0 + mathml-tag-names: 2.1.3 + meow: 13.2.0 + micromatch: 4.0.8 + normalize-path: 3.0.0 + picocolors: 1.1.0 + postcss: 8.4.47 + postcss-resolve-nested-selector: 0.1.6 + postcss-safe-parser: 7.0.1(postcss@8.4.47) + postcss-selector-parser: 6.1.2 + postcss-value-parser: 4.2.0 + resolve-from: 5.0.0 + string-width: 4.2.3 + strip-ansi: 7.1.0 + supports-hyperlinks: 3.1.0 + svg-tags: 1.0.0 + table: 6.8.2 + write-file-atomic: 5.0.1 + transitivePeerDependencies: + - supports-color + - typescript + supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -16194,6 +15738,8 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} + svg-tags@1.0.0: {} + symbol-tree@3.2.4: {} symlink-or-copy@1.3.1: {} @@ -16210,7 +15756,7 @@ snapshots: sync-disk-cache@2.1.0: dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 heimdalljs: 0.2.6 mkdirp: 0.5.6 rimraf: 3.0.2 @@ -16223,6 +15769,14 @@ snapshots: '@pkgr/core': 0.1.1 tslib: 2.7.0 + table@6.8.2: + dependencies: + ajv: 8.17.1 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + tap-parser@7.0.0: dependencies: events-to-array: 1.1.2 @@ -16231,7 +15785,7 @@ snapshots: tapable@2.2.1: {} - tar@6.2.0: + tar@6.2.1: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -16357,15 +15911,6 @@ snapshots: dependencies: any-promise: 1.3.0 - thread-loader@3.0.4(webpack@5.95.0): - dependencies: - json-parse-better-errors: 1.0.2 - loader-runner: 4.3.0 - loader-utils: 2.0.4 - neo-async: 2.6.2 - schema-utils: 3.3.0 - webpack: 5.95.0 - through2@3.0.2: dependencies: inherits: 2.0.4 @@ -16373,8 +15918,6 @@ snapshots: through@2.3.8: {} - time-zone@1.0.0: {} - tiny-glob@0.2.9: dependencies: globalyzer: 0.1.0 @@ -16419,8 +15962,6 @@ snapshots: dependencies: kind-of: 3.2.2 - to-readable-stream@1.0.0: {} - to-regex-range@2.1.1: dependencies: is-number: 3.0.0 @@ -16439,16 +15980,35 @@ snapshots: toidentifier@1.0.1: {} + tough-cookie@4.1.4: + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + tough-cookie@5.0.0: dependencies: tldts: 6.1.50 tr46@0.0.3: {} + tr46@2.1.0: + dependencies: + punycode: 2.3.1 + tr46@5.0.0: dependencies: punycode: 2.3.1 + tracked-built-ins@3.3.0(@babel/core@7.25.7): + dependencies: + '@embroider/addon-shim': 1.8.9 + ember-tracked-storage-polyfill: 1.0.0(@babel/core@7.25.7) + transitivePeerDependencies: + - '@babel/core' + - supports-color + tree-kill@1.2.2: {} tree-sync@1.4.0: @@ -16463,7 +16023,7 @@ snapshots: tree-sync@2.1.0: dependencies: - debug: 4.3.4 + debug: 4.3.7 fs-tree-diff: 2.0.1 mkdirp: 0.5.6 quick-temp: 0.1.8 @@ -16475,6 +16035,10 @@ snapshots: dependencies: typescript: 5.5.4 + ts-api-utils@1.3.0(typescript@5.6.2): + dependencies: + typescript: 5.6.2 + ts-clone-node@3.0.0(typescript@5.5.4): dependencies: compatfactory: 3.0.0(typescript@5.5.4) @@ -16489,8 +16053,6 @@ snapshots: tslib@1.14.1: {} - tslib@2.6.2: {} - tslib@2.7.0: {} type-check@0.4.0: @@ -16503,32 +16065,17 @@ snapshots: type-fest@0.21.3: {} - type-fest@4.26.1: {} - type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - typed-array-buffer@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 - typed-array-byte-length@1.0.0: - dependencies: - call-bind: 1.0.5 - for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - typed-array-byte-length@1.0.1: dependencies: call-bind: 1.0.7 @@ -16537,14 +16084,6 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-byte-offset@1.0.0: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - typed-array-byte-offset@1.0.2: dependencies: available-typed-arrays: 1.0.7 @@ -16554,12 +16093,6 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-length@1.0.4: - dependencies: - call-bind: 1.0.5 - for-each: 0.3.3 - is-typed-array: 1.1.12 - typed-array-length@1.0.6: dependencies: call-bind: 1.0.7 @@ -16573,13 +16106,32 @@ snapshots: dependencies: is-typedarray: 1.0.0 + typesafe-path@0.2.2: {} + + typescript-auto-import-cache@0.3.3: + dependencies: + semver: 7.6.3 + + typescript-eslint@8.8.0(eslint@9.12.0)(typescript@5.6.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - eslint + - supports-color + typescript-memoize@1.1.1: {} typescript@5.5.4: {} typescript@5.6.1-rc: {} - ua-parser-js@1.0.37: {} + typescript@5.6.2: {} + + ua-parser-js@1.0.39: {} uc.micro@1.0.6: {} @@ -16588,7 +16140,7 @@ snapshots: unbox-primitive@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -16600,21 +16152,17 @@ snapshots: underscore@1.13.7: {} - undici-types@5.26.5: {} - undici-types@6.19.8: {} - unicode-canonical-property-names-ecmascript@2.0.0: {} + unicode-canonical-property-names-ecmascript@2.0.1: {} unicode-emoji-modifier-base@1.0.0: {} unicode-match-property-ecmascript@2.0.0: dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 - unicode-match-property-value-ecmascript@2.1.0: {} - unicode-match-property-value-ecmascript@2.2.0: {} unicode-property-aliases-ecmascript@2.1.0: {} @@ -16644,6 +16192,8 @@ snapshots: universalify@0.1.2: {} + universalify@0.2.0: {} + universalify@2.0.1: {} unpipe@1.0.0: {} @@ -16655,12 +16205,6 @@ snapshots: upath@2.0.1: {} - update-browserslist-db@1.0.13(browserslist@4.22.2): - dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.1.0 - update-browserslist-db@1.1.1(browserslist@4.24.0): dependencies: browserslist: 4.24.0 @@ -16673,9 +16217,10 @@ snapshots: urix@0.1.0: {} - url-parse-lax@3.0.0: + url-parse@1.5.10: dependencies: - prepend-http: 2.0.0 + querystringify: 2.2.0 + requires-port: 1.0.0 use@3.1.1: {} @@ -16703,6 +16248,27 @@ snapshots: vary@1.1.2: {} + vite@5.4.8(@types/node@22.7.4)(terser@5.34.1): + dependencies: + esbuild: 0.21.5 + postcss: 8.4.47 + rollup: 4.24.0 + optionalDependencies: + '@types/node': 22.7.4 + fsevents: 2.3.3 + terser: 5.34.1 + + volar-service-typescript@0.0.62(@volar/language-service@2.4.0-alpha.16): + dependencies: + path-browserify: 1.0.1 + semver: 7.6.3 + typescript-auto-import-cache: 0.3.3 + vscode-languageserver-textdocument: 1.0.12 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.16 + vscode-json-languageservice@4.2.1: dependencies: jsonc-parser: 3.3.1 @@ -16711,27 +16277,33 @@ snapshots: vscode-nls: 5.2.0 vscode-uri: 3.0.8 - vscode-jsonrpc@8.1.0: {} + vscode-jsonrpc@8.2.0: {} - vscode-languageserver-protocol@3.17.3: + vscode-languageserver-protocol@3.17.5: dependencies: - vscode-jsonrpc: 8.1.0 - vscode-languageserver-types: 3.17.3 + vscode-jsonrpc: 8.2.0 + vscode-languageserver-types: 3.17.5 vscode-languageserver-textdocument@1.0.12: {} - vscode-languageserver-types@3.17.3: {} - vscode-languageserver-types@3.17.5: {} - vscode-languageserver@8.1.0: + vscode-languageserver@9.0.1: dependencies: - vscode-languageserver-protocol: 3.17.3 + vscode-languageserver-protocol: 3.17.5 vscode-nls@5.2.0: {} vscode-uri@3.0.8: {} + w3c-hr-time@1.0.2: + dependencies: + browser-process-hrtime: 1.0.0 + + w3c-xmlserializer@2.0.0: + dependencies: + xml-name-validator: 3.0.0 + w3c-xmlserializer@5.0.0: dependencies: xml-name-validator: 5.0.0 @@ -16784,6 +16356,10 @@ snapshots: 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: {} @@ -16826,11 +16402,15 @@ snapshots: websocket-extensions@0.1.4: {} + whatwg-encoding@1.0.5: + dependencies: + iconv-lite: 0.4.24 + whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 - whatwg-fetch@3.6.20: {} + whatwg-mimetype@2.3.0: {} whatwg-mimetype@4.0.0: {} @@ -16844,6 +16424,12 @@ snapshots: tr46: 0.0.3 webidl-conversions: 3.0.1 + whatwg-url@8.7.0: + dependencies: + lodash: 4.17.21 + tr46: 2.1.0 + webidl-conversions: 6.1.0 + which-boxed-primitive@1.0.2: dependencies: is-bigint: 1.0.4 @@ -16852,14 +16438,6 @@ snapshots: is-string: 1.0.7 is-symbol: 1.0.4 - which-typed-array@1.1.13: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 @@ -16884,6 +16462,8 @@ snapshots: dependencies: string-width: 4.2.3 + word-wrap@1.2.5: {} + wordwrap@1.0.0: {} workerpool@6.5.1: {} @@ -16915,12 +16495,21 @@ snapshots: signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 + write-file-atomic@5.0.1: + dependencies: + imurmurhash: 0.1.4 + signal-exit: 4.1.0 + + ws@7.5.10: {} + ws@8.17.1: {} ws@8.18.0: {} xdg-basedir@4.0.0: {} + xml-name-validator@3.0.0: {} + xml-name-validator@5.0.0: {} xmlchars@2.2.0: {} @@ -16955,7 +16544,7 @@ snapshots: yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 @@ -16964,6 +16553,6 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.0.0: {} + yocto-queue@1.1.1: {} yoctocolors-cjs@2.1.2: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 71919e0d..617a8d8d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,3 @@ packages: - "ember-statechart-component" - - "testing/*" + - "test-app" diff --git a/testing/ember-app/.editorconfig b/test-app/.editorconfig similarity index 100% rename from testing/ember-app/.editorconfig rename to test-app/.editorconfig diff --git a/test-app/.ember-cli b/test-app/.ember-cli new file mode 100644 index 00000000..4defd284 --- /dev/null +++ b/test-app/.ember-cli @@ -0,0 +1,7 @@ +{ + /** + Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript + rather than JavaScript by default, when a TypeScript version of a given blueprint is available. + */ + "isTypeScriptProject": true +} diff --git a/testing/ember-app/.gitignore b/test-app/.gitignore similarity index 56% rename from testing/ember-app/.gitignore rename to test-app/.gitignore index 7e0f7ddc..b034d62e 100644 --- a/testing/ember-app/.gitignore +++ b/test-app/.gitignore @@ -1,26 +1,26 @@ -# See https://help.github.com/ignore-files/ for more about ignoring files. - # compiled output /dist/ +/declarations/ /tmp/ # dependencies -/bower_components/ /node_modules/ # misc /.env* /.pnp* -/.sass-cache /.eslintcache -/connect.lock /coverage/ -/libpeerconnection.log /npm-debug.log* /testem.log /yarn-error.log # ember-try /.node_modules.ember-try/ -/bower.json.ember-try +/npm-shrinkwrap.json.ember-try /package.json.ember-try +/package-lock.json.ember-try +/yarn.lock.ember-try + +# broccoli-debug +/DEBUG/ diff --git a/testing/ember-app/.eslintignore b/test-app/.prettierignore similarity index 51% rename from testing/ember-app/.eslintignore rename to test-app/.prettierignore index 701947ed..9385391f 100644 --- a/testing/ember-app/.eslintignore +++ b/test-app/.prettierignore @@ -1,22 +1,13 @@ # unconventional js /blueprints/*/files/ -/vendor/ # compiled output /dist/ -/tmp/ - -# dependencies -/bower_components/ -/node_modules/ # misc /coverage/ !.* .*/ -.eslintcache # ember-try /.node_modules.ember-try/ -/bower.json.ember-try -/package.json.ember-try diff --git a/testing/ember-app/.prettierrc.js b/test-app/.prettierrc.cjs similarity index 84% rename from testing/ember-app/.prettierrc.js rename to test-app/.prettierrc.cjs index 1ee45a09..0df5847c 100644 --- a/testing/ember-app/.prettierrc.js +++ b/test-app/.prettierrc.cjs @@ -1,17 +1,22 @@ 'use strict'; module.exports = { - printWidth: 100, plugins: ['prettier-plugin-ember-template-tag'], + singleQuote: true, overrides: [ { - // Lol, JavaScript files: ['*.js', '*.ts', '*.cjs', '.mjs', '.cts', '.mts', '.cts'], options: { singleQuote: true, trailingComma: 'es5', }, }, + { + files: ['*.html'], + options: { + singleQuote: false, + }, + }, { files: ['*.json'], options: { @@ -27,7 +32,6 @@ module.exports = { { files: ['*.gjs', '*.gts'], options: { - parser: 'ember-template-tag', singleQuote: true, templateSingleQuote: false, trailingComma: 'es5', diff --git a/test-app/.stylelintignore b/test-app/.stylelintignore new file mode 100644 index 00000000..a0cf71cb --- /dev/null +++ b/test-app/.stylelintignore @@ -0,0 +1,8 @@ +# unconventional files +/blueprints/*/files/ + +# compiled output +/dist/ + +# addons +/.node_modules.ember-try/ diff --git a/test-app/.stylelintrc.js b/test-app/.stylelintrc.js new file mode 100644 index 00000000..021c539a --- /dev/null +++ b/test-app/.stylelintrc.js @@ -0,0 +1,5 @@ +'use strict'; + +module.exports = { + extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'], +}; diff --git a/test-app/.template-lintrc.js b/test-app/.template-lintrc.js new file mode 100644 index 00000000..f35f61c7 --- /dev/null +++ b/test-app/.template-lintrc.js @@ -0,0 +1,5 @@ +'use strict'; + +module.exports = { + extends: 'recommended', +}; diff --git a/test-app/.watchmanconfig b/test-app/.watchmanconfig new file mode 100644 index 00000000..f9c3d8f8 --- /dev/null +++ b/test-app/.watchmanconfig @@ -0,0 +1,3 @@ +{ + "ignore_dirs": ["dist"] +} diff --git a/test-app/README.md b/test-app/README.md new file mode 100644 index 00000000..e1dd2025 --- /dev/null +++ b/test-app/README.md @@ -0,0 +1,57 @@ +# test-app + +This README outlines the details of collaborating on this Ember application. +A short introduction of this app could easily go here. + +## Prerequisites + +You will need the following things properly installed on your computer. + +- [Git](https://git-scm.com/) +- [Node.js](https://nodejs.org/) +- [pnpm](https://pnpm.io/) +- [Ember CLI](https://cli.emberjs.com/release/) +- [Google Chrome](https://google.com/chrome/) + +## Installation + +- `git clone ` this repository +- `cd test-app` +- `pnpm install` + +## Running / Development + +- `pnpm start` +- Visit your app at [http://localhost:4200](http://localhost:4200). +- Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests). + +### Code Generators + +Make use of the many generators for code, try `ember help generate` for more details + +### Running Tests + +- `pnpm test` +- `pnpm test:ember --server` + +### Linting + +- `pnpm lint` +- `pnpm lint:fix` + +### Building + +- `pnpm ember build` (development) +- `pnpm build` (production) + +### Deploying + +Specify what it takes to deploy your app. + +## Further Reading / Useful Links + +- [ember.js](https://emberjs.com/) +- [ember-cli](https://cli.emberjs.com/release/) +- Development Browser Extensions + - [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi) + - [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/) diff --git a/testing/ember-app/app/app.js b/test-app/app/app.ts similarity index 56% rename from testing/ember-app/app/app.js rename to test-app/app/app.ts index 8ffe4a47..a3c0402f 100644 --- a/testing/ember-app/app/app.js +++ b/test-app/app/app.ts @@ -1,15 +1,13 @@ -import 'decorator-transforms/globals'; - import Application from '@ember/application'; - -import config from 'ember-app/config/environment'; -import loadInitializers from 'ember-load-initializers'; +import compatModules from '@embroider/virtual/compat-modules'; import Resolver from 'ember-resolver'; +import loadInitializers from 'ember-load-initializers'; +import config from './config/environment'; export default class App extends Application { modulePrefix = config.modulePrefix; podModulePrefix = config.podModulePrefix; - Resolver = Resolver; + Resolver = Resolver.withModules(compatModules); } -loadInitializers(App, config.modulePrefix); +loadInitializers(App, config.modulePrefix, compatModules); diff --git a/testing/ember-app/app/config/environment.d.ts b/test-app/app/config/environment.d.ts similarity index 67% rename from testing/ember-app/app/config/environment.d.ts rename to test-app/app/config/environment.d.ts index a837adeb..a1d67fdc 100644 --- a/testing/ember-app/app/config/environment.d.ts +++ b/test-app/app/config/environment.d.ts @@ -1,14 +1,14 @@ -export default config; - /** * Type declarations for - * import config from 'my-app/config/environment' + * import config from 'test-app/config/environment' */ declare const config: { environment: string; modulePrefix: string; podModulePrefix: string; - locationType: string; + locationType: 'history' | 'hash' | 'none'; rootURL: string; APP: Record; }; + +export default config; diff --git a/test-app/app/config/environment.js b/test-app/app/config/environment.js new file mode 100644 index 00000000..aa7c541b --- /dev/null +++ b/test-app/app/config/environment.js @@ -0,0 +1,3 @@ +import loadConfigFromMeta from '@embroider/config-meta-loader'; + +export default loadConfigFromMeta('test-app'); diff --git a/testing/ember-app/app/router.js b/test-app/app/router.ts similarity index 59% rename from testing/ember-app/app/router.js rename to test-app/app/router.ts index 9a0a3877..c4a2c0ce 100644 --- a/testing/ember-app/app/router.js +++ b/test-app/app/router.ts @@ -1,10 +1,11 @@ import EmberRouter from '@ember/routing/router'; - -import config from 'ember-app/config/environment'; +import config from 'test-app/config/environment'; export default class Router extends EmberRouter { location = config.locationType; rootURL = config.rootURL; } -Router.map(function () {}); +Router.map(function () { + // Add route declarations here +}); diff --git a/testing/ember-app/app/helpers/.gitkeep b/test-app/app/routes/.gitkeep similarity index 100% rename from testing/ember-app/app/helpers/.gitkeep rename to test-app/app/routes/.gitkeep diff --git a/test-app/app/styles/app.css b/test-app/app/styles/app.css new file mode 100644 index 00000000..2763afa4 --- /dev/null +++ b/test-app/app/styles/app.css @@ -0,0 +1 @@ +/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */ diff --git a/testing/ember-app/app/templates/application.gts b/test-app/app/templates/application.gts similarity index 70% rename from testing/ember-app/app/templates/application.gts rename to test-app/app/templates/application.gts index 43e80720..1f1a0efd 100644 --- a/testing/ember-app/app/templates/application.gts +++ b/test-app/app/templates/application.gts @@ -1,11 +1,14 @@ import Route from 'ember-route-template'; +import { pageTitle } from 'ember-page-title'; import { Toggler } from './demos/toggle'; export default Route( ); diff --git a/testing/ember-app/app/helpers/to-any.ts b/test-app/app/templates/demos/to-any.ts similarity index 100% rename from testing/ember-app/app/helpers/to-any.ts rename to test-app/app/templates/demos/to-any.ts diff --git a/testing/ember-app/app/helpers/to-string.ts b/test-app/app/templates/demos/to-string.ts similarity index 100% rename from testing/ember-app/app/helpers/to-string.ts rename to test-app/app/templates/demos/to-string.ts diff --git a/testing/ember-app/app/templates/demos/toggle.gts b/test-app/app/templates/demos/toggle.gts similarity index 87% rename from testing/ember-app/app/templates/demos/toggle.gts rename to test-app/app/templates/demos/toggle.gts index 8fd30c57..2b8a9178 100644 --- a/testing/ember-app/app/templates/demos/toggle.gts +++ b/test-app/app/templates/demos/toggle.gts @@ -1,5 +1,5 @@ import { createMachine } from 'xstate'; -import { toString } from 'ember-app/helpers/to-string'; +import { toString } from './to-string'; import { on } from '@ember/modifier'; import { fn } from '@ember/helper'; @@ -19,4 +19,4 @@ export const Toggler = +; diff --git a/test-app/babel.config.cjs b/test-app/babel.config.cjs new file mode 100644 index 00000000..2744468a --- /dev/null +++ b/test-app/babel.config.cjs @@ -0,0 +1,52 @@ +const { + babelCompatSupport, + templateCompatSupport, +} = require('@embroider/compat/babel'); + +module.exports = { + plugins: [ + [ + '@babel/plugin-transform-typescript', + { + allExtensions: true, + onlyRemoveTypeImports: true, + allowDeclareFields: true, + }, + ], + [ + 'babel-plugin-ember-template-compilation', + { + compilerPath: require.resolve( + 'ember-source/dist/ember-template-compiler.js' + ), + enableLegacyModules: [ + 'ember-cli-htmlbars', + 'ember-cli-htmlbars-inline-precompile', + 'htmlbars-inline-precompile', + ], + transforms: [...templateCompatSupport()], + }, + ], + [ + 'module:decorator-transforms', + { + runtime: { + import: require.resolve('decorator-transforms/runtime-esm'), + }, + }, + ], + [ + '@babel/plugin-transform-runtime', + { + absoluteRuntime: __dirname, + useESModules: true, + regenerator: false, + }, + ], + ...babelCompatSupport(), + ], + + generatorOpts: { + compact: false, + }, +}; diff --git a/test-app/config/ember-cli-update.json b/test-app/config/ember-cli-update.json new file mode 100644 index 00000000..f7ae04ca --- /dev/null +++ b/test-app/config/ember-cli-update.json @@ -0,0 +1 @@ +{"schemaVersion":"1.0.0","packages":[{"name":"@embroider/app-blueprint","version":"0.12.0","blueprints":[{"name":"@embroider/app-blueprint","isBaseBlueprint":true,"options":["--package-manager pnpm"]}]}]} \ No newline at end of file diff --git a/testing/ember-app/config/environment.js b/test-app/config/environment.js similarity index 87% rename from testing/ember-app/config/environment.js rename to test-app/config/environment.js index 365e9813..113d30ae 100644 --- a/testing/ember-app/config/environment.js +++ b/test-app/config/environment.js @@ -1,20 +1,17 @@ 'use strict'; module.exports = function (environment) { - let ENV = { - modulePrefix: 'ember-app', + const ENV = { + modulePrefix: 'test-app', environment, rootURL: '/', locationType: 'history', EmberENV: { + EXTEND_PROTOTYPES: false, FEATURES: { // Here you can enable experimental features on an ember canary build // e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true }, - EXTEND_PROTOTYPES: { - // Prevent Ember Data from overriding Date.parse. - Date: false, - }, }, APP: { diff --git a/testing/ember-app/config/optional-features.json b/test-app/config/optional-features.json similarity index 58% rename from testing/ember-app/config/optional-features.json rename to test-app/config/optional-features.json index b26286e2..5329dd99 100644 --- a/testing/ember-app/config/optional-features.json +++ b/test-app/config/optional-features.json @@ -2,5 +2,6 @@ "application-template-wrapper": false, "default-async-observers": true, "jquery-integration": false, - "template-only-glimmer-components": true + "template-only-glimmer-components": true, + "no-implicit-route-model": true } diff --git a/test-app/config/targets.js b/test-app/config/targets.js new file mode 100644 index 00000000..1e48e059 --- /dev/null +++ b/test-app/config/targets.js @@ -0,0 +1,11 @@ +'use strict'; + +const browsers = [ + 'last 1 Chrome versions', + 'last 1 Firefox versions', + 'last 1 Safari versions', +]; + +module.exports = { + browsers, +}; diff --git a/test-app/ember-cli-build.js b/test-app/ember-cli-build.js new file mode 100644 index 00000000..ebb76e53 --- /dev/null +++ b/test-app/ember-cli-build.js @@ -0,0 +1,10 @@ +'use strict'; + +const EmberApp = require('ember-cli/lib/broccoli/ember-app'); +const { maybeEmbroider } = require('@embroider/test-setup'); + +module.exports = function (defaults) { + let app = new EmberApp(defaults, {}); + + return maybeEmbroider(app); +}; diff --git a/test-app/eslint.config.mjs b/test-app/eslint.config.mjs new file mode 100644 index 00000000..4fbe283d --- /dev/null +++ b/test-app/eslint.config.mjs @@ -0,0 +1,146 @@ +import globals from 'globals'; +import js from '@eslint/js'; + +import ts from 'typescript-eslint'; + +import ember from 'eslint-plugin-ember'; +import emberRecommended from 'eslint-plugin-ember/configs/recommended'; +import gjsRecommended from 'eslint-plugin-ember/configs/recommended-gjs'; +import gtsRecommended from 'eslint-plugin-ember/configs/recommended-gts'; + +import prettier from 'eslint-plugin-prettier/recommended'; +import qunit from 'eslint-plugin-qunit'; +import n from 'eslint-plugin-n'; + +import emberParser from 'ember-eslint-parser'; +import babelParser from '@babel/eslint-parser'; + +const parserOptions = { + esm: { + js: { + ecmaFeatures: { modules: true }, + ecmaVersion: 'latest', + }, + ts: { + projectService: true, + tsconfigRootDir: import.meta.dirname, + }, + }, +}; + +export default ts.config( + js.configs.recommended, + prettier, + { + files: ['**/*.js'], + languageOptions: { + parser: babelParser, + parserOptions: parserOptions.esm.js, + globals: { + ...globals.browser, + }, + }, + plugins: { + ember, + }, + rules: { + ...emberRecommended.rules, + }, + }, + { + files: ['**/*.ts'], + plugins: { ember }, + languageOptions: { + parserOptions: parserOptions.esm.ts, + }, + extends: [...ts.configs.strictTypeChecked, ...emberRecommended], + }, + { + files: ['**/*.gjs'], + languageOptions: { + parser: emberParser, + parserOptions: parserOptions.esm.js, + globals: { + ...globals.browser, + }, + }, + plugins: { + ember, + }, + rules: { + ...emberRecommended.rules, + ...gjsRecommended.rules, + }, + }, + { + files: ['**/*.gts'], + plugins: { ember }, + languageOptions: { + parserOptions: parserOptions.esm.ts, + }, + extends: [ + ...ts.configs.strictTypeChecked, + ...emberRecommended, + ...gtsRecommended, + ], + }, + { + files: ['tests/**/*-test.{js,gjs}'], + plugins: { + qunit, + }, + }, + /** + * CJS node files + */ + { + files: [ + '**/*.cjs', + 'config/**/*.js', + 'testem.js', + 'testem*.js', + '.prettierrc.js', + '.stylelintrc.js', + '.template-lintrc.js', + 'ember-cli-build.js', + ], + plugins: { + n, + }, + + languageOptions: { + sourceType: 'script', + ecmaVersion: 'latest', + globals: { + ...globals.node, + }, + }, + }, + /** + * ESM node files + */ + { + files: ['*.mjs'], + plugins: { + n, + }, + + languageOptions: { + sourceType: 'module', + ecmaVersion: 'latest', + parserOptions: parserOptions.esm.js, + globals: { + ...globals.node, + }, + }, + }, + /** + * Settings + */ + { + ignores: ['dist/', 'node_modules/', 'coverage/', '!**/.*'], + linterOptions: { + reportUnusedDisableDirectives: 'error', + }, + }, +); diff --git a/test-app/index.html b/test-app/index.html new file mode 100644 index 00000000..1e85d6e2 --- /dev/null +++ b/test-app/index.html @@ -0,0 +1,29 @@ + + + + + AppTemplate + + + + {{content-for "head"}} + + + + + {{content-for "head-footer"}} + + + {{content-for "body"}} + + + + + {{content-for "body-footer"}} + + diff --git a/test-app/package.json b/test-app/package.json new file mode 100644 index 00000000..0a5e680b --- /dev/null +++ b/test-app/package.json @@ -0,0 +1,108 @@ +{ + "name": "test-app", + "version": "0.0.0", + "private": true, + "description": "Small description for test-app goes here", + "repository": "", + "license": "MIT", + "author": "", + "directories": { + "doc": "doc", + "test": "tests" + }, + "scripts": { + "build": "vite build", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto", + "lint:css": "stylelint \"**/*.css\"", + "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto", + "lint:hbs": "ember-template-lint .", + "lint:hbs:fix": "ember-template-lint . --fix", + "lint:js": "eslint . --cache", + "lint:js:fix": "eslint . --fix", + "lint:types": "glint", + "start": "vite", + "test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\" --prefixColors auto", + "test:ember": "vite build --mode test && ember test --path dist" + }, + "devDependencies": { + "@babel/core": "^7.25.2", + "@babel/eslint-parser": "^7.25.7", + "@babel/plugin-transform-typescript": "^7.25.7", + "@ember/optional-features": "^2.1.0", + "@ember/string": "^4.0.0", + "@ember/test-helpers": "^4.0.4", + "@embroider/compat": "3.6.2-unstable.89d7d7f", + "@embroider/config-meta-loader": "0.0.1-unstable.89d7d7f", + "@embroider/core": "3.4.16-unstable.89d7d7f", + "@embroider/test-setup": "4.0.1-unstable.89d7d7f", + "@embroider/vite": "0.2.1-unstable.89d7d7f", + "@glimmer/component": "^1.1.2", + "@glimmer/tracking": "^1.1.2", + "@glint/core": "1.4.1-unstable.b29a807", + "@glint/environment-ember-loose": "1.4.1-unstable.b29a807", + "@glint/environment-ember-template-imports": "1.4.1-unstable.b29a807", + "@glint/template": "1.4.1-unstable.b29a807", + "@rollup/plugin-babel": "^6.0.4", + "@tsconfig/ember": "^3.0.8", + "@types/eslint__js": "^8.42.3", + "@types/qunit": "^2.19.10", + "@types/rsvp": "^4.0.9", + "@typescript-eslint/eslint-plugin": "^8.8.0", + "@typescript-eslint/parser": "^8.8.0", + "babel-plugin-ember-template-compilation": "^2.3.0", + "concurrently": "^9.0.1", + "decorator-transforms": "^2.2.2", + "ember-auto-import": "^2.8.1", + "ember-cli": "~5.12.0", + "ember-cli-babel": "^8.2.0", + "ember-cli-htmlbars": "^6.3.0", + "ember-cli-inject-live-reload": "^2.1.0", + "ember-load-initializers": "^3.0.1", + "ember-modifier": "^4.2.0", + "ember-page-title": "^8.2.3", + "ember-qunit": "^8.1.0", + "ember-resolver": "^13.0.2", + "ember-route-template": "^1.0.3", + "ember-source": "6.1.0-alpha.1", + "ember-template-lint": "^6.0.0", + "eslint": "^9.12.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-ember": "^12.2.1", + "eslint-plugin-n": "^17.10.3", + "eslint-plugin-prettier": "^5.2.1", + "eslint-plugin-qunit": "^8.1.2", + "globals": "^15.10.0", + "loader.js": "^4.7.0", + "prettier": "^3.3.3", + "prettier-plugin-ember-template-tag": "^2.0.2", + "qunit": "^2.22.0", + "qunit-dom": "^3.2.1", + "stylelint": "^16.9.0", + "stylelint-config-standard": "^36.0.1", + "stylelint-prettier": "^5.0.2", + "tracked-built-ins": "^3.3.0", + "typescript": "^5.5.4", + "typescript-eslint": "^8.8.0", + "vite": "^5.4.8", + "webpack": "^5.95.0" + }, + "engines": { + "node": ">= 18" + }, + "ember": { + "edition": "octane" + }, + "ember-addon": { + "type": "app", + "version": 2 + }, + "exports": { + "./tests/*": "./tests/*", + "./*": "./app/*" + }, + "dependencies": { + "ember-statechart-component": "workspace:*", + "xstate": "^5.18.2" + } +} diff --git a/testing/ember-app/public/robots.txt b/test-app/public/robots.txt similarity index 100% rename from testing/ember-app/public/robots.txt rename to test-app/public/robots.txt diff --git a/test-app/testem.js b/test-app/testem.js new file mode 100644 index 00000000..b4b6691f --- /dev/null +++ b/test-app/testem.js @@ -0,0 +1,25 @@ +'use strict'; + +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/test-app/tests/index.html b/test-app/tests/index.html new file mode 100644 index 00000000..cbeba0c1 --- /dev/null +++ b/test-app/tests/index.html @@ -0,0 +1,40 @@ + + + + + AppTemplate Tests + + + + {{content-for "head"}} {{content-for "test-head"}} + + + + + + {{content-for "head-footer"}} {{content-for "test-head-footer"}} + + + {{content-for "body"}} {{content-for "test-body"}} + +
+
+
+
+
+
+ + + + + + + + + {{content-for "body-footer"}} + + diff --git a/testing/ember-app/tests/integration/dynamic-machines-test.ts b/test-app/tests/integration/dynamic-machines-test.gts similarity index 100% rename from testing/ember-app/tests/integration/dynamic-machines-test.ts rename to test-app/tests/integration/dynamic-machines-test.gts diff --git a/testing/ember-app/tests/integration/modifier-test.ts b/test-app/tests/integration/modifier-test.gts similarity index 100% rename from testing/ember-app/tests/integration/modifier-test.ts rename to test-app/tests/integration/modifier-test.gts diff --git a/testing/ember-app/tests/integration/timing-test.ts b/test-app/tests/integration/timing-test.gts similarity index 100% rename from testing/ember-app/tests/integration/timing-test.ts rename to test-app/tests/integration/timing-test.gts diff --git a/testing/ember-app/tests/integration/usage-test.gts b/test-app/tests/integration/usage-test.gts similarity index 100% rename from testing/ember-app/tests/integration/usage-test.gts rename to test-app/tests/integration/usage-test.gts diff --git a/test-app/tests/test-helper.ts b/test-app/tests/test-helper.ts new file mode 100644 index 00000000..d9234a1a --- /dev/null +++ b/test-app/tests/test-helper.ts @@ -0,0 +1,16 @@ +import Application from 'test-app/app'; +import config from 'test-app/config/environment'; +import * as QUnit from 'qunit'; +import { setApplication } from '@ember/test-helpers'; +import { setup } from 'qunit-dom'; +import { start as qunitStart } from 'ember-qunit'; +import { setupComponentMachines } from 'ember-statechart-component'; + +setupComponentMachines(); +export function start() { + setApplication(Application.create(config.APP)); + + setup(QUnit.assert); + + qunitStart(); +} diff --git a/test-app/tsconfig.json b/test-app/tsconfig.json new file mode 100644 index 00000000..7be2de92 --- /dev/null +++ b/test-app/tsconfig.json @@ -0,0 +1,45 @@ +{ + "extends": "@tsconfig/ember/tsconfig.json", + "include": [ + "app", "tests", "types" + ], + "glint": { + "environment": [ + "ember-loose", + "ember-template-imports" + ] + }, + "compilerOptions": { + "allowJs": true, + /** + https://www.typescriptlang.org/tsconfig#noEmitOnError + Do not block emit on TS errors. + */ + "noEmitOnError": false, + + "declaration": false, + "declarationMap": false, + + /** + https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions + + We want our tooling to know how to resolve our custom files so the appropriate plugins + can do the proper transformations on those files. + */ + "allowImportingTsExtensions": true, + "paths": { + "test-app/tests/*": [ + "./tests/*" + ], + "test-app/*": [ + "./app/*" + ], + "*": [ + "./types/*" + ] + }, + "types": [ + "ember-source/types" + ] + }, +} diff --git a/test-app/types/index.d.ts b/test-app/types/index.d.ts new file mode 100644 index 00000000..217abbb2 --- /dev/null +++ b/test-app/types/index.d.ts @@ -0,0 +1 @@ +/// diff --git a/test-app/vite.config.mjs b/test-app/vite.config.mjs new file mode 100644 index 00000000..850ea892 --- /dev/null +++ b/test-app/vite.config.mjs @@ -0,0 +1,62 @@ +import { defineConfig } from 'vite'; +import { + resolver, + scripts, + templateTag, + optimizeDeps, + compatPrebuild, + assets, + contentFor, +} from '@embroider/vite'; +import { babel } from '@rollup/plugin-babel'; + +const extensions = [ + '.mjs', + '.gjs', + '.js', + '.mts', + '.gts', + '.ts', + '.hbs', + '.json', +]; + +export default defineConfig(({ mode }) => { + return { + resolve: { + extensions, + }, + plugins: [ + templateTag(), + scripts(), + resolver(), + compatPrebuild(), + assets(), + contentFor(), + + babel({ + babelHelpers: 'runtime', + extensions, + }), + ], + optimizeDeps: optimizeDeps(), + server: { + port: 4200, + }, + build: { + outDir: 'dist', + rollupOptions: { + input: { + main: 'index.html', + ...(shouldBuildTests(mode) + ? { tests: 'tests/index.html' } + : undefined), + }, + }, + }, + }; +}); + +function shouldBuildTests(mode) { + return mode !== 'production' || process.env.FORCE_BUILD_TESTS; +} diff --git a/testing/ember-app/.ember-cli b/testing/ember-app/.ember-cli deleted file mode 100644 index ee64cfed..00000000 --- a/testing/ember-app/.ember-cli +++ /dev/null @@ -1,9 +0,0 @@ -{ - /** - Ember CLI sends analytics information by default. The data is completely - anonymous, but there are times when you might want to disable this behavior. - - Setting `disableAnalytics` to true will prevent any data from being sent. - */ - "disableAnalytics": false -} diff --git a/testing/ember-app/.eslintrc.js b/testing/ember-app/.eslintrc.js deleted file mode 100644 index e6640041..00000000 --- a/testing/ember-app/.eslintrc.js +++ /dev/null @@ -1,29 +0,0 @@ -'use strict'; - -const { configs } = require('@nullvoxpopuli/eslint-configs'); - -const config = configs.ember(); - -module.exports = { - ...config, - overrides: [ - ...config.overrides, - { - files: ['**/*.gts'], - plugins: ['ember'], - parser: 'ember-eslint-parser', - }, - { - files: ['**/*.gjs'], - plugins: ['ember'], - parser: 'ember-eslint-parser', - }, - { - files: ['**/*.ts'], - rules: { - '@typescript-eslint/ban-types': 'off', - '@typescript-eslint/no-explicit-any': 'off', - }, - }, - ], -}; diff --git a/testing/ember-app/.prettierignore b/testing/ember-app/.prettierignore deleted file mode 100644 index 5db050f6..00000000 --- a/testing/ember-app/.prettierignore +++ /dev/null @@ -1,22 +0,0 @@ -# unconventional js -/blueprints/*/files/ -/vendor/ - -# compiled output -/dist/ -/tmp/ - -# dependencies -/bower_components/ -/node_modules/ - -# misc -/coverage/ -!.* -.eslintcache - -# ember-try -/.node_modules.ember-try/ -/bower.json.ember-try -/package.json.ember-try -*.md diff --git a/testing/ember-app/.template-lintrc.js b/testing/ember-app/.template-lintrc.js deleted file mode 100644 index ed47bd4d..00000000 --- a/testing/ember-app/.template-lintrc.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict'; - -module.exports = { - extends: 'recommended', - overrides: [ - { - files: ['tests/**'], - rules: { - 'require-button-type': 'off', - }, - }, - ], -}; diff --git a/testing/ember-app/.travis.yml b/testing/ember-app/.travis.yml deleted file mode 100644 index d908403e..00000000 --- a/testing/ember-app/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -language: node_js -node_js: - - "12" - -dist: xenial - -addons: - chrome: stable - -cache: - yarn: true - -env: - global: - # See https://git.io/vdao3 for details. - - JOBS=1 - -branches: - only: - - master - -before_install: - - curl -o- -L https://yarnpkg.com/install.sh | bash - - export PATH=$HOME/.yarn/bin:$PATH - -script: - - yarn test diff --git a/testing/ember-app/.watchmanconfig b/testing/ember-app/.watchmanconfig deleted file mode 100644 index e7834e3e..00000000 --- a/testing/ember-app/.watchmanconfig +++ /dev/null @@ -1,3 +0,0 @@ -{ - "ignore_dirs": ["tmp", "dist"] -} diff --git a/testing/ember-app/README.md b/testing/ember-app/README.md deleted file mode 100644 index c547e26b..00000000 --- a/testing/ember-app/README.md +++ /dev/null @@ -1,56 +0,0 @@ -# ember-app - -This README outlines the details of collaborating on this Ember application. -A short introduction of this app could easily go here. - -## Prerequisites - -You will need the following things properly installed on your computer. - -* [Git](https://git-scm.com/) -* [Node.js](https://nodejs.org/) -* [Ember CLI](https://ember-cli.com/) -* [Google Chrome](https://google.com/chrome/) - -## Installation - -* `git clone ` this repository -* `cd ember-app` -* `pnpm install` - -## Running / Development - -* `ember serve` -* Visit your app at [http://localhost:4200](http://localhost:4200). -* Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests). - -### Code Generators - -Make use of the many generators for code, try `ember help generate` for more details - -### Running Tests - -* `ember test` -* `ember test --server` - -### Linting - -* `pnpm lint` -* `pnpm lint:fix` - -### Building - -* `ember build` (development) -* `ember build --environment production` (production) - -### Deploying - -Specify what it takes to deploy your app. - -## Further Reading / Useful Links - -* [ember.js](https://emberjs.com/) -* [ember-cli](https://ember-cli.com/) -* Development Browser Extensions - * [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi) - * [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/) diff --git a/testing/ember-app/app/index.html b/testing/ember-app/app/index.html deleted file mode 100644 index 9e5b7f7d..00000000 --- a/testing/ember-app/app/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - EmberApp - - - - {{content-for "head"}} - - - - - {{content-for "head-footer"}} - - - {{content-for "body"}} - - - - - {{content-for "body-footer"}} - - diff --git a/testing/ember-app/app/styles/app.css b/testing/ember-app/app/styles/app.css deleted file mode 100644 index e69de29b..00000000 diff --git a/testing/ember-app/config/ember-cli-update.json b/testing/ember-app/config/ember-cli-update.json deleted file mode 100644 index 8ad4622c..00000000 --- a/testing/ember-app/config/ember-cli-update.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "schemaVersion": "1.0.0", - "packages": [ - { - "name": "ember-cli", - "version": "3.28.4", - "blueprints": [ - { - "name": "app", - "outputRepo": "https://github.com/ember-cli/ember-new-output", - "codemodsSource": "ember-app-codemods-manifest@1", - "isBaseBlueprint": true, - "options": ["--pnpm"] - } - ] - } - ] -} diff --git a/testing/ember-app/config/ember-try.js b/testing/ember-app/config/ember-try.js deleted file mode 100644 index bcf49283..00000000 --- a/testing/ember-app/config/ember-try.js +++ /dev/null @@ -1,51 +0,0 @@ -'use strict'; - -const getChannelURL = require('ember-source-channel-url'); - -module.exports = async function () { - return { - usePnpm: true, - scenarios: [ - { - name: 'ember-5.1', - npm: { - devDependencies: { - 'ember-source': '~5.1.0', - }, - }, - }, - { - name: 'ember-5.4', - npm: { - devDependencies: { - 'ember-source': '~5.4.0', - }, - }, - }, - { - name: 'ember-release', - npm: { - devDependencies: { - 'ember-source': await getChannelURL('release'), - }, - }, - }, - { - name: 'ember-beta', - npm: { - devDependencies: { - 'ember-source': await getChannelURL('beta'), - }, - }, - }, - { - name: 'ember-canary', - npm: { - devDependencies: { - 'ember-source': await getChannelURL('canary'), - }, - }, - }, - ], - }; -}; diff --git a/testing/ember-app/config/targets.js b/testing/ember-app/config/targets.js deleted file mode 100644 index 9f6cc639..00000000 --- a/testing/ember-app/config/targets.js +++ /dev/null @@ -1,7 +0,0 @@ -'use strict'; - -const browsers = ['last 1 Chrome versions', 'last 1 Firefox versions', 'last 1 Safari versions']; - -module.exports = { - browsers, -}; diff --git a/testing/ember-app/ember-cli-build.js b/testing/ember-app/ember-cli-build.js deleted file mode 100644 index a9095139..00000000 --- a/testing/ember-app/ember-cli-build.js +++ /dev/null @@ -1,81 +0,0 @@ -'use strict'; - -const path = require('path'); -const fs = require('fs'); -const EmberApp = require('ember-cli/lib/broccoli/ember-app'); - -module.exports = async function (defaults) { - const { readPackageUpSync } = await import('read-package-up'); - - let app = new EmberApp(defaults, { - // Temporary until I upgrade the test app to vite - trees: { - app: (() => { - let sideWatch = require('@embroider/broccoli-side-watch'); - - let paths = ['ember-statechart-component'].map((libraryName) => { - let entry = require.resolve(libraryName); - let { packageJson, path: packageJsonPath } = readPackageUpSync({ cwd: entry }); - let packagePath = path.dirname(packageJsonPath); - - console.debug( - `Side-watching ${libraryName} from ${packagePath}, which started in ${entry}` - ); - - let toWatch = packageJson.files - .map((f) => path.join(packagePath, f)) - .filter((p) => { - if (!fs.existsSync(p)) return false; - if (!fs.lstatSync(p).isDirectory()) return false; - - return !p.endsWith('/src'); - }); - - return toWatch; - }); - - return sideWatch('app', { watching: paths.flat() }); - })(), - }, - 'ember-cli-babel': { - enableTypeScriptTransform: true, - // turn off the old transform - // (for this to work when using Embroider you need https://github.com/embroider-build/embroider/pull/1673) - disableDecoratorTransforms: true, - }, - babel: { - plugins: [ - // add the new transform. - require.resolve('decorator-transforms'), - ], - }, - }); - - const { Webpack } = require('@embroider/webpack'); - - return require('@embroider/compat').compatBuild(app, Webpack, { - extraPublicTrees: [], - staticAddonTrees: true, - staticAddonTestSupportTrees: true, - staticHelpers: true, - staticModifiers: true, - staticComponents: true, - staticEmberSource: true, - packageRules: [ - { - package: 'ember-app', - components: { - '{{toggle}}': { safeToIgnore: true }, - '{{toggle-machine}}': { safeToIgnore: true }, - '{{test-machine}}': { safeToIgnore: true }, - '{{report}}': { safeToIgnore: true }, - }, - }, - ], - packagerOptions: { - webpackConfig: { - devtool: 'source-map', - }, - }, - }); -}; diff --git a/testing/ember-app/package.json b/testing/ember-app/package.json deleted file mode 100644 index 20387ad4..00000000 --- a/testing/ember-app/package.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "name": "ember-app", - "version": "0.0.0", - "private": true, - "description": "Small description for ember-app goes here", - "repository": "", - "license": "MIT", - "author": "", - "directories": { - "doc": "doc", - "test": "tests" - }, - "scripts": { - "lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "pnpm lint:js:fix && pnpm lint:prettier:fix", - "lint:hbs": "ember-template-lint .", - "lint:hbs:fix": "ember-template-lint . --fix", - "lint:js": "eslint . --cache", - "lint:js:fix": "eslint . --fix", - "start": "ember serve", - "test:ember": "ember test", - "format:prettier": "prettier . --write", - "lint:prettier": "prettier . --check" - }, - "devDependencies": { - "@babel/core": "7.25.7", - "@babel/eslint-parser": "^7.25.7", - "@ember/optional-features": "^2.1.0", - "@ember/string": "^4.0.0", - "@ember/test-helpers": "^4.0.4", - "@embroider/compat": "^3.6.2", - "@embroider/core": "^3.4.17", - "@embroider/webpack": "^4.0.6", - "@glimmer/component": "^1.1.2", - "@glimmer/tracking": "^1.1.2", - "@glint/core": "^1.4.0", - "@glint/environment-ember-loose": "^1.4.0", - "@glint/environment-ember-template-imports": "^1.4.0", - "@glint/template": "^1.4.0", - "@nullvoxpopuli/eslint-configs": "^4.2.0", - "@types/htmlbars-inline-precompile": "^3.0.3", - "@types/qunit": "^2.19.10", - "@types/rsvp": "^4.0.9", - "@typescript-eslint/eslint-plugin": "^8.8.0", - "@typescript-eslint/parser": "^8.8.0", - "concurrently": "^9.0.1", - "ember-auto-import": "^2.8.1", - "ember-cli": "~5.12.0", - "ember-cli-babel": "^8.2.0", - "ember-cli-htmlbars": "^6.0.1", - "ember-cli-inject-live-reload": "^2.1.0", - "ember-fetch": "^8.1.1", - "ember-functions-as-helper-polyfill": "^2.0.0", - "ember-functions-as-modifiers-polyfill": "^1.0.0", - "ember-load-initializers": "^3.0.1", - "ember-page-title": "^8.2.3", - "ember-qunit": "^8.1.0", - "ember-resolver": "^13.0.2", - "ember-source": "~5.12.0", - "ember-source-channel-url": "^3.0.0", - "ember-template-imports": "^4.1.2", - "ember-template-lint": "^6.0.0", - "ember-try": "^3.0.0", - "eslint": "^8.57.0", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-ember": "^12.2.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^5.2.1", - "eslint-plugin-qunit": "^8.1.2", - "loader.js": "^4.7.0", - "npm-run-all": "^4.1.5", - "prettier": "^3.3.3", - "prettier-plugin-ember-template-tag": "^2.0.0", - "qunit": "^2.22.0", - "qunit-dom": "^3.2.1", - "read-package-up": "^11.0.0", - "typescript": "~5.5.0", - "webpack": "^5.95.0" - }, - "engines": { - "node": ">= 16" - }, - "ember": { - "edition": "octane" - }, - "dependencies": { - "decorator-transforms": "^2.2.2", - "ember-route-template": "^1.0.3", - "ember-statechart-component": "workspace:*", - "xstate": "^5.18.2" - }, - "dependenciesMeta": { - "ember-statechart-component": { - "injected": true - } - }, - "volta": { - "extends": "../../package.json" - } -} diff --git a/testing/ember-app/testem.js b/testing/ember-app/testem.js deleted file mode 100644 index ed2f3712..00000000 --- a/testing/ember-app/testem.js +++ /dev/null @@ -1,23 +0,0 @@ -'use strict'; - -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/testing/ember-app/tests/helpers/.gitkeep b/testing/ember-app/tests/helpers/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/testing/ember-app/tests/index.html b/testing/ember-app/tests/index.html deleted file mode 100644 index 3ab53cd9..00000000 --- a/testing/ember-app/tests/index.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - EmberApp Tests - - - - {{content-for "head"}} {{content-for "test-head"}} - - - - - - {{content-for "head-footer"}} {{content-for "test-head-footer"}} - - - {{content-for "body"}} {{content-for "test-body"}} - -
-
-
-
-
-
- - - - - - - - {{content-for "body-footer"}} {{content-for "test-body-footer"}} - - diff --git a/testing/ember-app/tests/test-helper.ts b/testing/ember-app/tests/test-helper.ts deleted file mode 100644 index 10743a37..00000000 --- a/testing/ember-app/tests/test-helper.ts +++ /dev/null @@ -1,17 +0,0 @@ -import "decorator-transforms/globals"; - -import { setApplication } from '@ember/test-helpers'; -import * as QUnit from 'qunit'; -import { setup } from 'qunit-dom'; -import { start } from 'ember-qunit'; - -import Application from 'ember-app/app'; -import config from 'ember-app/config/environment'; -import { setupComponentMachines } from 'ember-statechart-component'; - -setApplication(Application.create(config.APP)); - -setupComponentMachines(); -setup(QUnit.assert); - -start(); diff --git a/testing/ember-app/tsconfig.json b/testing/ember-app/tsconfig.json deleted file mode 100644 index ca729476..00000000 --- a/testing/ember-app/tsconfig.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "glint": { - "environment": ["ember-loose", "ember-template-imports"] - }, - "compilerOptions": { - "target": "es2020", - "allowJs": true, - "moduleResolution": "node", - "allowSyntheticDefaultImports": true, - "noImplicitAny": true, - "noImplicitThis": true, - "alwaysStrict": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "noFallthroughCasesInSwitch": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitReturns": true, - "noEmitOnError": false, - "noEmit": true, - "inlineSourceMap": true, - "inlineSources": true, - "baseUrl": ".", - "module": "es6", - "experimentalDecorators": true, - "paths": { - "ember-app/tests/*": ["tests/*"], - "ember-app/*": ["app/*"], - "*": ["types/*"] - } - }, - "include": ["app/**/*", "tests/**/*", "types/**/*"] -} diff --git a/testing/ember-app/types/ember-app/glint-registry.d.ts b/testing/ember-app/types/ember-app/glint-registry.d.ts deleted file mode 100644 index 236e41a6..00000000 --- a/testing/ember-app/types/ember-app/glint-registry.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -import '@glint/environment-ember-loose'; -import '@glint/environment-ember-loose/native-integration'; -import 'ember-page-title/glint'; - -import type { HelperLike } from '@glint/template'; -import type { MachineComponent } from 'ember-statechart-component/glint'; - -// declare module '@fortawesome/ember-fontawesome/components/fa-icon' { -// export default ComponentLike; -// } - -declare module '@glint/environment-ember-loose/registry' { - export default interface Registry { - // How to define globals from external addons - // state: HelperLike<{ Args: {}, Return: State }>; - // attachShadow: ModifierLike<{ Args: { Positional: [State['update']]}}>; - - /** - * Components - */ - ToggleMachine: MachineComponent; - TestMachine: MachineComponent; - - /** - * Helpers - */ - report: HelperLike<{ - Args: { - Positional: [any]; - }; - Return: any; - }>; - 'to-string': HelperLike<{ - Args: { - Positional: [any]; - }; - Return: string; - }>; - /** - * lazy way of not being able to disable - * glint type checking in some templates - */ - 'to-any': HelperLike<{ - Args: { - Positional: [any, string]; - }; - Return: any; - }>; - - /** - * Modifiers - */ - } -} diff --git a/testing/ember-app/types/ember-app/index.d.ts b/testing/ember-app/types/ember-app/index.d.ts deleted file mode 100644 index 33a43970..00000000 --- a/testing/ember-app/types/ember-app/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -import 'ember-source/types'; diff --git a/testing/ember-app/vendor/.gitkeep b/testing/ember-app/vendor/.gitkeep deleted file mode 100644 index e69de29b..00000000 From b090b79851884d4a56dd6d03d89cae9b884d6f8d Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 6 Oct 2024 22:25:57 -0400 Subject: [PATCH 04/52] ooo --- test-app/tests/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/test-app/tests/index.html b/test-app/tests/index.html index cbeba0c1..d9ab18fc 100644 --- a/test-app/tests/index.html +++ b/test-app/tests/index.html @@ -9,7 +9,6 @@ {{content-for "head"}} {{content-for "test-head"}} - {{content-for "head-footer"}} {{content-for "test-head-footer"}} From d6571336eb54ae6aa75e7a5146f132206273010e Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 6 Oct 2024 22:32:10 -0400 Subject: [PATCH 05/52] ooo --- .github/workflows/ci.yml | 5 +- .npmrc | 5 ++ pnpm-lock.yaml | 99 ++++++++++++++++++---------------------- 3 files changed, 52 insertions(+), 57 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34df4a91..2830ac77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,14 +1,13 @@ name: CI "on": + workflow_dispatch: {} pull_request: null push: branches: - main schedule: - cron: "0 3 * * 0 " -env: - CI: true - dist: ember-statechart-component/dist + jobs: install_dependencies: name: Install Dependencies diff --git a/.npmrc b/.npmrc index d8203379..bdb37c83 100644 --- a/.npmrc +++ b/.npmrc @@ -3,3 +3,8 @@ resolution-mode=highest # super strict mode auto-install-peers=false resolve-peers-from-workspace-root=false + +# default is true, we do this to try to have more isolation +# since we test with incompatible sets of TS types. +; shared-workspace-lockfile=false + diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3934124a..ce128dee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -233,7 +233,7 @@ importers: version: 1.1.2 '@glint/core': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(typescript@5.6.2) + version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) @@ -260,10 +260,10 @@ importers: version: 4.0.9 '@typescript-eslint/eslint-plugin': specifier: ^8.8.0 - version: 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0)(typescript@5.6.2) + version: 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^8.8.0 - version: 8.8.0(eslint@9.12.0)(typescript@5.6.2) + version: 8.8.0(eslint@9.12.0)(typescript@5.5.4) babel-plugin-ember-template-compilation: specifier: ^2.3.0 version: 2.3.0 @@ -320,7 +320,7 @@ importers: version: 9.1.0(eslint@9.12.0) eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0) eslint-plugin-n: specifier: ^17.10.3 version: 17.10.3(eslint@9.12.0) @@ -350,22 +350,22 @@ importers: version: 3.2.1 stylelint: specifier: ^16.9.0 - version: 16.9.0(typescript@5.6.2) + version: 16.9.0(typescript@5.5.4) stylelint-config-standard: specifier: ^36.0.1 - version: 36.0.1(stylelint@16.9.0(typescript@5.6.2)) + version: 36.0.1(stylelint@16.9.0(typescript@5.5.4)) stylelint-prettier: specifier: ^5.0.2 - version: 5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.6.2)) + version: 5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.5.4)) tracked-built-ins: specifier: ^3.3.0 version: 3.3.0(@babel/core@7.25.7) typescript: specifier: ^5.5.4 - version: 5.6.2 + version: 5.5.4 typescript-eslint: specifier: ^8.8.0 - version: 8.8.0(eslint@9.12.0)(typescript@5.6.2) + version: 8.8.0(eslint@9.12.0)(typescript@5.5.4) vite: specifier: ^5.4.8 version: 5.4.8(@types/node@22.7.4)(terser@5.34.1) @@ -9654,7 +9654,7 @@ snapshots: '@types/glob@7.2.0': dependencies: - '@types/minimatch': 5.1.2 + '@types/minimatch': 3.0.5 '@types/node': 22.7.4 '@types/glob@8.1.0': @@ -9736,21 +9736,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0)(typescript@5.6.2)': + '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) '@typescript-eslint/scope-manager': 8.8.0 - '@typescript-eslint/type-utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) - '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/type-utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) '@typescript-eslint/visitor-keys': 8.8.0 eslint: 9.12.0 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: - typescript: 5.6.2 + typescript: 5.5.4 transitivePeerDependencies: - supports-color @@ -9780,16 +9780,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2)': + '@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4)': dependencies: '@typescript-eslint/scope-manager': 8.8.0 '@typescript-eslint/types': 8.8.0 - '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) '@typescript-eslint/visitor-keys': 8.8.0 debug: 4.3.7 eslint: 9.12.0 optionalDependencies: - typescript: 5.6.2 + typescript: 5.5.4 transitivePeerDependencies: - supports-color @@ -9810,14 +9810,14 @@ snapshots: - eslint - supports-color - '@typescript-eslint/type-utils@8.8.0(eslint@9.12.0)(typescript@5.6.2)': + '@typescript-eslint/type-utils@8.8.0(eslint@9.12.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) - '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) + '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) debug: 4.3.7 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: - typescript: 5.6.2 + typescript: 5.5.4 transitivePeerDependencies: - eslint - supports-color @@ -9865,12 +9865,12 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@8.8.0(eslint@9.12.0)(typescript@5.6.2)': + '@typescript-eslint/utils@8.8.0(eslint@9.12.0)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) '@typescript-eslint/scope-manager': 8.8.0 '@typescript-eslint/types': 8.8.0 - '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) eslint: 9.12.0 transitivePeerDependencies: - supports-color @@ -11127,15 +11127,6 @@ snapshots: optionalDependencies: typescript: 5.5.4 - cosmiconfig@9.0.0(typescript@5.6.2): - dependencies: - env-paths: 2.2.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - optionalDependencies: - typescript: 5.6.2 - cross-spawn@6.0.5: dependencies: nice-try: 1.0.5 @@ -11719,7 +11710,7 @@ snapshots: transitivePeerDependencies: - eslint - ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0): + ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0): dependencies: '@babel/core': 7.25.7 '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@9.12.0) @@ -11728,7 +11719,7 @@ snapshots: eslint-scope: 7.2.2 html-tags: 3.3.1 optionalDependencies: - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) transitivePeerDependencies: - eslint @@ -12290,11 +12281,11 @@ snapshots: transitivePeerDependencies: - '@babel/core' - eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0): + eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0): dependencies: '@ember-data/rfc395-data': 0.0.4 css-tree: 2.3.1 - ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0) + ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0) ember-rfc176-data: 0.3.18 eslint: 9.12.0 eslint-utils: 3.0.0(eslint@9.12.0) @@ -12304,7 +12295,7 @@ snapshots: requireindex: 1.2.0 snake-case: 3.0.4 optionalDependencies: - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) transitivePeerDependencies: - '@babel/core' @@ -15659,22 +15650,22 @@ snapshots: styled_string@0.0.1: {} - stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.6.2)): + stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.5.4)): dependencies: - stylelint: 16.9.0(typescript@5.6.2) + stylelint: 16.9.0(typescript@5.5.4) - stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.6.2)): + stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.5.4)): dependencies: - stylelint: 16.9.0(typescript@5.6.2) - stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2)) + stylelint: 16.9.0(typescript@5.5.4) + stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4)) - stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.6.2)): + stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.5.4)): dependencies: prettier: 3.3.3 prettier-linter-helpers: 1.0.0 - stylelint: 16.9.0(typescript@5.6.2) + stylelint: 16.9.0(typescript@5.5.4) - stylelint@16.9.0(typescript@5.6.2): + stylelint@16.9.0(typescript@5.5.4): dependencies: '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) '@csstools/css-tokenizer': 3.0.1 @@ -15683,7 +15674,7 @@ snapshots: '@dual-bundle/import-meta-resolve': 4.1.0 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.6.2) + cosmiconfig: 9.0.0(typescript@5.5.4) css-functions-list: 3.2.2 css-tree: 2.3.1 debug: 4.3.7 @@ -16112,13 +16103,13 @@ snapshots: dependencies: semver: 7.6.3 - typescript-eslint@8.8.0(eslint@9.12.0)(typescript@5.6.2): + typescript-eslint@8.8.0(eslint@9.12.0)(typescript@5.5.4): dependencies: - '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.6.2))(eslint@9.12.0)(typescript@5.6.2) - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.6.2) - '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.6.2) + '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) optionalDependencies: - typescript: 5.6.2 + typescript: 5.5.4 transitivePeerDependencies: - eslint - supports-color From a8f7a53d2109083bceafd23e47680a61c9849ef4 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 6 Oct 2024 22:32:41 -0400 Subject: [PATCH 06/52] ooo --- test-app/app/routes/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 test-app/app/routes/.gitkeep diff --git a/test-app/app/routes/.gitkeep b/test-app/app/routes/.gitkeep deleted file mode 100644 index e69de29b..00000000 From 188ab4e08c878e3eee507ef63896d1c19c19898d Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 7 Oct 2024 22:35:20 -0400 Subject: [PATCH 07/52] wip --- ember-statechart-component/package.json | 1 - ember-statechart-component/src/index.ts | 2 +- ember-statechart-component/tsconfig.json | 6 +- .../missing-types.d.ts | 1 - package.json | 1 - pnpm-lock.yaml | 652 +++++------------- test-app/.stylelintignore | 8 - test-app/.stylelintrc.js | 5 - test-app/README.md | 57 -- test-app/app/app.ts | 2 + test-app/babel.config.cjs | 4 +- test-app/eslint.config.mjs | 2 - test-app/package.json | 17 +- test-app/tests/index.html | 1 + test-app/tests/test-helper.ts | 1 + test-app/vite.config.mjs | 2 + 16 files changed, 186 insertions(+), 576 deletions(-) delete mode 100644 ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts delete mode 100644 test-app/.stylelintignore delete mode 100644 test-app/.stylelintrc.js delete mode 100644 test-app/README.md diff --git a/ember-statechart-component/package.json b/ember-statechart-component/package.json index 13c458d9..13dc8bdb 100644 --- a/ember-statechart-component/package.json +++ b/ember-statechart-component/package.json @@ -77,7 +77,6 @@ "eslint-plugin-import": "^2.31.0", "eslint-plugin-json": "^4.0.1", "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-simple-import-sort": "^12.1.1", "npm-run-all": "4.1.5", "prettier": "^3.3.3", diff --git a/ember-statechart-component/src/index.ts b/ember-statechart-component/src/index.ts index df610c38..d42c2094 100644 --- a/ember-statechart-component/src/index.ts +++ b/ember-statechart-component/src/index.ts @@ -1,4 +1,4 @@ -import { getOwner } from '@ember/application'; +import { getOwner } from '@ember/owner'; import { assert } from '@ember/debug'; import type ApplicationInstance from '@ember/application/instance'; diff --git a/ember-statechart-component/tsconfig.json b/ember-statechart-component/tsconfig.json index 4aac426b..ff38900a 100644 --- a/ember-statechart-component/tsconfig.json +++ b/ember-statechart-component/tsconfig.json @@ -1,6 +1,5 @@ { "extends": "@tsconfig/ember/tsconfig.json", - "include": ["src/**/*", "unpublished-development-types/**/*"], "glint": { "environment": ["ember-loose", "ember-template-imports"] }, @@ -34,6 +33,9 @@ We want our tooling to know how to resolve our custom files so the appropriate plugins can do the proper transformations on those files. */ - "allowImportingTsExtensions": true + "allowImportingTsExtensions": true, + "types": [ + "../test-app/node_modules/ember-source/types" + ] } } diff --git a/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts b/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts deleted file mode 100644 index 33a43970..00000000 --- a/ember-statechart-component/unpublished-developmentn-types/missing-types.d.ts +++ /dev/null @@ -1 +0,0 @@ -import 'ember-source/types'; diff --git a/package.json b/package.json index 3a2db8b7..56dda42b 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "eslint": "^8.56.0", "eslint-plugin-ember": "^12.2.1", "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^5.2.1", "prettier": "^3.3.3", "release-plan": "^0.9.0", "typescript": "^5.5.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ce128dee..a116467e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,10 +24,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.6.2) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 @@ -46,9 +46,6 @@ importers: eslint-plugin-node: specifier: ^11.1.0 version: 11.1.0(eslint@8.57.1) - eslint-plugin-prettier: - specifier: ^5.2.1 - version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) prettier: specifier: ^3.3.3 version: 3.3.3 @@ -106,13 +103,13 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) + version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) '@rollup/plugin-babel': specifier: ^6.0.4 version: 6.0.4(@babel/core@7.25.7)(rollup@4.24.0) @@ -133,7 +130,7 @@ importers: version: 2.2.2(@babel/core@7.25.7) ember-source: specifier: ^5.5.0 - version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5) + version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) ember-template-lint: specifier: 6.0.0 version: 6.0.0 @@ -155,9 +152,6 @@ importers: eslint-plugin-node: specifier: ^11.1.0 version: 11.1.0(eslint@8.57.1) - eslint-plugin-prettier: - specifier: ^5.2.1 - version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-simple-import-sort: specifier: ^12.1.1 version: 12.1.1(eslint@8.57.1) @@ -208,8 +202,8 @@ importers: specifier: ^4.0.0 version: 4.0.0 '@ember/test-helpers': - specifier: ^4.0.4 - version: 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + specifier: ^3.3.1 + version: 3.3.1(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(webpack@5.95.0) '@embroider/compat': specifier: 3.6.2-unstable.89d7d7f version: 3.6.2-unstable.89d7d7f(@embroider/core@3.4.16-unstable.89d7d7f(@glint/template@1.4.1-unstable.b29a807))(@glint/template@1.4.1-unstable.b29a807) @@ -236,10 +230,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 @@ -259,11 +253,11 @@ importers: specifier: ^4.0.9 version: 4.0.9 '@typescript-eslint/eslint-plugin': - specifier: ^8.8.0 - version: 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4) + specifier: ^8.8.1 + version: 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4) '@typescript-eslint/parser': - specifier: ^8.8.0 - version: 8.8.0(eslint@9.12.0)(typescript@5.5.4) + specifier: ^8.8.1 + version: 8.8.1(eslint@9.12.0)(typescript@5.5.4) babel-plugin-ember-template-compilation: specifier: ^2.3.0 version: 2.3.0 @@ -290,43 +284,37 @@ importers: version: 2.1.0 ember-load-initializers: specifier: ^3.0.1 - version: 3.0.1(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + version: 3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-modifier: specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + version: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-page-title: specifier: ^8.2.3 - version: 8.2.3(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + version: 8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-qunit: specifier: ^8.1.0 - version: 8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0) + version: 8.1.0(@babel/core@7.25.7)(@ember/test-helpers@3.3.1(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(webpack@5.95.0))(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0) ember-resolver: specifier: ^13.0.2 - version: 13.0.2(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + version: 13.0.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-route-template: specifier: ^1.0.3 version: 1.0.3 ember-source: - specifier: 6.1.0-alpha.1 - version: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + specifier: ~5.12.0 + version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) ember-template-lint: specifier: ^6.0.0 version: 6.0.0 eslint: specifier: ^9.12.0 version: 9.12.0 - eslint-config-prettier: - specifier: ^9.1.0 - version: 9.1.0(eslint@9.12.0) eslint-plugin-ember: specifier: ^12.2.1 - version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0) + version: 12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0) eslint-plugin-n: specifier: ^17.10.3 version: 17.10.3(eslint@9.12.0) - eslint-plugin-prettier: - specifier: ^5.2.1 - version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@9.12.0))(eslint@9.12.0)(prettier@3.3.3) eslint-plugin-qunit: specifier: ^8.1.2 version: 8.1.2(eslint@9.12.0) @@ -348,15 +336,6 @@ importers: qunit-dom: specifier: ^3.2.1 version: 3.2.1 - stylelint: - specifier: ^16.9.0 - version: 16.9.0(typescript@5.5.4) - stylelint-config-standard: - specifier: ^36.0.1 - version: 36.0.1(stylelint@16.9.0(typescript@5.5.4)) - stylelint-prettier: - specifier: ^5.0.2 - version: 5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.5.4)) tracked-built-ins: specifier: ^3.3.0 version: 3.3.0(@babel/core@7.25.7) @@ -364,8 +343,8 @@ importers: specifier: ^5.5.4 version: 5.5.4 typescript-eslint: - specifier: ^8.8.0 - version: 8.8.0(eslint@9.12.0)(typescript@5.5.4) + specifier: ^8.8.1 + version: 8.8.1(eslint@9.12.0)(typescript@5.5.4) vite: specifier: ^5.4.8 version: 5.4.8(@types/node@22.7.4)(terser@5.34.1) @@ -1042,32 +1021,6 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} - '@csstools/css-parser-algorithms@3.0.1': - resolution: {integrity: sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-tokenizer': ^3.0.1 - - '@csstools/css-tokenizer@3.0.1': - resolution: {integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==} - engines: {node: '>=18'} - - '@csstools/media-query-list-parser@3.0.1': - resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.1 - '@csstools/css-tokenizer': ^3.0.1 - - '@csstools/selector-specificity@4.0.0': - resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==} - engines: {node: '>=18'} - peerDependencies: - postcss-selector-parser: ^6.1.0 - - '@dual-bundle/import-meta-resolve@4.1.0': - resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==} - '@ember-data/rfc395-data@0.0.4': resolution: {integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ==} @@ -1081,10 +1034,11 @@ packages: '@ember/string@4.0.0': resolution: {integrity: sha512-IMVyVE72twuAMSYcHzWSgtgYTtzlHlKSGW8vEbztnnmkU6uo7kVHmiqSN9R4RkBhzvh0VD4G76Eph+55t3iNIA==} - '@ember/test-helpers@4.0.4': - resolution: {integrity: sha512-1mbOVyVEcLxYOGzBaeeaQkCrL1o9Av86QaHk/1RvrVBW24I6YUj1ILLEi2qLZT5PzcCy0TdfadHT3hKJwJ0GcQ==} + '@ember/test-helpers@3.3.1': + resolution: {integrity: sha512-h4uFBy4pquBtHsHI+tx9S0wtMmn1L+8dkXiDiyoqG1+3e0Awk6GBujiFM9s4ANq6wC8uIhC3wEFyts10h2OAoQ==} + engines: {node: 16.* || >= 18} peerDependencies: - ember-source: '>= 4.0.0' + ember-source: ^4.0.0 || ^5.0.0 '@ember/test-waiters@3.1.0': resolution: {integrity: sha512-bb9h95ktG2wKY9+ja1sdsFBdOms2lB19VWs8wmNpzgHv1NCetonBoV5jHBV4DHt0uS1tg9z66cZqhUVlYs96KQ==} @@ -2127,6 +2081,17 @@ packages: typescript: optional: true + '@typescript-eslint/eslint-plugin@8.8.1': + resolution: {integrity: sha512-xfvdgA8AP/vxHgtgU310+WBnLB4uJQ9XdyP17RebG26rLtDrQJV3ZYrcopX91GrHmMoH8bdSwMRh2a//TiJ1jQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + '@typescript-eslint/parser@8.8.0': resolution: {integrity: sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -2137,10 +2102,24 @@ packages: typescript: optional: true + '@typescript-eslint/parser@8.8.1': + resolution: {integrity: sha512-hQUVn2Lij2NAxVFEdvIGxT9gP1tq2yM83m+by3whWFsWC+1y8pxxxHUFE1UqDu2VsGi2i6RLcv4QvouM84U+ow==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + '@typescript-eslint/scope-manager@8.8.0': resolution: {integrity: sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/scope-manager@8.8.1': + resolution: {integrity: sha512-X4JdU+66Mazev/J0gfXlcC/dV6JI37h+93W9BRYXrSn0hrE64IoWgVkO9MSJgEzoWkxONgaQpICWg8vAN74wlA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/type-utils@8.8.0': resolution: {integrity: sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -2150,10 +2129,23 @@ packages: typescript: optional: true + '@typescript-eslint/type-utils@8.8.1': + resolution: {integrity: sha512-qSVnpcbLP8CALORf0za+vjLYj1Wp8HSoiI8zYU5tHxRVj30702Z1Yw4cLwfNKhTPWp5+P+k1pjmD5Zd1nhxiZA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + '@typescript-eslint/types@8.8.0': resolution: {integrity: sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/types@8.8.1': + resolution: {integrity: sha512-WCcTP4SDXzMd23N27u66zTKMuEevH4uzU8C9jf0RO4E04yVHgQgW+r+TeVTNnO1KIfrL8ebgVVYYMMO3+jC55Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@8.8.0': resolution: {integrity: sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -2163,16 +2155,35 @@ packages: typescript: optional: true + '@typescript-eslint/typescript-estree@8.8.1': + resolution: {integrity: sha512-A5d1R9p+X+1js4JogdNilDuuq+EHZdsH9MjTVxXOdVFfTJXunKJR/v+fNNyO4TnoOn5HqobzfRlc70NC6HTcdg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + '@typescript-eslint/utils@8.8.0': resolution: {integrity: sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 + '@typescript-eslint/utils@8.8.1': + resolution: {integrity: sha512-/QkNJDbV0bdL7H7d0/y0qBbV2HTtf0TIyjSDTvvmQEzeVx8jEImEbLuOA4EsvE8gIgqMitns0ifb5uQhMj8d9w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + '@typescript-eslint/visitor-keys@8.8.0': resolution: {integrity: sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.8.1': + resolution: {integrity: sha512-0/TdC3aeRAsW7MDvYRwEc1Uwm0TIBfzjPFgg60UU2Haj5qsCs9cc3zNgY71edqE3LbWfF/WoZQd3lJoDXFQpag==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} @@ -2488,10 +2499,6 @@ packages: resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} engines: {node: '>=4'} - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - async-disk-cache@1.3.5: resolution: {integrity: sha512-VZpqfR0R7CEOJZ/0FOTgWq70lCrZyS1rkI8PXugDUkTKyyAUgZ2zQ09gLhMkEn+wN8LYeUTPxZdXtlX/kmbXKQ==} @@ -2611,9 +2618,6 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - balanced-match@2.0.0: - resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} - base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -2975,9 +2979,6 @@ packages: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true - colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - colors@1.0.3: resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} @@ -3305,10 +3306,6 @@ packages: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} - css-functions-list@3.2.2: - resolution: {integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==} - engines: {node: '>=12 || >=16'} - css-loader@5.2.7: resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} engines: {node: '>= 10.13.0'} @@ -3654,12 +3651,6 @@ packages: peerDependencies: '@glimmer/component': ^1.1.2 - ember-source@6.1.0-alpha.1: - resolution: {integrity: sha512-ZG7dRVfSGIE8zrI9WRCv6wp5kKkNHHoG3SG2Dw32xWKxNSiUpWLVio0so3D3/M32S7jG298cAgDborGucj3HwQ==} - engines: {node: '>= 18.*'} - peerDependencies: - '@glimmer/component': ^1.1.2 - ember-template-imports@3.4.2: resolution: {integrity: sha512-OS8TUVG2kQYYwP3netunLVfeijPoOKIs1SvPQRTNOQX4Pu8xGGBEZmrv0U1YTnQn12Eg+p6w/0UdGbUnITjyzw==} engines: {node: 12.* || >= 14} @@ -3818,12 +3809,6 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-config-prettier@9.1.0: - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - eslint-formatter-kakoune@1.0.0: resolution: {integrity: sha512-Uk/TVLt6Nf6Xoz7C1iYuZjOSdJxe5aaauGRke8JhKeJwD66Y61/pY2FjtLP04Ooq9PwV34bzrkKkU2UZ5FtDRA==} @@ -4139,10 +4124,6 @@ packages: fast-uri@3.0.2: resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==} - fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} - fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} @@ -4172,10 +4153,6 @@ packages: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} - file-entry-cache@9.1.0: - resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==} - engines: {node: '>=18'} - filesize@10.1.6: resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==} engines: {node: '>= 10.4.0'} @@ -4248,10 +4225,6 @@ packages: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} - flat-cache@5.0.0: - resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==} - engines: {node: '>=18'} - flatted@3.3.1: resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} @@ -4456,18 +4429,10 @@ packages: resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} engines: {node: '>=0.10.0'} - global-modules@2.0.0: - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} - engines: {node: '>=6'} - global-prefix@1.0.2: resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} engines: {node: '>=0.10.0'} - global-prefix@3.0.0: - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} - engines: {node: '>=6'} - globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} @@ -4507,9 +4472,6 @@ packages: resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} engines: {node: '>=18'} - globjoin@0.1.4: - resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} - globrex@0.1.2: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} @@ -5124,9 +5086,6 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - known-css-properties@0.34.0: - resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==} - ky@1.7.2: resolution: {integrity: sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==} engines: {node: '>=18'} @@ -5229,9 +5188,6 @@ packages: lodash.omit@4.5.0: resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==} - lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} @@ -5319,9 +5275,6 @@ packages: resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} engines: {node: 6.* || 8.* || >= 10.*} - 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==} @@ -5343,10 +5296,6 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - meow@13.2.0: - resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} - engines: {node: '>=18'} - merge-descriptors@1.0.3: resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} @@ -5964,15 +5913,6 @@ packages: peerDependencies: postcss: ^8.1.0 - postcss-resolve-nested-selector@0.1.6: - resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==} - - postcss-safe-parser@7.0.1: - resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==} - engines: {node: '>=18.0'} - peerDependencies: - postcss: ^8.4.31 - postcss-selector-parser@6.1.2: resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} engines: {node: '>=4'} @@ -6231,10 +6171,6 @@ packages: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - resolve-package-path@1.2.7: resolution: {integrity: sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q==} @@ -6550,10 +6486,6 @@ packages: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} @@ -6768,30 +6700,6 @@ packages: styled_string@0.0.1: resolution: {integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA==} - stylelint-config-recommended@14.0.1: - resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==} - engines: {node: '>=18.12.0'} - peerDependencies: - stylelint: ^16.1.0 - - stylelint-config-standard@36.0.1: - resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==} - engines: {node: '>=18.12.0'} - peerDependencies: - stylelint: ^16.1.0 - - stylelint-prettier@5.0.2: - resolution: {integrity: sha512-qJ+BN+1T2ZcKz9WIrv0x+eFGHzSUnXfXd5gL///T6XoJvr3D8/ztzz2fhtmXef7Vb8P33zBXmLTTveByr0nwBw==} - engines: {node: '>=18.12.0'} - peerDependencies: - prettier: '>=3.0.0' - stylelint: '>=16.0.0' - - stylelint@16.9.0: - resolution: {integrity: sha512-31Nm3WjxGOBGpQqF43o3wO9L5AC36TPIe6030Lnm13H3vDMTcS21DrLh69bMX+DBilKqMMVLian4iG6ybBoNRQ==} - engines: {node: '>=18.12.0'} - hasBin: true - supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -6812,9 +6720,6 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - svg-tags@1.0.0: - resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} - symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -6832,10 +6737,6 @@ packages: resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} engines: {node: ^14.18.0 || >=16.0.0} - table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} - engines: {node: '>=10.0.0'} - tap-parser@7.0.0: resolution: {integrity: sha512-05G8/LrzqOOFvZhhAk32wsGiPZ1lfUrl+iV7+OkKgfofZxiceZWMHkKmow71YsyVQ8IvGBP2EjcIjE5gL4l5lA==} hasBin: true @@ -7053,8 +6954,8 @@ packages: typescript-auto-import-cache@0.3.3: resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} - typescript-eslint@8.8.0: - resolution: {integrity: sha512-BjIT/VwJ8+0rVO01ZQ2ZVnjE1svFBiRczcpr1t1Yxt7sT25VSbPfrJtDsQ8uQTy2pilX5nI9gwxhUyLULNentw==} + typescript-eslint@8.8.1: + resolution: {integrity: sha512-R0dsXFt6t4SAFjUSKFjMh4pXDtq04SsFKCVGDP3ZOzNP7itF0jBcZYU4fMsZr4y7O7V7Nc751dDeESbe4PbQMQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -7439,10 +7340,6 @@ packages: write-file-atomic@3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - write-file-atomic@5.0.1: - resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - ws@7.5.10: resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} engines: {node: '>=8.3.0'} @@ -8438,23 +8335,6 @@ snapshots: '@colors/colors@1.5.0': optional: true - '@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)': - dependencies: - '@csstools/css-tokenizer': 3.0.1 - - '@csstools/css-tokenizer@3.0.1': {} - - '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)': - dependencies: - '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) - '@csstools/css-tokenizer': 3.0.1 - - '@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)': - dependencies: - postcss-selector-parser: 6.1.2 - - '@dual-bundle/import-meta-resolve@4.1.0': {} - '@ember-data/rfc395-data@0.0.4': {} '@ember/edition-utils@1.2.0': {} @@ -8472,19 +8352,23 @@ snapshots: '@ember/string@4.0.0': {} - '@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))': + '@ember/test-helpers@3.3.1(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(webpack@5.95.0)': dependencies: '@ember/test-waiters': 3.1.0(@babel/core@7.25.7) - '@embroider/addon-shim': 1.8.9 '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) '@simple-dom/interface': 1.4.0 - decorator-transforms: 2.2.2(@babel/core@7.25.7) + broccoli-debug: 0.6.5 + broccoli-funnel: 3.0.8 dom-element-descriptors: 0.5.1 - ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + ember-auto-import: 2.8.1(@glint/template@1.4.1-unstable.b29a807)(webpack@5.95.0) + ember-cli-babel: 8.2.0(@babel/core@7.25.7) + ember-cli-htmlbars: 6.3.0 + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - '@babel/core' - '@glint/template' - supports-color + - webpack '@ember/test-waiters@3.1.0(@babel/core@7.25.7)': dependencies: @@ -9201,31 +9085,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)))': - dependencies: - '@glimmer/component': 1.1.2(@babel/core@7.25.7) - '@glint/template': 1.4.1-unstable.b29a807 - optionalDependencies: - ember-cli-htmlbars: 6.3.0 - ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)) - - '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))': + '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))': dependencies: '@glimmer/component': 1.1.2(@babel/core@7.25.7) '@glint/template': 1.4.1-unstable.b29a807 optionalDependencies: ember-cli-htmlbars: 6.3.0 - ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) - - '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807)': - dependencies: - '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) - '@glint/template': 1.4.1-unstable.b29a807 - content-tag: 2.0.2 + ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) - '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807)': + '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/template': 1.4.1-unstable.b29a807 content-tag: 2.0.2 @@ -9372,7 +9242,7 @@ snapshots: dependencies: which: 4.0.0 - '@nullvoxpopuli/eslint-configs@4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)': + '@nullvoxpopuli/eslint-configs@4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)': dependencies: cosmiconfig: 9.0.0(typescript@5.5.4) eslint: 8.57.1 @@ -9381,7 +9251,7 @@ snapshots: eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-json: 3.1.0 eslint-plugin-n: 17.10.3(eslint@8.57.1) - eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.12)(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-simple-import-sort: 12.1.1(eslint@8.57.1) prettier-plugin-ember-template-tag: 2.0.2(prettier@3.3.3) optionalDependencies: @@ -9654,7 +9524,7 @@ snapshots: '@types/glob@7.2.0': dependencies: - '@types/minimatch': 3.0.5 + '@types/minimatch': 5.1.2 '@types/node': 22.7.4 '@types/glob@8.1.0': @@ -9736,14 +9606,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 8.8.0 - '@typescript-eslint/type-utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) - '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.8.0 + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.8.1 + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.8.1 eslint: 9.12.0 graphemer: 1.4.0 ignore: 5.3.2 @@ -9780,12 +9650,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4)': + '@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/scope-manager': 8.8.0 - '@typescript-eslint/types': 8.8.0 - '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.8.0 + '@typescript-eslint/scope-manager': 8.8.1 + '@typescript-eslint/types': 8.8.1 + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.8.1 debug: 4.3.7 eslint: 9.12.0 optionalDependencies: @@ -9798,6 +9668,11 @@ snapshots: '@typescript-eslint/types': 8.8.0 '@typescript-eslint/visitor-keys': 8.8.0 + '@typescript-eslint/scope-manager@8.8.1': + dependencies: + '@typescript-eslint/types': 8.8.1 + '@typescript-eslint/visitor-keys': 8.8.1 + '@typescript-eslint/type-utils@8.8.0(eslint@8.57.1)(typescript@5.5.4)': dependencies: '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) @@ -9810,10 +9685,10 @@ snapshots: - eslint - supports-color - '@typescript-eslint/type-utils@8.8.0(eslint@9.12.0)(typescript@5.5.4)': + '@typescript-eslint/type-utils@8.8.1(eslint@9.12.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) - '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.4) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.5.4) debug: 4.3.7 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: @@ -9824,6 +9699,8 @@ snapshots: '@typescript-eslint/types@8.8.0': {} + '@typescript-eslint/types@8.8.1': {} + '@typescript-eslint/typescript-estree@8.8.0(typescript@5.5.4)': dependencies: '@typescript-eslint/types': 8.8.0 @@ -9854,6 +9731,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.8.1(typescript@5.5.4)': + dependencies: + '@typescript-eslint/types': 8.8.1 + '@typescript-eslint/visitor-keys': 8.8.1 + debug: 4.3.7 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.5.4) + optionalDependencies: + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.8.0(eslint@8.57.1)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) @@ -9865,12 +9757,12 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@8.8.0(eslint@9.12.0)(typescript@5.5.4)': + '@typescript-eslint/utils@8.8.1(eslint@9.12.0)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) - '@typescript-eslint/scope-manager': 8.8.0 - '@typescript-eslint/types': 8.8.0 - '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.8.1 + '@typescript-eslint/types': 8.8.1 + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.4) eslint: 9.12.0 transitivePeerDependencies: - supports-color @@ -9881,6 +9773,11 @@ snapshots: '@typescript-eslint/types': 8.8.0 eslint-visitor-keys: 3.4.3 + '@typescript-eslint/visitor-keys@8.8.1': + dependencies: + '@typescript-eslint/types': 8.8.1 + eslint-visitor-keys: 3.4.3 + '@ungap/structured-clone@1.2.0': {} '@volar/kit@2.4.0-alpha.16(typescript@5.5.4)': @@ -10247,8 +10144,6 @@ snapshots: ast-types@0.13.3: {} - astral-regex@2.0.0: {} - async-disk-cache@1.3.5: dependencies: debug: 2.6.9 @@ -10392,8 +10287,6 @@ snapshots: balanced-match@1.0.2: {} - balanced-match@2.0.0: {} - base64-js@1.5.1: {} base64id@2.0.0: {} @@ -10976,8 +10869,6 @@ snapshots: color-support@1.1.3: {} - colord@2.9.3: {} - colors@1.0.3: {} colors@1.4.0: {} @@ -11147,8 +11038,6 @@ snapshots: crypto-random-string@2.0.0: {} - css-functions-list@3.2.2: {} - css-loader@5.2.7(webpack@5.95.0): dependencies: icss-utils: 5.1.0(postcss@8.4.47) @@ -11710,7 +11599,7 @@ snapshots: transitivePeerDependencies: - eslint - ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0): + ember-eslint-parser@0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0): dependencies: '@babel/core': 7.25.7 '@babel/eslint-parser': 7.25.7(@babel/core@7.25.7)(eslint@9.12.0) @@ -11719,54 +11608,41 @@ snapshots: eslint-scope: 7.2.2 html-tags: 3.3.1 optionalDependencies: - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0)(typescript@5.5.4) transitivePeerDependencies: - eslint - ember-load-initializers@3.0.1(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): - dependencies: - ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) - - ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)): + ember-load-initializers@3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: - '@embroider/addon-shim': 1.8.9 - decorator-transforms: 2.2.2(@babel/core@7.25.7) - ember-cli-normalize-entity-name: 1.0.0 - ember-cli-string-utils: 1.1.0 - optionalDependencies: - ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5) - transitivePeerDependencies: - - '@babel/core' - - supports-color - optional: true + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) - ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): + ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: '@embroider/addon-shim': 1.8.9 decorator-transforms: 2.2.2(@babel/core@7.25.7) ember-cli-normalize-entity-name: 1.0.0 ember-cli-string-utils: 1.1.0 optionalDependencies: - ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - '@babel/core' - supports-color - ember-page-title@8.2.3(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): + ember-page-title@8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: '@embroider/addon-shim': 1.8.9 '@simple-dom/document': 1.4.0 - ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - supports-color - ember-qunit@8.1.0(@babel/core@7.25.7)(@ember/test-helpers@4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0): + ember-qunit@8.1.0(@babel/core@7.25.7)(@ember/test-helpers@3.3.1(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(webpack@5.95.0))(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(qunit@2.22.0): dependencies: - '@ember/test-helpers': 4.0.4(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + '@ember/test-helpers': 3.3.1(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))(webpack@5.95.0) '@embroider/addon-shim': 1.8.9 '@embroider/macros': 1.16.7(@babel/core@7.25.7)(@glint/template@1.4.1-unstable.b29a807) ember-cli-test-loader: 3.1.0(@babel/core@7.25.7) - ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) qunit: 2.22.0 qunit-theme-ember: 1.0.0 transitivePeerDependencies: @@ -11774,11 +11650,11 @@ snapshots: - '@glint/template' - supports-color - ember-resolver@13.0.2(@babel/core@7.25.7)(ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): + ember-resolver@13.0.2(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: ember-cli-babel: 8.2.0(@babel/core@7.25.7) optionalDependencies: - ember-source: 6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) + ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) transitivePeerDependencies: - '@babel/core' - supports-color @@ -11799,57 +11675,7 @@ snapshots: transitivePeerDependencies: - supports-color - ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5): - dependencies: - '@babel/core': 7.25.7 - '@ember/edition-utils': 1.2.0 - '@glimmer/compiler': 0.92.4 - '@glimmer/component': 1.1.2(@babel/core@7.25.7) - '@glimmer/destroyable': 0.92.3 - '@glimmer/env': 0.1.7 - '@glimmer/global-context': 0.92.3 - '@glimmer/interfaces': 0.92.3 - '@glimmer/manager': 0.92.4 - '@glimmer/node': 0.92.4 - '@glimmer/opcode-compiler': 0.92.4 - '@glimmer/owner': 0.92.3 - '@glimmer/program': 0.92.4 - '@glimmer/reference': 0.92.3 - '@glimmer/runtime': 0.92.4 - '@glimmer/syntax': 0.92.3 - '@glimmer/util': 0.92.3 - '@glimmer/validator': 0.92.3 - '@glimmer/vm': 0.92.3 - '@glimmer/vm-babel-plugins': 0.92.3(@babel/core@7.25.7) - '@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.8.1(@glint/template@1.4.1-unstable.b29a807)(webpack@5.95.0) - ember-cli-babel: 8.2.0(@babel/core@7.25.7) - ember-cli-get-component-path-option: 1.0.0 - ember-cli-is-package-missing: 1.0.0 - ember-cli-normalize-entity-name: 1.0.0 - ember-cli-path-utils: 1.0.0 - ember-cli-string-utils: 1.1.0 - ember-cli-typescript-blueprint-polyfill: 0.1.0 - ember-cli-version-checker: 5.1.2 - ember-router-generator: 2.0.0 - inflection: 2.0.1 - route-recognizer: 0.3.4 - router_js: 8.0.6(route-recognizer@0.3.4)(rsvp@4.8.5) - semver: 7.6.3 - silent-error: 1.1.1 - simple-html-tokenizer: 0.5.11 - transitivePeerDependencies: - - '@glint/template' - - rsvp - - supports-color - - webpack - - ember-source@6.1.0-alpha.1(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0): + ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0): dependencies: '@babel/core': 7.25.7 '@ember/edition-utils': 1.2.0 @@ -12183,15 +12009,6 @@ snapshots: eslint: 9.12.0 semver: 7.6.3 - eslint-config-prettier@9.1.0(eslint@8.57.1): - dependencies: - eslint: 8.57.1 - optional: true - - eslint-config-prettier@9.1.0(eslint@9.12.0): - dependencies: - eslint: 9.12.0 - eslint-formatter-kakoune@1.0.0: {} eslint-import-resolver-node@0.3.9: @@ -12281,11 +12098,11 @@ snapshots: transitivePeerDependencies: - '@babel/core' - eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0): + eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0): dependencies: '@ember-data/rfc395-data': 0.0.4 css-tree: 2.3.1 - ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0) + ember-eslint-parser: 0.5.2(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0) ember-rfc176-data: 0.3.18 eslint: 9.12.0 eslint-utils: 3.0.0(eslint@9.12.0) @@ -12295,7 +12112,7 @@ snapshots: requireindex: 1.2.0 snake-case: 3.0.4 optionalDependencies: - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0)(typescript@5.5.4) transitivePeerDependencies: - '@babel/core' @@ -12392,7 +12209,7 @@ snapshots: resolve: 1.22.8 semver: 6.3.1 - eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint@8.57.1)(prettier@3.3.3): dependencies: eslint: 8.57.1 prettier: 3.3.3 @@ -12400,17 +12217,6 @@ snapshots: synckit: 0.9.1 optionalDependencies: '@types/eslint': 8.56.12 - eslint-config-prettier: 9.1.0(eslint@8.57.1) - - eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@9.12.0))(eslint@9.12.0)(prettier@3.3.3): - dependencies: - eslint: 9.12.0 - prettier: 3.3.3 - prettier-linter-helpers: 1.0.0 - synckit: 0.9.1 - optionalDependencies: - '@types/eslint': 8.56.12 - eslint-config-prettier: 9.1.0(eslint@9.12.0) eslint-plugin-qunit@8.1.2(eslint@8.57.1): dependencies: @@ -12747,8 +12553,6 @@ snapshots: fast-uri@3.0.2: {} - fastest-levenshtein@1.0.16: {} - fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -12779,10 +12583,6 @@ snapshots: dependencies: flat-cache: 4.0.1 - file-entry-cache@9.1.0: - dependencies: - flat-cache: 5.0.0 - filesize@10.1.6: {} fill-range@4.0.0: @@ -12897,11 +12697,6 @@ snapshots: flatted: 3.3.1 keyv: 4.5.4 - flat-cache@5.0.0: - dependencies: - flatted: 3.3.1 - keyv: 4.5.4 - flatted@3.3.1: {} follow-redirects@1.15.9: {} @@ -13171,10 +12966,6 @@ snapshots: is-windows: 1.0.2 resolve-dir: 1.0.1 - global-modules@2.0.0: - dependencies: - global-prefix: 3.0.0 - global-prefix@1.0.2: dependencies: expand-tilde: 2.0.2 @@ -13183,12 +12974,6 @@ snapshots: is-windows: 1.0.2 which: 1.3.1 - global-prefix@3.0.0: - dependencies: - ini: 1.3.8 - kind-of: 6.0.3 - which: 1.3.1 - globals@11.12.0: {} globals@13.24.0: @@ -13246,8 +13031,6 @@ snapshots: slash: 5.1.0 unicorn-magic: 0.1.0 - globjoin@0.1.4: {} - globrex@0.1.2: {} gopd@1.0.1: @@ -13899,8 +13682,6 @@ snapshots: kind-of@6.0.3: {} - known-css-properties@0.34.0: {} - ky@1.7.2: {} language-subtag-registry@0.3.23: {} @@ -14001,8 +13782,6 @@ snapshots: lodash.omit@4.5.0: {} - lodash.truncate@4.4.2: {} - lodash.uniq@4.5.0: {} lodash@4.17.21: {} @@ -14117,8 +13896,6 @@ snapshots: '@types/minimatch': 3.0.5 minimatch: 3.1.2 - mathml-tag-names@2.1.3: {} - mdn-data@2.0.30: {} mdurl@1.0.1: {} @@ -14137,8 +13914,6 @@ snapshots: memorystream@0.3.1: {} - meow@13.2.0: {} - merge-descriptors@1.0.3: {} merge-stream@2.0.0: {} @@ -14752,12 +14527,6 @@ snapshots: icss-utils: 5.1.0(postcss@8.4.47) postcss: 8.4.47 - postcss-resolve-nested-selector@0.1.6: {} - - postcss-safe-parser@7.0.1(postcss@8.4.47): - dependencies: - postcss: 8.4.47 - postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 @@ -15029,8 +14798,6 @@ snapshots: resolve-from@4.0.0: {} - resolve-from@5.0.0: {} - resolve-package-path@1.2.7: dependencies: path-root: 0.1.1 @@ -15386,12 +15153,6 @@ snapshots: slash@5.1.0: {} - slice-ansi@4.0.0: - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - smart-buffer@4.2.0: {} snake-case@3.0.4: @@ -15650,66 +15411,6 @@ snapshots: styled_string@0.0.1: {} - stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.5.4)): - dependencies: - stylelint: 16.9.0(typescript@5.5.4) - - stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.5.4)): - dependencies: - stylelint: 16.9.0(typescript@5.5.4) - stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4)) - - stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.9.0(typescript@5.5.4)): - dependencies: - prettier: 3.3.3 - prettier-linter-helpers: 1.0.0 - stylelint: 16.9.0(typescript@5.5.4) - - stylelint@16.9.0(typescript@5.5.4): - dependencies: - '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) - '@csstools/css-tokenizer': 3.0.1 - '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2) - '@dual-bundle/import-meta-resolve': 4.1.0 - balanced-match: 2.0.0 - colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.5.4) - css-functions-list: 3.2.2 - css-tree: 2.3.1 - debug: 4.3.7 - fast-glob: 3.3.2 - fastest-levenshtein: 1.0.16 - file-entry-cache: 9.1.0 - global-modules: 2.0.0 - globby: 11.1.0 - globjoin: 0.1.4 - html-tags: 3.3.1 - ignore: 5.3.2 - imurmurhash: 0.1.4 - is-plain-object: 5.0.0 - known-css-properties: 0.34.0 - mathml-tag-names: 2.1.3 - meow: 13.2.0 - micromatch: 4.0.8 - normalize-path: 3.0.0 - picocolors: 1.1.0 - postcss: 8.4.47 - postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 7.0.1(postcss@8.4.47) - postcss-selector-parser: 6.1.2 - postcss-value-parser: 4.2.0 - resolve-from: 5.0.0 - string-width: 4.2.3 - strip-ansi: 7.1.0 - supports-hyperlinks: 3.1.0 - svg-tags: 1.0.0 - table: 6.8.2 - write-file-atomic: 5.0.1 - transitivePeerDependencies: - - supports-color - - typescript - supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -15729,8 +15430,6 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svg-tags@1.0.0: {} - symbol-tree@3.2.4: {} symlink-or-copy@1.3.1: {} @@ -15760,14 +15459,6 @@ snapshots: '@pkgr/core': 0.1.1 tslib: 2.7.0 - table@6.8.2: - dependencies: - ajv: 8.17.1 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - tap-parser@7.0.0: dependencies: events-to-array: 1.1.2 @@ -16103,11 +15794,11 @@ snapshots: dependencies: semver: 7.6.3 - typescript-eslint@8.8.0(eslint@9.12.0)(typescript@5.5.4): + typescript-eslint@8.8.1(eslint@9.12.0)(typescript@5.5.4): dependencies: - '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4) - '@typescript-eslint/parser': 8.8.0(eslint@9.12.0)(typescript@5.5.4) - '@typescript-eslint/utils': 8.8.0(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: @@ -16486,11 +16177,6 @@ snapshots: signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - write-file-atomic@5.0.1: - dependencies: - imurmurhash: 0.1.4 - signal-exit: 4.1.0 - ws@7.5.10: {} ws@8.17.1: {} diff --git a/test-app/.stylelintignore b/test-app/.stylelintignore deleted file mode 100644 index a0cf71cb..00000000 --- a/test-app/.stylelintignore +++ /dev/null @@ -1,8 +0,0 @@ -# unconventional files -/blueprints/*/files/ - -# compiled output -/dist/ - -# addons -/.node_modules.ember-try/ diff --git a/test-app/.stylelintrc.js b/test-app/.stylelintrc.js deleted file mode 100644 index 021c539a..00000000 --- a/test-app/.stylelintrc.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; - -module.exports = { - extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'], -}; diff --git a/test-app/README.md b/test-app/README.md deleted file mode 100644 index e1dd2025..00000000 --- a/test-app/README.md +++ /dev/null @@ -1,57 +0,0 @@ -# test-app - -This README outlines the details of collaborating on this Ember application. -A short introduction of this app could easily go here. - -## Prerequisites - -You will need the following things properly installed on your computer. - -- [Git](https://git-scm.com/) -- [Node.js](https://nodejs.org/) -- [pnpm](https://pnpm.io/) -- [Ember CLI](https://cli.emberjs.com/release/) -- [Google Chrome](https://google.com/chrome/) - -## Installation - -- `git clone ` this repository -- `cd test-app` -- `pnpm install` - -## Running / Development - -- `pnpm start` -- Visit your app at [http://localhost:4200](http://localhost:4200). -- Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests). - -### Code Generators - -Make use of the many generators for code, try `ember help generate` for more details - -### Running Tests - -- `pnpm test` -- `pnpm test:ember --server` - -### Linting - -- `pnpm lint` -- `pnpm lint:fix` - -### Building - -- `pnpm ember build` (development) -- `pnpm build` (production) - -### Deploying - -Specify what it takes to deploy your app. - -## Further Reading / Useful Links - -- [ember.js](https://emberjs.com/) -- [ember-cli](https://cli.emberjs.com/release/) -- Development Browser Extensions - - [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi) - - [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/) diff --git a/test-app/app/app.ts b/test-app/app/app.ts index a3c0402f..56dfb1b8 100644 --- a/test-app/app/app.ts +++ b/test-app/app/app.ts @@ -3,6 +3,7 @@ import compatModules from '@embroider/virtual/compat-modules'; import Resolver from 'ember-resolver'; import loadInitializers from 'ember-load-initializers'; import config from './config/environment'; +import { setupComponentMachines } from 'ember-statechart-components'; export default class App extends Application { modulePrefix = config.modulePrefix; @@ -10,4 +11,5 @@ export default class App extends Application { Resolver = Resolver.withModules(compatModules); } +setupComponentMachines(); loadInitializers(App, config.modulePrefix, compatModules); diff --git a/test-app/babel.config.cjs b/test-app/babel.config.cjs index 2744468a..95729872 100644 --- a/test-app/babel.config.cjs +++ b/test-app/babel.config.cjs @@ -16,9 +16,7 @@ module.exports = { [ 'babel-plugin-ember-template-compilation', { - compilerPath: require.resolve( - 'ember-source/dist/ember-template-compiler.js' - ), + compilerPath: 'ember-source/dist/ember-template-compiler.js', enableLegacyModules: [ 'ember-cli-htmlbars', 'ember-cli-htmlbars-inline-precompile', diff --git a/test-app/eslint.config.mjs b/test-app/eslint.config.mjs index 4fbe283d..f1e29b63 100644 --- a/test-app/eslint.config.mjs +++ b/test-app/eslint.config.mjs @@ -8,7 +8,6 @@ import emberRecommended from 'eslint-plugin-ember/configs/recommended'; import gjsRecommended from 'eslint-plugin-ember/configs/recommended-gjs'; import gtsRecommended from 'eslint-plugin-ember/configs/recommended-gts'; -import prettier from 'eslint-plugin-prettier/recommended'; import qunit from 'eslint-plugin-qunit'; import n from 'eslint-plugin-n'; @@ -30,7 +29,6 @@ const parserOptions = { export default ts.config( js.configs.recommended, - prettier, { files: ['**/*.js'], languageOptions: { diff --git a/test-app/package.json b/test-app/package.json index 0a5e680b..88f36f49 100644 --- a/test-app/package.json +++ b/test-app/package.json @@ -13,8 +13,6 @@ "scripts": { "build": "vite build", "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto", - "lint:css": "stylelint \"**/*.css\"", - "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"", "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto", "lint:hbs": "ember-template-lint .", "lint:hbs:fix": "ember-template-lint . --fix", @@ -31,7 +29,7 @@ "@babel/plugin-transform-typescript": "^7.25.7", "@ember/optional-features": "^2.1.0", "@ember/string": "^4.0.0", - "@ember/test-helpers": "^4.0.4", + "@ember/test-helpers": "^3.3.1", "@embroider/compat": "3.6.2-unstable.89d7d7f", "@embroider/config-meta-loader": "0.0.1-unstable.89d7d7f", "@embroider/core": "3.4.16-unstable.89d7d7f", @@ -48,8 +46,8 @@ "@types/eslint__js": "^8.42.3", "@types/qunit": "^2.19.10", "@types/rsvp": "^4.0.9", - "@typescript-eslint/eslint-plugin": "^8.8.0", - "@typescript-eslint/parser": "^8.8.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", + "@typescript-eslint/parser": "^8.8.1", "babel-plugin-ember-template-compilation": "^2.3.0", "concurrently": "^9.0.1", "decorator-transforms": "^2.2.2", @@ -64,13 +62,11 @@ "ember-qunit": "^8.1.0", "ember-resolver": "^13.0.2", "ember-route-template": "^1.0.3", - "ember-source": "6.1.0-alpha.1", + "ember-source": "~5.12.0", "ember-template-lint": "^6.0.0", "eslint": "^9.12.0", - "eslint-config-prettier": "^9.1.0", "eslint-plugin-ember": "^12.2.1", "eslint-plugin-n": "^17.10.3", - "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-qunit": "^8.1.2", "globals": "^15.10.0", "loader.js": "^4.7.0", @@ -78,12 +74,9 @@ "prettier-plugin-ember-template-tag": "^2.0.2", "qunit": "^2.22.0", "qunit-dom": "^3.2.1", - "stylelint": "^16.9.0", - "stylelint-config-standard": "^36.0.1", - "stylelint-prettier": "^5.0.2", "tracked-built-ins": "^3.3.0", "typescript": "^5.5.4", - "typescript-eslint": "^8.8.0", + "typescript-eslint": "^8.8.1", "vite": "^5.4.8", "webpack": "^5.95.0" }, diff --git a/test-app/tests/index.html b/test-app/tests/index.html index d9ab18fc..cbeba0c1 100644 --- a/test-app/tests/index.html +++ b/test-app/tests/index.html @@ -9,6 +9,7 @@ {{content-for "head"}} {{content-for "test-head"}} + {{content-for "head-footer"}} {{content-for "test-head-footer"}} diff --git a/test-app/tests/test-helper.ts b/test-app/tests/test-helper.ts index d9234a1a..96ac884d 100644 --- a/test-app/tests/test-helper.ts +++ b/test-app/tests/test-helper.ts @@ -7,6 +7,7 @@ import { start as qunitStart } from 'ember-qunit'; import { setupComponentMachines } from 'ember-statechart-component'; setupComponentMachines(); + export function start() { setApplication(Application.create(config.APP)); diff --git a/test-app/vite.config.mjs b/test-app/vite.config.mjs index 850ea892..3d37d0d6 100644 --- a/test-app/vite.config.mjs +++ b/test-app/vite.config.mjs @@ -1,6 +1,7 @@ import { defineConfig } from 'vite'; import { resolver, + hbs, scripts, templateTag, optimizeDeps, @@ -27,6 +28,7 @@ export default defineConfig(({ mode }) => { extensions, }, plugins: [ + hbs(), templateTag(), scripts(), resolver(), From 0ccfc8429b75d0e39ba8339d4d5cbcec372d9440 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 7 Oct 2024 22:49:46 -0400 Subject: [PATCH 08/52] wip --- ember-statechart-component/src/registration.ts | 8 ++++---- test-app/app/app.ts | 2 +- test-app/app/templates/demos/toggle.gts | 15 ++++++++++----- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/ember-statechart-component/src/registration.ts b/ember-statechart-component/src/registration.ts index 1dc64e9e..8472901a 100644 --- a/ember-statechart-component/src/registration.ts +++ b/ember-statechart-component/src/registration.ts @@ -1,7 +1,7 @@ import { setComponentManager, setComponentTemplate } from '@ember/component'; import { precompileTemplate } from '@ember/template-compilation'; -import { StateNode } from 'xstate'; +import { StateMachine } from 'xstate'; import ComponentManager from './-private/statechart-manager.ts'; @@ -15,20 +15,20 @@ let isSetup = false; * in the dependency graph (like with linking dependencies), an `override` may * be passed to choose a specific XState (hopefully from the host app). */ -export function setupComponentMachines(override?: typeof StateNode) { +export function setupComponentMachines(override?: typeof StateMachine) { if (isSetup) return; // Managers are managed globally, and not per app instance setComponentManager( (owner) => ComponentManager.create(owner), - override?.prototype || StateNode.prototype + override?.prototype || StateMachine.prototype ); setComponentTemplate( precompileTemplate(`{{yield this.state this.send this.onTransition}}`, { strictMode: true, }), - override?.prototype || StateNode.prototype + override?.prototype || StateMachine.prototype ); isSetup = true; diff --git a/test-app/app/app.ts b/test-app/app/app.ts index 56dfb1b8..ddc60a95 100644 --- a/test-app/app/app.ts +++ b/test-app/app/app.ts @@ -3,7 +3,7 @@ import compatModules from '@embroider/virtual/compat-modules'; import Resolver from 'ember-resolver'; import loadInitializers from 'ember-load-initializers'; import config from './config/environment'; -import { setupComponentMachines } from 'ember-statechart-components'; +import { setupComponentMachines } from 'ember-statechart-component'; export default class App extends Application { modulePrefix = config.modulePrefix; diff --git a/test-app/app/templates/demos/toggle.gts b/test-app/app/templates/demos/toggle.gts index 2b8a9178..d30d7122 100644 --- a/test-app/app/templates/demos/toggle.gts +++ b/test-app/app/templates/demos/toggle.gts @@ -12,11 +12,16 @@ const Toggle = createMachine({ }); export const Toggler = ; + // + // {{toString state.value}} + // + // + // From f812ef10044b11c3a4b7c8ea4bddc96aafba3093 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 7 Oct 2024 23:01:18 -0400 Subject: [PATCH 09/52] I need to define this? --- .../src/-private/statechart-manager.ts | 16 ++++++++-------- ember-statechart-component/src/registration.ts | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ember-statechart-component/src/-private/statechart-manager.ts b/ember-statechart-component/src/-private/statechart-manager.ts index 0719bae3..d5fe3f30 100644 --- a/ember-statechart-component/src/-private/statechart-manager.ts +++ b/ember-statechart-component/src/-private/statechart-manager.ts @@ -90,23 +90,23 @@ export default class ComponentManager { * "handle everything within the statechart and don't pass args", * it should be good enough. */ - updateComponent(interpreter: Interpreter, args: Args) { + updateComponent(actor: Interpreter, args: Args) { if (Object.keys(args.named).length > 0 || args.positional.length > 0) { - interpreter.send(UPDATE_EVENT_NAME, args.named); + actor.send(UPDATE_EVENT_NAME, args.named); } } - destroyComponent(interpreter: Interpreter) { - if (isDestroying(interpreter)) { + destroyComponent(actor: Interpreter) { + if (isDestroying(actor)) { return; } - interpreter.stop(); + actor.stop(); - destroy(interpreter); + destroy(actor); } - getContext(interpreter: Interpreter) { - return interpreter; + getContext(actor: Interpreter) { + return actor; } } diff --git a/ember-statechart-component/src/registration.ts b/ember-statechart-component/src/registration.ts index 8472901a..5d99a7ed 100644 --- a/ember-statechart-component/src/registration.ts +++ b/ember-statechart-component/src/registration.ts @@ -25,7 +25,7 @@ export function setupComponentMachines(override?: typeof StateMachine) { ); setComponentTemplate( - precompileTemplate(`{{yield this.state this.send this.onTransition}}`, { + precompileTemplate(`{{yield (this.getSnapshot) this.send this.onTransition}}`, { strictMode: true, }), override?.prototype || StateMachine.prototype From f5c2609602766b338749efd89b89b7c0b47d6d2d Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 8 Oct 2024 22:17:11 -0400 Subject: [PATCH 10/52] Demo is running --- ember-statechart-component/package.json | 4 +- .../src/-private/statechart-manager.ts | 94 ++++++++++--------- ember-statechart-component/src/index.ts | 2 +- .../src/registration.ts | 2 +- pnpm-lock.yaml | 6 +- test-app/app/templates/demos/to-any.ts | 7 -- test-app/app/templates/demos/to-string.ts | 17 ---- test-app/app/templates/demos/toggle.gts | 16 ++-- 8 files changed, 65 insertions(+), 83 deletions(-) delete mode 100644 test-app/app/templates/demos/to-any.ts delete mode 100644 test-app/app/templates/demos/to-string.ts diff --git a/ember-statechart-component/package.json b/ember-statechart-component/package.json index 13dc8bdb..ada9a655 100644 --- a/ember-statechart-component/package.json +++ b/ember-statechart-component/package.json @@ -41,7 +41,8 @@ }, "dependencies": { "@embroider/addon-shim": "^1.8.9", - "@glint/template": ">= 1.0.0" + "@glint/template": ">= 1.0.0", + "decorator-transforms": "^2.2.2" }, "peerDependencies": { "xstate": "^5.18.0" @@ -68,7 +69,6 @@ "@typescript-eslint/eslint-plugin": "^8.8.0", "@typescript-eslint/parser": "^8.8.0", "concurrently": "^9.0.1", - "decorator-transforms": "^2.2.2", "ember-source": "^5.5.0", "ember-template-lint": "6.0.0", "eslint": "^8.57.0", diff --git a/ember-statechart-component/src/-private/statechart-manager.ts b/ember-statechart-component/src/-private/statechart-manager.ts index d5fe3f30..2c7e8bf6 100644 --- a/ember-statechart-component/src/-private/statechart-manager.ts +++ b/ember-statechart-component/src/-private/statechart-manager.ts @@ -1,22 +1,57 @@ /* eslint-disable @typescript-eslint/ban-types */ /* eslint-disable @typescript-eslint/no-explicit-any */ -// TODO: remove all the any types -- xstate requires too many generics -import { DEBUG } from '@glimmer/env'; +import { tracked } from '@glimmer/tracking'; import { getOwner, setOwner } from '@ember/application'; import { capabilities } from '@ember/component'; -import { assert } from '@ember/debug'; import { destroy, isDestroying } from '@ember/destroyable'; -import { cancel, later } from '@ember/runloop'; import { createActor, State } from 'xstate'; -import type { Interpreter, StateMachine,StateNode } from 'xstate'; +import type { Actor, StateMachine, StateNode } from 'xstate'; export interface Args { named: Record; positional: unknown[]; } +const UPDATE_EVENT_NAME = 'UPDATE'; + +class ReactiveActor { + @tracked lastSnapshot = null; + + #actor; + #callbacks = []; + + get state() { + return this.lastSnapshot || {}; + } + + constructor(actor) { + this.#actor = actor; + + actor.subscribe((snapshot) => { + console.log('setting snapshot', snapshot); + this.lastSnapshot = snapshot; + this.#callbacks.forEach((fn) => fn(snapshot)); + }); + } + + start = () => this.#actor.start(); + stop = () => this.#actor.stop(); + send = (...args) => this.#actor.send(...args); + sendEvent = (type, ...extra) => this.#actor.send({ type, ...extra }); + + handleUpdate = (args) => { + if (Object.keys(args.named).length > 0 || args.positional.length > 0) { + this.send(UPDATE_EVENT_NAME, args.named); + } + }; + + onTransition = (callback) => { + this.#callbacks.push(callback); + }; +} + export default class ComponentManager { capabilities = capabilities('3.13', { destructor: true, @@ -38,7 +73,7 @@ export default class ComponentManager { machine = machine.provide(named['config'] as any); } - let context = { }; + let context = {}; if ('context' in named) { Object.assign(context, named['context']); @@ -50,33 +85,10 @@ export default class ComponentManager { input: context, }); - actor.subscribe((snapshot, ...others) => { - console.log(snapshot, { others} ); - }); - - // if ('state' in named) { - // assert(`@state must be of type State`, named.state instanceof State); - - // let resolvedState = machine.resolveState(named.state); - - // let withReactivity = reactiveInterpreter(actor); + let state = new ReactiveActor(actor); + state.start(); - // withReactivity.start(resolvedState); - - // return withReactivity; - // } - - /** - * Start the interpreter before we wire in reactivity, - * so reactivity may only be "by-use" (from the app), rather than - * managed by XState during its internal updates - */ - actor.start(); - - // let withReactivity = reactiveInterpreter(actor); - - // return withReactivity; - return actor; + return state; } /** @@ -90,23 +102,21 @@ export default class ComponentManager { * "handle everything within the statechart and don't pass args", * it should be good enough. */ - updateComponent(actor: Interpreter, args: Args) { - if (Object.keys(args.named).length > 0 || args.positional.length > 0) { - actor.send(UPDATE_EVENT_NAME, args.named); - } + updateComponent(state: ReactiveActor, args: Args) { + state.handleUpdate(args); } - destroyComponent(actor: Interpreter) { - if (isDestroying(actor)) { + destroyComponent(state: ReactiveActor) { + if (isDestroying(state)) { return; } - actor.stop(); + state.stop(); - destroy(actor); + destroy(state); } - getContext(actor: Interpreter) { - return actor; + getContext(state: ReactiveActor) { + return state; } } diff --git a/ember-statechart-component/src/index.ts b/ember-statechart-component/src/index.ts index d42c2094..1658b66a 100644 --- a/ember-statechart-component/src/index.ts +++ b/ember-statechart-component/src/index.ts @@ -1,5 +1,5 @@ -import { getOwner } from '@ember/owner'; import { assert } from '@ember/debug'; +import { getOwner } from '@ember/owner'; import type ApplicationInstance from '@ember/application/instance'; import type { Registry } from '@ember/service'; diff --git a/ember-statechart-component/src/registration.ts b/ember-statechart-component/src/registration.ts index 5d99a7ed..8472901a 100644 --- a/ember-statechart-component/src/registration.ts +++ b/ember-statechart-component/src/registration.ts @@ -25,7 +25,7 @@ export function setupComponentMachines(override?: typeof StateMachine) { ); setComponentTemplate( - precompileTemplate(`{{yield (this.getSnapshot) this.send this.onTransition}}`, { + precompileTemplate(`{{yield this.state this.send this.onTransition}}`, { strictMode: true, }), override?.prototype || StateMachine.prototype diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a116467e..6c4db067 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -64,6 +64,9 @@ importers: '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 + decorator-transforms: + specifier: ^2.2.2 + version: 2.2.2(@babel/core@7.25.7) devDependencies: '@arethetypeswrong/cli': specifier: ^0.16.4 @@ -125,9 +128,6 @@ importers: concurrently: specifier: ^9.0.1 version: 9.0.1 - decorator-transforms: - specifier: ^2.2.2 - version: 2.2.2(@babel/core@7.25.7) ember-source: specifier: ^5.5.0 version: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) diff --git a/test-app/app/templates/demos/to-any.ts b/test-app/app/templates/demos/to-any.ts deleted file mode 100644 index dbfb8308..00000000 --- a/test-app/app/templates/demos/to-any.ts +++ /dev/null @@ -1,7 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ - -import { get } from '@ember/object'; - -export default function toString(x: any, path: string) { - return get(x, path); -} diff --git a/test-app/app/templates/demos/to-string.ts b/test-app/app/templates/demos/to-string.ts deleted file mode 100644 index f65d8b19..00000000 --- a/test-app/app/templates/demos/to-string.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -export function toString(x: any) { - if (typeof x === 'string') { - return x; - } - - if (typeof x === 'object') { - if (!x) return ''; - - if ('toStrings' in x) return x.toStrings(); - if ('toString' in x) return x.toString(); - } - - return `${x}`; -} - -export default toString; diff --git a/test-app/app/templates/demos/toggle.gts b/test-app/app/templates/demos/toggle.gts index d30d7122..03a08af0 100644 --- a/test-app/app/templates/demos/toggle.gts +++ b/test-app/app/templates/demos/toggle.gts @@ -11,17 +11,13 @@ const Toggle = createMachine({ }, }); +const asEvent = (name) => ({ type: name }); export const Toggler = ; - // - // {{toString state.value}} - // - // - // From ad6093b44f3e5ac94d814bfca0d145d2811ae9f3 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 8 Oct 2024 22:56:58 -0400 Subject: [PATCH 11/52] Time to slowly fix the tests --- ...chart-manager.ts => statechart-manager.js} | 35 +- .../src/registration.ts | 2 +- pnpm-lock.yaml | 27 +- test-app/app/app.ts | 3 +- test-app/app/templates/demos/toggle.gts | 1 - test-app/package.json | 1 + test-app/tests/integration/usage-test.gts | 755 +++++++++--------- test-app/tests/test-helper.ts | 6 +- 8 files changed, 412 insertions(+), 418 deletions(-) rename ember-statechart-component/src/-private/{statechart-manager.ts => statechart-manager.js} (73%) diff --git a/ember-statechart-component/src/-private/statechart-manager.ts b/ember-statechart-component/src/-private/statechart-manager.js similarity index 73% rename from ember-statechart-component/src/-private/statechart-manager.ts rename to ember-statechart-component/src/-private/statechart-manager.js index 2c7e8bf6..99a14fdf 100644 --- a/ember-statechart-component/src/-private/statechart-manager.ts +++ b/ember-statechart-component/src/-private/statechart-manager.js @@ -1,18 +1,9 @@ -/* eslint-disable @typescript-eslint/ban-types */ -/* eslint-disable @typescript-eslint/no-explicit-any */ import { tracked } from '@glimmer/tracking'; import { getOwner, setOwner } from '@ember/application'; import { capabilities } from '@ember/component'; import { destroy, isDestroying } from '@ember/destroyable'; -import { createActor, State } from 'xstate'; - -import type { Actor, StateMachine, StateNode } from 'xstate'; - -export interface Args { - named: Record; - positional: unknown[]; -} +import { createActor } from 'xstate'; const UPDATE_EVENT_NAME = 'UPDATE'; @@ -38,8 +29,14 @@ class ReactiveActor { start = () => this.#actor.start(); stop = () => this.#actor.stop(); - send = (...args) => this.#actor.send(...args); - sendEvent = (type, ...extra) => this.#actor.send({ type, ...extra }); + send = (...args) => { + if (args.length === 1 && typeof args[0] === 'string') { + this.#actor.send({ type: args[0] }); + return; + } + + this.#actor.send(...args); + }; handleUpdate = (args) => { if (Object.keys(args.named).length > 0 || args.positional.length > 0) { @@ -58,7 +55,7 @@ export default class ComponentManager { updateHook: true, }); - static create(owner: any) { + static create(owner) { let manager = new ComponentManager(); setOwner(manager, owner); @@ -66,11 +63,11 @@ export default class ComponentManager { return manager; } - createComponent(machine: StateMachine, args: Args) { + createComponent(machine, args) { let { named } = args; if ('config' in named) { - machine = machine.provide(named['config'] as any); + machine = machine.provide(named['config']); } let context = {}; @@ -79,7 +76,7 @@ export default class ComponentManager { Object.assign(context, named['context']); } - setOwner(context, getOwner(this) as any); + setOwner(context, getOwner(this)); let actor = createActor(machine, { input: context, @@ -102,11 +99,11 @@ export default class ComponentManager { * "handle everything within the statechart and don't pass args", * it should be good enough. */ - updateComponent(state: ReactiveActor, args: Args) { + updateComponent(state, args) { state.handleUpdate(args); } - destroyComponent(state: ReactiveActor) { + destroyComponent(state) { if (isDestroying(state)) { return; } @@ -116,7 +113,7 @@ export default class ComponentManager { destroy(state); } - getContext(state: ReactiveActor) { + getContext(state) { return state; } } diff --git a/ember-statechart-component/src/registration.ts b/ember-statechart-component/src/registration.ts index 8472901a..10b8f5ce 100644 --- a/ember-statechart-component/src/registration.ts +++ b/ember-statechart-component/src/registration.ts @@ -3,7 +3,7 @@ import { precompileTemplate } from '@ember/template-compilation'; import { StateMachine } from 'xstate'; -import ComponentManager from './-private/statechart-manager.ts'; +import ComponentManager from './-private/statechart-manager.js'; let isSetup = false; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6c4db067..8e56b61c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,10 +24,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.6.2) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 @@ -106,10 +106,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) @@ -182,6 +182,9 @@ importers: ember-statechart-component: specifier: workspace:* version: link:../ember-statechart-component + qunit-theme-ember: + specifier: ^1.0.0 + version: 1.0.0 xstate: specifier: ^5.18.2 version: 5.18.2 @@ -230,10 +233,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 @@ -287,7 +290,7 @@ importers: version: 3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-modifier: specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + version: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)) ember-page-title: specifier: ^8.2.3 version: 8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) @@ -9085,17 +9088,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))': + '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)))': dependencies: '@glimmer/component': 1.1.2(@babel/core@7.25.7) '@glint/template': 1.4.1-unstable.b29a807 optionalDependencies: ember-cli-htmlbars: 6.3.0 - ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) + ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)) - '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807)': + '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) '@glint/template': 1.4.1-unstable.b29a807 content-tag: 2.0.2 @@ -11616,7 +11619,7 @@ snapshots: dependencies: ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) - ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): + ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)): dependencies: '@embroider/addon-shim': 1.8.9 decorator-transforms: 2.2.2(@babel/core@7.25.7) diff --git a/test-app/app/app.ts b/test-app/app/app.ts index ddc60a95..50471509 100644 --- a/test-app/app/app.ts +++ b/test-app/app/app.ts @@ -1,9 +1,9 @@ +import 'ember-statechart-component'; import Application from '@ember/application'; import compatModules from '@embroider/virtual/compat-modules'; import Resolver from 'ember-resolver'; import loadInitializers from 'ember-load-initializers'; import config from './config/environment'; -import { setupComponentMachines } from 'ember-statechart-component'; export default class App extends Application { modulePrefix = config.modulePrefix; @@ -11,5 +11,4 @@ export default class App extends Application { Resolver = Resolver.withModules(compatModules); } -setupComponentMachines(); loadInitializers(App, config.modulePrefix, compatModules); diff --git a/test-app/app/templates/demos/toggle.gts b/test-app/app/templates/demos/toggle.gts index 03a08af0..d39f99a0 100644 --- a/test-app/app/templates/demos/toggle.gts +++ b/test-app/app/templates/demos/toggle.gts @@ -1,5 +1,4 @@ import { createMachine } from 'xstate'; -import { toString } from './to-string'; import { on } from '@ember/modifier'; import { fn } from '@ember/helper'; diff --git a/test-app/package.json b/test-app/package.json index 88f36f49..0e72dfac 100644 --- a/test-app/package.json +++ b/test-app/package.json @@ -96,6 +96,7 @@ }, "dependencies": { "ember-statechart-component": "workspace:*", + "qunit-theme-ember": "^1.0.0", "xstate": "^5.18.2" } } diff --git a/test-app/tests/integration/usage-test.gts b/test-app/tests/integration/usage-test.gts index f22c4d0e..a08d2d31 100644 --- a/test-app/tests/integration/usage-test.gts +++ b/test-app/tests/integration/usage-test.gts @@ -1,380 +1,375 @@ -// /* eslint-disable @typescript-eslint/no-explicit-any */ -// /* eslint-disable @typescript-eslint/no-unused-vars */ -// import { fn } from '@ember/helper'; -// import { on } from '@ember/modifier'; -// import Service from '@ember/service'; -// import { clearRender, render } from '@ember/test-helpers'; -// import click from '@ember/test-helpers/dom/click'; -// import { module, test } from 'qunit'; -// import { setupRenderingTest } from 'ember-qunit'; - -// import toAny from 'ember-app/helpers/to-any'; -// import toString from 'ember-app/helpers/to-string'; -// import { getService } from 'ember-statechart-component'; -// import { assign, createMachine } from 'xstate'; - -// import type { State } from 'xstate'; - -// declare module '@ember/service' { -// interface Registry { -// 'test-state': any; // determined in tests -// } -// } - -// /** -// * any casting will be fixed when tests can be gts -// */ -// module('Usage', function (hooks) { -// setupRenderingTest(hooks); - -// test('it works', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// states: { -// inactive: { on: { TOGGLE: 'active' } }, -// active: { on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// await render( -// -// ); - -// await this.pauseTest(); -// assert.dom().containsText('inactive'); - -// await click('button'); - -// assert.dom().doesNotContainText('inactive'); -// assert.dom().containsText('active'); -// }); - -// test('can use services', async function (assert) { -// let Toggle = createMachine( -// { -// initial: 'inactive', -// states: { -// inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, -// active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, -// }, -// }, -// { -// actions: { -// increment: (ctx) => { -// getService(ctx, 'test-state').foo++; -// }, -// }, -// } -// ); - -// this.owner.register( -// 'service:test-state', -// class TestState extends Service { -// foo = 0; -// } -// ); - -// await render( -// -// ); - -// let testState = this.owner.lookup('service:test-state') as { foo: number }; - -// assert.strictEqual(testState.foo, 1); - -// await click('button'); -// assert.strictEqual(testState.foo, 2); - -// await click('button'); -// assert.strictEqual(testState.foo, 3); -// }); - -// test(`it can use XState's builtin matches function`, async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// states: { -// inactive: { on: { TOGGLE: 'active' } }, -// active: { on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// await render( -// -// ); - -// assert.dom().containsText('The inactive state'); - -// await click('button'); - -// assert.dom().containsText('The active state'); -// }); - -// test('multiple invocations have their own state', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// states: { -// inactive: { on: { TOGGLE: 'active' } }, -// active: { on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// await render( -// -// ); - -// assert.dom('#one').containsText('inactive'); -// assert.dom('#two').containsText('inactive'); - -// await click('#one button'); - -// assert.dom('#one').doesNotContainText('inactive'); -// assert.dom('#one').containsText('active'); -// assert.dom('#two').containsText('inactive'); -// }); - -// test('can pass config', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// states: { -// inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, -// active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// let numCalled = 0; - -// let config = { -// actions: { -// increment: () => numCalled++, -// }, -// }; - -// await render( -// -// ); - -// assert.strictEqual(numCalled, 1); - -// await click('button'); -// assert.strictEqual(numCalled, 2); - -// await click('button'); -// assert.strictEqual(numCalled, 3); -// }); - -// test('can pass context', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// context: { -// numCalled: 0, -// }, -// states: { -// inactive: { -// entry: assign({ -// numCalled: (ctx: any) => ctx.numCalled + 1, -// }), -// on: { TOGGLE: 'active' }, -// }, -// active: { -// entry: assign({ -// numCalled: (ctx: any) => ctx.numCalled + 1, -// }), -// on: { TOGGLE: 'inactive' }, -// }, -// }, -// }); - -// let context = { -// numCalled: 10, -// }; - -// const report = (data: any) => (context = data); - -// await render( -// -// ); - -// assert.strictEqual(context.numCalled, 11); - -// await click('button'); -// assert.strictEqual(context.numCalled, 12); - -// await click('button'); -// assert.strictEqual(context.numCalled, 13); -// }); - -// test('merging passed context by default', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// context: { foo: 'foo' }, -// states: { -// inactive: { on: { TOGGLE: 'active' } }, -// active: { on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// let context = { bar: 'bar' }; - -// await render( -// -// ); - -// assert.dom().containsText('foo, bar'); -// }); - -// test('can pass initial state', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// states: { -// inactive: { on: { TOGGLE: 'active' } }, -// active: { on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// let previousState: State | null = null; - -// const report = (state: State) => (previousState = state); - -// await render( -// -// ); - -// assert.dom().containsText('inactive'); - -// await click('button'); - -// assert.dom().doesNotContainText('inactive'); -// assert.dom().containsText('active'); - -// assert.ok(previousState, 'previous state has been captured'); - -// await clearRender(); - -// assert.dom().hasNoText('component unmounted'); - -// await render( -// -// ); - -// assert.dom().doesNotContainText('inactive'); -// assert.dom().containsText('active'); - -// await click('button'); - -// assert.dom().containsText('inactive'); -// }); - -// // eslint-disable-next-line qunit/require-expect -// test('can pass onTransition callback', async function (assert) { -// let Toggle = createMachine({ -// initial: 'inactive', -// states: { -// inactive: { on: { TOGGLE: 'active' } }, -// active: { on: { TOGGLE: 'inactive' } }, -// }, -// }); - -// assert.expect(2); - -// const doSomething = (state: { value: string }, event: { type: string }) => { -// assert.strictEqual(state.value, event.type === 'xstate.init' ? 'inactive' : 'active'); -// }; - -// await render( -// -// ); -// }); -// }); +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import { fn } from '@ember/helper'; +import { on } from '@ember/modifier'; +import Service from '@ember/service'; +import { clearRender, render } from '@ember/test-helpers'; +import click from '@ember/test-helpers/dom/click'; +import { module, test } from 'qunit'; +import { setupRenderingTest } from 'ember-qunit'; + +import { getService } from 'ember-statechart-component'; +import { assign, createMachine } from 'xstate'; + +import type { State } from 'xstate'; + +declare module '@ember/service' { + interface Registry { + 'test-state': any; // determined in tests + } +} + +/** + * any casting will be fixed when tests can be gts + */ +module('Usage', function (hooks) { + setupRenderingTest(hooks); + + test('it works', async function (assert) { + const Toggle = createMachine({ + initial: 'inactive', + states: { + inactive: { on: { TOGGLE: 'active' } }, + active: { on: { TOGGLE: 'inactive' } }, + }, + }); + + await render( + + ); + + assert.dom().containsText('inactive'); + + await click('button'); + + assert.dom().doesNotContainText('inactive'); + assert.dom().containsText('active'); + }); + + // test('can use services', async function (assert) { + // const Toggle = createMachine( + // { + // initial: 'inactive', + // states: { + // inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, + // active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, + // }, + // }, + // { + // actions: { + // increment: (ctx) => { + // getService(ctx, 'test-state').foo++; + // }, + // }, + // } + // ); + // + // this.owner.register( + // 'service:test-state', + // class TestState extends Service { + // foo = 0; + // } + // ); + // + // await render( + // + // ); + // + // const testState = this.owner.lookup('service:test-state') as { foo: number }; + // + // assert.strictEqual(testState.foo, 1); + // + // await click('button'); + // assert.strictEqual(testState.foo, 2); + // + // await click('button'); + // assert.strictEqual(testState.foo, 3); + // }); + // + // test(`it can use XState's builtin matches function`, async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // states: { + // inactive: { on: { TOGGLE: 'active' } }, + // active: { on: { TOGGLE: 'inactive' } }, + // }, + // }); + // + // await render( + // + // ); + // + // assert.dom().containsText('The inactive state'); + // + // await click('button'); + // + // assert.dom().containsText('The active state'); + // }); + // + // test('multiple invocations have their own state', async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // states: { + // inactive: { on: { TOGGLE: 'active' } }, + // active: { on: { TOGGLE: 'inactive' } }, + // }, + // }); + // + // await render( + // + // ); + // + // assert.dom('#one').containsText('inactive'); + // assert.dom('#two').containsText('inactive'); + // + // await click('#one button'); + // + // assert.dom('#one').doesNotContainText('inactive'); + // assert.dom('#one').containsText('active'); + // assert.dom('#two').containsText('inactive'); + // }); + // + // test('can pass config', async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // states: { + // inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, + // active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, + // }, + // }); + // + // let numCalled = 0; + // + // const config = { + // actions: { + // increment: () => numCalled++, + // }, + // }; + // + // await render( + // + // ); + // + // assert.strictEqual(numCalled, 1); + // + // await click('button'); + // assert.strictEqual(numCalled, 2); + // + // await click('button'); + // assert.strictEqual(numCalled, 3); + // }); + // + // test('can pass context', async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // context: { + // numCalled: 0, + // }, + // states: { + // inactive: { + // entry: assign({ + // numCalled: (ctx: any) => ctx.numCalled + 1, + // }), + // on: { TOGGLE: 'active' }, + // }, + // active: { + // entry: assign({ + // numCalled: (ctx: any) => ctx.numCalled + 1, + // }), + // on: { TOGGLE: 'inactive' }, + // }, + // }, + // }); + // + // let context = { + // numCalled: 10, + // }; + // + // const report = (data: any) => (context = data); + // + // await render( + // + // ); + // + // assert.strictEqual(context.numCalled, 11); + // + // await click('button'); + // assert.strictEqual(context.numCalled, 12); + // + // await click('button'); + // assert.strictEqual(context.numCalled, 13); + // }); + // + // test('merging passed context by default', async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // context: { foo: 'foo' }, + // states: { + // inactive: { on: { TOGGLE: 'active' } }, + // active: { on: { TOGGLE: 'inactive' } }, + // }, + // }); + // + // const context = { bar: 'bar' }; + // + // await render( + // + // ); + // + // assert.dom().containsText('foo, bar'); + // }); + // + // test('can pass initial state', async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // states: { + // inactive: { on: { TOGGLE: 'active' } }, + // active: { on: { TOGGLE: 'inactive' } }, + // }, + // }); + // + // let previousState: State | null = null; + // + // const report = (state: State) => (previousState = state); + // + // await render( + // + // ); + // + // assert.dom().containsText('inactive'); + // + // await click('button'); + // + // assert.dom().doesNotContainText('inactive'); + // assert.dom().containsText('active'); + // + // assert.ok(previousState, 'previous state has been captured'); + // + // await clearRender(); + // + // assert.dom().hasNoText('component unmounted'); + // + // await render( + // + // ); + // + // assert.dom().doesNotContainText('inactive'); + // assert.dom().containsText('active'); + // + // await click('button'); + // + // assert.dom().containsText('inactive'); + // }); + // + // // eslint-disable-next-line qunit/require-expect + // test('can pass onTransition callback', async function (assert) { + // const Toggle = createMachine({ + // initial: 'inactive', + // states: { + // inactive: { on: { TOGGLE: 'active' } }, + // active: { on: { TOGGLE: 'inactive' } }, + // }, + // }); + // + // assert.expect(2); + // + // const doSomething = (state: { value: string }, event: { type: string }) => { + // assert.strictEqual(state.value, event.type === 'xstate.init' ? 'inactive' : 'active'); + // }; + // + // await render( + // + // ); + // }); +}); diff --git a/test-app/tests/test-helper.ts b/test-app/tests/test-helper.ts index 96ac884d..81873a30 100644 --- a/test-app/tests/test-helper.ts +++ b/test-app/tests/test-helper.ts @@ -1,12 +1,12 @@ +import 'qunit-theme-ember/qunit.css'; +import 'ember-statechart-component'; + import Application from 'test-app/app'; import config from 'test-app/config/environment'; import * as QUnit from 'qunit'; import { setApplication } from '@ember/test-helpers'; import { setup } from 'qunit-dom'; import { start as qunitStart } from 'ember-qunit'; -import { setupComponentMachines } from 'ember-statechart-component'; - -setupComponentMachines(); export function start() { setApplication(Application.create(config.APP)); From 740372a95f30de9db0c3eb0817f1f0e44c08bc18 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:12:49 -0400 Subject: [PATCH 12/52] woo --- ember-statechart-component/package.json | 1 + .../src/-private/statechart-manager.js | 29 ++- ember-statechart-component/src/index.ts | 5 +- pnpm-lock.yaml | 27 +-- test-app/tests/integration/usage-test.gts | 167 +++++++++--------- 5 files changed, 126 insertions(+), 103 deletions(-) diff --git a/ember-statechart-component/package.json b/ember-statechart-component/package.json index ada9a655..4ac5fc1b 100644 --- a/ember-statechart-component/package.json +++ b/ember-statechart-component/package.json @@ -40,6 +40,7 @@ "prepack": "pnpm build" }, "dependencies": { + "@ember/test-waiters": "^3.1.0", "@embroider/addon-shim": "^1.8.9", "@glint/template": ">= 1.0.0", "decorator-transforms": "^2.2.2" diff --git a/ember-statechart-component/src/-private/statechart-manager.js b/ember-statechart-component/src/-private/statechart-manager.js index 99a14fdf..0fa9523b 100644 --- a/ember-statechart-component/src/-private/statechart-manager.js +++ b/ember-statechart-component/src/-private/statechart-manager.js @@ -1,27 +1,35 @@ import { tracked } from '@glimmer/tracking'; import { getOwner, setOwner } from '@ember/application'; import { capabilities } from '@ember/component'; -import { destroy, isDestroying } from '@ember/destroyable'; +import { destroy, isDestroying, associateDestroyableChild } from '@ember/destroyable'; -import { createActor } from 'xstate'; +import { waitForPromise } from '@ember/test-waiters'; +import { toPromise, createActor } from 'xstate'; const UPDATE_EVENT_NAME = 'UPDATE'; class ReactiveActor { - @tracked lastSnapshot = null; + @tracked lastSnapshot; #actor; #callbacks = []; get state() { - return this.lastSnapshot || {}; + return this.lastSnapshot; } - constructor(actor) { + constructor(actor, owner) { this.#actor = actor; + setOwner(this, owner); + + let initialSnapshot = actor.getSnapshot(); + let context = initialSnapshot.context; + + setOwner(context, owner); + + this.lastSnapshot = initialSnapshot; actor.subscribe((snapshot) => { - console.log('setting snapshot', snapshot); this.lastSnapshot = snapshot; this.#callbacks.forEach((fn) => fn(snapshot)); }); @@ -30,7 +38,7 @@ class ReactiveActor { start = () => this.#actor.start(); stop = () => this.#actor.stop(); send = (...args) => { - if (args.length === 1 && typeof args[0] === 'string') { + if (typeof args[0] === 'string') { this.#actor.send({ type: args[0] }); return; } @@ -76,13 +84,16 @@ export default class ComponentManager { Object.assign(context, named['context']); } - setOwner(context, getOwner(this)); + let owner = getOwner(this); let actor = createActor(machine, { input: context, }); - let state = new ReactiveActor(actor); + let state = new ReactiveActor(actor, owner); + + associateDestroyableChild(actor, this); + state.start(); return state; diff --git a/ember-statechart-component/src/index.ts b/ember-statechart-component/src/index.ts index 1658b66a..eccba015 100644 --- a/ember-statechart-component/src/index.ts +++ b/ember-statechart-component/src/index.ts @@ -4,7 +4,10 @@ import { getOwner } from '@ember/owner'; import type ApplicationInstance from '@ember/application/instance'; import type { Registry } from '@ember/service'; -export function getService(context: unknown, serviceName: Key) { +export function getService( + context: unknown, + serviceName: Key +): Registry[Key] { let owner = getOwner(context) as ApplicationInstance; assert(`Expected passed context to be aware of the container (owner)`, owner); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8e56b61c..6de1df44 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,10 +24,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.6.2) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 @@ -58,6 +58,9 @@ importers: ember-statechart-component: dependencies: + '@ember/test-waiters': + specifier: ^3.1.0 + version: 3.1.0(@babel/core@7.25.7) '@embroider/addon-shim': specifier: ^1.8.9 version: 1.8.9 @@ -106,10 +109,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@nullvoxpopuli/eslint-configs': specifier: ^4.2.0 version: 4.2.0(@babel/core@7.25.7)(@babel/eslint-parser@7.25.7(@babel/core@7.25.7)(eslint@8.57.1))(@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.7))(@types/eslint@8.56.12)(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-ember@12.2.1(@babel/core@7.25.7)(@typescript-eslint/parser@8.8.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1))(eslint-plugin-qunit@8.1.2(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4) @@ -233,10 +236,10 @@ importers: version: 1.4.1-unstable.b29a807(typescript@5.5.4) '@glint/environment-ember-loose': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + version: 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/environment-ember-template-imports': specifier: 1.4.1-unstable.b29a807 - version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807) + version: 1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807) '@glint/template': specifier: 1.4.1-unstable.b29a807 version: 1.4.1-unstable.b29a807 @@ -290,7 +293,7 @@ importers: version: 3.0.1(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-modifier: specifier: ^4.2.0 - version: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)) + version: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) ember-page-title: specifier: ^8.2.3 version: 8.2.3(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) @@ -9088,17 +9091,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)))': + '@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)))': dependencies: '@glimmer/component': 1.1.2(@babel/core@7.25.7) '@glint/template': 1.4.1-unstable.b29a807 optionalDependencies: ember-cli-htmlbars: 6.3.0 - ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)) + ember-modifier: 4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)) - '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))))(@glint/template@1.4.1-unstable.b29a807)': + '@glint/environment-ember-template-imports@1.4.1-unstable.b29a807(@glint/environment-ember-loose@1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))))(@glint/template@1.4.1-unstable.b29a807)': dependencies: - '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5))) + '@glint/environment-ember-loose': 1.4.1-unstable.b29a807(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0))) '@glint/template': 1.4.1-unstable.b29a807 content-tag: 2.0.2 @@ -11619,7 +11622,7 @@ snapshots: dependencies: ember-source: 5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0) - ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)): + ember-modifier@4.2.0(@babel/core@7.25.7)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.25.7))(@glint/template@1.4.1-unstable.b29a807)(rsvp@4.8.5)(webpack@5.95.0)): dependencies: '@embroider/addon-shim': 1.8.9 decorator-transforms: 2.2.2(@babel/core@7.25.7) diff --git a/test-app/tests/integration/usage-test.gts b/test-app/tests/integration/usage-test.gts index a08d2d31..a9991483 100644 --- a/test-app/tests/integration/usage-test.gts +++ b/test-app/tests/integration/usage-test.gts @@ -3,6 +3,7 @@ import { fn } from '@ember/helper'; import { on } from '@ember/modifier'; import Service from '@ember/service'; +import { getOwner } from '@ember/owner'; import { clearRender, render } from '@ember/test-helpers'; import click from '@ember/test-helpers/dom/click'; import { module, test } from 'qunit'; @@ -19,6 +20,10 @@ declare module '@ember/service' { } } +// Pending fix in glimmer-vm +// state.matches *should* just work +const call = (obj, fun, ...args) => fun.call(obj, ...args); + /** * any casting will be fixed when tests can be gts */ @@ -54,87 +59,87 @@ module('Usage', function (hooks) { assert.dom().containsText('active'); }); - // test('can use services', async function (assert) { - // const Toggle = createMachine( - // { - // initial: 'inactive', - // states: { - // inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, - // active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, - // }, - // }, - // { - // actions: { - // increment: (ctx) => { - // getService(ctx, 'test-state').foo++; - // }, - // }, - // } - // ); - // - // this.owner.register( - // 'service:test-state', - // class TestState extends Service { - // foo = 0; - // } - // ); - // - // await render( - // - // ); - // - // const testState = this.owner.lookup('service:test-state') as { foo: number }; - // - // assert.strictEqual(testState.foo, 1); - // - // await click('button'); - // assert.strictEqual(testState.foo, 2); - // - // await click('button'); - // assert.strictEqual(testState.foo, 3); - // }); - // - // test(`it can use XState's builtin matches function`, async function (assert) { - // const Toggle = createMachine({ - // initial: 'inactive', - // states: { - // inactive: { on: { TOGGLE: 'active' } }, - // active: { on: { TOGGLE: 'inactive' } }, - // }, - // }); - // - // await render( - // - // ); - // - // assert.dom().containsText('The inactive state'); - // - // await click('button'); - // - // assert.dom().containsText('The active state'); - // }); + test('can use services', async function (assert) { + const Toggle = createMachine( + { + initial: 'inactive', + states: { + inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, + active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, + }, + }, + { + actions: { + increment: ({ context }) => { + getService(context, 'test-state').foo++; + }, + }, + } + ); + + this.owner.register( + 'service:test-state', + class TestState extends Service { + foo = 0; + } + ); + + await render( + + ); + + const testState = this.owner.lookup('service:test-state') as { foo: number }; + + assert.strictEqual(testState.foo, 1); + + await click('button'); + assert.strictEqual(testState.foo, 2); + + await click('button'); + assert.strictEqual(testState.foo, 3); + }); + + test(`it can use XState's builtin matches function`, async function (assert) { + const Toggle = createMachine({ + initial: 'inactive', + states: { + inactive: { on: { TOGGLE: 'active' } }, + active: { on: { TOGGLE: 'inactive' } }, + }, + }); + + await render( + + ); + + assert.dom().containsText('The inactive state'); + + await click('button'); + + assert.dom().containsText('The active state'); + }); // // test('multiple invocations have their own state', async function (assert) { // const Toggle = createMachine({ From 5078f8c0d9aff960720dc4f95bdc6d85e68f51df Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:14:03 -0400 Subject: [PATCH 13/52] woo --- test-app/tests/integration/usage-test.gts | 156 +++++++++++----------- 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/test-app/tests/integration/usage-test.gts b/test-app/tests/integration/usage-test.gts index a9991483..95ecdcb4 100644 --- a/test-app/tests/integration/usage-test.gts +++ b/test-app/tests/integration/usage-test.gts @@ -140,84 +140,84 @@ module('Usage', function (hooks) { assert.dom().containsText('The active state'); }); - // - // test('multiple invocations have their own state', async function (assert) { - // const Toggle = createMachine({ - // initial: 'inactive', - // states: { - // inactive: { on: { TOGGLE: 'active' } }, - // active: { on: { TOGGLE: 'inactive' } }, - // }, - // }); - // - // await render( - // - // ); - // - // assert.dom('#one').containsText('inactive'); - // assert.dom('#two').containsText('inactive'); - // - // await click('#one button'); - // - // assert.dom('#one').doesNotContainText('inactive'); - // assert.dom('#one').containsText('active'); - // assert.dom('#two').containsText('inactive'); - // }); - // - // test('can pass config', async function (assert) { - // const Toggle = createMachine({ - // initial: 'inactive', - // states: { - // inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, - // active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, - // }, - // }); - // - // let numCalled = 0; - // - // const config = { - // actions: { - // increment: () => numCalled++, - // }, - // }; - // - // await render( - // - // ); - // - // assert.strictEqual(numCalled, 1); - // - // await click('button'); - // assert.strictEqual(numCalled, 2); - // - // await click('button'); - // assert.strictEqual(numCalled, 3); - // }); + + test('multiple invocations have their own state', async function (assert) { + const Toggle = createMachine({ + initial: 'inactive', + states: { + inactive: { on: { TOGGLE: 'active' } }, + active: { on: { TOGGLE: 'inactive' } }, + }, + }); + + await render( + + ); + + assert.dom('#one').containsText('inactive'); + assert.dom('#two').containsText('inactive'); + + await click('#one button'); + + assert.dom('#one').doesNotContainText('inactive'); + assert.dom('#one').containsText('active'); + assert.dom('#two').containsText('inactive'); + }); + + test('can pass config', async function (assert) { + const Toggle = createMachine({ + initial: 'inactive', + states: { + inactive: { entry: 'increment', on: { TOGGLE: 'active' } }, + active: { entry: 'increment', on: { TOGGLE: 'inactive' } }, + }, + }); + + let numCalled = 0; + + const config = { + actions: { + increment: () => numCalled++, + }, + }; + + await render( + + ); + + assert.strictEqual(numCalled, 1); + + await click('button'); + assert.strictEqual(numCalled, 2); + + await click('button'); + assert.strictEqual(numCalled, 3); + }); // // test('can pass context', async function (assert) { // const Toggle = createMachine({ From ea26e28b036d0b80c407c36d8b68f7cadb58b711 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 9 Oct 2024 22:11:08 -0400 Subject: [PATCH 14/52] woo --- .../src/-private/statechart-manager.js | 8 +- ember-statechart-component/src/index.ts | 2 +- .../src/registration.ts | 38 ------- test-app/tests/integration/usage-test.gts | 104 +++++++++--------- 4 files changed, 62 insertions(+), 90 deletions(-) delete mode 100644 ember-statechart-component/src/registration.ts diff --git a/ember-statechart-component/src/-private/statechart-manager.js b/ember-statechart-component/src/-private/statechart-manager.js index 0fa9523b..54e5a31e 100644 --- a/ember-statechart-component/src/-private/statechart-manager.js +++ b/ember-statechart-component/src/-private/statechart-manager.js @@ -78,16 +78,22 @@ export default class ComponentManager { machine = machine.provide(named['config']); } + let input = {}; let context = {}; + if ('input' in named) { + Object.assign(input, named['input']); + } if ('context' in named) { Object.assign(context, named['context']); } let owner = getOwner(this); + console.log({ input, context }); let actor = createActor(machine, { - input: context, + input, + context, }); let state = new ReactiveActor(actor, owner); diff --git a/ember-statechart-component/src/index.ts b/ember-statechart-component/src/index.ts index eccba015..35c427dc 100644 --- a/ember-statechart-component/src/index.ts +++ b/ember-statechart-component/src/index.ts @@ -17,4 +17,4 @@ export function getService( return service; } -export { setupComponentMachines } from './registration.ts'; +export { setupComponentMachines } from './registration.js'; diff --git a/ember-statechart-component/src/registration.ts b/ember-statechart-component/src/registration.ts deleted file mode 100644 index 10b8f5ce..00000000 --- a/ember-statechart-component/src/registration.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { setComponentManager, setComponentTemplate } from '@ember/component'; -import { precompileTemplate } from '@ember/template-compilation'; - -import { StateMachine } from 'xstate'; - -import ComponentManager from './-private/statechart-manager.js'; - -let isSetup = false; - -/** - * Installs StateNode detection for Ember. - * This is what allows Ember to render createMachine() values as components. - * - * Optionally, if, for whatever reason, there is a risk of multiple XState's - * in the dependency graph (like with linking dependencies), an `override` may - * be passed to choose a specific XState (hopefully from the host app). - */ -export function setupComponentMachines(override?: typeof StateMachine) { - if (isSetup) return; - - // Managers are managed globally, and not per app instance - setComponentManager( - (owner) => ComponentManager.create(owner), - override?.prototype || StateMachine.prototype - ); - - setComponentTemplate( - precompileTemplate(`{{yield this.state this.send this.onTransition}}`, { - strictMode: true, - }), - override?.prototype || StateMachine.prototype - ); - - isSetup = true; -} - -// ‼️ SideEffect -setupComponentMachines(); diff --git a/test-app/tests/integration/usage-test.gts b/test-app/tests/integration/usage-test.gts index 95ecdcb4..93d69173 100644 --- a/test-app/tests/integration/usage-test.gts +++ b/test-app/tests/integration/usage-test.gts @@ -218,56 +218,60 @@ module('Usage', function (hooks) { await click('button'); assert.strictEqual(numCalled, 3); }); - // - // test('can pass context', async function (assert) { - // const Toggle = createMachine({ - // initial: 'inactive', - // context: { - // numCalled: 0, - // }, - // states: { - // inactive: { - // entry: assign({ - // numCalled: (ctx: any) => ctx.numCalled + 1, - // }), - // on: { TOGGLE: 'active' }, - // }, - // active: { - // entry: assign({ - // numCalled: (ctx: any) => ctx.numCalled + 1, - // }), - // on: { TOGGLE: 'inactive' }, - // }, - // }, - // }); - // - // let context = { - // numCalled: 10, - // }; - // - // const report = (data: any) => (context = data); - // - // await render( - // - // ); - // - // assert.strictEqual(context.numCalled, 11); - // - // await click('button'); - // assert.strictEqual(context.numCalled, 12); - // - // await click('button'); - // assert.strictEqual(context.numCalled, 13); - // }); - // + + test('can pass context', async function (assert) { + const Toggle = createMachine({ + initial: 'inactive', + context: ({ input }) => { + return { + numCalled: input.numCalled ?? 0, + } + }, + states: { + inactive: { + entry: assign({ + numCalled: ({ context }) => context.numCalled + 1, + }), + on: { TOGGLE: 'active' }, + }, + active: { + entry: assign({ + numCalled: ({ context }) => context.numCalled + 1, + }), + on: { TOGGLE: 'inactive' }, + }, + }, + }); + + let input = { + numCalled: 10, + }; + +let context = { numCalled: null }; + + const report = (data: any) => (context = data); + + await render( + + ); + + assert.strictEqual(context.numCalled, 11); + + await click('button'); + assert.strictEqual(context.numCalled, 12); + + await click('button'); + assert.strictEqual(context.numCalled, 13); + }); + // test('merging passed context by default', async function (assert) { // const Toggle = createMachine({ // initial: 'inactive', From 878907b2f1586a4acbff188d86fc5e80e6c892dd Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 9 Oct 2024 22:12:30 -0400 Subject: [PATCH 15/52] woo --- test-app/tests/integration/usage-test.gts | 48 +++++++++++------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/test-app/tests/integration/usage-test.gts b/test-app/tests/integration/usage-test.gts index 93d69173..aeeeb0ad 100644 --- a/test-app/tests/integration/usage-test.gts +++ b/test-app/tests/integration/usage-test.gts @@ -253,7 +253,7 @@ let context = { numCalled: null }; await render(