}
+ */
+export function isRecord(x) {
+ return typeof x === 'object' && x !== null && !Array.isArray(x);
+}
diff --git a/packages/repl-sdk/tests-self/.eslintrc.cjs b/packages/repl-sdk/tests-self/.eslintrc.cjs
new file mode 100644
index 000000000..ab97ae875
--- /dev/null
+++ b/packages/repl-sdk/tests-self/.eslintrc.cjs
@@ -0,0 +1,20 @@
+'use strict';
+
+const { configs } = require('@nullvoxpopuli/eslint-configs');
+
+// accommodates: JS, TS, App, and Addon
+const config = configs.ember();
+
+module.exports = {
+ ...config,
+ overrides: [
+ ...config.overrides,
+ {
+ files: ['**/*.ts'],
+ rules: {
+ '@typescript-eslint/no-explicit-any': 'off',
+ '@typescript-eslint/no-non-null-assertion': 'off',
+ },
+ },
+ ],
+};
diff --git a/packages/repl-sdk/tests-self/package.json b/packages/repl-sdk/tests-self/package.json
new file mode 100644
index 000000000..d55640146
--- /dev/null
+++ b/packages/repl-sdk/tests-self/package.json
@@ -0,0 +1,50 @@
+{
+ "name": "@nullvoxpopuli/repl-sdk-tests-self",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "start:chrome": "vitest --browser.name=chrome",
+ "start:firefox": "vitest --browser.name=firefox",
+ "test": "pnpm test:firefox",
+ "test:chrome": "vitest --browser.name=chrome --browser.headless=true",
+ "test:firefox": "vitest --browser.name=firefox --browser.headless=true"
+ },
+ "author": "NullvoxPopuli",
+ "devDependencies": {
+ "@babel/plugin-proposal-decorators": "^7.23.9",
+ "@babel/standalone": "^7.27.7",
+ "@nullvoxpopuli/eslint-configs": "^5.0.0",
+ "@testing-library/dom": "^10.3.2",
+ "@tsconfig/ember": "^3.0.7",
+ "@types/common-tags": "^1.8.4",
+ "@types/mdast": "^4.0.4",
+ "@vitest/browser": "^3.2.4",
+ "@vitest/ui": "3.2.4",
+ "@vue/repl": "^4.6.1",
+ "mdast": "^3.0.0",
+ "mermaid": "^11.6.0",
+ "playwright": "^1.53.1",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "rehype-raw": "^7.0.0",
+ "rehype-stringify": "^10.0.1",
+ "remark-gfm": "^4.0.1",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.1.2",
+ "svelte": "^5.34.9",
+ "unified": "^11.0.5",
+ "unist-util-visit": "^5.0.0",
+ "vite": "^6.3.5",
+ "vite-plugin-wasm": "^3.3.0",
+ "vitest": "^3.2.4",
+ "vue": "^3.5.17",
+ "webdriverio": "^9.15.0"
+ },
+ "dependencies": {
+ "common-tags": "^1.8.2",
+ "repl-sdk": "workspace:^"
+ },
+ "volta": {
+ "extends": "../../../package.json"
+ }
+}
diff --git a/packages/repl-sdk/tests-self/tests/custom.test.ts b/packages/repl-sdk/tests-self/tests/custom.test.ts
new file mode 100644
index 000000000..9e1812c61
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/custom.test.ts
@@ -0,0 +1,27 @@
+import { Compiler } from 'repl-sdk';
+import { describe, expect, test } from 'vitest';
+
+describe('custom', () => {
+ test('it works', async () => {
+ const compiler = new Compiler({
+ formats: {
+ custom: {
+ compiler: async () => {
+ return {
+ compile: async (text) => {
+ return `export default \`${text + '!!'} \``;
+ },
+ render: async (element, compiled) => {
+ element.innerHTML = compiled;
+ },
+ };
+ },
+ },
+ },
+ });
+
+ const element = await compiler.compile('custom', `example text`);
+
+ expect(element.textContent).toContain('example text!!');
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tests/ember.test.ts b/packages/repl-sdk/tests-self/tests/ember.test.ts
new file mode 100644
index 000000000..9b3477649
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/ember.test.ts
@@ -0,0 +1,64 @@
+import { Compiler } from 'repl-sdk';
+import { describe, expect, test } from 'vitest';
+
+describe('ember', () => {
+ describe('gjs', () => {
+ test.skip('template-only', async () => {
+ const compiler = new Compiler();
+ const element = await compiler.compile(
+ 'gjs',
+ `
+ const name = 'world';
+
+
+ Hello {{name}}!
+
+
+
+ `
+ );
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ const h1 = element.querySelector('h1');
+
+ expect(h1).toBeTruthy();
+ expect(h1?.textContent).toContain('Hello world!');
+ expect(window.getComputedStyle(h1!).color).toBe('rgb(255, 0, 0)');
+ });
+
+ test.skip('class component', async () => {
+ const compiler = new Compiler();
+ const element = await compiler.compile(
+ 'gjs',
+ `
+ import Component from '@glimmer/component';
+
+ export default class Demo extends Component {
+ name = 'world';
+
+
+ Hello {{this.name}}!
+
+
+
+ }
+ `
+ );
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ const h1 = element.querySelector('h1');
+
+ expect(h1).toBeTruthy();
+ expect(h1?.textContent).toContain('Hello world!');
+ expect(window.getComputedStyle(h1!).color).toBe('rgb(255, 0, 0)');
+ });
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tests/jsx/react.test.ts b/packages/repl-sdk/tests-self/tests/jsx/react.test.ts
new file mode 100644
index 000000000..772e4e09b
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/jsx/react.test.ts
@@ -0,0 +1,27 @@
+import { Compiler } from 'repl-sdk';
+import { describe, expect, test } from 'vitest';
+
+describe('jsx', () => {
+ describe('react', () => {
+ test('it works', async () => {
+ const compiler = new Compiler();
+ // React comes from esm.sh
+ const element = await compiler.compile(
+ 'jsx',
+ `
+ import React from 'react';
+
+ export default <>
+ Hello World
+
+ GENERAL KENOBI!
+ >;
+ `,
+ { flavor: 'react' }
+ );
+
+ expect(element.querySelector('h1')?.textContent).toContain('Hello World');
+ expect(element.textContent).toContain('Hello World');
+ });
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tests/markdown.test.ts b/packages/repl-sdk/tests-self/tests/markdown.test.ts
new file mode 100644
index 000000000..017f5ae12
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/markdown.test.ts
@@ -0,0 +1,344 @@
+import type { Root } from 'mdast';
+import { Compiler } from 'repl-sdk';
+import { stripIndent } from 'common-tags';
+import { describe, expect, test, beforeEach } from 'vitest';
+import { allKnownModules, markdownModules, vueModules } from './setup.ts';
+import type { Plugin } from 'unified';
+import { visit } from 'unist-util-visit';
+
+function escapeFence(code: string) {
+ return code.replace(/`/g, '\\`');
+}
+
+function fenced(code: string, meta: string) {
+ return '```' + meta + '\n' + escapeFence(code) + '\n```';
+}
+
+beforeEach(() => {
+ delete (window as any)[Symbol.for('__repl-sdk__compiler__')];
+});
+
+describe('markdown', () => {
+ test('it works', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const element = await compiler.compile('md', `# Hello`);
+
+ const h1 = element.querySelector('h1');
+
+ expect(h1).toBeTruthy();
+ expect(h1?.textContent).toContain('Hello');
+ });
+
+ describe('code fences', () => {
+ const vue = `
+
+
+
+ GENERAL KENOBI!
+
+ {{count}}
+
+ `;
+
+ const jsxReact = `
+ import React from 'react';
+
+ export default <>
+ Hello World
+
+ GENERAL KENOBI!
+ >;
+ `;
+
+ const svelte = `
+
+
+
+ Hello {name}!
+ `;
+
+ const mermaid = `
+graph TD;
+ A-->B;
+ A-->C;
+ B-->D;
+ C-->D;
+`;
+
+ test('vue live', async () => {
+ const compiler = new Compiler({
+ resolve: {
+ ...markdownModules,
+ ...vueModules,
+ },
+ });
+ const element = await compiler.compile('md', `# Hello\n\n` + fenced(vue, 'vue live'));
+
+ const h1 = element.querySelector('h1');
+ const h2 = element.querySelector('h2');
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ expect(h1).toBeTruthy();
+ expect(h2).toBeTruthy();
+ expect(h1?.textContent).toContain('Hello');
+ expect(h2?.textContent).toContain('GENERAL KENOBI!');
+ expect(window.getComputedStyle(h2!).color).toBe('rgb(255, 0, 0)');
+ });
+
+ test('jsx requires a flavor to be specified', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+
+ await expect(
+ compiler.compile(
+ 'md',
+ `# Hello\n\n` +
+ fenced(jsxReact, 'jsx react live') +
+ '\n\n' +
+ fenced(`export default <>hi>`, 'jsx live')
+ )
+ ).rejects.toThrow('make sure you specify the flavor.');
+ });
+
+ test('svelte live', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const element = await compiler.compile('md', fenced(svelte, 'svelte live'));
+
+ const h1 = element.querySelector('h1');
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ expect(h1).toBeTruthy();
+ expect(h1?.textContent).toContain('Hello');
+ expect(window.getComputedStyle(h1!).color).toBe('rgb(255, 0, 0)');
+ });
+
+ test('mermaid (no live)', async () => {
+ const compiler = new Compiler({ resolve: markdownModules });
+ const element = await compiler.compile('md', fenced(mermaid, 'mermaid'));
+
+ const rootSVG = element.querySelector('svg');
+
+ expect(rootSVG, 'Mermaid draws in SVG inside the tag').toBeTruthy();
+ });
+
+ test('unknown', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const element = await compiler.compile('md', fenced('hello', 'unknown-ext'));
+
+ expect(element.innerHTML).toMatchInlineSnapshot(`
+ ""
+ `);
+ });
+ });
+
+ describe('markdown features', () => {
+ test('tables', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const snippet = stripIndent`
+ | Color | Food |
+ | ---- | ---- |
+ | red | apple |
+ | yellow| banana |
+ `;
+
+ const element = await compiler.compile('md', snippet);
+
+ expect(element.querySelector('table')).toBeTruthy();
+ expect(element.querySelector('td')?.textContent).toContain('red');
+ });
+
+ test('footnotes', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const snippet = stripIndent`
+ text[^note]
+
+ [^note]: a note about a thing
+ `;
+
+ const element = await compiler.compile('md', snippet);
+
+ expect(element.querySelector('sup')).toBeTruthy();
+ expect(element.querySelectorAll('a').length).toBe(2);
+ });
+ });
+
+ describe('remark plugins', () => {
+ test('adding a remark plugin', () => {});
+
+ describe('remove ', () => {
+ const snippet = stripIndent`
+ text
+
+ \`\`\`js
+ const two = 2;
+ \`\`\`
+ `;
+
+ /**
+ * Test plugin that just turns code into an
+ * unformatted mess in a p tag
+ */
+ const removePre: Plugin<[], Root> = (/* options */) => {
+ return function transformer(tree) {
+ visit(tree, ['code'], function (node, index, parent) {
+ if (!parent) return;
+ if (undefined === index) return;
+
+ parent.children[index] = {
+ type: 'html',
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ value: `${node.value}
`,
+ };
+ });
+ };
+ };
+
+ test('without the plugin', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const element = await compiler.compile('md', snippet);
+
+ expect(element.querySelector('code')).toBeTruthy();
+ });
+
+ test('with the plugin (global)', async () => {
+ const compiler = new Compiler({
+ resolve: allKnownModules,
+ options: { md: { remarkPlugins: [removePre] } },
+ });
+ const element = await compiler.compile('md', snippet);
+
+ expect(element.querySelector('code')).not.toBeTruthy();
+ });
+
+ test('with the plugin (compile)', async () => {
+ const compiler = new Compiler({ resolve: allKnownModules });
+ const element = await compiler.compile('md', snippet, {
+ remarkPlugins: [removePre],
+ });
+
+ expect(element.querySelector('code')).not.toBeTruthy();
+ });
+ });
+
+ describe('remark plugins can change the output', () => {
+ const snippet = stripIndent`
+ # Hello
+
+ \`\`\`gjs
+ not a greeting
+ \`\`\`
+
+
+ `;
+
+ const codeSwapper: Plugin<[], Root> = (/* options */) => {
+ return (tree) => {
+ tree.children = tree.children.map((child) => {
+ if (child.type === 'code') {
+ return {
+ type: 'code',
+ lang: 'gjs',
+ value: `
+ a greeting
+ `,
+ };
+ }
+ return child;
+ });
+ };
+ };
+
+ test('without the plugin', async () => {
+ const compiler = new Compiler({
+ resolve: allKnownModules,
+ options: { md: { remarkPlugins: [] } },
+ });
+ const element = await compiler.compile('md', snippet);
+
+ expect(element.querySelector('code')?.textContent).includes('not a greeting');
+ });
+
+ test('with the plugin', async () => {
+ const compiler = new Compiler({
+ resolve: allKnownModules,
+ options: { md: { remarkPlugins: [codeSwapper] } },
+ });
+ const element = await compiler.compile('md', snippet);
+ const text = element.querySelector('code')?.textContent;
+
+ expect(text).not.includes('not a greeting');
+ expect(text).includes('a greeting');
+ });
+ });
+ });
+
+ describe('rehype plugins', () => {
+ describe('downgrade h1 to h2', () => {
+ const snippet = '# Hello';
+ const noH1: Plugin<[], Root> = (/* options */) => {
+ return (tree) => {
+ return visit(tree, ['element'], function (node) {
+ if (!('tagName' in node)) return;
+
+ if (node.tagName === 'h1') {
+ node.tagName = 'h2';
+ }
+
+ return 'skip';
+ });
+ };
+ };
+
+ test('without the plugin', async () => {
+ const compiler = new Compiler({
+ resolve: allKnownModules,
+ options: { md: { rehypePlugins: [] } },
+ });
+ const element = await compiler.compile('md', snippet);
+ const text = element.innerHTML;
+
+ expect(text).not.includes('h2');
+ expect(text).includes('h1');
+ });
+
+ test('with the plugin (global)', async () => {
+ const compiler = new Compiler({
+ resolve: allKnownModules,
+ options: { md: { rehypePlugins: [noH1] } },
+ });
+ const element = await compiler.compile('md', snippet);
+ const text = element.innerHTML;
+
+ expect(text).not.includes('h1');
+ expect(text).includes('h2');
+ });
+
+ test('with the plugin (compile)', async () => {
+ const compiler = new Compiler({
+ resolve: allKnownModules,
+ options: { md: { rehypePlugins: [noH1] } },
+ });
+ const element = await compiler.compile('md', snippet);
+ const text = element.innerHTML;
+
+ expect(text).not.includes('h1');
+ expect(text).includes('h2');
+ });
+ });
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tests/mermaid.test.ts b/packages/repl-sdk/tests-self/tests/mermaid.test.ts
new file mode 100644
index 000000000..8286f6f9d
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/mermaid.test.ts
@@ -0,0 +1,26 @@
+import { Compiler } from 'repl-sdk';
+import { describe, expect, test } from 'vitest';
+
+describe('Custom compiler', () => {
+ test('it works', async () => {
+ const compiler = new Compiler();
+ // Vue comes from esm.sh
+ const element = await compiler.compile(
+ 'mermaid',
+ `
+ graph TD
+
+ A[Client] --> B[Load Balancer]
+ B --> C[Server01]
+ B --> D[Server02]
+ `
+ );
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ const rootSVG = element.querySelector('svg');
+
+ expect(rootSVG, 'Mermaid draws in SVG inside the tag').toBeTruthy();
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tests/setup.ts b/packages/repl-sdk/tests-self/tests/setup.ts
new file mode 100644
index 000000000..e89608491
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/setup.ts
@@ -0,0 +1,45 @@
+export const markdownModules = {
+ 'rehype-raw': () => import('rehype-raw'),
+ 'rehype-stringify': () => import('rehype-stringify'),
+ 'remark-gfm': () => import('remark-gfm'),
+ 'remark-parse': () => import('remark-parse'),
+ 'remark-rehype': () => import('remark-rehype'),
+ unified: () => import('unified'),
+ 'unist-util-visit': () => import('unist-util-visit'),
+};
+
+export const reactModules = {
+ // @ts-expect-error Does not provide its own types
+ react: () => import('react'),
+ // @ts-expect-error Does not provide its own types
+ 'react-dom': () => import('react-dom'),
+ // @ts-expect-error Does not provide its own types
+ '@babel/standalone': () => import('@babel/standalone'),
+ process: () => import('process'),
+};
+
+export const mermaidModules = {
+ mermaid: () => import('mermaid'),
+};
+
+export const svelteModules = {
+ // Too many modules to load in the browser, takes too long to load them all
+ // svelte: () => import('svelte'),
+};
+
+export const vueModules = {
+ // vue: () => import('vue'),
+ '@vue/repl': () => import('@vue/repl'),
+ process: () => import('process'),
+};
+
+/**
+ * Tests using this shouldn't hit a CDN at all
+ */
+export const allKnownModules = {
+ ...markdownModules,
+ ...reactModules,
+ ...mermaidModules,
+ ...svelteModules,
+ ...vueModules,
+};
diff --git a/packages/repl-sdk/tests-self/tests/svelte.test.ts b/packages/repl-sdk/tests-self/tests/svelte.test.ts
new file mode 100644
index 000000000..b967cd945
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/svelte.test.ts
@@ -0,0 +1,29 @@
+import { Compiler } from 'repl-sdk';
+import { describe, expect, test } from 'vitest';
+
+describe('svelte', () => {
+ test.skip('it works', async () => {
+ const compiler = new Compiler();
+ const element = await compiler.compile(
+ 'svelte',
+ `
+
+
+
+ Hello {name}!
+ `
+ );
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ const h1 = element.querySelector('h1');
+
+ expect(h1!.textContent).toContain('Hello world!');
+ expect(window.getComputedStyle(h1!).color).toBe('rgb(255, 0, 0)');
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tests/vue.test.ts b/packages/repl-sdk/tests-self/tests/vue.test.ts
new file mode 100644
index 000000000..112780aed
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tests/vue.test.ts
@@ -0,0 +1,38 @@
+import { Compiler } from 'repl-sdk';
+import { describe, expect, test } from 'vitest';
+
+describe('vue', () => {
+ test('it works', async () => {
+ const compiler = new Compiler();
+ // Vue comes from esm.sh
+ const element = await compiler.compile(
+ 'vue',
+ `
+
+
+
+
+ Hello World
+
+ GENERAL KENOBI!
+
+ `
+ );
+
+ // getComputedStyle doesn't work without the element existing in the document
+ document.body.appendChild(element);
+
+ const h1 = element.querySelector('h1');
+
+ expect(h1).toBeTruthy();
+ expect(h1?.textContent).toContain('Hello World');
+ expect(window.getComputedStyle(h1).color).toBe('rgb(255, 0, 0)');
+ expect(element.textContent).toContain('Hello World');
+ });
+});
diff --git a/packages/repl-sdk/tests-self/tsconfig.json b/packages/repl-sdk/tests-self/tsconfig.json
new file mode 100644
index 000000000..61f1cb68d
--- /dev/null
+++ b/packages/repl-sdk/tests-self/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "extends": "@tsconfig/ember/tsconfig.json",
+ "compilerOptions": {
+ "skipLibCheck": true,
+ "allowImportingTsExtensions": true
+ }
+}
diff --git a/packages/repl-sdk/tests-self/vite.config.js b/packages/repl-sdk/tests-self/vite.config.js
new file mode 100644
index 000000000..d284a24ca
--- /dev/null
+++ b/packages/repl-sdk/tests-self/vite.config.js
@@ -0,0 +1,11 @@
+import { defineConfig } from 'vite';
+import wasm from 'vite-plugin-wasm';
+
+export default defineConfig({
+ esbuild: {
+ supported: {
+ 'top-level-await': true,
+ },
+ },
+ plugins: [wasm()],
+});
diff --git a/packages/repl-sdk/tests-self/vitest.config.ts b/packages/repl-sdk/tests-self/vitest.config.ts
new file mode 100644
index 000000000..2b84ef5a8
--- /dev/null
+++ b/packages/repl-sdk/tests-self/vitest.config.ts
@@ -0,0 +1,29 @@
+import { defineConfig } from 'vitest/config';
+
+export default defineConfig({
+ test: {
+ testTimeout: 30_000,
+ coverage: {
+ provider: 'v8',
+ },
+ browser: {
+ provider: 'webdriverio',
+ // provider: 'playwright',
+ enabled: true,
+ instances: [
+ // {
+ // browser: 'chromium',
+ // headless: true,
+ // },
+ {
+ browser: 'chrome',
+ headless: true,
+ },
+ {
+ browser: 'firefox',
+ headless: true,
+ },
+ ],
+ },
+ },
+});
diff --git a/packages/repl-sdk/tsconfig.json b/packages/repl-sdk/tsconfig.json
new file mode 100644
index 000000000..86a6cbe9d
--- /dev/null
+++ b/packages/repl-sdk/tsconfig.json
@@ -0,0 +1,13 @@
+
+{
+ "extends": "@tsconfig/ember/tsconfig.json",
+ "include": ["src/**/*", "unpublished-development-types/**/*"],
+ "compilerOptions": {
+ "allowJs": true,
+ "checkJs": true,
+ "skipLibCheck": true,
+ "allowImportingTsExtensions": true,
+ // This is a dumb feature of TS
+ "noPropertyAccessFromIndexSignature": false,
+ }
+}
diff --git a/packages/repl-sdk/vite.config.mts b/packages/repl-sdk/vite.config.mts
new file mode 100644
index 000000000..d35e6bd35
--- /dev/null
+++ b/packages/repl-sdk/vite.config.mts
@@ -0,0 +1,69 @@
+import { resolve, join } from "node:path";
+import { readFile } from "node:fs/promises";
+import url from "node:url";
+
+import { defineConfig } from "vite";
+import dts from "vite-plugin-dts";
+
+const __dirname = url.fileURLToPath(new URL(".", import.meta.url));
+
+let manifest = await (async () => {
+ let buffer = await readFile(join(__dirname, "package.json"));
+ return JSON.parse(buffer.toString());
+})();
+
+let forcedExternals = [
+ "unified",
+ "remark-parse",
+ "remark-rehype",
+ "remark-gfm",
+ "rehype-raw",
+ "rehype-stringify",
+ "mdast",
+ "hast",
+ "unist",
+ "unist-util-visit",
+ "vfile",
+];
+
+let externals = [
+ ...Object.keys({
+ ...(manifest.dependencies || {}),
+ ...(manifest.peerDependencies || {}),
+ }),
+ ...forcedExternals,
+];
+
+export default defineConfig({
+ build: {
+ outDir: "dist",
+ // These targets are not "support".
+ // A consuming app or library should compile further if they need to support
+ // old browsers.
+ target: ["esnext"],
+ // In case folks debug without sourcemaps
+ //
+ // TODO: do a dual build, split for development + production
+ // where production is optimized for CDN loading via
+ // https://limber.glimdown.com
+ minify: false,
+ sourcemap: true,
+ lib: {
+ // Could also be a dictionary or array of multiple entry points
+ entry: resolve(__dirname, "src/index.js"),
+ name: "repl-sdk",
+ formats: ["es"],
+ // the proper extensions will be added
+ fileName: "index",
+ },
+ rollupOptions: {
+ external: externals,
+ },
+ },
+ plugins: [
+ dts({
+ rollupTypes: true,
+ outDir: "declarations",
+ }),
+ ],
+});
diff --git a/packages/repl-sdk/vitest.config.mts b/packages/repl-sdk/vitest.config.mts
new file mode 100644
index 000000000..b60dbe2d9
--- /dev/null
+++ b/packages/repl-sdk/vitest.config.mts
@@ -0,0 +1,8 @@
+import { defineConfig } from "vitest/config";
+
+export default defineConfig({
+ test: {
+ includeSource: ["src/**/*.js"],
+ exclude: ["tests-self", "tests-ember", "node_modules"],
+ },
+});
diff --git a/packages/syntax/-infra/package.json b/packages/syntax/-infra/package.json
index 3ddfdb9ff..4875946ab 100644
--- a/packages/syntax/-infra/package.json
+++ b/packages/syntax/-infra/package.json
@@ -4,24 +4,24 @@
"private": true,
"type": "module",
"dependencies": {
- "@codemirror/language": "^6.10.8",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/language": "^6.11.2",
+ "@codemirror/view": "^6.37.2",
"@lezer/generator": "^1.7.2",
"@lezer/highlight": "^1.2.1",
"@rollup/plugin-node-resolve": "^15.3.1",
- "rollup": "^4.40.1"
+ "rollup": "^4.44.0"
},
"volta": {
"extends": "../../../package.json"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@types/mocha": "^10.0.10",
- "eslint": "^9.25.1",
- "mocha": "^10.8.2",
- "prettier": "^3.5.2",
- "typescript": "5.7.3"
+ "eslint": "^9.29.0",
+ "mocha": "^11.6.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3"
},
"scripts": {
"lint:fix": "pnpm -w exec lint fix",
diff --git a/packages/syntax/dev-preview/package.json b/packages/syntax/dev-preview/package.json
index 00012bc3b..0df19c253 100644
--- a/packages/syntax/dev-preview/package.json
+++ b/packages/syntax/dev-preview/package.json
@@ -6,11 +6,11 @@
"./print-tree": "./src/print-lezer-tree.ts"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3"
},
"scripts": {
"lint": "pnpm -w exec lint",
diff --git a/packages/syntax/glimdown/codemirror/dev/package.json b/packages/syntax/glimdown/codemirror/dev/package.json
index 8d8f6a257..2b431ddf2 100644
--- a/packages/syntax/glimdown/codemirror/dev/package.json
+++ b/packages/syntax/glimdown/codemirror/dev/package.json
@@ -11,17 +11,17 @@
"lint:prettier": "pnpm -w exec lint prettier"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
- "@codemirror/language": "^6.10.8",
+ "@babel/core": "^7.27.7",
+ "@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
- "@codemirror/theme-one-dark": "^6.1.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/theme-one-dark": "^6.1.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/codemirror-dev-preview": "workspace:*",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3",
- "vite": "^5.4.14"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3",
+ "vite": "^6.3.5"
},
"volta": {
"extends": "../../../../../package.json"
diff --git a/packages/syntax/glimdown/codemirror/package.json b/packages/syntax/glimdown/codemirror/package.json
index 9d3c0ca0b..a9a9a9395 100644
--- a/packages/syntax/glimdown/codemirror/package.json
+++ b/packages/syntax/glimdown/codemirror/package.json
@@ -17,25 +17,28 @@
"directory": "packages/syntax/glimdown/codemirror"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@codemirror/buildhelper": "^1.0.2",
- "@codemirror/language": "^6.10.8",
+ "@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/view": "^6.37.2",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@tsconfig/ember": "^3.0.9",
- "codemirror": "^6.0.1",
+ "codemirror": "^6.0.2",
"concurrently": "^9.1.2",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
"rollup-plugin-ts": "^3.4.5",
- "typescript": "5.7.3"
+ "typescript": "5.8.3"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.9",
- "@codemirror/lang-markdown": "^6.3.2",
+ "@codemirror/lang-javascript": "^6.2.4",
+ "@codemirror/lang-markdown": "^6.3.3",
+ "@codemirror/lang-vue": "^0.1.3",
+ "@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language-data": "^6.5.1",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
@@ -43,8 +46,10 @@
"@lezer/javascript": "^1.4.21",
"@lezer/lr": "^1.4.2",
"@lezer/markdown": "^1.4.1",
+ "@replit/codemirror-lang-svelte": "^6.0.0",
"codemirror-lang-glimmer": "workspace:*",
- "codemirror-lang-glimmer-js": "workspace:*"
+ "codemirror-lang-glimmer-js": "workspace:*",
+ "codemirror-lang-mermaid": "^0.5.0"
},
"scripts": {
"dev": "node ./dev/watch.cjs src/index.ts",
diff --git a/packages/syntax/glimdown/codemirror/src/index.ts b/packages/syntax/glimdown/codemirror/src/index.ts
index 06efbf951..5c818462d 100644
--- a/packages/syntax/glimdown/codemirror/src/index.ts
+++ b/packages/syntax/glimdown/codemirror/src/index.ts
@@ -97,44 +97,107 @@ const extendedMarkdown = commonmark.configure([
// Glimdown,
]);
+export const codeLanguages = [
+ ...languages,
+ LanguageDescription.of({
+ name: 'glimmer',
+ alias: ['hbs', 'glimmer', 'ember', 'handlebars'],
+ extensions: ['hbs'],
+ async load() {
+ // @ts-ignore
+ const { glimmer } = await import('codemirror-lang-glimmer');
+
+ return glimmer();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'glimmer-js',
+ alias: ['gjs', 'glimmer-js', 'javascript.glimmer'],
+ extensions: ['gjs'],
+ async load() {
+ // @ts-ignore
+ const { gjs } = await import('codemirror-lang-glimmer-js');
+
+ return gjs();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'glimmer-ts',
+ alias: ['gts', 'glimmer-ts', 'typescript.glimmer'],
+ extensions: ['gts'],
+ async load() {
+ // @ts-ignore
+ const { gts } = await import('codemirror-lang-glimmer-js');
+
+ return gts();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'vue',
+ extensions: ['vue'],
+ async load() {
+ // @ts-ignore
+ const { vue } = await import('@codemirror/lang-vue');
+
+ return vue();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'svelte',
+ extensions: ['svelte'],
+ async load() {
+ // @ts-ignore
+ const { svelte } = await import('@replit/codemirror-lang-svelte');
+
+ return svelte();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'javascript',
+ extensions: ['javascript'],
+ async load() {
+ // @ts-ignore
+ const { javascript } = await import('@codemirror/lang-javascript');
+
+ return javascript();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'javascript-jsx',
+ extensions: ['jsx', 'react'],
+ async load() {
+ // @ts-ignore
+ const { javascript } = await import('@codemirror/lang-javascript');
+
+ return javascript({ jsx: true });
+ },
+ }),
+
+ LanguageDescription.of({
+ name: 'mermaid',
+ extensions: ['mermaid'],
+ async load() {
+ // @ts-ignore
+ const { mermaid } = await import('codemirror-lang-mermaid');
+
+ return mermaid();
+ },
+ }),
+ LanguageDescription.of({
+ name: 'yaml',
+ extensions: ['yaml', 'yml'],
+ async load() {
+ // @ts-ignore
+ const { yaml } = await import('@codemirror/lang-yaml');
+
+ return yaml();
+ },
+ }),
+];
+
export function glimdown() {
return markdown({
base: markdownLang(extendedMarkdown),
- codeLanguages: [
- ...languages,
- LanguageDescription.of({
- name: 'glimmer',
- alias: ['hbs', 'glimmer', 'ember', 'handlebars'],
- extensions: ['hbs'],
- async load() {
- // @ts-ignore
- const { glimmer } = await import('codemirror-lang-glimmer');
-
- return glimmer();
- },
- }),
- LanguageDescription.of({
- name: 'glimmer-js',
- alias: ['gjs', 'glimmer-js', 'javascript.glimmer'],
- extensions: ['gjs'],
- async load() {
- // @ts-ignore
- const { gjs } = await import('codemirror-lang-glimmer-js');
-
- return gjs();
- },
- }),
- LanguageDescription.of({
- name: 'glimmer-ts',
- alias: ['gts', 'glimmer-ts', 'typescript.glimmer'],
- extensions: ['gts'],
- async load() {
- // @ts-ignore
- const { gts } = await import('codemirror-lang-glimmer-js');
-
- return gts();
- },
- }),
- ],
+ codeLanguages,
});
}
diff --git a/packages/syntax/glimdown/codemirror/tests/package.json b/packages/syntax/glimdown/codemirror/tests/package.json
index da7de702c..38a9a0ab7 100644
--- a/packages/syntax/glimdown/codemirror/tests/package.json
+++ b/packages/syntax/glimdown/codemirror/tests/package.json
@@ -7,11 +7,11 @@
"extends": "../../../../../package.json"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3"
},
"scripts": {
"lint": "pnpm -w exec lint",
diff --git a/packages/syntax/glimdown/lezer/package.json b/packages/syntax/glimdown/lezer/package.json
index 8b1742065..7c339e4c4 100644
--- a/packages/syntax/glimdown/lezer/package.json
+++ b/packages/syntax/glimdown/lezer/package.json
@@ -14,16 +14,16 @@
"dist"
],
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@glimdown/lezer-infra": "workspace:*",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.3.1",
- "eslint": "^9.25.1",
- "mocha": "^10.8.2",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
- "typescript": "5.7.3"
+ "eslint": "^9.29.0",
+ "mocha": "^11.6.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
+ "typescript": "5.8.3"
},
"dependencies": {
"@lezer/highlight": "^1.2.1",
diff --git a/packages/syntax/glimmer-js/codemirror/dev/package.json b/packages/syntax/glimmer-js/codemirror/dev/package.json
index a8c5b5751..4cbd9570d 100644
--- a/packages/syntax/glimmer-js/codemirror/dev/package.json
+++ b/packages/syntax/glimmer-js/codemirror/dev/package.json
@@ -11,17 +11,17 @@
"lint:prettier": "pnpm -w exec lint prettier"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
- "@codemirror/language": "^6.10.8",
+ "@babel/core": "^7.27.7",
+ "@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
- "@codemirror/theme-one-dark": "^6.1.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/theme-one-dark": "^6.1.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/codemirror-dev-preview": "workspace:*",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3",
- "vite": "^5.4.14"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3",
+ "vite": "^6.3.5"
},
"volta": {
"extends": "../../../../../package.json"
diff --git a/packages/syntax/glimmer-js/codemirror/package.json b/packages/syntax/glimmer-js/codemirror/package.json
index 80350f8bc..0e9280083 100644
--- a/packages/syntax/glimmer-js/codemirror/package.json
+++ b/packages/syntax/glimmer-js/codemirror/package.json
@@ -17,27 +17,27 @@
"directory": "packages/syntax/glimmer-js/codemirror"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@codemirror/buildhelper": "^1.0.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/lezer-infra": "workspace:*",
"@lezer/common": "^1.2.3",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@tsconfig/ember": "^3.0.9",
- "codemirror": "^6.0.1",
+ "codemirror": "^6.0.2",
"concurrently": "^9.1.2",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
"rollup-plugin-ts": "^3.4.5",
- "typescript": "5.7.3"
+ "typescript": "5.8.3"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
- "@codemirror/lang-javascript": "^6.2.3",
- "@codemirror/language": "^6.10.8",
+ "@codemirror/lang-javascript": "^6.2.4",
+ "@codemirror/language": "^6.11.2",
"@lezer/highlight": "^1.2.1",
"@lezer/javascript": "^1.4.21",
"@lezer/lr": "^1.4.2",
diff --git a/packages/syntax/glimmer-s-expression/lezer/package.json b/packages/syntax/glimmer-s-expression/lezer/package.json
index 3351e3a08..28d45fb05 100644
--- a/packages/syntax/glimmer-s-expression/lezer/package.json
+++ b/packages/syntax/glimmer-s-expression/lezer/package.json
@@ -9,8 +9,8 @@
"types": "dist/index.d.ts",
"exports": {
".": {
- "default": "./dist/index.es.js",
- "require": "./dist/index.cjs"
+ "require": "./dist/index.cjs",
+ "default": "./dist/index.es.js"
}
},
"repository": {
@@ -19,15 +19,15 @@
"directory": "packages/syntax/glimmer-s-expression/lezer"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@glimdown/lezer-infra": "workspace:*",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.3.1",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
- "typescript": "5.7.3"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
+ "typescript": "5.8.3"
},
"dependencies": {
"@lezer/highlight": "^1.2.1",
diff --git a/packages/syntax/glimmer-ts/codemirror/dev/package.json b/packages/syntax/glimmer-ts/codemirror/dev/package.json
index 8959f4ff7..ac1be1d09 100644
--- a/packages/syntax/glimmer-ts/codemirror/dev/package.json
+++ b/packages/syntax/glimmer-ts/codemirror/dev/package.json
@@ -11,17 +11,17 @@
"lint:prettier": "pnpm -w exec lint prettier"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
- "@codemirror/language": "^6.10.8",
+ "@babel/core": "^7.27.7",
+ "@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
- "@codemirror/theme-one-dark": "^6.1.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/theme-one-dark": "^6.1.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/codemirror-dev-preview": "workspace:*",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3",
- "vite": "^5.4.14"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3",
+ "vite": "^6.3.5"
},
"volta": {
"extends": "../../../../../package.json"
diff --git a/packages/syntax/glimmer-ts/codemirror/package.json b/packages/syntax/glimmer-ts/codemirror/package.json
index 1017b8c49..2016911e8 100644
--- a/packages/syntax/glimmer-ts/codemirror/package.json
+++ b/packages/syntax/glimmer-ts/codemirror/package.json
@@ -17,27 +17,27 @@
"directory": "packages/syntax/glimmer-js/codemirror"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@codemirror/buildhelper": "^1.0.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/lezer-infra": "workspace:*",
"@lezer/common": "^1.2.3",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@tsconfig/ember": "^3.0.9",
- "codemirror": "^6.0.1",
+ "codemirror": "^6.0.2",
"concurrently": "^9.1.2",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
"rollup-plugin-ts": "^3.4.5",
- "typescript": "5.7.3"
+ "typescript": "5.8.3"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
- "@codemirror/lang-javascript": "^6.2.3",
- "@codemirror/language": "^6.10.8",
+ "@codemirror/lang-javascript": "^6.2.4",
+ "@codemirror/language": "^6.11.2",
"@lezer/highlight": "^1.2.1",
"@lezer/javascript": "^1.4.21",
"@lezer/lr": "^1.4.2",
diff --git a/packages/syntax/glimmer/codemirror/dev/package.json b/packages/syntax/glimmer/codemirror/dev/package.json
index 46ff37102..c9431b725 100644
--- a/packages/syntax/glimmer/codemirror/dev/package.json
+++ b/packages/syntax/glimmer/codemirror/dev/package.json
@@ -11,17 +11,17 @@
"lint:prettier": "pnpm -w exec lint prettier"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
- "@codemirror/language": "^6.10.8",
+ "@babel/core": "^7.27.7",
+ "@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
- "@codemirror/theme-one-dark": "^6.1.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/theme-one-dark": "^6.1.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/codemirror-dev-preview": "workspace:*",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3",
- "vite": "^5.4.14"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3",
+ "vite": "^6.3.5"
},
"volta": {
"extends": "../../../../../package.json"
diff --git a/packages/syntax/glimmer/codemirror/package.json b/packages/syntax/glimmer/codemirror/package.json
index c307c180f..e8fb5a0b9 100644
--- a/packages/syntax/glimmer/codemirror/package.json
+++ b/packages/syntax/glimmer/codemirror/package.json
@@ -17,29 +17,29 @@
"directory": "packages/syntax/glimmer/codemirror"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@babel/eslint-parser": "^7.27.1",
"@codemirror/buildhelper": "^1.0.2",
- "@codemirror/language": "^6.10.8",
+ "@codemirror/language": "^6.11.2",
"@lezer/common": "^1.2.3",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@tsconfig/ember": "^3.0.9",
- "codemirror": "^6.0.1",
+ "codemirror": "^6.0.2",
"concurrently": "^9.1.2",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
"rollup-plugin-ts": "^3.4.5",
- "typescript": "5.7.3"
+ "typescript": "5.8.3"
},
"dependencies": {
"@codemirror/autocomplete": "6.18.6",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
- "@codemirror/lang-javascript": "^6.2.3",
+ "@codemirror/lang-javascript": "^6.2.4",
"@codemirror/state": "^6.5.2",
- "@codemirror/view": "^6.36.3",
+ "@codemirror/view": "^6.37.2",
"@glimdown/lezer-glimmer-expression": "workspace:*",
"@lezer/highlight": "^1.2.1",
"@lezer/html": "^1.3.10",
diff --git a/packages/syntax/glimmer/lezer/package.json b/packages/syntax/glimmer/lezer/package.json
index ca0463eac..fa7467d03 100644
--- a/packages/syntax/glimmer/lezer/package.json
+++ b/packages/syntax/glimmer/lezer/package.json
@@ -17,19 +17,19 @@
"directory": "packages/syntax/glimmer/codemirror"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@codemirror/buildhelper": "^1.0.2",
- "@codemirror/language": "^6.10.8",
+ "@codemirror/language": "^6.11.2",
"@lezer/generator": "^1.7.2",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"@tsconfig/ember": "^3.0.9",
- "codemirror": "^6.0.1",
+ "codemirror": "^6.0.2",
"concurrently": "^9.1.2",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "rollup": "^4.40.1",
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "rollup": "^4.44.0",
"rollup-plugin-ts": "^3.4.5",
- "typescript": "5.7.3"
+ "typescript": "5.8.3"
},
"dependencies": {
"@glimdown/lezer-glimmer-expression": "workspace:*",
diff --git a/packages/syntax/glimmer/lezer/tests/package.json b/packages/syntax/glimmer/lezer/tests/package.json
index 330bcc997..36445863f 100644
--- a/packages/syntax/glimmer/lezer/tests/package.json
+++ b/packages/syntax/glimmer/lezer/tests/package.json
@@ -6,11 +6,11 @@
"extends": "../../../../../package.json"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.27.7",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "typescript": "5.7.3"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "typescript": "5.8.3"
},
"scripts": {
"lint": "pnpm -w exec lint",
diff --git a/patches/ember-source.patch b/patches/ember-source.patch
new file mode 100644
index 000000000..24b341ba0
--- /dev/null
+++ b/patches/ember-source.patch
@@ -0,0 +1,47 @@
+diff --git a/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js b/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js
+index e1525ab88772a03d6aa3b190ea21a9785271edd4..9a2a11a83d90e69600777ae4a401efecf99be4fc 100644
+--- a/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js
++++ b/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js
+@@ -147,26 +147,6 @@ class EventDispatcher extends EmberObject {
+ let rootElement = typeof specifiedRootElement !== 'string' ? specifiedRootElement : document.querySelector(specifiedRootElement);
+ (isDevelopingApp() && !(rootElement) && assert(`Could not find rootElement (${specifiedRootElement})`, rootElement));
+ (isDevelopingApp() && !(!rootElement.classList.contains(ROOT_ELEMENT_CLASS)) && assert(`You cannot use the same root element (${specifiedRootElement}) multiple times in an Ember.Application`, !rootElement.classList.contains(ROOT_ELEMENT_CLASS)));
+- (isDevelopingApp() && !((() => {
+- let target = rootElement.parentNode;
+- while (target instanceof Element) {
+- if (target.classList.contains(ROOT_ELEMENT_CLASS)) {
+- return false;
+- }
+- target = target.parentNode;
+- }
+- return true;
+- })()) && assert('You cannot make a new Ember.Application using a root element that is a descendent of an existing Ember.Application', (() => {
+- let target = rootElement.parentNode;
+- while (target instanceof Element) {
+- if (target.classList.contains(ROOT_ELEMENT_CLASS)) {
+- return false;
+- }
+- target = target.parentNode;
+- }
+- return true;
+- })()));
+- (isDevelopingApp() && !(!rootElement.querySelector(ROOT_ELEMENT_SELECTOR)) && assert('You cannot make a new Ember.Application using a root element that is an ancestor of an existing Ember.Application', !rootElement.querySelector(ROOT_ELEMENT_SELECTOR)));
+ rootElement.classList.add(ROOT_ELEMENT_CLASS);
+ (isDevelopingApp() && !(rootElement.classList.contains(ROOT_ELEMENT_CLASS)) && assert(`Unable to add '${ROOT_ELEMENT_CLASS}' class to root element (${get(this, 'rootElement') || rootElement.tagName}). Make sure you set rootElement to the body or an element in the body.`, rootElement.classList.contains(ROOT_ELEMENT_CLASS))); // save off the final sanitized root element (for usage in setupHandler)
+ this._sanitizedRootElement = rootElement;
+diff --git a/dist/packages/@ember/template-compiler/lib/template.js b/dist/packages/@ember/template-compiler/lib/template.js
+index a70b8d37d008ee91df0a25677e435573f14f195b..e4f3142947b6959ed8510dae70a31211eb46e89b 100644
+--- a/dist/packages/@ember/template-compiler/lib/template.js
++++ b/dist/packages/@ember/template-compiler/lib/template.js
+@@ -2110,11 +2110,9 @@ function template(templateString, providedOptions) {
+ const evaluate = buildEvaluator(options);
+ const normalizedOptions = compileOptions(options);
+ const component = normalizedOptions.component ?? templateOnly();
+- queueMicrotask(() => {
+ const source = precompile(templateString, normalizedOptions);
+ const template = templateFactory(evaluate(`(${source})`));
+ setComponentTemplate(template, component);
+- });
+ return component;
+ }
+ const evaluator = source => {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3bfb04729..ef9bdf4fa 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,17 +6,17 @@ settings:
peersSuffixMaxLength: 40
overrides:
+ babel-plugin-ember-template-compilation@<3: ^2.4.1
'@nullvoxpopuli/eslint-configs': ^5.0.0
'@glimmer/component': ^2.0.0
- '@glint/core': 1.4.1-unstable.0e0d936
- '@glint/environment-ember-loose': 1.4.1-unstable.0e0d936
- '@glint/environment-ember-template-imports': 1.4.1-unstable.0e0d936
+ '@glint/core': alpha
+ '@glint/environment-ember-loose': alpha
+ '@glint/environment-ember-template-imports': alpha
'@ember/test-waiters': ^4.1.0
ember-element-helper: ^0.8.7
ember-get-config: github:mansona/ember-get-config#config-meta-loader
- ember-auto-import: ^2.9.0
- ember-repl: workspace:*
- ember-source: '>= 6.4.0-alpha.3'
+ ember-auto-import: ^2.10.0
+ ember-source: '>= 6.7.0-alpha.1'
array-includes: npm:@nolyfill/array-includes@^1
array.prototype.findlastindex: npm:@nolyfill/array.prototype.findlastindex@^1
array.prototype.flat: npm:@nolyfill/array.prototype.flat@^1
@@ -37,65 +37,68 @@ patchedDependencies:
browserslist-generator:
hash: 8012b033c48b9eeeb2a450dd39dcc4fd9632dda6b3697bfddcd5371ab1866ebe
path: patches/browserslist-generator.patch
+ ember-source:
+ hash: ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80
+ path: patches/ember-source.patch
importers:
.:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@glint/core':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(typescript@5.7.3)
+ specifier: alpha
+ version: 2.0.0-alpha.2(typescript@5.8.3)
+ '@glint/tsserver-plugin':
+ specifier: alpha
+ version: 2.0.0-alpha.2
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
dev-tools:
specifier: workspace:*
version: link:dev
ember-template-lint:
- specifier: ^7.2.0
- version: 7.2.0(@babel/core@7.27.1)
+ specifier: ^7.9.1
+ version: 7.9.1
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
prettier-plugin-tailwindcss:
- specifier: ^0.6.11
- version: 0.6.11(prettier@3.5.3)
+ specifier: ^0.6.13
+ version: 0.6.13(prettier@3.6.2)
release-plan:
- specifier: ^0.16.0
- version: 0.16.0
+ specifier: ^0.17.0
+ version: 0.17.0
turbo:
specifier: ^2.4.2
- version: 2.5.2
+ version: 2.5.4
apps/repl:
dependencies:
'@ember/test-waiters':
specifier: ^4.1.0
- version: 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.0(@glint/template@1.5.2)
'@embroider/macros':
- specifier: 1.17.2
- version: 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ specifier: 1.18.0
+ version: 1.18.0(@glint/template@1.5.2)
'@embroider/router':
specifier: 3.0.1
- version: 3.0.1(7846a93c8b1f30739aa00d18e5665097)
+ version: 3.0.1(955f32ae434990a535df6fdf22ac9d24)
'@glimmer/component':
specifier: ^2.0.0
version: 2.0.0
- '@glimmer/tracking':
- specifier: ^1.1.2
- version: 1.1.2
'@nullvoxpopuli/horizon-theme':
specifier: workspace:*
version: link:../../packages/horizon-theme
@@ -108,33 +111,36 @@ importers:
'@nullvoxpopuli/limber-transpilation':
specifier: workspace:*
version: link:../../packages/app-support/transpilation
+ '@shikijs/rehype':
+ specifier: ^3.7.0
+ version: 3.7.0
'@xstate/inspect':
specifier: ^0.8.0
- version: 0.8.0(ws@8.18.1)(xstate@5.19.2)
+ version: 0.8.0(ws@8.18.2)(xstate@5.19.4)
browserslist:
specifier: ^4.24.4
- version: 4.24.4
+ version: 4.25.1
dompurify:
specifier: ^3.2.5
- version: 3.2.5
+ version: 3.2.6
ember-container-query:
- specifier: 5.1.1
- version: 5.1.1(dd7c8c71e23b008546e35fcf85ff31fd)
+ specifier: 6.0.1
+ version: 6.0.1(@babel/core@7.27.7)
ember-deep-tracked:
specifier: ^2.0.1
- version: 2.0.1(@glint/template@1.4.1-unstable.0e0d936)
+ version: 2.0.1(@glint/template@1.5.2)
ember-element-helper:
specifier: ^0.8.7
- version: 0.8.7(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 0.8.8
ember-focus-trap:
specifier: ^1.1.1
- version: 1.1.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 1.1.1(c97baf9c810f393a596045d691514450)
ember-modifier:
specifier: ^4.2.0
- version: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ version: 4.2.2(@babel/core@7.27.7)
ember-primitives:
- specifier: ^0.30.0
- version: 0.30.0(4eb5a63083ebd3f3afbb5c714291c843)
+ specifier: ^0.34.0
+ version: 0.34.0(6c98c0a79848ce8beb1ad80690d67516)
ember-repl:
specifier: workspace:*
version: link:../../packages/ember-repl/addon
@@ -143,10 +149,10 @@ importers:
version: 1.1.0
ember-resources:
specifier: ^7.0.3
- version: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
+ version: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
ember-statechart-component:
specifier: 7.1.0
- version: 7.1.0(3ffd7886aff435d24c21e15ab46546a1)
+ version: 7.1.0(d2b7e8f753a849123bebc248970a2e43)
highlight.js:
specifier: ^11.11.1
version: 11.11.1
@@ -158,7 +164,7 @@ importers:
version: 1.11.13
kolay:
specifier: ^3.5.5
- version: 3.5.5(c4490396783557fe5222cd180df98cad)
+ version: 3.7.2(9499744f27228c86d2e40118f70524b2)
limber-ui:
specifier: workspace:*
version: link:../../packages/app-support/limber-ui/addon
@@ -172,38 +178,41 @@ importers:
specifier: ^6.2.2
version: 6.2.2
reactiveweb:
- specifier: ^1.4.1
- version: 1.4.1(737c6461a8730545861e6febe5b0676c)
+ specifier: ^1.6.2
+ version: 1.6.2(752d8e73f0791d5fdf782be4b4d821fb)
rehype-raw:
- specifier: ^6.1.1
- version: 6.1.1
+ specifier: ^7.0.0
+ version: 7.0.0
rehype-stringify:
- specifier: ^9.0.4
- version: 9.0.4
+ specifier: ^10.0.1
+ version: 10.0.1
remark-html:
specifier: 16.0.1
version: 16.0.1
remark-parse:
- specifier: 10.0.2
- version: 10.0.2
+ specifier: 11.0.0
+ version: 11.0.0
remark-rehype:
- specifier: ^10.1.0
- version: 10.1.0
+ specifier: ^11.1.2
+ version: 11.1.2
+ shiki:
+ specifier: ^3.7.0
+ version: 3.7.0
stringify-object:
specifier: ^5.0.0
version: 5.0.0
tabster:
- specifier: 8.5.4
- version: 8.5.4
+ specifier: 8.5.6
+ version: 8.5.6
tracked-built-ins:
specifier: ^4.0.0
- version: 4.0.0(@babel/core@7.27.1)
+ version: 4.0.0(@babel/core@7.27.7)
tracked-toolbox:
specifier: ^2.0.0
- version: 2.0.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ version: 2.0.0(d5c4cd3aa2b6d7c8399ab0614013717b)
unified:
- specifier: ^10.1.2
- version: 10.1.2
+ specifier: ^11.0.5
+ version: 11.0.5
unist-util-flatmap:
specifier: ^1.0.0
version: 1.0.0
@@ -211,18 +220,21 @@ importers:
specifier: ^5.0.0
version: 5.0.0
xstate:
- specifier: 5.19.2
- version: 5.19.2
+ specifier: 5.19.4
+ version: 5.19.4
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
+ '@babel/plugin-transform-runtime':
+ specifier: ^7.27.4
+ version: 7.27.4(@babel/core@7.27.7)
'@babel/plugin-transform-typescript':
specifier: ^7.26.8
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@codemirror/view':
- specifier: 6.36.3
- version: 6.36.3
+ specifier: 6.37.2
+ version: 6.37.2
'@ember/optional-features':
specifier: ^2.2.0
version: 2.2.0
@@ -231,25 +243,16 @@ importers:
version: 4.0.1
'@ember/test-helpers':
specifier: ^5.1.0
- version: 5.2.1(35438b6e272b520ca540b25aef2325ed)
- '@embroider/compat':
- specifier: alpha
- version: 4.0.0-alpha.14(b7a999138b8027b0ac2cf2b061763543)
- '@embroider/config-meta-loader':
- specifier: ^1.0.0
- version: 1.0.0
+ version: 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
'@embroider/core':
specifier: ^4.0.2
- version: 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
- '@embroider/util':
- specifier: alpha
- version: 1.14.0-alpha.2(9aa72d8bbadc40778c7370136c2e3207)
+ version: 4.1.1(@glint/template@1.5.2)
'@embroider/vite':
specifier: ^1.1.0
- version: 1.1.0(a168c95d7c3395be8cb05b206bc64649)
+ version: 1.1.5(f84d803e044295a678332d8da1216f2e)
'@fortawesome/ember-fontawesome':
specifier: ^3.0.0
- version: 3.0.0(0aa3478cb0458e1c40c07b2353c2ea8b)
+ version: 3.0.1(4a12eb098ca1bed4b5215fa2aae4d12b)
'@fortawesome/fontawesome-svg-core':
specifier: ^6.7.2
version: 6.7.2
@@ -263,23 +266,35 @@ importers:
specifier: ^6.7.2
version: 6.7.2
'@glint/core':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(typescript@5.7.3)
+ specifier: alpha
+ version: 2.0.0-alpha.2(typescript@5.8.3)
'@glint/environment-ember-loose':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
+ specifier: alpha
+ version: 2.0.0-alpha.2(8d24ab070777f0adfc1b913d3eb93438)
'@glint/environment-ember-template-imports':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(a7adb5a1ab57244e6db9238d89e8b57a)
+ specifier: alpha
+ version: 2.0.0-alpha.2(efdaeaa7c1b4a594945abe637b363b34)
'@glint/template':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936
+ specifier: 1.5.2
+ version: 1.5.2
+ '@glint/tsserver-plugin':
+ specifier: alpha
+ version: 2.0.0-alpha.2
+ '@iconify-json/devicon':
+ specifier: ^1.2.29
+ version: 1.2.29
+ '@iconify-json/mdi':
+ specifier: ^1.2.3
+ version: 1.2.3
+ '@iconify-json/vscode-icons':
+ specifier: ^1.2.23
+ version: 1.2.23
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(2312fcc0c6440a04337cdb71f7598cfa)
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(c02d2d5a8fda7d4368cd0ec913e412b4)
+ version: 6.0.4(aa037b6a5bf0eb542b1305ef15813167)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
@@ -318,16 +333,13 @@ importers:
version: 3.0.3
autoprefixer:
specifier: ^10.4.20
- version: 10.4.21(postcss@8.5.3)
- broccoli-asset-rev:
- specifier: ^3.0.0
- version: 3.0.0
- broccoli-merge-trees:
- specifier: ^4.2.0
- version: 4.2.0
+ version: 10.4.21(postcss@8.5.6)
+ babel-plugin-ember-template-compilation:
+ specifier: ^2.4.1
+ version: 2.4.1
build-time-reporter-webpack-plugin:
specifier: ^1.4.3
- version: 1.4.3(webpack@5.99.7)
+ version: 1.4.3(webpack@5.99.9)
chalk:
specifier: ^5.4.1
version: 5.4.1
@@ -336,64 +348,64 @@ importers:
version: 1.8.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
decorator-transforms:
specifier: ^2.3.0
- version: 2.3.0(@babel/core@7.27.1)
+ version: 2.3.0(@babel/core@7.27.7)
ember-async-data:
- specifier: 1.0.3
- version: 1.0.3(94d55f01f44bf4fdfc9f541bd2ea489a)
+ specifier: 2.0.1
+ version: 2.0.1(a6fa8d0f1f3c894a01569e258197c230)
ember-auto-import:
- specifier: ^2.9.0
- version: 2.10.0(ab4d4f1a3a3e98c3a6f0c8fc00f4f729)
+ specifier: ^2.10.0
+ version: 2.10.0(@glint/template@1.5.2)(webpack@5.99.9)
ember-cli:
- specifier: 6.2.2
- version: 6.2.2(handlebars@4.7.8)(underscore@1.13.7)
+ specifier: 6.5.0
+ version: 6.5.0(handlebars@4.7.8)(underscore@1.13.7)
ember-cli-babel:
specifier: ^8.2.0
- version: 8.2.0(@babel/core@7.27.1)
+ version: 8.2.0(@babel/core@7.27.7)
ember-cli-browserstack:
specifier: ^3.0.0
version: 3.0.0
ember-load-initializers:
specifier: ^3.0.1
- version: 3.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 3.0.1(c97baf9c810f393a596045d691514450)
ember-on-resize-modifier:
specifier: ^2.0.2
- version: 2.0.2(e216a0a025cc7b9407e6404146486007)
+ version: 2.0.2(5cad8b098662645e6c943eaba1acf79c)
ember-page-title:
specifier: ^9.0.1
- version: 9.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 9.0.2
ember-qunit:
specifier: ^9.0.1
- version: 9.0.2(fc7db7c59c65629a3191e53d4fcb3f42)
+ version: 9.0.3(350ab0b2e11c21a3c2b2aceab21168ff)
ember-resolver:
specifier: ^13.1.0
- version: 13.1.0(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 13.1.1
ember-route-template:
specifier: ^1.0.3
version: 1.0.3
ember-source:
- specifier: '>= 6.4.0-alpha.3'
- version: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ specifier: '>= 6.7.0-alpha.1'
+ version: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
ember-template-lint:
- specifier: ^7.2.0
- version: 7.2.0(@babel/core@7.27.1)
+ specifier: ^7.9.1
+ version: 7.9.1
ember-template-lint-plugin-prettier:
specifier: ^5.0.0
- version: 5.0.0(40262242fa399d75348cc3c565859963)
+ version: 5.0.0(2af43b82e342603bc0195887319c0738)
esbuild-loader:
specifier: ^4.3.0
- version: 4.3.0(webpack@5.99.7)
+ version: 4.3.0(webpack@5.99.9)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
execa:
specifier: ^9.5.2
- version: 9.5.2
+ version: 9.6.0
file-loader:
specifier: ^6.2.0
- version: 6.2.0(webpack@5.99.7)
+ version: 6.2.0(webpack@5.99.9)
fractal-page-object:
specifier: ^1.0.0
version: 1.0.0
@@ -404,20 +416,17 @@ importers:
specifier: ^2.0.4
version: 2.0.4
postcss:
- specifier: ^8.5.3
- version: 8.5.3
+ specifier: ^8.5.6
+ version: 8.5.6
postcss-import:
- specifier: ^16.1.0
- version: 16.1.0(postcss@8.5.3)
+ specifier: ^16.1.1
+ version: 16.1.1(postcss@8.5.6)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
- prettier-plugin-tailwindcss:
- specifier: ^0.6.11
- version: 0.6.11(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
process:
specifier: ^0.11.10
version: 0.11.10
@@ -431,93 +440,99 @@ importers:
specifier: ^3.0.0
version: 3.4.17
terser:
- specifier: ^5.39.0
- version: 5.39.0
+ specifier: ^5.43.1
+ version: 5.43.1
testem-failure-only-reporter:
specifier: ^1.0.0
version: 1.0.0(handlebars@4.7.8)(underscore@1.13.7)
type-fest:
- specifier: 4.40.1
- version: 4.40.1
+ specifier: 4.41.0
+ version: 4.41.0
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
+ unplugin-icons:
+ specifier: ^22.1.0
+ version: 22.1.0
vfile:
specifier: ^6.0.3
version: 6.0.3
vite:
- specifier: ^6.2.0
- version: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ vite-plugin-circular-dependency:
+ specifier: ^0.5.0
+ version: 0.5.0(rollup@4.44.0)
+ vite-plugin-mkcert:
+ specifier: ^1.17.8
+ version: 1.17.8(b6180693ed26d1b7a1153265ba481eba)
webpack:
specifier: ^5.98.0
- version: 5.99.7
+ version: 5.99.9
apps/tutorial:
dependencies:
'@glimmer/component':
specifier: ^2.0.0
version: 2.0.0
- '@glimmer/tracking':
- specifier: ^1.1.2
- version: 1.1.2
'@shikijs/rehype':
- specifier: ^1.29.2
- version: 1.29.2
- '@universal-ember/kolay-ui':
- specifier: ^0.0.13
- version: 0.0.13(e637f023840ebf6df20e52f04f3f8750)
+ specifier: ^3.7.0
+ version: 3.7.0
ember-async-data:
- specifier: 1.0.3
- version: 1.0.3(94d55f01f44bf4fdfc9f541bd2ea489a)
+ specifier: 2.0.1
+ version: 2.0.1(a6fa8d0f1f3c894a01569e258197c230)
ember-modifier:
specifier: ^4.2.0
- version: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ version: 4.2.2(@babel/core@7.27.7)
ember-primitives:
- specifier: ^0.30.0
- version: 0.30.0(4eb5a63083ebd3f3afbb5c714291c843)
+ specifier: ^0.34.0
+ version: 0.34.0(6c98c0a79848ce8beb1ad80690d67516)
+ ember-repl:
+ specifier: latest
+ version: 6.0.0(195a05b01182dfe3c5bd09fac10054f9)
ember-resources:
specifier: ^7.0.3
- version: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
+ version: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
ember-route-template:
specifier: ^1.0.3
version: 1.0.3
kolay:
specifier: ^3.5.5
- version: 3.5.5(c4490396783557fe5222cd180df98cad)
+ version: 3.7.2(9499744f27228c86d2e40118f70524b2)
limber-ui:
specifier: workspace:*
version: link:../../packages/app-support/limber-ui/addon
reactiveweb:
- specifier: ^1.4.1
- version: 1.4.1(737c6461a8730545861e6febe5b0676c)
+ specifier: ^1.6.2
+ version: 1.6.2(752d8e73f0791d5fdf782be4b4d821fb)
rehype-raw:
- specifier: ^6.1.1
- version: 6.1.1
+ specifier: ^7.0.0
+ version: 7.0.0
rehype-stringify:
- specifier: ^9.0.4
- version: 9.0.4
+ specifier: ^10.0.1
+ version: 10.0.1
remark-parse:
- specifier: ^10.0.2
- version: 10.0.2
+ specifier: ^11.0.0
+ version: 11.0.0
remark-rehype:
- specifier: ^10.1.0
- version: 10.1.0
+ specifier: ^11.1.2
+ version: 11.1.2
shiki:
specifier: ^1.29.2
version: 1.29.2
unified:
- specifier: ^10.1.2
- version: 10.1.2
+ specifier: ^11.0.5
+ version: 11.0.5
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@babel/plugin-transform-typescript':
specifier: ^7.26.8
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/runtime':
specifier: ^7.26.9
- version: 7.27.1
+ version: 7.27.6
'@ember/optional-features':
specifier: ^2.2.0
version: 2.2.0
@@ -526,28 +541,28 @@ importers:
version: 4.0.1
'@ember/test-helpers':
specifier: ^5.1.0
- version: 5.2.1(35438b6e272b520ca540b25aef2325ed)
+ version: 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
'@ember/test-waiters':
specifier: ^4.1.0
- version: 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.0(@glint/template@1.5.2)
'@embroider/compat':
- specifier: alpha
- version: 4.0.0-alpha.14(b7a999138b8027b0ac2cf2b061763543)
+ specifier: 4.1.0
+ version: 4.1.0(92fd543e0147ab048441f1395fd340cb)
'@embroider/config-meta-loader':
specifier: ^1.0.0
version: 1.0.0
'@embroider/core':
specifier: ^4.0.2
- version: 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.1(@glint/template@1.5.2)
'@embroider/macros':
- specifier: 1.17.2
- version: 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ specifier: 1.18.0
+ version: 1.18.0(@glint/template@1.5.2)
'@embroider/vite':
specifier: ^1.1.0
- version: 1.1.0(a168c95d7c3395be8cb05b206bc64649)
+ version: 1.1.5(f84d803e044295a678332d8da1216f2e)
'@fortawesome/ember-fontawesome':
specifier: ^3.0.0
- version: 3.0.0(0aa3478cb0458e1c40c07b2353c2ea8b)
+ version: 3.0.1(4a12eb098ca1bed4b5215fa2aae4d12b)
'@fortawesome/fontawesome-svg-core':
specifier: ^6.7.2
version: 6.7.2
@@ -561,26 +576,26 @@ importers:
specifier: ^6.7.2
version: 6.7.2
'@glint/core':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(typescript@5.7.3)
+ specifier: alpha
+ version: 2.0.0-alpha.2(typescript@5.8.3)
'@glint/environment-ember-loose':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
+ specifier: alpha
+ version: 2.0.0-alpha.2(78dfa0aa056494065dc7f85bef240c2b)
'@glint/environment-ember-template-imports':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(a7adb5a1ab57244e6db9238d89e8b57a)
+ specifier: alpha
+ version: 2.0.0-alpha.2(2d6b24ad1f33a1c0662557a0468023b6)
'@glint/template':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936
+ specifier: 1.5.2
+ version: 1.5.2
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@nullvoxpopuli/limber-styles':
specifier: workspace:^
version: link:../../packages/app-support/styles
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(c02d2d5a8fda7d4368cd0ec913e412b4)
+ version: 6.0.4(aa037b6a5bf0eb542b1305ef15813167)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
@@ -589,7 +604,7 @@ importers:
version: 2.19.12
autoprefixer:
specifier: ^10.4.20
- version: 10.4.21(postcss@8.5.3)
+ version: 10.4.21(postcss@8.5.6)
broccoli-asset-rev:
specifier: ^3.0.0
version: 3.0.0
@@ -598,43 +613,40 @@ importers:
version: 3.0.8
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
ember-auto-import:
- specifier: ^2.9.0
- version: 2.10.0(ab4d4f1a3a3e98c3a6f0c8fc00f4f729)
- ember-cached-decorator-polyfill:
- specifier: ^1.0.2
- version: 1.0.2(35438b6e272b520ca540b25aef2325ed)
+ specifier: ^2.10.0
+ version: 2.10.0(@glint/template@1.5.2)(webpack@5.99.9)
ember-cli:
- specifier: 6.2.2
- version: 6.2.2(handlebars@4.7.8)(underscore@1.13.7)
+ specifier: 6.5.0
+ version: 6.5.0(handlebars@4.7.8)(underscore@1.13.7)
ember-cli-babel:
specifier: ^8.2.0
- version: 8.2.0(@babel/core@7.27.1)
+ version: 8.2.0(@babel/core@7.27.7)
ember-load-initializers:
specifier: ^3.0.1
- version: 3.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 3.0.1(c97baf9c810f393a596045d691514450)
ember-modify-based-class-resource:
specifier: ^1.1.1
- version: 1.1.1(d989acf9e45b1ebee269476011f33e76)
+ version: 1.1.2(7c6664bded591a03f87f10d5855b691e)
ember-page-title:
specifier: ^9.0.1
- version: 9.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 9.0.2
ember-qunit:
specifier: ^9.0.1
- version: 9.0.2(fc7db7c59c65629a3191e53d4fcb3f42)
+ version: 9.0.3(350ab0b2e11c21a3c2b2aceab21168ff)
ember-resolver:
specifier: ^13.1.0
- version: 13.1.0(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 13.1.1
ember-source:
- specifier: '>= 6.4.0-alpha.3'
- version: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ specifier: '>= 6.7.0-alpha.1'
+ version: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
ember-template-lint:
- specifier: ^7.2.0
- version: 7.2.0(@babel/core@7.27.1)
+ specifier: ^7.9.1
+ version: 7.9.1
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
fs-extra:
specifier: ^11.3.0
version: 11.3.0
@@ -645,17 +657,17 @@ importers:
specifier: ^4.7.0
version: 4.7.0
postcss:
- specifier: ^8.5.3
- version: 8.5.3
+ specifier: ^8.5.6
+ version: 8.5.6
postcss-import:
- specifier: ^16.1.0
- version: 16.1.0(postcss@8.5.3)
+ specifier: ^16.1.1
+ version: 16.1.1(postcss@8.5.6)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
qunit:
specifier: ^2.24.1
version: 2.24.1
@@ -666,17 +678,17 @@ importers:
specifier: ^3.0.0
version: 3.4.17
terser:
- specifier: ^5.39.0
- version: 5.39.0
+ specifier: ^5.43.1
+ version: 5.43.1
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
unplugin:
specifier: ^1.16.1
version: 1.16.1
vite:
- specifier: ^6.2.0
- version: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
dev:
dependencies:
@@ -688,7 +700,7 @@ importers:
version: 2.15.0
execa:
specifier: ^9.5.2
- version: 9.5.2
+ version: 9.6.0
fs-extra:
specifier: ^11.3.0
version: 11.3.0
@@ -697,29 +709,29 @@ importers:
version: 17.7.2
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@types/node':
- specifier: ^22.15.3
- version: 22.15.3
+ specifier: ^24.0.3
+ version: 24.0.4
'@types/yargs':
specifier: ^17.0.33
version: 17.0.33
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/app-support/codemirror:
dependencies:
@@ -727,20 +739,26 @@ importers:
specifier: 6.18.6
version: 6.18.6
'@codemirror/commands':
- specifier: 6.8.0
- version: 6.8.0
+ specifier: 6.8.1
+ version: 6.8.1
'@codemirror/lang-html':
specifier: ^6.4.9
version: 6.4.9
'@codemirror/lang-javascript':
- specifier: 6.2.3
- version: 6.2.3
+ specifier: 6.2.4
+ version: 6.2.4
'@codemirror/lang-markdown':
- specifier: 6.3.2
- version: 6.3.2
+ specifier: 6.3.3
+ version: 6.3.3
+ '@codemirror/lang-vue':
+ specifier: ^0.1.3
+ version: 0.1.3
+ '@codemirror/lang-yaml':
+ specifier: ^6.1.2
+ version: 6.1.2
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/language-data':
specifier: ^6.5.1
version: 6.5.1
@@ -748,14 +766,14 @@ importers:
specifier: ^6.8.4
version: 6.8.5
'@codemirror/search':
- specifier: 6.5.10
- version: 6.5.10
+ specifier: 6.5.11
+ version: 6.5.11
'@codemirror/state':
specifier: 6.5.2
version: 6.5.2
'@codemirror/view':
- specifier: 6.36.4
- version: 6.36.4
+ specifier: 6.37.2
+ version: 6.37.2
'@lezer/common':
specifier: ^1.2.3
version: 1.2.3
@@ -771,6 +789,9 @@ importers:
'@nullvoxpopuli/horizon-theme':
specifier: workspace:*
version: link:../../horizon-theme
+ '@replit/codemirror-lang-svelte':
+ specifier: ^6.0.0
+ version: 6.0.0(8ea3a73854c03a97a986b4fe3900fecd)
assert:
specifier: npm:@nolyfill/assert@^1
version: '@nolyfill/assert@1.0.26'
@@ -778,8 +799,8 @@ importers:
specifier: ^3.0.8
version: 3.0.8
codemirror:
- specifier: ^6.0.1
- version: 6.0.1
+ specifier: ^6.0.2
+ version: 6.0.2
codemirror-lang-glimdown:
specifier: workspace:*
version: link:../../syntax/glimdown/codemirror
@@ -789,6 +810,9 @@ importers:
codemirror-lang-glimmer-js:
specifier: workspace:*
version: link:../../syntax/glimmer-js/codemirror
+ codemirror-lang-mermaid:
+ specifier: ^0.5.0
+ version: 0.5.0
codemirror-languageserver:
specifier: ^1.12.1
version: 1.12.1(encoding@0.1.13)
@@ -797,50 +821,50 @@ importers:
version: 1.0.1
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
esbuild:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
esbuild-plugin-alias:
specifier: ^0.2.1
version: 0.2.1
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
recursive-copy:
specifier: ^2.0.14
version: 2.0.14
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/app-support/limber-ui/addon:
dependencies:
'@babel/runtime':
specifier: ^7.26.9
- version: 7.27.1
+ version: 7.27.6
'@embroider/addon-shim':
specifier: 1.10.0
version: 1.10.0
'@embroider/macros':
- specifier: 1.17.2
- version: 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ specifier: 1.18.0
+ version: 1.18.0(@glint/template@1.5.2)
'@fortawesome/ember-fontawesome':
specifier: ^3.0.0
- version: 3.0.0(0aa3478cb0458e1c40c07b2353c2ea8b)
+ version: 3.0.1(4a12eb098ca1bed4b5215fa2aae4d12b)
'@fortawesome/fontawesome-svg-core':
specifier: ^6.7.2
version: 6.7.2
@@ -855,122 +879,119 @@ importers:
version: 6.7.2
decorator-transforms:
specifier: ^2.3.0
- version: 2.3.0(@babel/core@7.27.1)
+ version: 2.3.0(@babel/core@7.27.7)
penpal:
specifier: ^6.2.2
version: 6.2.2
reactiveweb:
- specifier: ^1.4.1
- version: 1.4.1(737c6461a8730545861e6febe5b0676c)
+ specifier: ^1.6.2
+ version: 1.6.2(752d8e73f0791d5fdf782be4b4d821fb)
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@babel/plugin-proposal-class-properties':
specifier: ^7.18.6
- version: 7.18.6(@babel/core@7.27.1)
+ version: 7.18.6(@babel/core@7.27.7)
'@babel/plugin-proposal-decorators':
specifier: ^7.25.9
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/plugin-syntax-decorators':
specifier: ^7.27.1
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/plugin-transform-typescript':
specifier: ^7.26.8
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/preset-typescript':
specifier: ^7.27.1
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@ember/library-tsconfig':
specifier: ^1.1.3
version: 1.1.3
'@ember/test-waiters':
specifier: ^4.1.0
- version: 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.0(@glint/template@1.5.2)
'@embroider/addon-dev':
specifier: ^7.0.0
- version: 7.1.4(3ec773558af3c5715bd809db622cba9b)
+ version: 7.1.5(@glint/template@1.5.2)(rollup@4.44.0)
'@glimmer/component':
specifier: ^2.0.0
version: 2.0.0
- '@glimmer/tracking':
- specifier: ^1.1.2
- version: 1.1.2
'@glint/core':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(typescript@5.7.3)
+ specifier: alpha
+ version: 2.0.0-alpha.2(typescript@5.8.3)
'@glint/environment-ember-loose':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
+ specifier: alpha
+ version: 2.0.0-alpha.2(78dfa0aa056494065dc7f85bef240c2b)
'@glint/environment-ember-template-imports':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(a7adb5a1ab57244e6db9238d89e8b57a)
+ specifier: alpha
+ version: 2.0.0-alpha.2(2d6b24ad1f33a1c0662557a0468023b6)
'@glint/template':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936
+ specifier: 1.5.2
+ version: 1.5.2
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(c02d2d5a8fda7d4368cd0ec913e412b4)
+ version: 6.0.4(aa037b6a5bf0eb542b1305ef15813167)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
babel-plugin-ember-template-compilation:
- specifier: ^2.4.0
+ specifier: ^2.4.1
version: 2.4.1
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
ember-async-data:
- specifier: 1.0.3
- version: 1.0.3(94d55f01f44bf4fdfc9f541bd2ea489a)
+ specifier: 2.0.1
+ version: 2.0.1(a6fa8d0f1f3c894a01569e258197c230)
ember-cli-htmlbars:
specifier: ^6.3.0
version: 6.3.0
ember-modifier:
specifier: ^4.2.0
- version: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ version: 4.2.2(@babel/core@7.27.7)
ember-primitives:
- specifier: ^0.30.0
- version: 0.30.0(4eb5a63083ebd3f3afbb5c714291c843)
+ specifier: ^0.34.0
+ version: 0.34.0(6c98c0a79848ce8beb1ad80690d67516)
ember-resources:
specifier: ^7.0.3
- version: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
+ version: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
ember-source:
- specifier: '>= 6.4.0-alpha.3'
- version: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ specifier: '>= 6.7.0-alpha.1'
+ version: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
ember-template-imports:
specifier: ^4.3.0
version: 4.3.0
ember-template-lint:
- specifier: ^7.2.0
- version: 7.2.0(@babel/core@7.27.1)
+ specifier: ^7.9.1
+ version: 7.9.1
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
execa:
specifier: ^9.5.2
- version: 9.5.2
+ version: 9.6.0
fix-bad-declaration-output:
specifier: ^1.1.4
- version: 1.1.4(4da242a27615870776983f1ebf94ba5e)
+ version: 1.1.4(6ff61888cb104ba9cae37e4cddb605c9)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
rollup-plugin-copy:
specifier: ^3.5.0
version: 3.5.0
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/app-support/styles:
dependencies:
@@ -982,29 +1003,29 @@ importers:
version: 3.0.8
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
autoprefixer:
specifier: ^10.4.20
- version: 10.4.21(postcss@8.5.3)
+ version: 10.4.21(postcss@8.5.6)
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
postcss:
- specifier: ^8.5.3
- version: 8.5.3
+ specifier: ^8.5.6
+ version: 8.5.6
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
tailwindcss:
specifier: ^3.0.0
version: 3.4.17
@@ -1012,8 +1033,8 @@ importers:
packages/app-support/transpilation:
dependencies:
'@babel/standalone':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
babel-plugin-htmlbars-inline-precompile:
specifier: ^5.3.1
version: 5.3.1
@@ -1022,29 +1043,29 @@ importers:
version: 1.0.1
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@babel/plugin-proposal-class-properties':
specifier: ^7.18.6
- version: 7.18.6(@babel/core@7.27.1)
+ version: 7.18.6(@babel/core@7.27.7)
'@babel/plugin-proposal-decorators':
specifier: ^7.25.9
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/plugin-transform-runtime':
specifier: ^7.27.1
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.4(@babel/core@7.27.7)
'@babel/plugin-transform-typescript':
specifier: ^7.26.8
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/types':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@glimmer/component':
specifier: ^2.0.0
version: 2.0.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@types/babel__core':
specifier: ^7.20.5
version: 7.20.5
@@ -1056,31 +1077,31 @@ importers:
version: 3.0.3
babel-loader:
specifier: ^10.0.0
- version: 10.0.0(@babel/core@7.27.1)(webpack@5.99.7)
+ version: 10.0.0(@babel/core@7.27.7)(webpack@5.99.9)
ember-source:
- specifier: '>= 6.4.0-alpha.3'
- version: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ specifier: '>= 6.7.0-alpha.1'
+ version: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
esbuild:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
webpack:
specifier: ^5.98.0
- version: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
+ version: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
webpack-cli:
specifier: ^6.0.1
- version: 6.0.1(webpack@5.99.7)
+ version: 6.0.1(webpack@5.99.9)
webpack-node-externals:
specifier: ^3.0.0
version: 3.0.0
@@ -1088,126 +1109,87 @@ importers:
packages/consts:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/ember-repl/addon:
dependencies:
- '@babel/helper-plugin-utils':
- specifier: ^7.26.5
- version: 7.27.1
- '@babel/standalone':
- specifier: ^7.26.9
- version: 7.27.1
+ '@ember/test-helpers':
+ specifier: ^5.1.0
+ version: 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
'@embroider/addon-shim':
specifier: 1.10.0
version: 1.10.0
'@embroider/macros':
- specifier: 1.17.2
- version: 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- babel-import-util:
- specifier: ^3.0.0
- version: 3.0.1
+ specifier: 1.18.0
+ version: 1.18.0(@glint/template@1.5.2)
babel-plugin-ember-template-compilation:
- specifier: ^2.4.0
+ specifier: ^2.4.1
version: 2.4.1
broccoli-file-creator:
specifier: ^2.1.1
version: 2.1.1
- change-case:
- specifier: ^5.4.4
- version: 5.4.4
- common-tags:
- specifier: ^1.8.2
- version: 1.8.2
content-tag:
- specifier: ^3.1.3
+ specifier: ^3.0.0
version: 3.1.3
decorator-transforms:
specifier: ^2.3.0
- version: 2.3.0(@babel/core@7.27.1)
+ version: 2.3.0(@babel/core@7.27.7)
+ ember-primitives:
+ specifier: ^0.34.0
+ version: 0.34.0(6c98c0a79848ce8beb1ad80690d67516)
+ ember-resolver:
+ specifier: ^13.1.0
+ version: 13.1.1
ember-resources:
specifier: ^7.0.3
- version: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- line-column:
- specifier: ^1.0.2
- version: 1.0.2
- magic-string:
- specifier: ^0.30.17
- version: 0.30.17
- mdast:
- specifier: ^3.0.0
- version: 3.0.0
- parse-static-imports:
- specifier: ^1.1.0
- version: 1.1.0
- rehype-raw:
- specifier: ^6.1.1
- version: 6.1.1
- rehype-stringify:
- specifier: ^9.0.4
- version: 9.0.4
- remark-gfm:
- specifier: ^3.0.1
- version: 3.0.1
- remark-parse:
- specifier: ^10.0.2
- version: 10.0.2
- remark-rehype:
- specifier: ^10.1.0
- version: 10.1.0
- unified:
- specifier: ^10.1.2
- version: 10.1.2
- unist-util-visit:
- specifier: ^5.0.0
- version: 5.0.0
- uuid:
- specifier: ^10.0.0
- version: 10.0.0
- vfile:
- specifier: ^6.0.3
- version: 6.0.3
+ version: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
+ repl-sdk:
+ specifier: workspace:*
+ version: link:../../repl-sdk
devDependencies:
'@babel/core':
- specifier: ^7.26.9
+ specifier: ^7.27.7
+ version: 7.27.7
+ '@babel/helper-plugin-utils':
+ specifier: ^7.26.5
version: 7.27.1
'@babel/plugin-transform-typescript':
specifier: ^7.26.8
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/preset-typescript':
specifier: ^7.27.1
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
+ '@babel/standalone':
+ specifier: ^7.27.7
+ version: 7.27.7
'@babel/types':
- specifier: ^7.26.9
- version: 7.27.1
- '@ember/test-helpers':
- specifier: ^5.1.0
- version: 5.2.1(35438b6e272b520ca540b25aef2325ed)
+ specifier: ^7.27.7
+ version: 7.27.7
'@ember/test-waiters':
specifier: ^4.1.0
- version: 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.0(@glint/template@1.5.2)
'@embroider/addon-dev':
specifier: ^8.0.1
- version: 8.0.1(3ec773558af3c5715bd809db622cba9b)
+ version: 8.1.0(@glint/template@1.5.2)(rollup@4.44.0)
'@glimmer/compiler':
specifier: ^0.94.10
version: 0.94.10
@@ -1223,33 +1205,33 @@ importers:
'@glimmer/syntax':
specifier: ^0.94.9
version: 0.94.9
- '@glimmer/tracking':
- specifier: ^1.1.2
- version: 1.1.2
'@glimmer/util':
specifier: ^0.94.6
version: 0.94.8
'@glint/core':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(typescript@5.7.3)
+ specifier: alpha
+ version: 2.0.0-alpha.2(typescript@5.8.3)
'@glint/environment-ember-loose':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
+ specifier: alpha
+ version: 2.0.0-alpha.2(78dfa0aa056494065dc7f85bef240c2b)
'@glint/environment-ember-template-imports':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(a7adb5a1ab57244e6db9238d89e8b57a)
+ specifier: alpha
+ version: 2.0.0-alpha.2(2d6b24ad1f33a1c0662557a0468023b6)
'@glint/template':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936
+ specifier: 1.5.2
+ version: 1.5.2
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(c02d2d5a8fda7d4368cd0ec913e412b4)
+ version: 6.0.4(aa037b6a5bf0eb542b1305ef15813167)
'@rollup/plugin-commonjs':
specifier: ^28.0.2
- version: 28.0.3(rollup@4.40.1)
+ version: 28.0.6(rollup@4.44.0)
+ '@rollup/plugin-node-resolve':
+ specifier: ^15.3.1
+ version: 15.3.1(rollup@4.44.0)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
@@ -1274,51 +1256,105 @@ importers:
'@types/uuid':
specifier: ^10.0.0
version: 10.0.0
+ babel-import-util:
+ specifier: ^3.0.0
+ version: 3.0.1
+ babel-plugin-debug-macros:
+ specifier: ^1.0.2
+ version: 1.0.2(@babel/core@7.27.7)
+ change-case:
+ specifier: ^5.4.4
+ version: 5.4.4
+ common-tags:
+ specifier: ^1.8.2
+ version: 1.8.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
ember-source:
- specifier: '>= 6.4.0-alpha.3'
- version: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ specifier: '>= 6.7.0-alpha.1'
+ version: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
ember-template-imports:
specifier: ^4.3.0
version: 4.3.0
ember-template-lint:
- specifier: ^7.2.0
- version: 7.2.0(@babel/core@7.27.1)
+ specifier: ^7.9.1
+ version: 7.9.1
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
execa:
specifier: ^9.5.2
- version: 9.5.2
+ version: 9.6.0
+ line-column:
+ specifier: ^1.0.2
+ version: 1.0.2
+ magic-string:
+ specifier: ^0.30.17
+ version: 0.30.17
+ mdast:
+ specifier: ^3.0.0
+ version: 3.0.0
+ parse-static-imports:
+ specifier: ^1.1.0
+ version: 1.1.0
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
publint:
specifier: ^0.2.12
version: 0.2.12
+ rehype-raw:
+ specifier: ^7.0.0
+ version: 7.0.0
+ rehype-stringify:
+ specifier: ^10.0.1
+ version: 10.0.1
+ remark-gfm:
+ specifier: ^4.0.1
+ version: 4.0.1
+ remark-parse:
+ specifier: ^11.0.0
+ version: 11.0.0
+ remark-rehype:
+ specifier: ^11.1.2
+ version: 11.1.2
rollup:
- specifier: ~4.40.1
- version: 4.40.1
+ specifier: ~4.44.0
+ version: 4.44.0
rollup-plugin-copy:
specifier: ^3.5.0
version: 3.5.0
+ rollup-plugin-node-polyfills:
+ specifier: ^0.2.1
+ version: 0.2.1
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
+ unified:
+ specifier: ^11.0.5
+ version: 11.0.5
+ unist-util-visit:
+ specifier: ^5.0.0
+ version: 5.0.0
+ uuid:
+ specifier: ^11.1.0
+ version: 11.1.0
+ vfile:
+ specifier: ^6.0.3
+ version: 6.0.3
webpack:
specifier: ^5.98.0
- version: 5.99.7
+ version: 5.99.9
packages/ember-repl/test-app:
dependencies:
'@shikijs/rehype':
- specifier: ^1.29.2
- version: 1.29.2
+ specifier: ^3.7.0
+ version: 3.7.0
'@types/unist':
specifier: ^3.0.3
version: 3.0.3
@@ -1333,20 +1369,20 @@ importers:
version: link:../addon
ember-resources:
specifier: ^7.0.3
- version: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
+ version: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
unist-util-visit:
specifier: ^5.0.0
version: 5.0.0
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@babel/plugin-proposal-decorators':
specifier: ^7.25.9
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.1(@babel/core@7.27.7)
'@babel/plugin-transform-runtime':
specifier: ^7.27.1
- version: 7.27.1(@babel/core@7.27.1)
+ version: 7.27.4(@babel/core@7.27.7)
'@ember/optional-features':
specifier: ^2.2.0
version: 2.2.0
@@ -1355,55 +1391,55 @@ importers:
version: 4.0.1
'@ember/test-helpers':
specifier: ^5.1.0
- version: 5.2.1(35438b6e272b520ca540b25aef2325ed)
+ version: 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
'@ember/test-waiters':
specifier: ^4.1.0
- version: 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.0(@glint/template@1.5.2)
'@embroider/compat':
- specifier: alpha
- version: 4.0.0-alpha.14(b7a999138b8027b0ac2cf2b061763543)
+ specifier: 4.1.0
+ version: 4.1.0(92fd543e0147ab048441f1395fd340cb)
'@embroider/config-meta-loader':
specifier: ^1.0.0
version: 1.0.0
'@embroider/core':
specifier: ^4.0.2
- version: 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
+ version: 4.1.1(@glint/template@1.5.2)
'@embroider/test-setup':
specifier: 4.0.0
- version: 4.0.0(f2c9d6d40664e9e0201334b48b463c6d)
+ version: 4.0.0(ef9630e9efb74e1ecbf498830a1599b6)
'@embroider/vite':
specifier: ^1.1.0
- version: 1.1.0(a168c95d7c3395be8cb05b206bc64649)
+ version: 1.1.5(f84d803e044295a678332d8da1216f2e)
'@glimmer/component':
specifier: ^2.0.0
version: 2.0.0
- '@glimmer/tracking':
- specifier: ^1.1.2
- version: 1.1.2
'@glint/core':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(typescript@5.7.3)
+ specifier: alpha
+ version: 2.0.0-alpha.2(typescript@5.8.3)
'@glint/environment-ember-loose':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
+ specifier: alpha
+ version: 2.0.0-alpha.2(78dfa0aa056494065dc7f85bef240c2b)
'@glint/environment-ember-template-imports':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936(a7adb5a1ab57244e6db9238d89e8b57a)
+ specifier: alpha
+ version: 2.0.0-alpha.2(2d6b24ad1f33a1c0662557a0468023b6)
'@glint/template':
- specifier: 1.4.1-unstable.0e0d936
- version: 1.4.1-unstable.0e0d936
+ specifier: 1.5.2
+ version: 1.5.2
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(c02d2d5a8fda7d4368cd0ec913e412b4)
+ version: 6.0.4(aa037b6a5bf0eb542b1305ef15813167)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
'@types/common-tags':
specifier: ^1.8.4
version: 1.8.4
+ '@types/mdast':
+ specifier: ^4.0.4
+ version: 4.0.4
'@types/qunit':
specifier: ^2.19.12
version: 2.19.12
@@ -1411,147 +1447,344 @@ importers:
specifier: ^4.0.9
version: 4.0.9
babel-plugin-ember-template-compilation:
- specifier: ^2.3.0
+ specifier: ^2.4.1
version: 2.4.1
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
decorator-transforms:
specifier: ^2.3.0
- version: 2.3.0(@babel/core@7.27.1)
+ version: 2.3.0(@babel/core@7.27.7)
ember-auto-import:
- specifier: ^2.9.0
- version: 2.10.0(ab4d4f1a3a3e98c3a6f0c8fc00f4f729)
+ specifier: ^2.10.0
+ version: 2.10.0(@glint/template@1.5.2)(webpack@5.99.9)
ember-cli:
- specifier: 6.2.2
- version: 6.2.2(handlebars@4.7.8)(underscore@1.13.7)
+ specifier: 6.5.0
+ version: 6.5.0(handlebars@4.7.8)(underscore@1.13.7)
ember-cli-babel:
specifier: ^8.2.0
- version: 8.2.0(@babel/core@7.27.1)
+ version: 8.2.0(@babel/core@7.27.7)
ember-cli-htmlbars:
specifier: ^6.3.0
version: 6.3.0
ember-load-initializers:
specifier: ^3.0.1
- version: 3.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 3.0.1(c97baf9c810f393a596045d691514450)
ember-page-title:
specifier: ^9.0.1
- version: 9.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 9.0.2
ember-qunit:
specifier: ^9.0.1
- version: 9.0.2(fc7db7c59c65629a3191e53d4fcb3f42)
+ version: 9.0.3(350ab0b2e11c21a3c2b2aceab21168ff)
ember-resolver:
specifier: ^13.1.0
- version: 13.1.0(c74a9e52ce1ef5cbfa31d9959d9dadca)
+ version: 13.1.1
ember-source:
- specifier: '>= 6.4.0-alpha.3'
- version: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ specifier: '>= 6.7.0-alpha.1'
+ version: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
ember-source-channel-url:
specifier: ^3.0.0
version: 3.0.0(encoding@0.1.13)
ember-template-lint:
- specifier: ^7.2.0
- version: 7.2.0(@babel/core@7.27.1)
+ specifier: ^7.9.1
+ version: 7.9.1
ember-try:
specifier: ^4.0.0
version: 4.0.0(encoding@0.1.13)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
path-browserify:
specifier: ^1.0.1
version: 1.0.1
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
qunit:
specifier: ^2.24.1
version: 2.24.1
qunit-dom:
specifier: 3.4.0
version: 3.4.0
+ testem:
+ specifier: ^3.16.0
+ version: 3.16.0(handlebars@4.7.8)(underscore@1.13.7)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
unified:
- specifier: ^10.1.2
- version: 10.1.2
+ specifier: ^11.0.5
+ version: 11.0.5
vite:
- specifier: ^6.0.0
- version: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
vite-plugin-node-polyfills:
specifier: ^0.23.0
- version: 0.23.0(31546948ebf91a14ce3f9df2a33bf7d7)
+ version: 0.23.0(c12a7027306cfedcbe4a580b859170c2)
packages/horizon-theme:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
+
+ packages/repl-sdk:
+ dependencies:
+ change-case:
+ specifier: ^5.4.4
+ version: 5.4.4
+ comlink:
+ specifier: ^4.4.2
+ version: 4.4.2
+ es-module-shims:
+ specifier: ^2.6.1
+ version: 2.6.1
+ mime:
+ specifier: ^4.0.7
+ version: 4.0.7
+ package-name-regex:
+ specifier: ^4.0.3
+ version: 4.0.3
+ resolve.exports:
+ specifier: ^2.0.3
+ version: 2.0.3
+ resolve.imports:
+ specifier: ^2.0.3
+ version: 2.0.3
+ tarparser:
+ specifier: ^0.0.4
+ version: 0.0.4
+ devDependencies:
+ '@babel/plugin-proposal-decorators':
+ specifier: ^7.23.9
+ version: 7.27.1(@babel/core@7.27.7)
+ '@nullvoxpopuli/eslint-configs':
+ specifier: ^5.0.0
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
+ '@shikijs/rehype':
+ specifier: ^3.7.0
+ version: 3.7.0
+ '@tsconfig/ember':
+ specifier: ^3.0.7
+ version: 3.0.10
+ '@types/common-tags':
+ specifier: ^1.8.4
+ version: 1.8.4
+ '@types/hast':
+ specifier: ^3.0.4
+ version: 3.0.4
+ '@types/mdast':
+ specifier: ^4.0.4
+ version: 4.0.4
+ common-tags:
+ specifier: ^1.8.2
+ version: 1.8.2
+ eslint:
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
+ mdast:
+ specifier: ^3.0.0
+ version: 3.0.0
+ prettier:
+ specifier: ^3.6.2
+ version: 3.6.2
+ publint:
+ specifier: ^0.3.12
+ version: 0.3.12
+ rehype-raw:
+ specifier: ^7.0.0
+ version: 7.0.0
+ rehype-stringify:
+ specifier: ^10.0.1
+ version: 10.0.1
+ remark-gfm:
+ specifier: ^4.0.1
+ version: 4.0.1
+ remark-parse:
+ specifier: ^11.0.0
+ version: 11.0.0
+ remark-rehype:
+ specifier: ^11.1.2
+ version: 11.1.2
+ typescript:
+ specifier: ^5.8.3
+ version: 5.8.3
+ unified:
+ specifier: ^11.0.5
+ version: 11.0.5
+ unist-util-visit:
+ specifier: ^5.0.0
+ version: 5.0.0
+ vfile:
+ specifier: ^6.0.3
+ version: 6.0.3
+ vite:
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ vite-plugin-dts:
+ specifier: 4.5.4
+ version: 4.5.4(2f023d249cd22ff295c10df6dedd6efe)
+ vitest:
+ specifier: ^3.2.4
+ version: 3.2.4(fba6a93057071088ca51d2200171aeef)
+
+ packages/repl-sdk/tests-self:
+ dependencies:
+ common-tags:
+ specifier: ^1.8.2
+ version: 1.8.2
+ repl-sdk:
+ specifier: workspace:^
+ version: link:..
+ devDependencies:
+ '@babel/plugin-proposal-decorators':
+ specifier: ^7.23.9
+ version: 7.27.1(@babel/core@7.27.7)
+ '@babel/standalone':
+ specifier: ^7.27.7
+ version: 7.27.7
+ '@nullvoxpopuli/eslint-configs':
+ specifier: ^5.0.0
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
+ '@testing-library/dom':
+ specifier: ^10.3.2
+ version: 10.4.0
+ '@tsconfig/ember':
+ specifier: ^3.0.7
+ version: 3.0.10
+ '@types/common-tags':
+ specifier: ^1.8.4
+ version: 1.8.4
+ '@types/mdast':
+ specifier: ^4.0.4
+ version: 4.0.4
+ '@vitest/browser':
+ specifier: ^3.2.4
+ version: 3.2.4(2e993a30aa94f334ebb078d5cc3beeef)
+ '@vitest/ui':
+ specifier: 3.2.4
+ version: 3.2.4(vitest@3.2.4)
+ '@vue/repl':
+ specifier: ^4.6.1
+ version: 4.6.1
+ mdast:
+ specifier: ^3.0.0
+ version: 3.0.0
+ mermaid:
+ specifier: ^11.6.0
+ version: 11.7.0
+ playwright:
+ specifier: ^1.53.1
+ version: 1.53.1
+ react:
+ specifier: ^19.1.0
+ version: 19.1.0
+ react-dom:
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
+ rehype-raw:
+ specifier: ^7.0.0
+ version: 7.0.0
+ rehype-stringify:
+ specifier: ^10.0.1
+ version: 10.0.1
+ remark-gfm:
+ specifier: ^4.0.1
+ version: 4.0.1
+ remark-parse:
+ specifier: ^11.0.0
+ version: 11.0.0
+ remark-rehype:
+ specifier: ^11.1.2
+ version: 11.1.2
+ svelte:
+ specifier: ^5.34.9
+ version: 5.34.9
+ unified:
+ specifier: ^11.0.5
+ version: 11.0.5
+ unist-util-visit:
+ specifier: ^5.0.0
+ version: 5.0.0
+ vite:
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ vite-plugin-wasm:
+ specifier: ^3.3.0
+ version: 3.4.1(b6180693ed26d1b7a1153265ba481eba)
+ vitest:
+ specifier: ^3.2.4
+ version: 3.2.4(fba6a93057071088ca51d2200171aeef)
+ vue:
+ specifier: ^3.5.17
+ version: 3.5.17(typescript@5.8.3)
+ webdriverio:
+ specifier: ^9.15.0
+ version: 9.16.2
packages/syntax/-infra:
dependencies:
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@lezer/highlight':
specifier: ^1.2.1
version: 1.2.1
'@rollup/plugin-node-resolve':
specifier: ^15.3.1
- version: 15.3.1(rollup@4.40.1)
+ version: 15.3.1(rollup@4.44.0)
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@types/mocha':
specifier: ^10.0.10
version: 10.0.10
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
mocha:
- specifier: ^10.8.2
- version: 10.8.2
+ specifier: ^11.6.0
+ version: 11.7.1
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/dev-preview:
dependencies:
@@ -1563,29 +1796,38 @@ importers:
version: 1.2.3
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimdown/codemirror:
dependencies:
'@codemirror/lang-html':
specifier: ^6.4.9
version: 6.4.9
+ '@codemirror/lang-javascript':
+ specifier: ^6.2.4
+ version: 6.2.4
'@codemirror/lang-markdown':
- specifier: ^6.3.2
- version: 6.3.2
+ specifier: ^6.3.3
+ version: 6.3.3
+ '@codemirror/lang-vue':
+ specifier: ^0.1.3
+ version: 0.1.3
+ '@codemirror/lang-yaml':
+ specifier: ^6.1.2
+ version: 6.1.2
'@codemirror/language-data':
specifier: ^6.5.1
version: 6.5.1
@@ -1607,112 +1849,118 @@ importers:
'@lezer/markdown':
specifier: ^1.4.1
version: 1.4.3
+ '@replit/codemirror-lang-svelte':
+ specifier: ^6.0.0
+ version: 6.0.0(8ea3a73854c03a97a986b4fe3900fecd)
codemirror-lang-glimmer:
specifier: workspace:*
version: link:../../glimmer/codemirror
codemirror-lang-glimmer-js:
specifier: workspace:*
version: link:../../glimmer-js/codemirror
+ codemirror-lang-mermaid:
+ specifier: ^0.5.0
+ version: 0.5.0
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/buildhelper':
specifier: ^1.0.2
version: 1.0.2
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/state':
specifier: ^6.5.2
version: 6.5.2
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
codemirror:
- specifier: ^6.0.1
- version: 6.0.1
+ specifier: ^6.0.2
+ version: 6.0.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
rollup-plugin-ts:
specifier: ^3.4.5
- version: 3.4.5(b06035194ce3a7bebf1c6065b473a8cf)
+ version: 3.4.5(1c16e74c10cfd9b56232f9a6c86e4c91)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimdown/codemirror/dev:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/state':
specifier: ^6.5.2
version: 6.5.2
'@codemirror/theme-one-dark':
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.1.3
+ version: 6.1.3
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/codemirror-dev-preview':
specifier: workspace:*
version: link:../../../dev-preview
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
vite:
- specifier: ^5.4.14
- version: 5.4.19(@types/node@22.15.3)(terser@5.39.0)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
packages/syntax/glimdown/codemirror/tests:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimdown/lezer:
dependencies:
@@ -1724,35 +1972,35 @@ importers:
version: 1.4.2
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@glimdown/lezer-infra':
specifier: workspace:*
version: link:../../-infra
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@rollup/plugin-node-resolve':
specifier: ^15.3.1
- version: 15.3.1(rollup@4.40.1)
+ version: 15.3.1(rollup@4.44.0)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
mocha:
- specifier: ^10.8.2
- version: 10.8.2
+ specifier: ^11.6.0
+ version: 11.7.1
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimmer-js/codemirror:
dependencies:
@@ -1763,11 +2011,11 @@ importers:
specifier: ^6.4.9
version: 6.4.9
'@codemirror/lang-javascript':
- specifier: ^6.2.3
- version: 6.2.3
+ specifier: ^6.2.4
+ version: 6.2.4
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@lezer/highlight':
specifier: ^1.2.1
version: 1.2.1
@@ -1782,14 +2030,14 @@ importers:
version: link:../../glimmer/codemirror
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/buildhelper':
specifier: ^1.0.2
version: 1.0.2
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/lezer-infra':
specifier: workspace:*
version: link:../../-infra
@@ -1798,70 +2046,70 @@ importers:
version: 1.2.3
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
codemirror:
- specifier: ^6.0.1
- version: 6.0.1
+ specifier: ^6.0.2
+ version: 6.0.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
rollup-plugin-ts:
specifier: ^3.4.5
- version: 3.4.5(b06035194ce3a7bebf1c6065b473a8cf)
+ version: 3.4.5(1c16e74c10cfd9b56232f9a6c86e4c91)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimmer-js/codemirror/dev:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/state':
specifier: ^6.5.2
version: 6.5.2
'@codemirror/theme-one-dark':
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.1.3
+ version: 6.1.3
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/codemirror-dev-preview':
specifier: workspace:*
version: link:../../../dev-preview
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
vite:
- specifier: ^5.4.14
- version: 5.4.19(@types/node@22.15.3)(terser@5.39.0)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
packages/syntax/glimmer-s-expression/lezer:
dependencies:
@@ -1873,32 +2121,32 @@ importers:
version: 1.4.2
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@glimdown/lezer-infra':
specifier: workspace:*
version: link:../../-infra
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@rollup/plugin-node-resolve':
specifier: ^15.3.1
- version: 15.3.1(rollup@4.40.1)
+ version: 15.3.1(rollup@4.44.0)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimmer-ts/codemirror:
dependencies:
@@ -1909,11 +2157,11 @@ importers:
specifier: ^6.4.9
version: 6.4.9
'@codemirror/lang-javascript':
- specifier: ^6.2.3
- version: 6.2.3
+ specifier: ^6.2.4
+ version: 6.2.4
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@lezer/highlight':
specifier: ^1.2.1
version: 1.2.1
@@ -1928,14 +2176,14 @@ importers:
version: link:../../glimmer/codemirror
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/buildhelper':
specifier: ^1.0.2
version: 1.0.2
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/lezer-infra':
specifier: workspace:*
version: link:../../-infra
@@ -1944,70 +2192,70 @@ importers:
version: 1.2.3
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
codemirror:
- specifier: ^6.0.1
- version: 6.0.1
+ specifier: ^6.0.2
+ version: 6.0.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
rollup-plugin-ts:
specifier: ^3.4.5
- version: 3.4.5(b06035194ce3a7bebf1c6065b473a8cf)
+ version: 3.4.5(1c16e74c10cfd9b56232f9a6c86e4c91)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimmer-ts/codemirror/dev:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/state':
specifier: ^6.5.2
version: 6.5.2
'@codemirror/theme-one-dark':
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.1.3
+ version: 6.1.3
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/codemirror-dev-preview':
specifier: workspace:*
version: link:../../../dev-preview
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
vite:
- specifier: ^5.4.14
- version: 5.4.19(@types/node@22.15.3)(terser@5.39.0)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
packages/syntax/glimmer/codemirror:
dependencies:
@@ -2021,14 +2269,14 @@ importers:
specifier: ^6.4.9
version: 6.4.9
'@codemirror/lang-javascript':
- specifier: ^6.2.3
- version: 6.2.3
+ specifier: ^6.2.4
+ version: 6.2.4
'@codemirror/state':
specifier: ^6.5.2
version: 6.5.2
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/lezer-glimmer-expression':
specifier: workspace:*
version: link:../../glimmer-s-expression/lezer
@@ -2049,86 +2297,86 @@ importers:
version: link:../lezer
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@babel/eslint-parser':
specifier: ^7.27.1
- version: 7.27.1(4a43aebe8aa03544380dbd584f92ba52)
+ version: 7.27.5(deda1a73e14af5de11cfd237cc45e668)
'@codemirror/buildhelper':
specifier: ^1.0.2
version: 1.0.2
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@lezer/common':
specifier: ^1.2.3
version: 1.2.3
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
codemirror:
- specifier: ^6.0.1
- version: 6.0.1
+ specifier: ^6.0.2
+ version: 6.0.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
rollup-plugin-ts:
specifier: ^3.4.5
- version: 3.4.5(b06035194ce3a7bebf1c6065b473a8cf)
+ version: 3.4.5(1c16e74c10cfd9b56232f9a6c86e4c91)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimmer/codemirror/dev:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@codemirror/state':
specifier: ^6.5.2
version: 6.5.2
'@codemirror/theme-one-dark':
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.1.3
+ version: 6.1.3
'@codemirror/view':
- specifier: ^6.36.3
- version: 6.36.4
+ specifier: ^6.37.2
+ version: 6.37.2
'@glimdown/codemirror-dev-preview':
specifier: workspace:*
version: link:../../../dev-preview
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
vite:
- specifier: ^5.4.14
- version: 5.4.19(@types/node@22.15.3)(terser@5.39.0)
+ specifier: ^6.3.5
+ version: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
packages/syntax/glimmer/lezer:
dependencies:
@@ -2152,62 +2400,68 @@ importers:
version: 1.4.2
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@codemirror/buildhelper':
specifier: ^1.0.2
version: 1.0.2
'@codemirror/language':
- specifier: ^6.10.8
- version: 6.11.0
+ specifier: ^6.11.2
+ version: 6.11.2
'@lezer/generator':
specifier: ^1.7.2
- version: 1.7.3
+ version: 1.8.0
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
'@tsconfig/ember':
specifier: ^3.0.9
version: 3.0.10
codemirror:
- specifier: ^6.0.1
- version: 6.0.1
+ specifier: ^6.0.2
+ version: 6.0.2
concurrently:
specifier: ^9.1.2
- version: 9.1.2
+ version: 9.2.0
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.44.0
+ version: 4.44.0
rollup-plugin-ts:
specifier: ^3.4.5
- version: 3.4.5(b06035194ce3a7bebf1c6065b473a8cf)
+ version: 3.4.5(1c16e74c10cfd9b56232f9a6c86e4c91)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
packages/syntax/glimmer/lezer/tests:
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.27.1
+ specifier: ^7.27.7
+ version: 7.27.7
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
+
+ spikes/es-module-shim:
+ devDependencies:
+ http-server:
+ specifier: ^14.1.1
+ version: 14.1.1
spikes/url-shortening:
dependencies:
@@ -2235,22 +2489,22 @@ importers:
devDependencies:
'@nullvoxpopuli/eslint-configs':
specifier: ^5.0.0
- version: 5.1.2(3bc82b1c84735d71a1834d84f703b2bb)
+ version: 5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)
eslint:
- specifier: ^9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: ^9.29.0
+ version: 9.29.0(jiti@2.4.2)
prettier:
- specifier: ^3.5.2
- version: 3.5.3
+ specifier: ^3.6.2
+ version: 3.6.2
prettier-plugin-ember-template-tag:
- specifier: 2.0.4
- version: 2.0.4(prettier@3.5.3)
+ specifier: 2.0.6
+ version: 2.0.6(prettier@3.6.2)
typescript:
- specifier: 5.7.3
- version: 5.7.3
+ specifier: 5.8.3
+ version: 5.8.3
vitest:
- specifier: ^3.0.6
- version: 3.1.2(212b84efdd1fb3a1616191536ec10813)
+ specifier: ^3.2.4
+ version: 3.2.4(fba6a93057071088ca51d2200171aeef)
packages:
@@ -2278,38 +2532,44 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@asamuzakjp/css-color@3.1.5':
- resolution: {integrity: sha512-w7AmVyTTiU41fNLsFDf+gA2Dwtbx2EJtn2pbJNAGSRAg50loXy1uLXA3hEpD8+eydcomTurw09tq5/AyceCaGg==}
+ '@antfu/install-pkg@1.1.0':
+ resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
+
+ '@antfu/utils@8.1.1':
+ resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==}
+
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.27.1':
- resolution: {integrity: sha512-Q+E+rd/yBzNQhXkG+zQnF58e4zoZfBedaxwzPmicKsiK3nt8iJYrSrDbjwFFDGC4f+rPafqRaPH6TsDoSvMf7A==}
+ '@babel/compat-data@7.27.5':
+ resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.27.1':
- resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
+ '@babel/core@7.27.7':
+ resolution: {integrity: sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==}
engines: {node: '>=6.9.0'}
- '@babel/eslint-parser@7.27.1':
- resolution: {integrity: sha512-q8rjOuadH0V6Zo4XLMkJ3RMQ9MSBqwaDByyYB0izsYdaIWGNLmEblbCOf1vyFHICcg16CD7Fsi51vcQnYxmt6Q==}
+ '@babel/eslint-parser@7.27.5':
+ resolution: {integrity: sha512-HLkYQfRICudzcOtjGwkPvGc5nF1b4ljLZh1IRDj50lRZ718NAKVgQpIAUX8bfg6u/yuSKY3L7E0YzIV+OxrB8Q==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/generator@7.27.1':
- resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
+ '@babel/generator@7.27.5':
+ resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.27.1':
- resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==}
+ '@babel/helper-annotate-as-pure@7.27.3':
+ resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.1':
- resolution: {integrity: sha512-2YaDd/Rd9E598B5+WIc8wJPmWETiiJXFYVE60oX8FDohv7rAUU3CQj+A1MgeEmcsk2+dQuEjIe/GDvig0SqL4g==}
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.27.1':
@@ -2337,8 +2597,8 @@ packages:
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.27.1':
- resolution: {integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==}
+ '@babel/helper-module-transforms@7.27.3':
+ resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -2383,12 +2643,12 @@ packages:
resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.27.1':
- resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
+ '@babel/helpers@7.27.6':
+ resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.27.1':
- resolution: {integrity: sha512-I0dZ3ZpCrJ1c04OqlNsQcKiZlsrXf/kkE4FXzID9rIOYICsAbA8mMDzhW/luRNAHdCNt7os/u8wenklZDlUVUQ==}
+ '@babel/parser@7.27.7':
+ resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -2532,8 +2792,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.27.1':
- resolution: {integrity: sha512-QEcFlMl9nGTgh1rn2nIeU5bkfb9BAjaQcWbiP4LvKxUot52ABcTkpcyJ7f2Q2U2RuQ84BNLgts3jRme2dTx6Fw==}
+ '@babel/plugin-transform-block-scoping@7.27.5':
+ resolution: {integrity: sha512-JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2562,8 +2822,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.27.1':
- resolution: {integrity: sha512-ttDCqhfvpE9emVkXbPD8vyxxh4TWYACVybGkDj+oReOGwnp066ITEivDlLwe0b1R0+evJ13IXQuLNB5w1fhC5Q==}
+ '@babel/plugin-transform-destructuring@7.27.3':
+ resolution: {integrity: sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2694,8 +2954,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.27.1':
- resolution: {integrity: sha512-/sSliVc9gHE20/7D5qsdGlq7RG5NCDTWsAhyqzGuq174EtWJoGzIu1BQ7G56eDsTcy1jseBZwv50olSdXOlGuA==}
+ '@babel/plugin-transform-object-rest-spread@7.27.3':
+ resolution: {integrity: sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2742,8 +3002,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.27.1':
- resolution: {integrity: sha512-B19lbbL7PMrKr52BNPjCqg1IyNUIjTcxKj8uX9zHO+PmWN93s19NDr/f69mIkEp2x9nmDJ08a7lgHaTTzvW7mw==}
+ '@babel/plugin-transform-regenerator@7.27.5':
+ resolution: {integrity: sha512-uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2760,8 +3020,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.27.1':
- resolution: {integrity: sha512-TqGF3desVsTcp3WrJGj4HfKokfCXCLcHpt4PJF0D8/iT6LPd9RS82Upw3KPeyr6B22Lfd3DO8MVrmp0oRkUDdw==}
+ '@babel/plugin-transform-runtime@7.27.4':
+ resolution: {integrity: sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2830,8 +3090,8 @@ packages:
resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==}
deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.
- '@babel/preset-env@7.27.1':
- resolution: {integrity: sha512-TZ5USxFpLgKDpdEt8YWBR7p6g+bZo6sHaXLqP2BY/U0acaoI8FTVflcYCr/v94twM1C5IWFdZ/hscq9WjUeLXA==}
+ '@babel/preset-env@7.27.2':
+ resolution: {integrity: sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2862,29 +3122,47 @@ packages:
'@babel/runtime@7.12.18':
resolution: {integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==}
- '@babel/runtime@7.27.1':
- resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
+ '@babel/runtime@7.27.6':
+ resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.27.1':
- resolution: {integrity: sha512-HF25AUgjLNQ/xGw8TMpIwCP9QieRWi+975Jffx/0uUIhJUnsoHhIsVc5l3JbNQI+IaRQfkCTRzlAYv8JolTvBw==}
+ '@babel/standalone@7.27.7':
+ resolution: {integrity: sha512-vYgHkle44HY5d0qshIR2rKZBfFGHj0OaH7oBAe1NUEkI2DhZdU2+KrEt2qMkdiUjbClQFS8FQQrvdKB8kLn7aw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.27.1':
- resolution: {integrity: sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==}
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.27.1':
- resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
+ '@babel/traverse@7.27.7':
+ resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.27.1':
- resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
+ '@babel/types@7.27.7':
+ resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==}
engines: {node: '>=6.9.0'}
'@bazel/runfiles@6.3.1':
resolution: {integrity: sha512-1uLNT5NZsUVIGS4syuHwTzZ8HycMPyr6POA3FCE4GbMtc4rhoJk8aZKtNIRthJYfL+iioppi+rTfH3olMPr9nA==}
+ '@braintree/sanitize-url@7.1.1':
+ resolution: {integrity: sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==}
+
+ '@chevrotain/cst-dts-gen@11.0.3':
+ resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==}
+
+ '@chevrotain/gast@11.0.3':
+ resolution: {integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==}
+
+ '@chevrotain/regexp-to-ast@11.0.3':
+ resolution: {integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==}
+
+ '@chevrotain/types@11.0.3':
+ resolution: {integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==}
+
+ '@chevrotain/utils@11.0.3':
+ resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==}
+
'@cnakazawa/watch@1.0.4':
resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==}
engines: {node: '>=0.1.95'}
@@ -2897,14 +3175,14 @@ packages:
resolution: {integrity: sha512-aVewtDPZptq9dTvYqIjpu9HTEmMaKAE4VL22z5E1ycgY5e1LdAiRd5YYjqzQeqLjxpWsHy+emO3n5UUcxpUmSg==}
hasBin: true
- '@codemirror/commands@6.8.0':
- resolution: {integrity: sha512-q8VPEFaEP4ikSlt6ZxjB3zW72+7osfAYW9i8Zu943uqbKuz6utc1+F170hyLUCUltXORjQXRyYQNfkckzA/bPQ==}
+ '@codemirror/commands@6.8.1':
+ resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==}
'@codemirror/lang-angular@0.1.4':
resolution: {integrity: sha512-oap+gsltb/fzdlTQWD6BFF4bSLKcDnlxDsLdePiJpCVNKWXSTAbiiQeYI3UmES+BLAdkmIC1WjyztC1pi/bX4g==}
- '@codemirror/lang-cpp@6.0.2':
- resolution: {integrity: sha512-6oYEYUKHvrnacXxWxYa6t4puTlbN3dgV662BDfSH8+MfjQjVmP697/KYTDOqpxgerkvoNm7q5wlFMBeX8ZMocg==}
+ '@codemirror/lang-cpp@6.0.3':
+ resolution: {integrity: sha512-URM26M3vunFFn9/sm6rzqrBzDgfWuDixp85uTY49wKudToc2jTHUrKIGGKs+QWND+YLofNNZpxcNGRynFJfvgA==}
'@codemirror/lang-css@6.3.1':
resolution: {integrity: sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==}
@@ -2915,14 +3193,14 @@ packages:
'@codemirror/lang-html@6.4.9':
resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==}
- '@codemirror/lang-java@6.0.1':
- resolution: {integrity: sha512-OOnmhH67h97jHzCuFaIEspbmsT98fNdhVhmA3zCxW0cn7l8rChDhZtwiwJ/JOKXgfm4J+ELxQihxaI7bj7mJRg==}
+ '@codemirror/lang-java@6.0.2':
+ resolution: {integrity: sha512-m5Nt1mQ/cznJY7tMfQTJchmrjdjQ71IDs+55d1GAa8DGaB8JXWsVCkVT284C3RTASaY43YknrK2X3hPO/J3MOQ==}
- '@codemirror/lang-javascript@6.2.3':
- resolution: {integrity: sha512-8PR3vIWg7pSu7ur8A07pGiYHgy3hHj+mRYRCSG8q+mPIrl0F02rgpGv+DsQTHRTc30rydOsf5PZ7yjKFg2Ackw==}
+ '@codemirror/lang-javascript@6.2.4':
+ resolution: {integrity: sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==}
- '@codemirror/lang-json@6.0.1':
- resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==}
+ '@codemirror/lang-json@6.0.2':
+ resolution: {integrity: sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==}
'@codemirror/lang-less@6.0.2':
resolution: {integrity: sha512-EYdQTG22V+KUUk8Qq582g7FMnCZeEHsyuOJisHRft/mQ+ZSZ2w51NupvDUHiqtsOy7It5cHLPGfHQLpMh9bqpQ==}
@@ -2930,23 +3208,23 @@ packages:
'@codemirror/lang-liquid@6.2.3':
resolution: {integrity: sha512-yeN+nMSrf/lNii3FJxVVEGQwFG0/2eDyH6gNOj+TGCa0hlNO4bhQnoO5ISnd7JOG+7zTEcI/GOoyraisFVY7jQ==}
- '@codemirror/lang-markdown@6.3.2':
- resolution: {integrity: sha512-c/5MYinGbFxYl4itE9q/rgN/sMTjOr8XL5OWnC+EaRMLfCbVUmmubTJfdgpfcSS2SCaT7b+Q+xi3l6CgoE+BsA==}
+ '@codemirror/lang-markdown@6.3.3':
+ resolution: {integrity: sha512-1fn1hQAPWlSSMCvnF810AkhWpNLkJpl66CRfIy3vVl20Sl4NwChkorCHqpMtNbXr1EuMJsrDnhEpjZxKZ2UX3A==}
- '@codemirror/lang-php@6.0.1':
- resolution: {integrity: sha512-ublojMdw/PNWa7qdN5TMsjmqkNuTBD3k6ndZ4Z0S25SBAiweFGyY68AS3xNcIOlb6DDFDvKlinLQ40vSLqf8xA==}
+ '@codemirror/lang-php@6.0.2':
+ resolution: {integrity: sha512-ZKy2v1n8Fc8oEXj0Th0PUMXzQJ0AIR6TaZU+PbDHExFwdu+guzOA4jmCHS1Nz4vbFezwD7LyBdDnddSJeScMCA==}
- '@codemirror/lang-python@6.2.0':
- resolution: {integrity: sha512-+oLTR88uLib84tvb4XmOBBq/dgrctvPXueP3Wjotu4zmHLM2KW2wfswJ6r1BKlfJNcGgdWX1AgUeGEf3E2H5LA==}
+ '@codemirror/lang-python@6.2.1':
+ resolution: {integrity: sha512-IRjC8RUBhn9mGR9ywecNhB51yePWCGgvHfY1lWN/Mrp3cKuHr0isDKia+9HnvhiWNnMpbGhWrkhuWOc09exRyw==}
- '@codemirror/lang-rust@6.0.1':
- resolution: {integrity: sha512-344EMWFBzWArHWdZn/NcgkwMvZIWUR1GEBdwG8FEp++6o6vT6KL9V7vGs2ONsKxxFUPXKI0SPcWhyYyl2zPYxQ==}
+ '@codemirror/lang-rust@6.0.2':
+ resolution: {integrity: sha512-EZaGjCUegtiU7kSMvOfEZpaCReowEf3yNidYu7+vfuGTm9ow4mthAparY5hisJqOHmJowVH3Upu+eJlUji6qqA==}
'@codemirror/lang-sass@6.0.2':
resolution: {integrity: sha512-l/bdzIABvnTo1nzdY6U+kPAC51czYQcOErfzQ9zSm9D8GmNPD0WTW8st/CJwBTPLO8jlrbyvlSEcN20dc4iL0Q==}
- '@codemirror/lang-sql@6.8.0':
- resolution: {integrity: sha512-aGLmY4OwGqN3TdSx3h6QeA1NrvaYtF7kkoWR/+W7/JzB0gQtJ+VJxewlnE3+VImhA4WVlhmkJr109PefOOhjLg==}
+ '@codemirror/lang-sql@6.9.0':
+ resolution: {integrity: sha512-xmtpWqKSgum1B1J3Ro6rf7nuPqf2+kJQg5SjrofCAcyCThOe0ihSktSoXfXuhQBnwx1QbmreBbLJM5Jru6zitg==}
'@codemirror/lang-vue@0.1.3':
resolution: {integrity: sha512-QSKdtYTDRhEHCfo5zOShzxCmqKJvgGrZwDQSdbvCRJ5pRLWBS7pD/8e/tH44aVQT6FKm0t6RVNoSUWHOI5vNug==}
@@ -2963,8 +3241,8 @@ packages:
'@codemirror/language-data@6.5.1':
resolution: {integrity: sha512-0sWxeUSNlBr6OmkqybUTImADFUP0M3P0IiSde4nc24bz/6jIYzqYSgkOSLS+CBIoW1vU8Q9KUWXscBXeoMVC9w==}
- '@codemirror/language@6.11.0':
- resolution: {integrity: sha512-A7+f++LodNNc1wGgoRDTt78cOwWm9KVezApgjOMp1W4hM0898nsqBXwF+sbePE7ZRcjN7Sa1Z5m2oN27XkmEjQ==}
+ '@codemirror/language@6.11.2':
+ resolution: {integrity: sha512-p44TsNArL4IVXDTbapUmEkAlvWs2CFQbcfc0ymDsis1kH2wh0gcY96AS29c/vp2d0y2Tquk1EDSaawpzilUiAw==}
'@codemirror/legacy-modes@6.5.1':
resolution: {integrity: sha512-DJYQQ00N1/KdESpZV7jg9hafof/iBNp9h7TYo1SLMk86TWl9uDsVdho2dzd81K+v4retmK6mdC7WpuOQDytQqw==}
@@ -2972,20 +3250,17 @@ packages:
'@codemirror/lint@6.8.5':
resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==}
- '@codemirror/search@6.5.10':
- resolution: {integrity: sha512-RMdPdmsrUf53pb2VwflKGHEe1XVM07hI7vV2ntgw1dmqhimpatSJKva4VA9h4TLUDOD4EIF02201oZurpnEFsg==}
+ '@codemirror/search@6.5.11':
+ resolution: {integrity: sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==}
'@codemirror/state@6.5.2':
resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==}
- '@codemirror/theme-one-dark@6.1.2':
- resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==}
+ '@codemirror/theme-one-dark@6.1.3':
+ resolution: {integrity: sha512-NzBdIvEJmx6fjeremiGp3t/okrLPYT0d9orIc7AFun8oZcRk58aejkqhv6spnz4MLAevrKNPMQYXEWMg4s+sKA==}
- '@codemirror/view@6.36.3':
- resolution: {integrity: sha512-N2bilM47QWC8Hnx0rMdDxO2x2ImJ1FvZWXubwKgjeoOrWwEiFrtpA7SFHcuZ+o2Ze2VzbkgbzWVj4+V18LVkeg==}
-
- '@codemirror/view@6.36.4':
- resolution: {integrity: sha512-ZQ0V5ovw/miKEXTvjgzRyjnrk9TwriUB1k4R5p7uNnHR9Hus+D1SXHGdJshijEzPFjU25xea/7nhIeSqYFKdbA==}
+ '@codemirror/view@6.37.2':
+ resolution: {integrity: sha512-XD3LdgQpxQs5jhOOZ2HRVT+Rj59O4Suc7g2ULvZ+Yi8eCkickrkZ5JFuoDhs2ST1mNI5zSsNYgR3NGa4OUrbnw==}
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -2995,28 +3270,28 @@ packages:
resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.3':
- resolution: {integrity: sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw==}
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-color-parser@3.0.9':
- resolution: {integrity: sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw==}
+ '@csstools/css-color-parser@3.0.10':
+ resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-parser-algorithms@3.0.4':
- resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-tokenizer@3.0.3':
- resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
engines: {node: '>=18'}
'@discoveryjs/json-ext@0.6.3':
@@ -3039,16 +3314,14 @@ packages:
'@ember/string@4.0.1':
resolution: {integrity: sha512-VWeng8BSWrIsdPfffOQt/bKwNKJL7+37gPFh/6iZZ9bke+S83kKqkS30poo4bTGfRcMnvAE0ie7txom+iDu81Q==}
- '@ember/test-helpers@5.2.1':
- resolution: {integrity: sha512-hxY3379AvMolYnQsi9pqrR7tup/SmE/9zzkpiLnu2VTmrW8xsgV7MrXF1a3xw2twLWPSzVF8T3VDPyvuHbvqfw==}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
+ '@ember/test-helpers@5.2.2':
+ resolution: {integrity: sha512-Cclqeh0j6RnYvoaElAVC3Nd1fsSUkc3oUTwTsLlNiC3riyPq8lNYxh96VM59/yji2ntrd/cJQ7qhhSZWd6hsEw==}
'@ember/test-waiters@4.1.0':
resolution: {integrity: sha512-qRFA0OumYv7/C3hmx4ETC2dlPzyD549D+naPhcrnV2xCnc3AZlKouWyoFnNF+Cje918kRp9aEefVgV3vmGL5Bg==}
- '@embroider/addon-dev@7.1.4':
- resolution: {integrity: sha512-HoyU9CyY8bTi44nshqx8L2w6A1cQ2l+3W4gIFszWJt2wGn1iVSLs9dfozSCrC51FKWJk+tAMs5Y1Epfx4u/o/Q==}
+ '@embroider/addon-dev@7.1.5':
+ resolution: {integrity: sha512-fa7PqRePEPk41AGSydRg9XgFBSTRGzcez2Rh9HFZ4Lz0aGZtvkZMEnetQYCUNDzDGUyc9mDodA9uBN2KU3Cb/A==}
engines: {node: 12.* || 14.* || >= 16}
hasBin: true
peerDependencies:
@@ -3057,8 +3330,8 @@ packages:
rollup:
optional: true
- '@embroider/addon-dev@8.0.1':
- resolution: {integrity: sha512-vb+qV+1sBosmm0rXBR3yKHP6scq6/n0bRZt7YGAmbt/8+8d+4pIjn6/PZzWIUkYD5MUO/GYbZ61nFgpA+ZpKHQ==}
+ '@embroider/addon-dev@8.1.0':
+ resolution: {integrity: sha512-bOsEqvpAH7pLphjDUMRQTjy6TTrvocvownIlUUFrIy6JCdfIpiirgrz55MJRxy6IIUtKR4jGBh2LxEZrRbL6PQ==}
engines: {node: 12.* || 14.* || >= 16}
hasBin: true
peerDependencies:
@@ -3075,22 +3348,22 @@ packages:
resolution: {integrity: sha512-qyN64T1jMHZ99ihlk7VFHCWHYZHLE1DOdHi0J7lmn5waV1DoW7gD8JLi1i7FregzXtKhbDc7shyEmTmWPTs8MQ==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/compat@4.0.0-alpha.14':
- resolution: {integrity: sha512-q/EcDOEfF5Id8JvtewDEPYVZrZE4//AEM6z1xuYuR52hm9VAsdGRzIjN0Z5J+9uJDkW2NMiGQq//TBqKQZVl9Q==}
+ '@embroider/compat@4.1.0':
+ resolution: {integrity: sha512-7pqXS+uK/ovhVfFBqmPzeMfdbLI4f/LCOhjdghYJGBxb40IG49BuXgjBQr2cOofU0/ItbQISZd0Ksl0JU4Eu5w==}
engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
- '@embroider/core': ^4.0.0-alpha.9
+ '@embroider/core': ^4.1.0
'@embroider/config-meta-loader@1.0.0':
resolution: {integrity: sha512-qznkdjgEGPe6NM94hZNXvOm/WhrJwBh8FtSQZ+nGjh9TOjY42tOiTEevFuM0onNXUn6bpdGzmjwKo2xY2jxQxQ==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/core@3.5.6':
- resolution: {integrity: sha512-yCTed4fjX4ZK3baFN4qay8zvER6MB75peCHN0WxfxX4esK/Lgjh8aANLYPsZ/7kmSlKcq4qYnBmBD7peIMh6dA==}
+ '@embroider/core@3.5.7':
+ resolution: {integrity: sha512-0oytko2+iaYS31TG9Axj7Py0e0FAccUhu9J1h7ldEnQegK+Eu5+OINU0dYQgt0ijp6f2yF4+o3J7u9CJCLZ1gw==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/core@4.0.2':
- resolution: {integrity: sha512-ht7wXUKaDI4FrMiQ+yYOnao1oJIPMJnpj4xrMINa7YCTi8G7WFs5o+exIQ//h2UmsqU0IgyiV5rHv/eOnpMvfQ==}
+ '@embroider/core@4.1.1':
+ resolution: {integrity: sha512-ds4Bf+ORxmcVjVQy6mUQHRHpioF79MdFJ5AyVK5wmz7Cn7omwYfsLSmM1kZZtQfcDgQqOI7Kf/Z4jKwBdFD2Vg==}
engines: {node: 12.* || 14.* || >= 16}
'@embroider/macros@1.16.13':
@@ -3111,17 +3384,8 @@ packages:
'@glint/template':
optional: true
- '@embroider/macros@1.17.0-alpha.7':
- resolution: {integrity: sha512-ggpBRjGRjmDTbm0AZkmPhAf7jc5c1Ru3fVLm5TJYfNn0ABgNdp6QVtFA3fYqbDnzziPwCgZ1BkdES+VxmK2zDw==}
- engines: {node: 12.* || 14.* || >= 16}
- peerDependencies:
- '@glint/template': ^1.0.0
- peerDependenciesMeta:
- '@glint/template':
- optional: true
-
- '@embroider/macros@1.17.2':
- resolution: {integrity: sha512-mgGdufPjL8MAzhYNN1QfHRCFQzv/KEcH9EmObn7y4QC4nPQAPcxEdR8xYZhgTLtKHaVfmN27rXKk+XI7jQAxAg==}
+ '@embroider/macros@1.18.0':
+ resolution: {integrity: sha512-KanP80XxNK4bmQ1HKTcUjy/cdCt9n7knPMLK1vzHdOFymACHo+GbhgUjXjYdOCuBTv+ZwcjL2P2XDmBcYS9r8g==}
engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
'@glint/template': ^1.0.0
@@ -3148,12 +3412,12 @@ packages:
resolution: {integrity: sha512-8untWEvGy6av/oYibqZWMz/yB+LHsKxEOoUZiLvcpFwWj2Sipc0DcXeTJQZQZ++otNkLCWyDrDhOLrOkgjOPSg==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/shared-internals@3.0.0':
- resolution: {integrity: sha512-5J5ipUMCAinQS38WW7wedruq5Z4VnHvNo+ZgOduw0PtI9w0CQWx7/HE+98PBDW8jclikeF+aHwF317vc1hwuzg==}
+ '@embroider/shared-internals@2.9.1':
+ resolution: {integrity: sha512-8PJBsa37GD++SAfHf8rcJzlwDwuAQCBo0fr+eGxg9l8XhBXsTnE/7706dM4OqWew9XNqRXn39wfIGHZoBpjNMw==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/shared-internals@3.0.0-alpha.5':
- resolution: {integrity: sha512-qXTHPlL3WACyMYrJJKnmY03I7U+E/NtT5145b5+VyGwWaN7Bekq0sY8CW9Dt6P/XqreTv8ustVCSANpujtkDLw==}
+ '@embroider/shared-internals@3.0.0':
+ resolution: {integrity: sha512-5J5ipUMCAinQS38WW7wedruq5Z4VnHvNo+ZgOduw0PtI9w0CQWx7/HE+98PBDW8jclikeF+aHwF317vc1hwuzg==}
engines: {node: 12.* || 14.* || >= 16}
'@embroider/test-setup@4.0.0':
@@ -3171,23 +3435,10 @@ packages:
'@embroider/webpack':
optional: true
- '@embroider/util@1.14.0-alpha.2':
- resolution: {integrity: sha512-WUKPEd4ojF7Htqf/ReKOmghSUzWEu4k97tY9HEJHuUYkytn8Uqobjs5laRZ4olgLoI2Ev9Jtp6cb+agcOAFzvQ==}
- engines: {node: 12.* || 14.* || >= 16}
- peerDependencies:
- '@glint/environment-ember-loose': 1.4.1-unstable.0e0d936
- '@glint/template': ^1.0.0
- ember-source: '>= 6.4.0-alpha.3'
- peerDependenciesMeta:
- '@glint/environment-ember-loose':
- optional: true
- '@glint/template':
- optional: true
-
- '@embroider/vite@1.1.0':
- resolution: {integrity: sha512-rcRZNQecZ8l9JRGmCQ7SHFbmxVvb/GfEYX9fw6M8C9qz2pXRtQAZVWtHXCjVqbMV2K3av+ynswfwcZ0Qs47VHA==}
+ '@embroider/vite@1.1.5':
+ resolution: {integrity: sha512-PGN4FgPlmHw19Hj/VcAwuJa2fECZ4ZLreMcryWgNuplt+PEMpse2+r4TeCacuLFNwhSV4H4Gne0/izbmvg4i0A==}
peerDependencies:
- '@embroider/core': ^4.0.2
+ '@embroider/core': ^4.1.0
vite: '>= 5.2.0'
'@emnapi/core@1.4.3':
@@ -3199,296 +3450,158 @@ packages:
'@emnapi/wasi-threads@1.0.2':
resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.25.3':
- resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
+ '@esbuild/aix-ppc64@0.25.5':
+ resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.25.3':
- resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
+ '@esbuild/android-arm64@0.25.5':
+ resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.25.3':
- resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
+ '@esbuild/android-arm@0.25.5':
+ resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.25.3':
- resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
+ '@esbuild/android-x64@0.25.5':
+ resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.25.3':
- resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
+ '@esbuild/darwin-arm64@0.25.5':
+ resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.25.3':
- resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
+ '@esbuild/darwin-x64@0.25.5':
+ resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.25.3':
- resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
+ '@esbuild/freebsd-arm64@0.25.5':
+ resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==}
engines: {node: '>=18'}
cpu: [arm64]
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/freebsd-x64@0.25.3':
- resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
+ '@esbuild/freebsd-x64@0.25.5':
+ resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.25.3':
- resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
+ '@esbuild/linux-arm64@0.25.5':
+ resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.25.3':
- resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
+ '@esbuild/linux-arm@0.25.5':
+ resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.25.3':
- resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
+ '@esbuild/linux-ia32@0.25.5':
+ resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==}
engines: {node: '>=18'}
cpu: [ia32]
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-loong64@0.25.3':
- resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
+ '@esbuild/linux-loong64@0.25.5':
+ resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.25.3':
- resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
+ '@esbuild/linux-mips64el@0.25.5':
+ resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==}
engines: {node: '>=18'}
cpu: [mips64el]
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-ppc64@0.25.3':
- resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
+ '@esbuild/linux-ppc64@0.25.5':
+ resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.25.3':
- resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
+ '@esbuild/linux-riscv64@0.25.5':
+ resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.25.3':
- resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
+ '@esbuild/linux-s390x@0.25.5':
+ resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.25.3':
- resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
+ '@esbuild/linux-x64@0.25.5':
+ resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.3':
- resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
+ '@esbuild/netbsd-arm64@0.25.5':
+ resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.25.3':
- resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
+ '@esbuild/netbsd-x64@0.25.5':
+ resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.3':
- resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
+ '@esbuild/openbsd-arm64@0.25.5':
+ resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.25.3':
- resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
+ '@esbuild/openbsd-x64@0.25.5':
+ resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.25.3':
- resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
+ '@esbuild/sunos-x64@0.25.5':
+ resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.25.3':
- resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
+ '@esbuild/win32-arm64@0.25.5':
+ resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==}
engines: {node: '>=18'}
cpu: [arm64]
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-ia32@0.25.3':
- resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
+ '@esbuild/win32-ia32@0.25.5':
+ resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.25.3':
- resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
+ '@esbuild/win32-x64@0.25.5':
+ resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.6.1':
- resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==}
+ '@eslint-community/eslint-utils@4.7.0':
+ resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -3497,50 +3610,52 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.20.0':
- resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
+ '@eslint/config-array@0.20.1':
+ resolution: {integrity: sha512-OL0RJzC/CBzli0DrrR31qzj6d6i6Mm3HByuhflhl4LOBiWxN+3i6/t/ZQQNii4tjksXi8r2CRW1wMpWA2ULUEw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.2.2':
- resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==}
+ '@eslint/config-helpers@0.2.3':
+ resolution: {integrity: sha512-u180qk2Um1le4yf0ruXH3PYFeEZeYC3p/4wCTKrr2U1CmGdzGi3KtY0nuPDH48UJxlKCC5RDzbcbh4X0XlqgHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.13.0':
- resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
+ '@eslint/core@0.14.0':
+ resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/core@0.15.1':
+ resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.25.1':
- resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
+ '@eslint/js@9.29.0':
+ resolution: {integrity: sha512-3PIF4cBw/y+1u2EazflInpV+lYsSG0aByVIQzAgb1m1MhHFSbqTyNqtBKHgWf/9Ykud+DhILS9EGkmekVhbKoQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.8':
- resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
+ '@eslint/plugin-kit@0.3.3':
+ resolution: {integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@floating-ui/core@1.6.9':
- resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.7.2':
+ resolution: {integrity: sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw==}
- '@floating-ui/dom@1.6.13':
- resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.7.2':
+ resolution: {integrity: sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA==}
- '@floating-ui/utils@0.2.9':
- resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
+ '@floating-ui/utils@0.2.10':
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
- '@fortawesome/ember-fontawesome@3.0.0':
- resolution: {integrity: sha512-g77bfD6/jzHfjXvoM1mwDC08OlU48F+AWwiL3iM8uCPxmW4zMQPT5cM5LIc6O2c9a1G+5PFM8qmPQ4Y3sTB2ZQ==}
+ '@fortawesome/ember-fontawesome@3.0.1':
+ resolution: {integrity: sha512-TaCrlNjide9HMrZqpzX6A0KFF4FIoi0YpDZw/WhC9Usv8znmMrOQxswhiJAGn8aVuKup7BtNwK18C9Bw3tQHBA==}
peerDependencies:
'@fortawesome/fontawesome-svg-core': ^6.6.0
'@glimmer/component': ^2.0.0
- '@glimmer/tracking': ^1.1.2
- ember-source: '>= 6.4.0-alpha.3'
'@fortawesome/fontawesome-common-types@6.7.2':
resolution: {integrity: sha512-Zs+YeHUC5fkt7Mg1l6XTniei3k4bwG/yo3iFUtZWd/pMx9g3fdvkSK9E0FOC+++phXOka78uJcYb8JaFkW52Xg==}
@@ -3565,8 +3680,8 @@ packages:
'@gar/promisify@1.1.3':
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
- '@gerrit0/mini-shiki@3.3.0':
- resolution: {integrity: sha512-frvArO0+s5Viq68uSod5SieLPVM2cLpXoQ1e07lURwgADXpL/MOypM7jPz9otks0g2DIe2YedDAeVrDyYJZRxA==}
+ '@gerrit0/mini-shiki@3.7.0':
+ resolution: {integrity: sha512-7iY9wg4FWXmeoFJpUL2u+tsmh0d0jcEJHAIzVxl3TG4KL493JNnisdLAILZ77zcD+z3J0keEXZ+lFzUgzQzPDg==}
'@glimmer/compiler@0.94.10':
resolution: {integrity: sha512-SrWiaKM3AND2FQ732wtjAKol7XhCnRqit3tJShG4X0mT27Jb3zuhTI2dkfYVVMTJ23pjT/+0y+s/uGaBSirnBg==}
@@ -3633,9 +3748,6 @@ packages:
'@glimmer/syntax@0.94.9':
resolution: {integrity: sha512-OBw8DqMzKO4LX4kJBhwfTUqtpbd7O9amQXNTfb1aS7pufio5Vu5Qi6mRTfdFj6RyJ//aSI/l0kxWt6beYW0Apg==}
- '@glimmer/tracking@1.1.2':
- resolution: {integrity: sha512-cyV32zsHh+CnftuRX84ALZpd2rpbDrhLhJnTXn9W//QpqdRZ5rdMsxSY9fOsj0CKEc706tmEU299oNnDc0d7tA==}
-
'@glimmer/util@0.84.3':
resolution: {integrity: sha512-qFkh6s16ZSRuu2rfz3T4Wp0fylFj3HBsONGXQcrAdZjdUaIS6v3pNj6mecJ71qRgcym9Hbaq/7/fefIwECUiKw==}
@@ -3645,9 +3757,6 @@ packages:
'@glimmer/util@0.94.8':
resolution: {integrity: sha512-HfCKeZ74clF9BsPDBOqK/yRNa/ke6niXFPM6zRn9OVYw+ZAidLs7V8He/xljUHlLRL322kaZZY8XxRW7ALEwyg==}
- '@glimmer/validator@0.44.0':
- resolution: {integrity: sha512-i01plR0EgFVz69GDrEuFgq1NheIjZcyTy3c7q+w7d096ddPVeVcRzU3LKaqCfovvLJ+6lJx40j45ecycASUUyw==}
-
'@glimmer/validator@0.84.3':
resolution: {integrity: sha512-RTBV4TokUB0vI31UC7ikpV7lOYpWUlyqaKV//pRC4pexYMlmqnVhkFrdiimB/R1XyNdUOQUmnIAcdic39NkbhQ==}
@@ -3667,61 +3776,38 @@ packages:
'@glimmer/wire-format@0.94.8':
resolution: {integrity: sha512-A+Cp5m6vZMAEu0Kg/YwU2dJZXyYxVJs2zI57d3CP6NctmX7FsT8WjViiRUmt5abVmMmRH5b8BUovqY6GSMAdrw==}
- '@glint/core@1.4.1-unstable.0e0d936':
- resolution: {integrity: sha512-oLX8VqgSu+BeDnVNYuVkvQwPkkxuyGJOwKRh1pgldUsIgjKfiQWJ6j7tQvsGo/TMTvv1BMIyNg74D4NYg0Jmeg==}
+ '@glint/core@2.0.0-alpha.2':
+ resolution: {integrity: sha512-380+A50bS3JZUjRJmoEjLansQRPvNPTMzT3mtsBuDw3XegjDTM24TqWZcTWBQ5/QsuqGmMX+GRHgZoEipJo+tA==}
hasBin: true
peerDependencies:
typescript: '>=5.6.0'
- '@glint/environment-ember-loose@1.4.1-unstable.0e0d936':
- resolution: {integrity: sha512-+g/gUVCFxSjGM7VWVxRTXhAJz8y07gjF69YOJVQeh8B7b2H/tHF2oYEpR23yhk0+1NfcmkS1J6vs8lgo5IrIsA==}
+ '@glint/environment-ember-loose@2.0.0-alpha.2':
+ resolution: {integrity: sha512-cehHQpB1IZpwec+koTzmONdby2EMCNZH47zyCLHbK+wxAiUT7oPWVFTIoDBLmOkfK0oCfqyW6MxgzZg2ksO7ug==}
peerDependencies:
'@glimmer/component': ^2.0.0
- '@glint/template': 1.4.1-unstable.0e0d936
- '@types/ember__array': ^4.0.2
- '@types/ember__component': ^4.0.10
- '@types/ember__controller': ^4.0.2
- '@types/ember__object': ^4.0.4
- '@types/ember__routing': ^4.0.11
+ '@glint/core': '*'
+ '@glint/template': '*'
ember-cli-htmlbars: ^6.0.1
ember-modifier: ^3.2.7 || ^4.0.0
peerDependenciesMeta:
- '@types/ember__array':
- optional: true
- '@types/ember__component':
- optional: true
- '@types/ember__controller':
- optional: true
- '@types/ember__object':
- optional: true
- '@types/ember__routing':
- optional: true
ember-cli-htmlbars:
optional: true
ember-modifier:
optional: true
- '@glint/environment-ember-template-imports@1.4.1-unstable.0e0d936':
- resolution: {integrity: sha512-5qGGqvnoaL83iyHn7f5ZMxC1ytwFUh6DmD/iXIbimka358WFyrvH7NVSGjp7B/Y0fPJSsDYzBiTpT5IB7qMTAw==}
+ '@glint/environment-ember-template-imports@2.0.0-alpha.2':
+ resolution: {integrity: sha512-+TfRtImWCG1uXYyRaO+vgElb1ZtP1VErMNAMH67K08jBysOhYIETow2wtHVzVXDtWIX5QfPAeuJeK0CpT1/pQw==}
peerDependencies:
- '@glint/environment-ember-loose': 1.4.1-unstable.0e0d936
- '@glint/template': 1.4.1-unstable.0e0d936
- '@types/ember__component': ^4.0.10
- '@types/ember__helper': ^4.0.1
- '@types/ember__modifier': ^4.0.3
- '@types/ember__routing': ^4.0.12
- peerDependenciesMeta:
- '@types/ember__component':
- optional: true
- '@types/ember__helper':
- optional: true
- '@types/ember__modifier':
- optional: true
- '@types/ember__routing':
- optional: true
+ '@glint/core': '*'
+ '@glint/environment-ember-loose': '*'
+ '@glint/template': '*'
- '@glint/template@1.4.1-unstable.0e0d936':
- resolution: {integrity: sha512-0tCMEqV3Gw8RwwGet/DYZuaxov0Fnv7m47xnHw5KXygmcXakEMD0XwdgJZsuThdfG74FLB/Tvj688hnuWP1FUg==}
+ '@glint/template@1.5.2':
+ resolution: {integrity: sha512-fA9FoHCmWsWkoOKWshsOQlS0WCAM7NwwoaeSTHuz5yHvBZmmtkgx3t2SPOTJs85/hWTNVzYC/Gthw7xDUR3BlQ==}
+
+ '@glint/tsserver-plugin@2.0.0-alpha.2':
+ resolution: {integrity: sha512-VY8RL+0/ZjJ1/TePztKuiCbRbSJRo3n0PlytLaaFJ5OnfjrXePmsLIWqLK1XmiSpLWM3b8gof8e5nxNgeKhk9w==}
'@handlebars/parser@2.0.0':
resolution: {integrity: sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA==}
@@ -3742,12 +3828,27 @@ packages:
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
- '@humanwhocodes/retry@0.4.2':
- resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
- '@inquirer/figures@1.0.11':
- resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
+ '@iconify-json/devicon@1.2.29':
+ resolution: {integrity: sha512-TXQD2J/A9XDegvL1dQMWFl3bUb7HBMomFCLpHYns4J8yfBy536Bm/uVGqcNIw/a5nZzkxh62Nb/JR2J1Uo4yMw==}
+
+ '@iconify-json/mdi@1.2.3':
+ resolution: {integrity: sha512-O3cLwbDOK7NNDf2ihaQOH5F9JglnulNDFV7WprU2dSoZu3h3cWH//h74uQAB87brHmvFVxIOkuBX2sZSzYhScg==}
+
+ '@iconify-json/vscode-icons@1.2.23':
+ resolution: {integrity: sha512-gFTcKecKra2/b5SbGDgHGI/l8CuikHyBPmqGlK+YCmS8AK72dtDQbUekdoACsju/3TYS37QvdPoOQwnyx2LdYg==}
+
+ '@iconify/types@2.0.0':
+ resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+
+ '@iconify/utils@2.3.0':
+ resolution: {integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==}
+
+ '@inquirer/figures@1.0.12':
+ resolution: {integrity: sha512-MJttijd8rMFcKJC8NYmprWr6hD3r9Gd9qUC0XwPNwoEPWSMVJwA2MlXxF+nhZZNMY+HXsWa+o7KY2emWYIn0jQ==}
engines: {node: '>=18'}
'@isaacs/cliui@8.0.2':
@@ -3781,15 +3882,15 @@ packages:
'@lezer/cpp@1.1.3':
resolution: {integrity: sha512-ykYvuFQKGsRi6IcE+/hCSGUhb/I4WPjd3ELhEblm2wS2cOznDFzO+ubK2c+ioysOnlZ3EduV+MVQFCPzAIoY3w==}
- '@lezer/css@1.1.11':
- resolution: {integrity: sha512-FuAnusbLBl1SEAtfN8NdShxYJiESKw9LAFysfea1T96jD3ydBn12oYjaSG1a04BQRIUd93/0D8e5CV1cUMkmQg==}
+ '@lezer/css@1.2.1':
+ resolution: {integrity: sha512-2F5tOqzKEKbCUNraIXc0f6HKeyKlmMWJnBB0i4XW6dJgssrZO/YlZ2pY5xgyqDleqqhiNJ3dQhbrV2aClZQMvg==}
- '@lezer/generator@1.7.3':
- resolution: {integrity: sha512-vAI2O1tPF8QMMgp+bdUeeJCneJNkOZvqsrtyb4ohnFVFdboSqPwBEacnt0HH4E+5h+qsIwTHUSAhffU4hzKl1A==}
+ '@lezer/generator@1.8.0':
+ resolution: {integrity: sha512-/SF4EDWowPqV1jOgoGSGTIFsE7Ezdr7ZYxyihl5eMKVO5tlnpIhFcDavgm1hHY5GEonoOAEnJ0CU0x+tvuAuUg==}
hasBin: true
- '@lezer/go@1.0.0':
- resolution: {integrity: sha512-co9JfT3QqX1YkrMmourYw2Z8meGC50Ko4d54QEcQbEYpvdUvN4yb0NBZdn/9ertgvjsySxHsKzH3lbm3vqJ4Jw==}
+ '@lezer/go@1.0.1':
+ resolution: {integrity: sha512-xToRsYxwsgJNHTgNdStpcvmbVuKxTapV0dM0wey1geMMRc9aggoVyKgzYp41D2/vVOx+Ii4hmE206kvxIXBVXQ==}
'@lezer/highlight@1.2.1':
resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
@@ -3821,8 +3922,8 @@ packages:
'@lezer/rust@1.0.2':
resolution: {integrity: sha512-Lz5sIPBdF2FUXcWeCu1//ojFAZqzTQNRga0aYv6dYXqJqPfMdCAI0NzajWUd4Xijj1IKJLtjoXRPMvTKWBcqKg==}
- '@lezer/sass@1.0.7':
- resolution: {integrity: sha512-8HLlOkuX/SMHOggI2DAsXUw38TuURe+3eQ5hiuk9QmYOUyC55B1dYEIMkav5A4IELVaW4e1T4P9WRiI5ka4mdw==}
+ '@lezer/sass@1.1.0':
+ resolution: {integrity: sha512-3mMGdCTUZ/84ArHOuXWQr37pnf7f+Nw9ycPUeKX+wu19b7pSMcZGLbaXwvD2APMBDOGxPmpK/O6S1v1EvLoqgQ==}
'@lezer/xml@1.0.6':
resolution: {integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==}
@@ -3859,8 +3960,24 @@ packages:
'@mdn/browser-compat-data@5.7.6':
resolution: {integrity: sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg==}
- '@napi-rs/wasm-runtime@0.2.9':
- resolution: {integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==}
+ '@mermaid-js/parser@0.5.0':
+ resolution: {integrity: sha512-AiaN7+VjXC+3BYE+GwNezkpjIcCI2qIMB/K4S2/vMWe0q/XJCBbx5+K7iteuz7VyltX9iAK4FmVTvGc9kjOV4w==}
+
+ '@microsoft/api-extractor-model@7.30.6':
+ resolution: {integrity: sha512-znmFn69wf/AIrwHya3fxX6uB5etSIn6vg4Q4RB/tb5VDDs1rqREc+AvMC/p19MUN13CZ7+V/8pkYPTj7q8tftg==}
+
+ '@microsoft/api-extractor@7.52.8':
+ resolution: {integrity: sha512-cszYIcjiNscDoMB1CIKZ3My61+JOhpERGlGr54i6bocvGLrcL/wo9o+RNXMBrb7XgLtKaizZWUpqRduQuHQLdg==}
+ hasBin: true
+
+ '@microsoft/tsdoc-config@0.17.1':
+ resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==}
+
+ '@microsoft/tsdoc@0.15.1':
+ resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
+
+ '@napi-rs/wasm-runtime@0.2.11':
+ resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==}
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
@@ -3992,8 +4109,8 @@ packages:
resolution: {integrity: sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@npmcli/package-json@6.1.1':
- resolution: {integrity: sha512-d5qimadRAUCO4A/Txw71VM7UrRZzV+NPclxz/dc+M6B2oYwjWTjqh8HA/sGQgs9VZuJ6I/P7XIAlJvgrl27ZOw==}
+ '@npmcli/package-json@6.2.0':
+ resolution: {integrity: sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA==}
engines: {node: ^18.17.0 || >=20.5.0}
'@npmcli/promise-spawn@7.0.2':
@@ -4057,8 +4174,8 @@ packages:
'@octokit/openapi-types@24.2.0':
resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==}
- '@octokit/openapi-types@25.0.0':
- resolution: {integrity: sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==}
+ '@octokit/openapi-types@25.1.0':
+ resolution: {integrity: sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA==}
'@octokit/plugin-paginate-rest@11.6.0':
resolution: {integrity: sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==}
@@ -4082,8 +4199,8 @@ packages:
resolution: {integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==}
engines: {node: '>= 18'}
- '@octokit/request@9.2.3':
- resolution: {integrity: sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==}
+ '@octokit/request@9.2.4':
+ resolution: {integrity: sha512-q8ybdytBmxa6KogWlNa818r0k1wlqzNC+yNkcQDECHvQo8Vmstrg18JwqJHdJdUiHD2sjlwBgSm9kHkOKe2iyA==}
engines: {node: '>= 18'}
'@octokit/rest@21.1.1':
@@ -4093,8 +4210,8 @@ packages:
'@octokit/types@13.10.0':
resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
- '@octokit/types@14.0.0':
- resolution: {integrity: sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==}
+ '@octokit/types@14.1.0':
+ resolution: {integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==}
'@open-rpc/client-js@1.8.1':
resolution: {integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==}
@@ -4107,16 +4224,16 @@ packages:
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
engines: {node: '>=12.22.0'}
- '@pnpm/constants@10.0.0':
- resolution: {integrity: sha512-dxIXcW1F1dxIGfye2JXE7Q8WVwYB0axVzdBOkvE1WKIVR4xjB8e6k/Dkjo7DpbyfW5Vu2k21p6dyM32YLSAWoQ==}
+ '@pnpm/constants@1001.1.0':
+ resolution: {integrity: sha512-xb9dfSGi1qfUKY3r4Zy9JdC9+ZeaDxwfE7HrrGIEsBVY1hvIn6ntbR7A97z3nk44yX7vwbINNf9sizTp0WEtEw==}
engines: {node: '>=18.12'}
- '@pnpm/error@6.0.3':
- resolution: {integrity: sha512-OIYhG7HQh4zUFh2s8/6bp7glVRjNxms7bpzXVOLV7pyRa+rSYFmqJ8zDsBC64k58nuaxS85Ip+SCDjFxsFGeOg==}
+ '@pnpm/error@1000.0.2':
+ resolution: {integrity: sha512-2SfE4FFL73rE1WVIoESbqlj4sLy5nWW4M/RVdHvCRJPjlQHa9MH7m7CVJM204lz6I+eHoB+E7rL3zmpJR5wYnQ==}
engines: {node: '>=18.12'}
- '@pnpm/find-workspace-dir@7.0.3':
- resolution: {integrity: sha512-eGjkyHSufkHyZ66WpygWnslcRePB0U1lJg1dF3rgWqTChpregYoDyNGDzK7l9Gk+CHVgGZZS5aWp7uKKVmAAEg==}
+ '@pnpm/find-workspace-dir@1000.1.0':
+ resolution: {integrity: sha512-K5iG/z0SLV6bVW1jIYvbNBI6vWAD6ETJKyWj/wwHr7hxloxtm9xJCGbe/41pmM9nfFFUPbr1Z0YOi4q9yWkj6g==}
engines: {node: '>=18.12'}
'@pnpm/network.ca-file@1.0.2':
@@ -4127,11 +4244,41 @@ packages:
resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
+ '@polka/url@1.0.0-next.29':
+ resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
+
'@prettier/sync@0.2.1':
resolution: {integrity: sha512-7ls1R6//+GPYD9vof1XaL5psViv83CwpdwlS8oUkWldYgbPhzZ3WgxIQMWqGyBmWPmoBfQg8C7jj7KI/ZuDHhQ==}
peerDependencies:
prettier: ^3.0.0
+ '@promptbook/utils@0.69.5':
+ resolution: {integrity: sha512-xm5Ti/Hp3o4xHrsK9Yy3MS6KbDxYbq485hDsFvxqaNA7equHLPdo8H8faTitTeb14QCDfLW4iwCxdVYu5sn6YQ==}
+
+ '@publint/pack@0.1.2':
+ resolution: {integrity: sha512-S+9ANAvUmjutrshV4jZjaiG8XQyuJIZ8a4utWmN/vW1sgQ9IfBnPndwkmQYw53QmouOIytT874u65HEmu6H5jw==}
+ engines: {node: '>=18'}
+
+ '@puppeteer/browsers@2.10.5':
+ resolution: {integrity: sha512-eifa0o+i8dERnngJwKrfp3dEq7ia5XFyoqB17S4gK8GhsQE4/P8nxOfQSE0zQHxzzLo/cmF+7+ywEQ7wK7Fb+w==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ '@replit/codemirror-lang-svelte@6.0.0':
+ resolution: {integrity: sha512-U2OqqgMM6jKelL0GNWbAmqlu1S078zZNoBqlJBW+retTc5M4Mha6/Y2cf4SVg6ddgloJvmcSpt4hHrVoM4ePRA==}
+ peerDependencies:
+ '@codemirror/autocomplete': ^6.0.0
+ '@codemirror/lang-css': ^6.0.1
+ '@codemirror/lang-html': ^6.2.0
+ '@codemirror/lang-javascript': ^6.1.1
+ '@codemirror/language': ^6.0.0
+ '@codemirror/state': ^6.0.0
+ '@codemirror/view': ^6.0.0
+ '@lezer/common': ^1.0.0
+ '@lezer/highlight': ^1.0.0
+ '@lezer/javascript': ^1.2.0
+ '@lezer/lr': ^1.0.0
+
'@rollup/plugin-babel@6.0.4':
resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==}
engines: {node: '>=14.0.0'}
@@ -4145,8 +4292,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@28.0.3':
- resolution: {integrity: sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==}
+ '@rollup/plugin-commonjs@28.0.6':
+ resolution: {integrity: sha512-XSQB1K7FUU5QP+3lOQmVCE3I0FcbbNvmNT4VJSj93iUjayaARrTQeoRdiYQoftAJBLrR9t2agwAd3ekaTgHNlw==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -4176,8 +4323,8 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rollup/pluginutils@5.1.4':
- resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+ '@rollup/pluginutils@5.2.0':
+ resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -4185,144 +4332,177 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.1':
- resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
+ '@rollup/rollup-android-arm-eabi@4.44.0':
+ resolution: {integrity: sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.1':
- resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
+ '@rollup/rollup-android-arm64@4.44.0':
+ resolution: {integrity: sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.1':
- resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
+ '@rollup/rollup-darwin-arm64@4.44.0':
+ resolution: {integrity: sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.1':
- resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
+ '@rollup/rollup-darwin-x64@4.44.0':
+ resolution: {integrity: sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.1':
- resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
+ '@rollup/rollup-freebsd-arm64@4.44.0':
+ resolution: {integrity: sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.1':
- resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
+ '@rollup/rollup-freebsd-x64@4.44.0':
+ resolution: {integrity: sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
- resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.44.0':
+ resolution: {integrity: sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
- resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.44.0':
+ resolution: {integrity: sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
- resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
+ '@rollup/rollup-linux-arm64-gnu@4.44.0':
+ resolution: {integrity: sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.1':
- resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
+ '@rollup/rollup-linux-arm64-musl@4.44.0':
+ resolution: {integrity: sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
- resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.44.0':
+ resolution: {integrity: sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
- resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.44.0':
+ resolution: {integrity: sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
- resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.44.0':
+ resolution: {integrity: sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
- resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
+ '@rollup/rollup-linux-riscv64-musl@4.44.0':
+ resolution: {integrity: sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
- resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
+ '@rollup/rollup-linux-s390x-gnu@4.44.0':
+ resolution: {integrity: sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.1':
- resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
+ '@rollup/rollup-linux-x64-gnu@4.40.0':
+ resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.44.0':
+ resolution: {integrity: sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.1':
- resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
+ '@rollup/rollup-linux-x64-musl@4.44.0':
+ resolution: {integrity: sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
- resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
+ '@rollup/rollup-win32-arm64-msvc@4.44.0':
+ resolution: {integrity: sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
- resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
+ '@rollup/rollup-win32-ia32-msvc@4.44.0':
+ resolution: {integrity: sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.1':
- resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
+ '@rollup/rollup-win32-x64-msvc@4.44.0':
+ resolution: {integrity: sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==}
cpu: [x64]
os: [win32]
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+ '@rushstack/node-core-library@5.13.1':
+ resolution: {integrity: sha512-5yXhzPFGEkVc9Fu92wsNJ9jlvdwz4RNb2bMso+/+TH0nMm1jDDDsOIf4l8GAkPxGuwPw5DH24RliWVfSPhlW/Q==}
+ peerDependencies:
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@rushstack/rig-package@0.5.3':
+ resolution: {integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==}
+
+ '@rushstack/terminal@0.15.3':
+ resolution: {integrity: sha512-DGJ0B2Vm69468kZCJkPj3AH5nN+nR9SPmC0rFHtzsS4lBQ7/dgOwtwVxYP7W9JPDMuRBkJ4KHmWKr036eJsj9g==}
+ peerDependencies:
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@rushstack/ts-command-line@5.0.1':
+ resolution: {integrity: sha512-bsbUucn41UXrQK7wgM8CNM/jagBytEyJqXw/umtI8d68vFm1Jwxh1OtLrlW7uGZgjCWiiPH6ooUNa1aVsuVr3Q==}
+
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
'@shikijs/core@1.29.2':
resolution: {integrity: sha512-vju0lY9r27jJfOY4Z7+Rt/nIOjzJpZ3y+nYpqtUZInVoXQ/TJZcfGnNOGnKjFdVZb8qexiCuSlZRKcGfhhTTZQ==}
+ '@shikijs/core@3.7.0':
+ resolution: {integrity: sha512-yilc0S9HvTPyahHpcum8eonYrQtmGTU0lbtwxhA6jHv4Bm1cAdlPFRCJX4AHebkCm75aKTjjRAW+DezqD1b/cg==}
+
'@shikijs/engine-javascript@1.29.2':
resolution: {integrity: sha512-iNEZv4IrLYPv64Q6k7EPpOCE/nuvGiKl7zxdq0WFuRPF5PAE9PRo2JGq/d8crLusM59BRemJ4eOqrFrC4wiQ+A==}
+ '@shikijs/engine-javascript@3.7.0':
+ resolution: {integrity: sha512-0t17s03Cbv+ZcUvv+y33GtX75WBLQELgNdVghnsdhTgU3hVcWcMsoP6Lb0nDTl95ZJfbP1mVMO0p3byVh3uuzA==}
+
'@shikijs/engine-oniguruma@1.29.2':
resolution: {integrity: sha512-7iiOx3SG8+g1MnlzZVDYiaeHe7Ez2Kf2HrJzdmGwkRisT7r4rak0e655AcM/tF9JG/kg5fMNYlLLKglbN7gBqA==}
- '@shikijs/engine-oniguruma@3.3.0':
- resolution: {integrity: sha512-l0vIw+GxeNU7uGnsu6B+Crpeqf+WTQ2Va71cHb5ZYWEVEPdfYwY5kXwYqRJwHrxz9WH+pjSpXQz+TJgAsrkA5A==}
+ '@shikijs/engine-oniguruma@3.7.0':
+ resolution: {integrity: sha512-5BxcD6LjVWsGu4xyaBC5bu8LdNgPCVBnAkWTtOCs/CZxcB22L8rcoWfv7Hh/3WooVjBZmFtyxhgvkQFedPGnFw==}
'@shikijs/langs@1.29.2':
resolution: {integrity: sha512-FIBA7N3LZ+223U7cJDUYd5shmciFQlYkFXlkKVaHsCPgfVLiO+e12FmQE6Tf9vuyEsFe3dIl8qGWKXgEHL9wmQ==}
- '@shikijs/langs@3.3.0':
- resolution: {integrity: sha512-zt6Kf/7XpBQKSI9eqku+arLkAcDQ3NHJO6zFjiChI8w0Oz6Jjjay7pToottjQGjSDCFk++R85643WbyINcuL+g==}
+ '@shikijs/langs@3.7.0':
+ resolution: {integrity: sha512-1zYtdfXLr9xDKLTGy5kb7O0zDQsxXiIsw1iIBcNOO8Yi5/Y1qDbJ+0VsFoqTlzdmneO8Ij35g7QKF8kcLyznCQ==}
- '@shikijs/rehype@1.29.2':
- resolution: {integrity: sha512-sxi53HZe5XDz0s2UqF+BVN/kgHPMS9l6dcacM4Ra3ZDzCJa5rDGJ+Ukpk4LxdD1+MITBM6hoLbPfGv9StV8a5Q==}
+ '@shikijs/rehype@3.7.0':
+ resolution: {integrity: sha512-YjAZxhQnBXE8ehppKGzuVGPoE4pjVsxqzkWhBZlkP495AjlR++MgfiRFcQfDt3qX5lK3gEDTcghB/8E3yNrWqQ==}
'@shikijs/themes@1.29.2':
resolution: {integrity: sha512-i9TNZlsq4uoyqSbluIcZkmPL9Bfi3djVxRnofUHwvx/h6SRW3cwgBC5SML7vsDcWyukY0eCzVN980rqP6qNl9g==}
- '@shikijs/themes@3.3.0':
- resolution: {integrity: sha512-tXeCvLXBnqq34B0YZUEaAD1lD4lmN6TOHAhnHacj4Owh7Ptb/rf5XCDeROZt2rEOk5yuka3OOW2zLqClV7/SOg==}
+ '@shikijs/themes@3.7.0':
+ resolution: {integrity: sha512-VJx8497iZPy5zLiiCTSIaOChIcKQwR0FebwE9S3rcN0+J/GTWwQ1v/bqhTbpbY3zybPKeO8wdammqkpXc4NVjQ==}
'@shikijs/types@1.29.2':
resolution: {integrity: sha512-VJjK0eIijTZf0QSTODEXCqinjBn0joAHQ+aPSBzrv4O2d/QSbsMw+ZeSRx03kV34Hy7NzUvV/7NqfYGRLrASmw==}
- '@shikijs/types@3.3.0':
- resolution: {integrity: sha512-KPCGnHG6k06QG/2pnYGbFtFvpVJmC3uIpXrAiPrawETifujPBv0Se2oUxm5qYgjCvGJS9InKvjytOdN+bGuX+Q==}
+ '@shikijs/types@3.7.0':
+ resolution: {integrity: sha512-MGaLeaRlSWpnP0XSAum3kP3a8vtcTsITqoEPYdt3lQG3YCdQH4DnEhodkYcNMcU0uW0RffhoD1O3e0vG5eSBBg==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -4376,6 +4556,11 @@ packages:
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
+ '@sveltejs/acorn-typescript@1.0.5':
+ resolution: {integrity: sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==}
+ peerDependencies:
+ acorn: ^8.9.0
+
'@szmarczak/http-timer@1.1.2':
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
@@ -4389,6 +4574,16 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
+ '@testing-library/dom@10.4.0':
+ resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
+ engines: {node: '>=18'}
+
+ '@testing-library/user-event@14.6.1':
+ resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==}
+ engines: {node: '>=12', npm: '>=6'}
+ peerDependencies:
+ '@testing-library/dom': '>=7.21.4'
+
'@timhall/ansi-colors@5.0.0':
resolution: {integrity: sha512-5K8ifVHWALiQgxCRkjLLBmWJxS5N6TNPKfsEfnRgmZrJd6udsDRGK3PddyeLingVlXAJ4CDxz443Chj4rTG6xw==}
@@ -4404,6 +4599,9 @@ packages:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
+ '@tootallnate/quickjs-emscripten@0.23.0':
+ resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
+
'@tsconfig/ember@3.0.10':
resolution: {integrity: sha512-qFIlJIMsn25frlp2WOtX/OxNxfsYeqM7OdSXB88vgvRqU9ElV3KpQc2EhmchoKpHoKB3oiLPIJNRuf5xcxjamw==}
@@ -4418,6 +4616,12 @@ packages:
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+ '@types/argparse@1.0.38':
+ resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
+
+ '@types/aria-query@5.0.4':
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
+
'@types/babel__code-frame@7.0.6':
resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==}
@@ -4436,8 +4640,8 @@ packages:
'@types/babel__traverse@7.20.7':
resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
- '@types/body-parser@1.19.5':
- resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+ '@types/body-parser@1.19.6':
+ resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
'@types/chai-as-promised@7.1.8':
resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==}
@@ -4445,6 +4649,9 @@ packages:
'@types/chai@4.3.20':
resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
'@types/codemirror@5.60.15':
resolution: {integrity: sha512-dTOvwEQ+ouKJ/rE9LT1Ue2hmP6H1mZv5+CCnNWu2qtiOe2LQa9lCprEY20HxiDmV/Bxh+dXjywmy5aKvoGjULA==}
@@ -4454,12 +4661,108 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/cors@2.8.17':
- resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
+ '@types/cors@2.8.19':
+ resolution: {integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==}
+
+ '@types/d3-array@3.2.1':
+ resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
+
+ '@types/d3-axis@3.0.6':
+ resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==}
+
+ '@types/d3-brush@3.0.6':
+ resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==}
+
+ '@types/d3-chord@3.0.6':
+ resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==}
+
+ '@types/d3-color@3.1.3':
+ resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
+
+ '@types/d3-contour@3.0.6':
+ resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==}
+
+ '@types/d3-delaunay@6.0.4':
+ resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==}
+
+ '@types/d3-dispatch@3.0.6':
+ resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==}
+
+ '@types/d3-drag@3.0.7':
+ resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
+
+ '@types/d3-dsv@3.0.7':
+ resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==}
+
+ '@types/d3-ease@3.0.2':
+ resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
+
+ '@types/d3-fetch@3.0.7':
+ resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==}
+
+ '@types/d3-force@3.0.10':
+ resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==}
+
+ '@types/d3-format@3.0.4':
+ resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==}
+
+ '@types/d3-geo@3.1.0':
+ resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==}
+
+ '@types/d3-hierarchy@3.1.7':
+ resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==}
+
+ '@types/d3-interpolate@3.0.4':
+ resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
+
+ '@types/d3-path@3.1.1':
+ resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
+
+ '@types/d3-polygon@3.0.2':
+ resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==}
+
+ '@types/d3-quadtree@3.0.6':
+ resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==}
+
+ '@types/d3-random@3.0.3':
+ resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==}
+
+ '@types/d3-scale-chromatic@3.1.0':
+ resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==}
+
+ '@types/d3-scale@4.0.9':
+ resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
+
+ '@types/d3-selection@3.0.11':
+ resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
+
+ '@types/d3-shape@3.1.7':
+ resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
+
+ '@types/d3-time-format@4.0.3':
+ resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==}
+
+ '@types/d3-time@3.0.4':
+ resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
+
+ '@types/d3-timer@3.0.2':
+ resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
+
+ '@types/d3-transition@3.0.9':
+ resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==}
+
+ '@types/d3-zoom@3.0.8':
+ resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==}
+
+ '@types/d3@7.4.3':
+ resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==}
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
'@types/dompurify@3.2.0':
resolution: {integrity: sha512-Fgg31wv9QbLDA0SpTOXO3MaxySc4DKGLi8sna4/Utjo4r3ZRPdCt4UQee8BWr+Q5z21yifghREPJGYaEOEIACg==}
deprecated: This is a stub types definition. dompurify provides its own type definitions, so you do not need this installed.
@@ -4473,14 +4776,14 @@ packages:
'@types/eslint@9.6.1':
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
- '@types/estree@1.0.7':
- resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express@4.17.21':
- resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+ '@types/express@4.17.23':
+ resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==}
'@types/fs-extra@5.1.0':
resolution: {integrity: sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ==}
@@ -4488,6 +4791,9 @@ packages:
'@types/fs-extra@8.1.5':
resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==}
+ '@types/geojson@7946.0.16':
+ resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==}
+
'@types/glob@7.2.0':
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
@@ -4506,8 +4812,8 @@ packages:
'@types/http-cache-semantics@4.0.4':
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
- '@types/http-errors@2.0.4':
- resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
+ '@types/http-errors@2.0.5':
+ resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -4549,8 +4855,11 @@ packages:
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- '@types/node@22.15.3':
- resolution: {integrity: sha512-lX7HFZeHf4QG/J7tBZqrCAXwz9J5RD56Y6MpP0eJkka8p+K0RY/yBTW7CYFJ4VGCclxqOLKmiGP5juQc6MKgcw==}
+ '@types/node@20.19.1':
+ resolution: {integrity: sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==}
+
+ '@types/node@24.0.4':
+ resolution: {integrity: sha512-ulyqAkrhnuNq9pB76DRBTkcS6YsmDALy6Ua63V8OhrOBgbcYt6IOdzpw5P1+dyRIyMerzLkeYWBeOXPpA9GMAA==}
'@types/object-path@0.11.4':
resolution: {integrity: sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==}
@@ -4561,8 +4870,8 @@ packages:
'@types/parse5@6.0.3':
resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
- '@types/qs@6.9.18':
- resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
+ '@types/qs@6.14.0':
+ resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
'@types/qunit@2.19.12':
resolution: {integrity: sha512-II+C1wgzUia0g+tGAH+PBb4XiTm8/C/i6sN23r21NNskBYOYrv+qnW0tFQ/IxZzKVwrK4CTglf8YO3poJUclQA==}
@@ -4585,11 +4894,14 @@ packages:
'@types/semver@7.7.0':
resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
- '@types/send@0.17.4':
- resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
+ '@types/send@0.17.5':
+ resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==}
- '@types/serve-static@1.15.7':
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
+ '@types/serve-static@1.15.8':
+ resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==}
+
+ '@types/sinonjs__fake-timers@8.1.5':
+ resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==}
'@types/symlink-or-copy@1.2.2':
resolution: {integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA==}
@@ -4612,214 +4924,327 @@ packages:
'@types/uuid@10.0.0':
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
+ '@types/which@2.0.2':
+ resolution: {integrity: sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw==}
+
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
+
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.31.1':
- resolution: {integrity: sha512-oUlH4h1ABavI4F0Xnl8/fOtML/eu8nI2A1nYd+f+55XI0BLu+RIqKoCiZKNo6DtqZBEQm5aNKA20G3Z5w3R6GQ==}
+ '@types/yauzl@2.10.3':
+ resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
+
+ '@typescript-eslint/eslint-plugin@8.35.0':
+ resolution: {integrity: sha512-ijItUYaiWuce0N1SoSMrEd0b6b6lYkYt99pqCPfybd+HKVXtEvYhICfLdwp42MhiI5mp0oq7PKEL+g1cNiz/Eg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ '@typescript-eslint/parser': ^8.35.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.31.1':
- resolution: {integrity: sha512-oU/OtYVydhXnumd0BobL9rkJg7wFJ9bFFPmSmB/bf/XWN85hlViji59ko6bSKBXyseT9V8l+CN1nwmlbiN0G7Q==}
+ '@typescript-eslint/parser@8.35.0':
+ resolution: {integrity: sha512-6sMvZePQrnZH2/cJkwRpkT7DxoAWh+g6+GFRK6bV3YQo7ogi3SX5rgF6099r5Q53Ma5qeT7LGmOmuIutF4t3lA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.31.1':
- resolution: {integrity: sha512-BMNLOElPxrtNQMIsFHE+3P0Yf1z0dJqV9zLdDxN/xLlWMlXK/ApEsVEKzpizg9oal8bAT5Sc7+ocal7AC1HCVw==}
+ '@typescript-eslint/project-service@8.35.0':
+ resolution: {integrity: sha512-41xatqRwWZuhUMF/aZm2fcUsOFKNcG28xqRSS6ZVr9BVJtGExosLAm5A1OxTjRMagx8nJqva+P5zNIGt8RIgbQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
+ '@typescript-eslint/scope-manager@8.35.0':
+ resolution: {integrity: sha512-+AgL5+mcoLxl1vGjwNfiWq5fLDZM1TmTPYs2UkyHfFhgERxBbqHlNjRzhThJqz+ktBqTChRYY6zwbMwy0591AA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.31.1':
- resolution: {integrity: sha512-fNaT/m9n0+dpSp8G/iOQ05GoHYXbxw81x+yvr7TArTuZuCA6VVKbqWYVZrV5dVagpDTtj/O8k5HBEE/p/HM5LA==}
+ '@typescript-eslint/tsconfig-utils@8.35.0':
+ resolution: {integrity: sha512-04k/7247kZzFraweuEirmvUj+W3bJLI9fX6fbo1Qm2YykuBvEhRTPl8tcxlYO8kZZW+HIXfkZNoasVb8EV4jpA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
+ '@typescript-eslint/type-utils@8.35.0':
+ resolution: {integrity: sha512-ceNNttjfmSEoM9PW87bWLDEIaLAyR+E6BoYJQ5PfaDau37UGca9Nyq3lBk8Bw2ad0AKvYabz6wxc7DMTO2jnNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.31.1':
- resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==}
+ '@typescript-eslint/types@8.35.0':
+ resolution: {integrity: sha512-0mYH3emanku0vHw2aRLNGqe7EXh9WHEhi7kZzscrMDf6IIRUQ5Jk4wp1QrledE/36KtdZrVfKnE32eZCf/vaVQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.31.1':
- resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==}
+ '@typescript-eslint/typescript-estree@8.35.0':
+ resolution: {integrity: sha512-F+BhnaBemgu1Qf8oHrxyw14wq6vbL8xwWKKMwTMwYIRmFFY/1n/9T/jpbobZL8vp7QyEUcC6xGrnAO4ua8Kp7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.31.1':
- resolution: {integrity: sha512-2DSI4SNfF5T4oRveQ4nUrSjUqjMND0nLq9rEkz0gfGr3tg0S5KB6DhwR+WZPCjzkZl3cH+4x2ce3EsL50FubjQ==}
+ '@typescript-eslint/utils@8.35.0':
+ resolution: {integrity: sha512-nqoMu7WWM7ki5tPgLVsmPM8CkqtoPUG6xXGeefM5t4x3XumOEKMoUZPdi+7F+/EotukN4R9OWdmDxN80fqoZeg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.31.1':
- resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==}
+ '@typescript-eslint/visitor-keys@8.35.0':
+ resolution: {integrity: sha512-zTh2+1Y8ZpmeQaQVIc/ZZxsx8UzgKJyNg1PTvjzC7WMhPSVS8bfDX34k1SrwOf016qd5RU3az2UxUNue3IfQ5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- '@universal-ember/kolay-ui@0.0.13':
- resolution: {integrity: sha512-AieocMj1U898F5thI4dQC3pCRtpO0PhvOMJPPp6yTck3AsGGJ3kRGg1utA66OTqF0CG+ZvjEg3eHrsulptu3oA==}
- peerDependencies:
- '@ember/test-waiters': ^4.1.0
- '@glimmer/component': ^2.0.0
- '@glimmer/tracking': '>= 1.1.2'
- '@glint/template': '>= 1.3.0'
- ember-modifier: '>= 4.1.0'
- ember-primitives: '>= 0.11.3'
- ember-repl: workspace:*
- ember-resources: '>= 7.0.0'
- ember-source: '>= 6.4.0-alpha.3'
- qunit: '>= 2.20.0'
- reactiveweb: '>= 1.2.1'
- tracked-built-ins: '>= 3.3.0'
-
- '@unrs/resolver-binding-darwin-arm64@1.7.2':
- resolution: {integrity: sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg==}
+ '@unrs/resolver-binding-android-arm-eabi@1.9.2':
+ resolution: {integrity: sha512-tS+lqTU3N0kkthU+rYp0spAYq15DU8ld9kXkaKg9sbQqJNF+WPMuNHZQGCgdxrUOEO0j22RKMwRVhF1HTl+X8A==}
+ cpu: [arm]
+ os: [android]
+
+ '@unrs/resolver-binding-android-arm64@1.9.2':
+ resolution: {integrity: sha512-MffGiZULa/KmkNjHeuuflLVqfhqLv1vZLm8lWIyeADvlElJ/GLSOkoUX+5jf4/EGtfwrNFcEaB8BRas03KT0/Q==}
+ cpu: [arm64]
+ os: [android]
+
+ '@unrs/resolver-binding-darwin-arm64@1.9.2':
+ resolution: {integrity: sha512-dzJYK5rohS1sYl1DHdJ3mwfwClJj5BClQnQSyAgEfggbUwA9RlROQSSbKBLqrGfsiC/VyrDPtbO8hh56fnkbsQ==}
cpu: [arm64]
os: [darwin]
- '@unrs/resolver-binding-darwin-x64@1.7.2':
- resolution: {integrity: sha512-qhVa8ozu92C23Hsmv0BF4+5Dyyd5STT1FolV4whNgbY6mj3kA0qsrGPe35zNR3wAN7eFict3s4Rc2dDTPBTuFQ==}
+ '@unrs/resolver-binding-darwin-x64@1.9.2':
+ resolution: {integrity: sha512-gaIMWK+CWtXcg9gUyznkdV54LzQ90S3X3dn8zlh+QR5Xy7Y+Efqw4Rs4im61K1juy4YNb67vmJsCDAGOnIeffQ==}
cpu: [x64]
os: [darwin]
- '@unrs/resolver-binding-freebsd-x64@1.7.2':
- resolution: {integrity: sha512-zKKdm2uMXqLFX6Ac7K5ElnnG5VIXbDlFWzg4WJ8CGUedJryM5A3cTgHuGMw1+P5ziV8CRhnSEgOnurTI4vpHpg==}
+ '@unrs/resolver-binding-freebsd-x64@1.9.2':
+ resolution: {integrity: sha512-S7QpkMbVoVJb0xwHFwujnwCAEDe/596xqY603rpi/ioTn9VDgBHnCCxh+UFrr5yxuMH+dliHfjwCZJXOPJGPnw==}
cpu: [x64]
os: [freebsd]
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2':
- resolution: {integrity: sha512-8N1z1TbPnHH+iDS/42GJ0bMPLiGK+cUqOhNbMKtWJ4oFGzqSJk/zoXFzcQkgtI63qMcUI7wW1tq2usZQSb2jxw==}
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2':
+ resolution: {integrity: sha512-+XPUMCuCCI80I46nCDFbGum0ZODP5NWGiwS3Pj8fOgsG5/ctz+/zzuBlq/WmGa+EjWZdue6CF0aWWNv84sE1uw==}
cpu: [arm]
os: [linux]
- '@unrs/resolver-binding-linux-arm-musleabihf@1.7.2':
- resolution: {integrity: sha512-tjYzI9LcAXR9MYd9rO45m1s0B/6bJNuZ6jeOxo1pq1K6OBuRMMmfyvJYval3s9FPPGmrldYA3mi4gWDlWuTFGA==}
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.9.2':
+ resolution: {integrity: sha512-sqvUyAd1JUpwbz33Ce2tuTLJKM+ucSsYpPGl2vuFwZnEIg0CmdxiZ01MHQ3j6ExuRqEDUCy8yvkDKvjYFPb8Zg==}
cpu: [arm]
os: [linux]
- '@unrs/resolver-binding-linux-arm64-gnu@1.7.2':
- resolution: {integrity: sha512-jon9M7DKRLGZ9VYSkFMflvNqu9hDtOCEnO2QAryFWgT6o6AXU8du56V7YqnaLKr6rAbZBWYsYpikF226v423QA==}
+ '@unrs/resolver-binding-linux-arm64-gnu@1.9.2':
+ resolution: {integrity: sha512-UYA0MA8ajkEDCFRQdng/FVx3F6szBvk3EPnkTTQuuO9lV1kPGuTB+V9TmbDxy5ikaEgyWKxa4CI3ySjklZ9lFA==}
cpu: [arm64]
os: [linux]
- '@unrs/resolver-binding-linux-arm64-musl@1.7.2':
- resolution: {integrity: sha512-c8Cg4/h+kQ63pL43wBNaVMmOjXI/X62wQmru51qjfTvI7kmCy5uHTJvK/9LrF0G8Jdx8r34d019P1DVJmhXQpA==}
+ '@unrs/resolver-binding-linux-arm64-musl@1.9.2':
+ resolution: {integrity: sha512-P/CO3ODU9YJIHFqAkHbquKtFst0COxdphc8TKGL5yCX75GOiVpGqd1d15ahpqu8xXVsqP4MGFP2C3LRZnnL5MA==}
cpu: [arm64]
os: [linux]
- '@unrs/resolver-binding-linux-ppc64-gnu@1.7.2':
- resolution: {integrity: sha512-A+lcwRFyrjeJmv3JJvhz5NbcCkLQL6Mk16kHTNm6/aGNc4FwPHPE4DR9DwuCvCnVHvF5IAd9U4VIs/VvVir5lg==}
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.9.2':
+ resolution: {integrity: sha512-uKStFlOELBxBum2s1hODPtgJhY4NxYJE9pAeyBgNEzHgTqTiVBPjfTlPFJkfxyTjQEuxZbbJlJnMCrRgD7ubzw==}
cpu: [ppc64]
os: [linux]
- '@unrs/resolver-binding-linux-riscv64-gnu@1.7.2':
- resolution: {integrity: sha512-hQQ4TJQrSQW8JlPm7tRpXN8OCNP9ez7PajJNjRD1ZTHQAy685OYqPrKjfaMw/8LiHCt8AZ74rfUVHP9vn0N69Q==}
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.9.2':
+ resolution: {integrity: sha512-LkbNnZlhINfY9gK30AHs26IIVEZ9PEl9qOScYdmY2o81imJYI4IMnJiW0vJVtXaDHvBvxeAgEy5CflwJFIl3tQ==}
cpu: [riscv64]
os: [linux]
- '@unrs/resolver-binding-linux-riscv64-musl@1.7.2':
- resolution: {integrity: sha512-NoAGbiqrxtY8kVooZ24i70CjLDlUFI7nDj3I9y54U94p+3kPxwd2L692YsdLa+cqQ0VoqMWoehDFp21PKRUoIQ==}
+ '@unrs/resolver-binding-linux-riscv64-musl@1.9.2':
+ resolution: {integrity: sha512-vI+e6FzLyZHSLFNomPi+nT+qUWN4YSj8pFtQZSFTtmgFoxqB6NyjxSjAxEC1m93qn6hUXhIsh8WMp+fGgxCoRg==}
cpu: [riscv64]
os: [linux]
- '@unrs/resolver-binding-linux-s390x-gnu@1.7.2':
- resolution: {integrity: sha512-KaZByo8xuQZbUhhreBTW+yUnOIHUsv04P8lKjQ5otiGoSJ17ISGYArc+4vKdLEpGaLbemGzr4ZeUbYQQsLWFjA==}
+ '@unrs/resolver-binding-linux-s390x-gnu@1.9.2':
+ resolution: {integrity: sha512-sSO4AlAYhSM2RAzBsRpahcJB1msc6uYLAtP6pesPbZtptF8OU/CbCPhSRW6cnYOGuVmEmWVW5xVboAqCnWTeHQ==}
cpu: [s390x]
os: [linux]
- '@unrs/resolver-binding-linux-x64-gnu@1.7.2':
- resolution: {integrity: sha512-dEidzJDubxxhUCBJ/SHSMJD/9q7JkyfBMT77Px1npl4xpg9t0POLvnWywSk66BgZS/b2Hy9Y1yFaoMTFJUe9yg==}
+ '@unrs/resolver-binding-linux-x64-gnu@1.9.2':
+ resolution: {integrity: sha512-jkSkwch0uPFva20Mdu8orbQjv2A3G88NExTN2oPTI1AJ+7mZfYW3cDCTyoH6OnctBKbBVeJCEqh0U02lTkqD5w==}
cpu: [x64]
os: [linux]
- '@unrs/resolver-binding-linux-x64-musl@1.7.2':
- resolution: {integrity: sha512-RvP+Ux3wDjmnZDT4XWFfNBRVG0fMsc+yVzNFUqOflnDfZ9OYujv6nkh+GOr+watwrW4wdp6ASfG/e7bkDradsw==}
+ '@unrs/resolver-binding-linux-x64-musl@1.9.2':
+ resolution: {integrity: sha512-Uk64NoiTpQbkpl+bXsbeyOPRpUoMdcUqa+hDC1KhMW7aN1lfW8PBlBH4mJ3n3Y47dYE8qi0XTxy1mBACruYBaw==}
cpu: [x64]
os: [linux]
- '@unrs/resolver-binding-wasm32-wasi@1.7.2':
- resolution: {integrity: sha512-y797JBmO9IsvXVRCKDXOxjyAE4+CcZpla2GSoBQ33TVb3ILXuFnMrbR/QQZoauBYeOFuu4w3ifWLw52sdHGz6g==}
+ '@unrs/resolver-binding-wasm32-wasi@1.9.2':
+ resolution: {integrity: sha512-EpBGwkcjDicjR/ybC0g8wO5adPNdVuMrNalVgYcWi+gYtC1XYNuxe3rufcO7dA76OHGeVabcO6cSkPJKVcbCXQ==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@unrs/resolver-binding-win32-arm64-msvc@1.7.2':
- resolution: {integrity: sha512-gtYTh4/VREVSLA+gHrfbWxaMO/00y+34htY7XpioBTy56YN2eBjkPrY1ML1Zys89X3RJDKVaogzwxlM1qU7egg==}
+ '@unrs/resolver-binding-win32-arm64-msvc@1.9.2':
+ resolution: {integrity: sha512-EdFbGn7o1SxGmN6aZw9wAkehZJetFPao0VGZ9OMBwKx6TkvDuj6cNeLimF/Psi6ts9lMOe+Dt6z19fZQ9Ye2fw==}
cpu: [arm64]
os: [win32]
- '@unrs/resolver-binding-win32-ia32-msvc@1.7.2':
- resolution: {integrity: sha512-Ywv20XHvHTDRQs12jd3MY8X5C8KLjDbg/jyaal/QLKx3fAShhJyD4blEANInsjxW3P7isHx1Blt56iUDDJO3jg==}
+ '@unrs/resolver-binding-win32-ia32-msvc@1.9.2':
+ resolution: {integrity: sha512-JY9hi1p7AG+5c/dMU8o2kWemM8I6VZxfGwn1GCtf3c5i+IKcMo2NQ8OjZ4Z3/itvY/Si3K10jOBQn7qsD/whUA==}
cpu: [ia32]
os: [win32]
- '@unrs/resolver-binding-win32-x64-msvc@1.7.2':
- resolution: {integrity: sha512-friS8NEQfHaDbkThxopGk+LuE5v3iY0StruifjQEt7SLbA46OnfgMO15sOTkbpJkol6RB+1l1TYPXh0sCddpvA==}
+ '@unrs/resolver-binding-win32-x64-msvc@1.9.2':
+ resolution: {integrity: sha512-ryoo+EB19lMxAd80ln9BVf8pdOAxLb97amrQ3SFN9OCRn/5M5wvwDgAe4i8ZjhpbiHoDeP8yavcTEnpKBo7lZg==}
cpu: [x64]
os: [win32]
- '@vitest/expect@3.1.2':
- resolution: {integrity: sha512-O8hJgr+zREopCAqWl3uCVaOdqJwZ9qaDwUP7vy3Xigad0phZe9APxKhPcDNqYYi0rX5oMvwJMSCAXY2afqeTSA==}
+ '@vitest/browser@3.2.4':
+ resolution: {integrity: sha512-tJxiPrWmzH8a+w9nLKlQMzAKX/7VjFs50MWgcAj7p9XQ7AQ9/35fByFYptgPELyLw+0aixTnC4pUWV+APcZ/kw==}
+ peerDependencies:
+ playwright: '*'
+ safaridriver: '*'
+ vitest: 3.2.4
+ webdriverio: ^7.0.0 || ^8.0.0 || ^9.0.0
+ peerDependenciesMeta:
+ playwright:
+ optional: true
+ safaridriver:
+ optional: true
+ webdriverio:
+ optional: true
+
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/mocker@3.1.2':
- resolution: {integrity: sha512-kOtd6K2lc7SQ0mBqYv/wdGedlqPdM/B38paPY+OwJ1XiNi44w3Fpog82UfOibmHaV9Wod18A09I9SCKLyDMqgw==}
+ '@vitest/mocker@3.2.4':
+ resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.1.2':
- resolution: {integrity: sha512-R0xAiHuWeDjTSB3kQ3OQpT8Rx3yhdOAIm/JM4axXxnG7Q/fS8XUwggv/A4xzbQA+drYRjzkMnpYnOGAc4oeq8w==}
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
+
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
+
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
+
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
+
+ '@vitest/ui@3.2.4':
+ resolution: {integrity: sha512-hGISOaP18plkzbWEcP/QvtRW1xDXF2+96HbEX6byqQhAUbiS5oH6/9JwW+QsQCIYON2bI6QZBF+2PvOmrRZ9wA==}
+ peerDependencies:
+ vitest: 3.2.4
+
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
+
+ '@volar/kit@2.4.12':
+ resolution: {integrity: sha512-f9JE8oy9C2rBcCWxUYKUF23hOXz4mwgVXFjk7nHhxzplaoVjEOsKpBm8NI2nBH7Cwu8DRxDwBsbIxMl/8wlLxw==}
+ peerDependencies:
+ typescript: '*'
+
+ '@volar/language-core@2.4.12':
+ resolution: {integrity: sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==}
+
+ '@volar/language-core@2.4.15':
+ resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
+
+ '@volar/language-server@2.4.12':
+ resolution: {integrity: sha512-KC0YqTXCZMaImMWyAKC+dLB2BXjfz80kqesJkV6oXxJsGEQPfmdqug299idwtrT6FVSmZ7q5UrPfvgKwA0S3JA==}
+
+ '@volar/language-service@2.4.12':
+ resolution: {integrity: sha512-nifOPGYYPnCmxja6/ML/Gl2EgFkUdw4gLbYqbh8FjqX3gSpXSZl/0ebqORjKo1KW56YWHWRZd1jFutEtCiRYhA==}
+
+ '@volar/source-map@2.4.12':
+ resolution: {integrity: sha512-bUFIKvn2U0AWojOaqf63ER0N/iHIBYZPpNGogfLPQ68F5Eet6FnLlyho7BS0y2HJ1jFhSif7AcuTx1TqsCzRzw==}
+
+ '@volar/source-map@2.4.15':
+ resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
+
+ '@volar/test-utils@2.4.12':
+ resolution: {integrity: sha512-8nIP0qGt1jANEuWY8Pm5658UsxbWl3p4N5XUNA/SZmuHvb9C3vygjLIWFHf0+Apbvy6yNwbKsRxawoYCoh+kkQ==}
+
+ '@volar/typescript@2.4.12':
+ resolution: {integrity: sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==}
+
+ '@volar/typescript@2.4.15':
+ resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
+
+ '@vscode/l10n@0.0.18':
+ resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==}
+
+ '@vue/compiler-core@3.5.17':
+ resolution: {integrity: sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==}
- '@vitest/runner@3.1.2':
- resolution: {integrity: sha512-bhLib9l4xb4sUMPXnThbnhX2Yi8OutBMA8Yahxa7yavQsFDtwY/jrUZwpKp2XH9DhRFJIeytlyGpXCqZ65nR+g==}
+ '@vue/compiler-dom@3.5.17':
+ resolution: {integrity: sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==}
- '@vitest/snapshot@3.1.2':
- resolution: {integrity: sha512-Q1qkpazSF/p4ApZg1vfZSQ5Yw6OCQxVMVrLjslbLFA1hMDrT2uxtqMaw8Tc/jy5DLka1sNs1Y7rBcftMiaSH/Q==}
+ '@vue/compiler-sfc@3.5.17':
+ resolution: {integrity: sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==}
- '@vitest/spy@3.1.2':
- resolution: {integrity: sha512-OEc5fSXMws6sHVe4kOFyDSj/+4MSwst0ib4un0DlcYgQvRuYQ0+M2HyqGaauUMnjq87tmUaMNDxKQx7wNfVqPA==}
+ '@vue/compiler-ssr@3.5.17':
+ resolution: {integrity: sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==}
- '@vitest/utils@3.1.2':
- resolution: {integrity: sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==}
+ '@vue/compiler-vue2@2.7.16':
+ resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
- '@volar/kit@2.4.11':
- resolution: {integrity: sha512-ups5RKbMzMCr6RKafcCqDRnJhJDNWqo2vfekwOAj6psZ15v5TlcQFQAyokQJ3wZxVkzxrQM+TqTRDENfQEXpmA==}
+ '@vue/language-core@2.2.0':
+ resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
peerDependencies:
typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@vue/reactivity@3.5.17':
+ resolution: {integrity: sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==}
+
+ '@vue/repl@4.6.1':
+ resolution: {integrity: sha512-tgeEa+QXzqbFsAIbq/dCXzOJxIW2Nq1F79KXRjbKyPt1ODpCx86bDbFgNzFcBEK3In2/mjPTMpN7fSD6Ig0Qsw==}
+
+ '@vue/runtime-core@3.5.17':
+ resolution: {integrity: sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==}
+
+ '@vue/runtime-dom@3.5.17':
+ resolution: {integrity: sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==}
+
+ '@vue/server-renderer@3.5.17':
+ resolution: {integrity: sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==}
+ peerDependencies:
+ vue: 3.5.17
+
+ '@vue/shared@3.5.17':
+ resolution: {integrity: sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==}
- '@volar/language-core@2.4.11':
- resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ '@wdio/config@9.16.2':
+ resolution: {integrity: sha512-a7zDSNzpGgkb6mWrg9GWPmvh/sZFzaf86/iBjCv+n2DTY0+8v8NLruRQmWuCaQAlLVhM3XAqmB+fWLqxDhdvOA==}
+ engines: {node: '>=18.20.0'}
- '@volar/language-server@2.4.11':
- resolution: {integrity: sha512-W9P8glH1M8LGREJ7yHRCANI5vOvTrRO15EMLdmh5WNF9sZYSEbQxiHKckZhvGIkbeR1WAlTl3ORTrJXUghjk7g==}
+ '@wdio/logger@9.16.2':
+ resolution: {integrity: sha512-6A1eVpNPToWupLIo8CXStth4HJGTfxKsAiKtwE0xQFKyDM8uPTm3YO3Nf15vCSHbmsncbYVEo7QrUwRUEB4YUg==}
+ engines: {node: '>=18.20.0'}
- '@volar/language-service@2.4.11':
- resolution: {integrity: sha512-KIb6g8gjUkS2LzAJ9bJCLIjfsJjeRtmXlu7b2pDFGD3fNqdbC53cCAKzgWDs64xtQVKYBU13DLWbtSNFtGuMLQ==}
+ '@wdio/protocols@9.16.2':
+ resolution: {integrity: sha512-h3k97/lzmyw5MowqceAuY3HX/wGJojXHkiPXA3WlhGPCaa2h4+GovV2nJtRvknCKsE7UHA1xB5SWeI8MzloBew==}
- '@volar/source-map@2.4.11':
- resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ '@wdio/repl@9.16.2':
+ resolution: {integrity: sha512-FLTF0VL6+o5BSTCO7yLSXocm3kUnu31zYwzdsz4n9s5YWt83sCtzGZlZpt7TaTzb3jVUfxuHNQDTb8UMkCu0lQ==}
+ engines: {node: '>=18.20.0'}
- '@volar/test-utils@2.4.11':
- resolution: {integrity: sha512-ogkLldPqFa/j9302Ns+nWeyTCQv8d4c7iN4t8ziq7j0XeMKWYsTAjLsx/9z0MTNrecBAcocgzEvCricASSq+Hw==}
+ '@wdio/types@9.16.2':
+ resolution: {integrity: sha512-P86FvM/4XQGpJKwlC2RKF3I21TglPvPOozJGG9HoL0Jmt6jRF20ggO/nRTxU0XiWkRdqESUTmfA87bdCO4GRkQ==}
+ engines: {node: '>=18.20.0'}
- '@volar/typescript@2.4.11':
- resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
+ '@wdio/utils@9.16.2':
+ resolution: {integrity: sha512-bsRdEUXUTYvznXH/Z+p6HDzHSjMI6I6bnu8WXWTeDDDyqybWK5D8cbZvs8A/kMmGXoz1GZkSBHxy4Z5NTg8OQg==}
+ engines: {node: '>=18.20.0'}
'@webassemblyjs/ast@1.14.1':
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -4915,6 +5340,10 @@ packages:
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+ '@zip.js/zip.js@2.7.62':
+ resolution: {integrity: sha512-OaLvZ8j4gCkLn048ypkZu29KX30r8/OfFF2w4Jo5WXFr+J04J+lzJ5TKZBVgFXhlvSkqNFQdfnY1Q8TMTCyBVA==}
+ engines: {bun: '>=0.7.0', deno: '>=1.0.0', node: '>=16.5.0'}
+
abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
@@ -4922,6 +5351,10 @@ packages:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ abort-controller@3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
+
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
@@ -4935,8 +5368,8 @@ packages:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
- acorn@8.14.1:
- resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -4960,9 +5393,20 @@ packages:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
+ ajv-draft-04@1.0.0:
+ resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
+ peerDependencies:
+ ajv: ^8.5.0
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+
ajv-formats@2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ ajv-formats@3.0.1:
+ resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
+
ajv-keywords@3.5.2:
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
@@ -4976,9 +5420,18 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@8.12.0:
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+
+ ajv@8.13.0:
+ resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
+
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+ alien-signals@0.4.14:
+ resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==}
+
amd-name-resolver@1.3.1:
resolution: {integrity: sha512-26qTEWqZQ+cxSYygZ4Cf8tsjDBLceJahhtewxtKZA3SRa4PluuqYCuheemDQD+7Mf5B7sr+zhTDWAHDh02a1Dw==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -5028,6 +5481,10 @@ packages:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
+ ansi-styles@5.2.0:
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
+
ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
@@ -5048,6 +5505,14 @@ packages:
aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
+ archiver-utils@5.0.2:
+ resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
+ engines: {node: '>= 14'}
+
+ archiver@7.0.1:
+ resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
+ engines: {node: '>= 14'}
+
are-we-there-yet@3.0.1:
resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -5062,6 +5527,9 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+
aria-query@5.3.2:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
@@ -5129,6 +5597,10 @@ packages:
resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==}
engines: {node: '>=4'}
+ ast-types@0.13.4:
+ resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
+ engines: {node: '>=4'}
+
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
@@ -5175,15 +5647,21 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ axios@1.10.0:
+ resolution: {integrity: sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==}
+
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
+
+ b4a@1.6.7:
+ resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
+
babel-core@7.0.0-bridge.0:
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
- babel-import-util@1.4.1:
- resolution: {integrity: sha512-TNdiTQdPhXlx02pzG//UyVPSKE7SNWjY0n4So/ZnjQpWwaM5LvWBLkWa1JKll5u06HNscHD91XZPuwrMg1kadQ==}
- engines: {node: '>= 12.*'}
-
babel-import-util@2.1.1:
resolution: {integrity: sha512-3qBQWRjzP9NreSH/YrOEU1Lj5F60+pWSLP0kIdCWxjFHH7pX2YPHIxQ67el4gnMNfYoDxSDGcT0zpVlZ+gVtQA==}
engines: {node: '>= 12.*'}
@@ -5232,14 +5710,14 @@ packages:
resolution: {integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA==}
engines: {node: 6.* || 8.* || >= 10.*}
- babel-plugin-ember-template-compilation@2.3.0:
- resolution: {integrity: sha512-4ZrKVSqdw5PxEKRbqfOpPhrrNBDG3mFPhyT6N1Oyyem81ZIkCvNo7TPKvlTHeFxqb6HtUvCACP/pzFpZ74J4pg==}
- engines: {node: '>= 12.*'}
-
babel-plugin-ember-template-compilation@2.4.1:
resolution: {integrity: sha512-n+ktQ3JeyWrpRutSyPn2PsHeH+A94SVm+iUoogzf9VUqpP47FfWem24gpQXhn+p6+x5/BpuFJXMLXWt7ZoYAKA==}
engines: {node: '>= 12.*'}
+ babel-plugin-ember-template-compilation@3.0.0:
+ resolution: {integrity: sha512-tIZh1sgvswtJqtjiAQLZEtfje37HvsFsivV3jOrkruq0K1JzewP5VUJxx72qK3vwqFOG6XtiVXYBNyEJFmdXgQ==}
+ engines: {node: '>= 18.*'}
+
babel-plugin-htmlbars-inline-precompile@5.3.1:
resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==}
engines: {node: 10.* || >= 12.*}
@@ -5291,6 +5769,36 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ bare-events@2.5.4:
+ resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
+
+ bare-fs@4.1.5:
+ resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==}
+ engines: {bare: '>=1.16.0'}
+ peerDependencies:
+ bare-buffer: '*'
+ peerDependenciesMeta:
+ bare-buffer:
+ optional: true
+
+ bare-os@3.6.1:
+ resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==}
+ engines: {bare: '>=1.14.0'}
+
+ bare-path@3.0.0:
+ resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
+
+ bare-stream@2.6.5:
+ resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
+ peerDependencies:
+ bare-buffer: '*'
+ bare-events: '*'
+ peerDependenciesMeta:
+ bare-buffer:
+ optional: true
+ bare-events:
+ optional: true
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -5306,6 +5814,10 @@ packages:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
+ basic-ftp@5.0.5:
+ resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
+ engines: {node: '>=10.0.0'}
+
before-after-hook@3.0.2:
resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
@@ -5352,11 +5864,14 @@ packages:
body@5.1.0:
resolution: {integrity: sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==}
- brace-expansion@1.1.11:
- resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ boolbase@1.0.0:
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
+
+ brace-expansion@1.1.12:
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
- brace-expansion@2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@2.0.2:
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
braces@2.3.2:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
@@ -5382,10 +5897,6 @@ packages:
peerDependencies:
'@babel/core': ^7.17.9
- broccoli-builder@0.18.14:
- resolution: {integrity: sha512-YoUHeKnPi4xIGZ2XDVN9oHNA9k3xF5f5vlA+1wvrxIIDXqQU97gp2FxVAF503Zxdtt0C5CRB5n+47k2hlkaBzA==}
- engines: {node: '>= 0.10.0'}
-
broccoli-caching-writer@3.0.3:
resolution: {integrity: sha512-g644Kb5uBPsy+6e2DvO3sOc+/cXZQQNgQt64QQzjA9TSdP0dl5qvetpoNIx4sy/XIjrPYG1smEidq9Z9r61INw==}
@@ -5438,10 +5949,6 @@ packages:
broccoli-node-api@1.7.0:
resolution: {integrity: sha512-QIqLSVJWJUVOhclmkmypJJH9u9s/aWH4+FH6Q6Ju5l+Io4dtwqdPUNmDfw40o6sxhbZHhqGujDJuHTML1wG8Yw==}
- broccoli-node-info@1.1.0:
- resolution: {integrity: sha512-DUohSZCdfXli/3iN6SmxPbck1OVG8xCkrLx47R25his06xVc1ZmmrOsrThiM8BsCWirwyocODiYJqNP5W2Hg1A==}
- engines: {node: '>= 0.10.0'}
-
broccoli-node-info@2.2.0:
resolution: {integrity: sha512-VabSGRpKIzpmC+r+tJueCE5h8k6vON7EIMMWu6d/FyPdtijwLQ7QvzShEw+m3mHoDzUaj/kiZsDYrS8X2adsBg==}
engines: {node: 8.* || >= 10.*}
@@ -5531,13 +6038,13 @@ packages:
peerDependencies:
browserslist: '*'
- browserslist@4.24.4:
- resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ browserslist@4.25.1:
+ resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserstack-local@1.5.6:
- resolution: {integrity: sha512-s0GadAkyE1XHxnmymb9atogTZbA654bcFpqGkcYEtYPaPvuvVfSXR0gw8ojn0I0Td2HEMJcGtdrkBjb1Fi/HmQ==}
+ browserstack-local@1.5.7:
+ resolution: {integrity: sha512-I9uPQce1iXzQP2aLk8BvxCL28TUmqBnz+DpODTKGTGeiYOt+uMu2NirJDwgYUveOKOvnN2W+Wan7NKv8VF5KXQ==}
browserstack@1.6.1:
resolution: {integrity: sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==}
@@ -5545,6 +6052,13 @@ packages:
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+ buffer-crc32@0.2.13:
+ resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+
+ buffer-crc32@1.0.0:
+ resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
+ engines: {node: '>=8.0.0'}
+
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -5632,8 +6146,8 @@ packages:
resolution: {integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg==}
hasBin: true
- caniuse-lite@1.0.30001716:
- resolution: {integrity: sha512-49/c1+x3Kwz7ZIWt+4DvK3aMJy9oYXXG6/97JKsnjdCk/6n9vVyWL8NAwVt95Lwt9eigI10Hl782kDfZUUlRXw==}
+ caniuse-lite@1.0.30001726:
+ resolution: {integrity: sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw==}
capture-exit@2.0.0:
resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
@@ -5684,10 +6198,29 @@ packages:
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
engines: {node: '>= 16'}
+ cheerio-select@2.1.0:
+ resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
+
+ cheerio@1.1.0:
+ resolution: {integrity: sha512-+0hMx9eYhJvWbgpKV9hN7jg0JcwydpopZE4hgi+KvQtByZXPp04NiCWU0LzcAbP63abZckIHkTQaXVF52mX3xQ==}
+ engines: {node: '>=18.17'}
+
+ chevrotain-allstar@0.3.1:
+ resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==}
+ peerDependencies:
+ chevrotain: ^11.0.0
+
+ chevrotain@11.0.3:
+ resolution: {integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==}
+
chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
@@ -5780,11 +6313,18 @@ packages:
resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
engines: {node: '>=0.8'}
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
+
+ codemirror-lang-mermaid@0.5.0:
+ resolution: {integrity: sha512-Taw/2gPCyNArQJCxIP/HSUif+3zrvD+6Ugt7KJZ2dUKou/8r3ZhcfG8krNTZfV2iu8AuGnymKuo7bLPFyqsh/A==}
+
codemirror-languageserver@1.12.1:
resolution: {integrity: sha512-B71XofYRsVsyUpkiWtdTcHIwVoEpws01PqHpkr/o5k4EET9kQEpRqDH/G+f+hQI4eZxwONOx8n5Dz2fsf02PrA==}
- codemirror@6.0.1:
- resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==}
+ codemirror@6.0.2:
+ resolution: {integrity: sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==}
collection-visit@1.0.0:
resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
@@ -5825,6 +6365,9 @@ packages:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
+ comlink@4.4.2:
+ resolution: {integrity: sha512-OxGdvBmJuNKSCMO4NTl1L47VRp6xn2wG4F/2hYzB6tiCb709otOxtEYCSvK80PtjODfXXZu8ds+Nw5kVCjqd2g==}
+
comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
@@ -5847,6 +6390,10 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
+ commander@9.5.0:
+ resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
+ engines: {node: ^12.20.0 || >=14}
+
common-ancestor-path@1.0.1:
resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==}
@@ -5857,6 +6404,9 @@ packages:
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+ compare-versions@6.1.1:
+ resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
+
compatfactory@3.0.0:
resolution: {integrity: sha512-WD5kF7koPwVoyKL8p0LlrmIZtilrD46sQStyzzxzTFinMKN2Dxk1hN+sddLSQU1mGIZvQfU8c+ONSghvvM40jg==}
engines: {node: '>=14.9.0'}
@@ -5866,6 +6416,10 @@ packages:
component-emitter@1.3.1:
resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
+ compress-commons@6.0.2:
+ resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
+ engines: {node: '>= 14'}
+
compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
@@ -5880,11 +6434,17 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- concurrently@9.1.2:
- resolution: {integrity: sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==}
+ concurrently@9.2.0:
+ resolution: {integrity: sha512-IsB/fiXTupmagMW4MNp2lx2cdSN2FfZq78vF90LBB+zZHArbIQZjQtzXCiXnvTxCZSvXanTqFLWBjw2UkLx1SQ==}
engines: {node: '>=18'}
hasBin: true
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+
+ confbox@0.2.2:
+ resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
+
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
@@ -6079,10 +6639,6 @@ packages:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
- content-tag-utils@0.3.1:
- resolution: {integrity: sha512-uBAmklAxqmem7WX/F7YA4eWBTegGLJ93MOPSJaJliAuzTNgF3u/H9YLlJ6Nae9/FwV+037OuXc75hvcmub1qww==}
- engines: {node: '>= 18'}
-
content-tag@2.0.3:
resolution: {integrity: sha512-htLIdtfhhKW2fHlFLnZH7GFzHSdSpHhDLrWVswkNiiPMZ5uXq5JfrGboQKFhNQuAAFF8VNB2EYUj3MsdJrKKpg==}
@@ -6117,104 +6673,309 @@ packages:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- core-js-compat@3.42.0:
- resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==}
+ core-js-compat@3.43.0:
+ resolution: {integrity: sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA==}
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'}
+ core-object@3.1.5:
+ resolution: {integrity: sha512-sA2/4+/PZ/KV6CKgjrVrrUVBKCkdDO02CUlQ0YKTQoYUwPYNOtOAcWlbYhd5v/1JqYaA6oZ4sDlOU4ppVw6Wbg==}
+ engines: {node: '>= 4'}
+
+ core-util-is@1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+
+ cors@2.8.5:
+ resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
+ engines: {node: '>= 0.10'}
+
+ corser@2.0.1:
+ resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==}
+ engines: {node: '>= 0.4.0'}
+
+ cose-base@1.0.3:
+ resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==}
+
+ cose-base@2.2.0:
+ resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==}
+
+ cosmiconfig@6.0.0:
+ resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
+ engines: {node: '>=8'}
+
+ cosmiconfig@9.0.0:
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ crc-32@1.2.2:
+ resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
+ engines: {node: '>=0.8'}
+ hasBin: true
+
+ crc32-stream@6.0.0:
+ resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
+ engines: {node: '>= 14'}
+
+ create-ecdh@4.0.4:
+ resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
+
+ create-hash@1.1.3:
+ resolution: {integrity: sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==}
+
+ create-hash@1.2.0:
+ resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+
+ create-hmac@1.1.7:
+ resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+
+ create-require@1.1.1:
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+
+ crelt@1.0.6:
+ resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
+
+ cross-spawn@6.0.6:
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
+ engines: {node: '>=4.8'}
+
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
+
+ crosspath@2.0.0:
+ resolution: {integrity: sha512-ju88BYCQ2uvjO2bR+SsgLSTwTSctU+6Vp2ePbKPgSCZyy4MWZxYsT738DlKVRE5utUjobjPRm1MkTYKJxCmpTA==}
+ engines: {node: '>=14.9.0'}
+
+ crypto-browserify@3.12.1:
+ resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==}
+ engines: {node: '>= 0.10'}
+
+ crypto-random-string@2.0.0:
+ resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
+ engines: {node: '>=8'}
+
+ 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-select@5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+
+ css-shorthand-properties@1.1.2:
+ resolution: {integrity: sha512-C2AugXIpRGQTxaCW0N7n5jD/p5irUmCrwl03TrnMFBHDbdq44CFWR2zO7rK9xPN4Eo3pUxC4vQzQgbIpzrD1PQ==}
+
+ css-tree@3.1.0:
+ resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+
+ css-value@0.0.1:
+ resolution: {integrity: sha512-FUV3xaJ63buRLgHrLQVlVgQnQdR4yqdLGaDu7g8CQcWjInDfM9plBTPI9FRfpahju1UBSaMckeb2/46ApS/V1Q==}
+
+ css-what@6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
+
+ cssesc@3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ cssstyle@4.6.0:
+ resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
+ engines: {node: '>=18'}
+
+ csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+
+ cytoscape-cose-bilkent@4.1.0:
+ resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==}
+ peerDependencies:
+ cytoscape: ^3.2.0
+
+ cytoscape-fcose@2.2.0:
+ resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==}
+ peerDependencies:
+ cytoscape: ^3.2.0
+
+ cytoscape@3.32.0:
+ resolution: {integrity: sha512-5JHBC9n75kz5851jeklCPmZWcg3hUe6sjqJvyk3+hVqFaKcHwHgxsjeN1yLmggoUc6STbtm9/NQyabQehfjvWQ==}
+ engines: {node: '>=0.10'}
+
+ d3-array@2.12.1:
+ resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==}
+
+ d3-array@3.2.4:
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
+ engines: {node: '>=12'}
+
+ d3-axis@3.0.0:
+ resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==}
+ engines: {node: '>=12'}
+
+ d3-brush@3.0.0:
+ resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==}
+ engines: {node: '>=12'}
+
+ d3-chord@3.0.1:
+ resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==}
+ engines: {node: '>=12'}
+
+ d3-color@3.1.0:
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
+ engines: {node: '>=12'}
+
+ d3-contour@4.0.2:
+ resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==}
+ engines: {node: '>=12'}
+
+ d3-delaunay@6.0.4:
+ resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==}
+ engines: {node: '>=12'}
+
+ d3-dispatch@3.0.1:
+ resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
+ engines: {node: '>=12'}
+
+ d3-drag@3.0.0:
+ resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
+ engines: {node: '>=12'}
+
+ d3-dsv@3.0.1:
+ resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ d3-ease@3.0.1:
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
+ engines: {node: '>=12'}
+
+ d3-fetch@3.0.1:
+ resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==}
+ engines: {node: '>=12'}
+
+ d3-force@3.0.0:
+ resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==}
+ engines: {node: '>=12'}
+
+ d3-format@3.1.0:
+ resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
+ engines: {node: '>=12'}
+
+ d3-geo@3.1.1:
+ resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==}
+ engines: {node: '>=12'}
+
+ d3-hierarchy@3.1.2:
+ resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==}
+ engines: {node: '>=12'}
- core-util-is@1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ d3-interpolate@3.0.1:
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
+ engines: {node: '>=12'}
- cors@2.8.5:
- resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
- engines: {node: '>= 0.10'}
+ d3-path@1.0.9:
+ resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==}
- cosmiconfig@6.0.0:
- resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
- engines: {node: '>=8'}
+ d3-path@3.1.0:
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
+ engines: {node: '>=12'}
- cosmiconfig@9.0.0:
- resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
- engines: {node: '>=14'}
- peerDependencies:
- typescript: '>=4.9.5'
- peerDependenciesMeta:
- typescript:
- optional: true
+ d3-polygon@3.0.1:
+ resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==}
+ engines: {node: '>=12'}
- create-ecdh@4.0.4:
- resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
+ d3-quadtree@3.0.1:
+ resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==}
+ engines: {node: '>=12'}
- create-hash@1.2.0:
- resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+ d3-random@3.0.1:
+ resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==}
+ engines: {node: '>=12'}
- create-hmac@1.1.7:
- resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+ d3-sankey@0.12.3:
+ resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==}
- create-require@1.1.1:
- resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+ d3-scale-chromatic@3.1.0:
+ resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==}
+ engines: {node: '>=12'}
- crelt@1.0.6:
- resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
+ d3-scale@4.0.2:
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
+ engines: {node: '>=12'}
- cross-spawn@6.0.6:
- resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
- engines: {node: '>=4.8'}
+ d3-selection@3.0.0:
+ resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
+ engines: {node: '>=12'}
- cross-spawn@7.0.6:
- resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
- engines: {node: '>= 8'}
+ d3-shape@1.3.7:
+ resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==}
- crosspath@2.0.0:
- resolution: {integrity: sha512-ju88BYCQ2uvjO2bR+SsgLSTwTSctU+6Vp2ePbKPgSCZyy4MWZxYsT738DlKVRE5utUjobjPRm1MkTYKJxCmpTA==}
- engines: {node: '>=14.9.0'}
+ d3-shape@3.2.0:
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
+ engines: {node: '>=12'}
- crypto-browserify@3.12.1:
- resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==}
- engines: {node: '>= 0.10'}
+ d3-time-format@4.1.0:
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
+ engines: {node: '>=12'}
- crypto-random-string@2.0.0:
- resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
- engines: {node: '>=8'}
+ d3-time@3.1.0:
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
+ engines: {node: '>=12'}
- css-loader@5.2.7:
- resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
+ d3-timer@3.0.1:
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
+ engines: {node: '>=12'}
- css-tree@3.1.0:
- resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ d3-transition@3.0.1:
+ resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ d3-selection: 2 - 3
- cssesc@3.0.0:
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
- engines: {node: '>=4'}
- hasBin: true
+ d3-zoom@3.0.0:
+ resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
+ engines: {node: '>=12'}
- cssstyle@4.3.1:
- resolution: {integrity: sha512-ZgW+Jgdd7i52AaLYCriF8Mxqft0gD/R9i9wi6RWBhs1pqdPEzPjym7rvRKi397WmQFf3SlyUsszhw+VVCbx79Q==}
- engines: {node: '>=18'}
+ d3@7.9.0:
+ resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
+ engines: {node: '>=12'}
dag-map@2.0.2:
resolution: {integrity: sha512-xnsprIzYuDeiyu5zSKwilV/ajRHxnoMlAhEREfyfTgTSViMVY2fGP1ZcHJbtwup26oCkofySU/m6oKJ3HrkW7w==}
+ dagre-d3-es@7.0.11:
+ resolution: {integrity: sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==}
+
dashify@2.0.0:
resolution: {integrity: sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A==}
engines: {node: '>=4'}
+ data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
+ engines: {node: '>= 12'}
+
+ data-uri-to-buffer@6.0.2:
+ resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
+ engines: {node: '>= 14'}
+
data-urls@5.0.0:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
- date-fns@3.6.0:
- resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
+
+ de-indent@1.0.2:
+ resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -6241,8 +7002,8 @@ packages:
supports-color:
optional: true
- debug@4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ debug@4.4.1:
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -6254,11 +7015,15 @@ packages:
resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
engines: {node: '>=10'}
+ decamelize@6.0.0:
+ resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
decimal.js@10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
- decode-named-character-reference@1.1.0:
- resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==}
+ decode-named-character-reference@1.2.0:
+ resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==}
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
@@ -6286,6 +7051,10 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ deepmerge-ts@7.1.5:
+ resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==}
+ engines: {node: '>=16.0.0'}
+
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
@@ -6316,6 +7085,13 @@ packages:
resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
engines: {node: '>=0.10.0'}
+ degenerator@5.0.1:
+ resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
+ engines: {node: '>= 14'}
+
+ delaunator@5.0.1:
+ resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==}
+
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
@@ -6364,6 +7140,10 @@ packages:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
+ diff@7.0.0:
+ resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
+ engines: {node: '>=0.3.1'}
+
diffie-hellman@5.0.3:
resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
@@ -6378,6 +7158,9 @@ packages:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
+ dom-accessibility-api@0.5.16:
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
+
dom-element-descriptors@0.5.1:
resolution: {integrity: sha512-DLayMRQ+yJaziF4JJX1FMjwjdr7wdTr1y9XvZ+NfHELfOMcYDnCHneAYXAS4FT1gLILh4V0juMZohhH1N5FsoQ==}
@@ -6387,6 +7170,9 @@ packages:
dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+ dom-serializer@2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+
domain-browser@4.22.0:
resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==}
engines: {node: '>=10'}
@@ -6404,8 +7190,12 @@ packages:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
- dompurify@3.2.5:
- resolution: {integrity: sha512-mLPd29uoRe9HpvwP2TxClGQBzGXeEC/we/q+bFlmPPmj2p2Ugl3r6ATu/UU1v77DXNcehiBg9zsr1dREyA/dJQ==}
+ domhandler@5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
+ engines: {node: '>= 4'}
+
+ dompurify@3.2.6:
+ resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==}
domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
@@ -6413,6 +7203,9 @@ packages:
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+ domutils@3.2.2:
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
+
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -6433,6 +7226,15 @@ packages:
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
+ edge-paths@3.0.5:
+ resolution: {integrity: sha512-sB7vSrDnFa4ezWQk9nZ/n0FdpdUuC6R1EOrlU3DL+bovcNFK28rqu2emmAUjujYEJTWIgQGqgVVWUZXMnc8iWg==}
+ engines: {node: '>=14.0.0'}
+
+ edgedriver@6.1.1:
+ resolution: {integrity: sha512-/dM/PoBf22Xg3yypMWkmRQrBKEnSyNaZ7wHGCT9+qqT14izwtFT+QvdR89rjNkMfXwW+bSFoqOfbcvM+2Cyc7w==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+
editions@1.3.4:
resolution: {integrity: sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==}
engines: {node: '>=0.8'}
@@ -6444,8 +7246,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.148:
- resolution: {integrity: sha512-8uc1QXwwqayD4mblcsQYZqoi+cOc97A2XmKSBOIRbEAvbp6vrqmSYs4dHD2qVygUgn7Mi0qdKgPaJ9WC8cv63A==}
+ electron-to-chromium@1.5.174:
+ resolution: {integrity: sha512-HE43yYdUUiJVjewV2A9EP8o89Kb4AqMKplMQP2IxEPUws1Etu/ZkdsgUDabUZ/WmbP4ZbvJDOcunvbBUPPIfmw==}
elliptic@6.6.1:
resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
@@ -6455,10 +7257,8 @@ packages:
engines: {node: '>=16.0.0'}
hasBin: true
- ember-async-data@1.0.3:
- resolution: {integrity: sha512-54OtoQwNi+/ZvPOVuT4t8fcHR9xL8N7kBydzcZSo6BIEsLYeXPi3+jUR8niWjfjXXhKlJ8EWXR0lTeHleTrxbw==}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
+ ember-async-data@2.0.1:
+ resolution: {integrity: sha512-yCQlVR3NLgjGA09LMc1NYX0XiAd0tHTM4/AmIHD0wq87QpHGmWcpMxyKGEe/TBczyCwBEJifaZNtAjMDsW1YdA==}
ember-auto-import@2.10.0:
resolution: {integrity: sha512-bcBFDYVTFHyqyq8BNvsj6UO3pE6Uqou/cNmee0WaqBgZ+1nQqFz0UE26usrtnFAT+YaFZSkqF2H36QW84k0/cg==}
@@ -6468,12 +7268,6 @@ packages:
resolution: {integrity: sha512-hSPcvIKarA8wad2/b6jDd/eU+OtKmi6uP+iYQbzi5TQpjsqV6b4QdRqrLk7ClSRRKBAtdTuutx+m+X+WlEd2lw==}
engines: {node: 10.* || >= 12}
- ember-cached-decorator-polyfill@1.0.2:
- resolution: {integrity: sha512-hUX6OYTKltAPAu8vsVZK02BfMTV0OUXrPqvRahYPhgS7D0I6joLjlskd7mhqJMcaXLywqceIy8/s+x8bxF8bpQ==}
- engines: {node: 14.* || >= 16}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
-
ember-cli-babel-plugin-helpers@1.1.1:
resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -6531,8 +7325,8 @@ packages:
resolution: {integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q==}
engines: {node: 10.* || >= 12.*}
- ember-cli@6.2.2:
- resolution: {integrity: sha512-PJNJ3Ib1IP85NJlw/AdzX76ZIDcyAAFJfDz/wFJQ+hqTFNWsjVjXl20X3ePQkKfZZlF421EC5nsLBOwbHqsh9g==}
+ ember-cli@6.5.0:
+ resolution: {integrity: sha512-2qNqaD3iIFeFcYiKsgrsP0qdEilvT820+vX2Fz1x32XIgcsmy79ufc0rHrsHmEiazSQLC9XKUskwEzFBWjy54g==}
engines: {node: '>= 18'}
hasBin: true
@@ -6540,18 +7334,16 @@ packages:
resolution: {integrity: sha512-BtkjulweiXo9c3yVWrtexw2dTmBrvavD/xixNC6TKOBdrixUwU+6nuOO9dufDWsMxoid7MvtmDpzc9+mE8PdaA==}
engines: {node: 10.* || >= 12.*}
- ember-container-query@5.1.1:
- resolution: {integrity: sha512-7YmgagMpHD0tE5uz3CuO5HjDs1z/64Yt/5IETmBUpmzOaRkPjkyP0JshSGFLiuw/JZaQ6c2jj3t2HaznQtoEJg==}
- engines: {node: 18.* || >= 20}
+ ember-container-query@6.0.1:
+ resolution: {integrity: sha512-MTttEwVboK82sCCLsTbDLXQfaaDkIdU058yO4laV/lCQeEsIpjqgICPAzQ5VrvinNT/Rol0AIPCX3jby2rZ8Rg==}
+ engines: {node: 20.* || >= 22}
ember-deep-tracked@2.0.1:
resolution: {integrity: sha512-qSuVZTptZakISlJEOnc9r/37mjqs3JTDJW55g6+ahKtbbrjLJJQnbfCPpzcTcITxge9DL/QD5qZM1UL5vtK66A==}
- ember-element-helper@0.8.7:
- resolution: {integrity: sha512-lQOJEi1MugGkvDSyoY8ErOPBfffGiM/AMaiUuf2meUXukSIIf5UTA5nrYYEwtvkRy0D7ifWTdgP7e0+Fg8km7A==}
+ ember-element-helper@0.8.8:
+ resolution: {integrity: sha512-3slTltQV5ke53t3YVP2GYoswsQ6y+lhuVzKmt09tbEx91DapG8I/xa8W5OA0StvcQlavL3/vHrz/vCQEFs8bBA==}
engines: {node: 14.* || 16.* || >= 18}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
ember-eslint-parser@0.5.9:
resolution: {integrity: sha512-IW4/3cEiFp49M2LiKyzi7VcT1egogOe8UxQ9eUKTooenC7Q4qNhzTD6rOZ8j51m8iJC+8hCzjbNCa3K4CN0Hhg==}
@@ -6570,29 +7362,22 @@ packages:
resolution: {integrity: sha512-5tOWu6eV1UoNZE+P9Gl9lJXNrENZVCoOXi52ePb7JOrOZ3ckOk1OkPsFwR4Jym9VJ7vZ6S3Z3D8BrkFa2aCpYw==}
engines: {node: 12.* || >= 14}
peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
+ ember-source: '>= 6.7.0-alpha.1'
ember-load-initializers@3.0.1:
resolution: {integrity: sha512-qV3vxJKw5+7TVDdtdLPy8PhVsh58MlK8jwzqh5xeOwJPNP7o0+BlhvwoIlLYTPzGaHdfjEIFCgVSyMRGd74E1g==}
engines: {node: '>= 18.*'}
peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
+ ember-source: '>= 6.7.0-alpha.1'
- ember-modifier@4.2.0:
- resolution: {integrity: sha512-BJ48eTEGxD8J7+lofwVmee7xDgNDgpr5dd6+MSu4gk+I6xb35099RMNorXY5hjjwMJEyi/IRR6Yn3M7iJMz8Zw==}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
- peerDependenciesMeta:
- ember-source:
- optional: true
+ ember-modifier@4.2.2:
+ resolution: {integrity: sha512-pPYBAGyczX0hedGWQFQOEiL9s45KS9efKxJxUQkMLjQyh+1Uef1mcmAGsdw2KmvNupITkE/nXxmVO1kZ9tt3ag==}
- ember-modify-based-class-resource@1.1.1:
- resolution: {integrity: sha512-Uig2iEpFf34l/0QgQ8mIo8agUlUEU0JgKXLfYc8gpU2tTHqFnZZ6m6j18HwxTE+sF1/LbH2lWHDdmCs48kLvbQ==}
+ ember-modify-based-class-resource@1.1.2:
+ resolution: {integrity: sha512-eruTLd+aMzrXaLDInQSYv3zTcG5+0Ttn69W31JtOp6nSR3T22ET3q+6zZjCVNxmlDufSAu6lSFd9EAtKaazCdA==}
peerDependencies:
'@glimmer/component': ^2.0.0
- '@glimmer/tracking': ^1.1.2
ember-resources: '>= 6.4.0'
- ember-source: '>= 6.4.0-alpha.3'
peerDependenciesMeta:
'@glimmer/component':
optional: true
@@ -6601,73 +7386,74 @@ packages:
resolution: {integrity: sha512-7mcD7CNbiCaZEIASWlRz/Wmn47afCMSFTdQJSSUe0WCgnXxn9DVoqZ39B7ZuddTHa0V6otTFrV/lIRYpggQ+eg==}
engines: {node: 12.* || 14.* || >= 16}
- ember-page-title@9.0.1:
- resolution: {integrity: sha512-qo3NHJRrCZpYyGr+KkDAQDZ9IFJOFLW9qEKYer2tetSpaL9B2PQmh4KY0XdZY25jxFg8GZ1+DChDSImIbh5yzA==}
+ ember-page-title@9.0.2:
+ resolution: {integrity: sha512-ACklH6hemNB6tDAiwGo4e0tFIqVrAkTNqRmlLtLABlh+GynH7xkWm9q4fyc4Ysg9R1jP8OrsKcxWRittshRatA==}
engines: {node: 16.* || >= 18}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
- ember-primitives@0.27.2:
- resolution: {integrity: sha512-pyhwxo9ODl3Y5cIhOYCWIS+qNt7XACg8o3mwWq0AcLA0odNfB0lpcm37U4xHTCz9GZ8rpU0/AP9zjSLyqZKtSA==}
+ ember-primitives@0.32.0:
+ resolution: {integrity: sha512-VZLUgr+9ldd6FbCMgbXcRfrca+UCL8qk72FtL+yKVDJxb+7G//XrkXxiUypMB1H8tMy60+3vh1wLo7EanVE43Q==}
peerDependencies:
'@ember/test-helpers': '>= 3.2.0'
'@ember/test-waiters': ^4.1.0
'@glimmer/component': ^2.0.0
- '@glimmer/tracking': '>= 1.1.2'
- '@glint/template': '>= 1.3.0'
+ '@glint/template': '>= 1.0.0'
ember-modifier: '>= 4.1.0'
ember-resources: '>= 6.1.0'
- ember-source: '>= 6.4.0-alpha.3'
peerDependenciesMeta:
'@ember/test-helpers':
optional: true
'@glint/template':
optional: true
- ember-primitives@0.30.0:
- resolution: {integrity: sha512-douXxeHIwRljWAUGcldrAliHN/5NyWukKtv71REZHxV4pRN5T0ND/R7B4BuK2Zg/lqzeAjL4wjWiEIZapCdGSw==}
+ ember-primitives@0.34.0:
+ resolution: {integrity: sha512-59oHlBhapr13pvilzqPypWnPH4uL8OUejjcrXEO/RoI31ehRda1XuRMdtNg5Tz4uWlvdB/NI8wqEtJhiwFPBIQ==}
peerDependencies:
'@ember/test-helpers': '>= 3.2.0'
'@ember/test-waiters': ^4.1.0
'@glimmer/component': ^2.0.0
- '@glimmer/tracking': '>= 1.1.2'
'@glint/template': '>= 1.0.0'
ember-modifier: '>= 4.1.0'
ember-resources: '>= 6.1.0'
- ember-source: '>= 6.4.0-alpha.3'
peerDependenciesMeta:
'@ember/test-helpers':
optional: true
'@glint/template':
optional: true
- ember-qunit@9.0.2:
- resolution: {integrity: sha512-vAuumvTYgfFpP0LgK1uw2vBEnD7bv1JYh0JUwkFfBiAkCGV7HkjVWNcgQ2agwarfzxLgEaC0hWlOn9adwJmlNg==}
+ ember-qunit@9.0.3:
+ resolution: {integrity: sha512-t+FD5/EWAR3WvGVj1etblFJJ6CaJqddDxusNcYYFZmW7zrQpCnQ9ziwpXM5/sw1sWabkhJZgYPXCn8bDRRhOfg==}
peerDependencies:
'@ember/test-helpers': '>=3.0.3'
- ember-source: '>= 6.4.0-alpha.3'
qunit: ^2.13.0
+ ember-repl@6.0.0:
+ resolution: {integrity: sha512-2VoZkbke09+cxrNsTsG74wTlN7Ro8JUOYGQy6ODcpQlEzRvs+e0C6g4+mX65rd14pLOwQKZeMILuJQvnZKp1bw==}
+ peerDependencies:
+ '@glimmer/compiler': '>= 0.86.0'
+ '@glimmer/syntax': '>= 0.86.0'
+ '@glint/template': 1.4.1-unstable.0e0d936
+ webpack: '>= 5.92.0'
+ peerDependenciesMeta:
+ '@glimmer/compiler':
+ optional: true
+ '@glimmer/syntax':
+ optional: true
+ '@glint/template':
+ optional: true
+
ember-resize-observer-service@1.1.0:
resolution: {integrity: sha512-/vbfxtHSyOGSNdjPKL8X3SyvUnYo3z88sJtD/bLJ0ZGhqVPaXCmtSkLyr/Fh75ckJDixRFxK4i4zEUSlrbk0PA==}
engines: {node: 12.* || 14.* || >= 16}
- ember-resolver@13.1.0:
- resolution: {integrity: sha512-t/PjXLCl5tM9EQXGIFoBgHiA41HkLJpfo17Nud5Cy9eyUPGcnsMjWJqQ+O5QHA0E63Sp+zTn4y/RS5Tu2v2ydg==}
+ ember-resolver@13.1.1:
+ resolution: {integrity: sha512-rA4RDuTm/F9AzYX2+g7EY3QWU48kyF9+Ck8IE8VQipnlwv2Q42kdRWiw7hfeQbRxx6XoSZCak6nzAG9ePd/+Ug==}
engines: {node: 14.* || 16.* || >= 18}
- peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
- peerDependenciesMeta:
- ember-source:
- optional: true
- ember-resources@7.0.3:
- resolution: {integrity: sha512-aebWpULjdWEUnxheoOz5e6XZ8kDV8b79CerPSMcUkdzOcKS7N4HC8FuyCPG6M6MiVuYYqgsrhzSxyW8H1164MA==}
+ ember-resources@7.0.6:
+ resolution: {integrity: sha512-0IHjhnr+ntOA7ND6C/xzX8PUFUnmg3dz55syh6LcfkNuacb9qL91xQWQQl6OC3u15YAV4wOvavskKoX+wzE5tA==}
peerDependencies:
'@glimmer/component': ^2.0.0
- '@glimmer/tracking': '>= 1.1.2'
'@glint/template': '>= 1.0.0'
- ember-source: '>= 6.4.0-alpha.3'
peerDependenciesMeta:
'@glimmer/component':
optional: true
@@ -6687,8 +7473,8 @@ packages:
engines: {node: 10.* || 12.* || >= 14}
hasBin: true
- ember-source@6.4.0:
- resolution: {integrity: sha512-lUzSbCsOQa3vRTv1HL7dj3gLApXXrq91QeAlnOLmwETQFoa6aX8+Z+78vNHIgg0jXCpzX1pWWL/NKpe4KDuCuw==}
+ ember-source@6.7.0-alpha.3:
+ resolution: {integrity: sha512-KfLFN7sZt0JL5piTa7wdYcGBkKqlMrznT33tuxv9k1fPxdL5iZ9legZ0QNt27YN6FW8EwkwJAAGFDjjU/+tHpw==}
engines: {node: '>= 18.*'}
peerDependencies:
'@glimmer/component': ^2.0.0
@@ -6711,8 +7497,8 @@ packages:
ember-template-lint: '>= 4.0.0'
prettier: '>= 3.0.0'
- ember-template-lint@7.2.0:
- resolution: {integrity: sha512-igRCRVz3kO/7LZk3VjT38+0971LilFC3OSGO6seLp2Ue8/bGGd13cp/f8w76hhr6qeQe2+UyHNZ81EK3KbD78Q==}
+ ember-template-lint@7.9.1:
+ resolution: {integrity: sha512-uh5WU2sJKkQgDgIQovwv1D0fw2/RJnmyAHqIhaTYk68CfKQ/O5v31c1iXNu71qv3xeONi3QPl/rBW0EMdIFXWA==}
engines: {node: ^18.18.0 || >= 20.9.0}
hasBin: true
@@ -6757,11 +7543,14 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
+ encoding-sniffer@0.2.1:
+ resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==}
+
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
- end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ end-of-stream@1.4.5:
+ resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
engine.io-parser@5.2.3:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
@@ -6771,8 +7560,8 @@ packages:
resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==}
engines: {node: '>=10.2.0'}
- enhanced-resolve@5.18.1:
- resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
+ enhanced-resolve@5.18.2:
+ resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==}
engines: {node: '>=10.13.0'}
ensure-posix-path@1.1.1:
@@ -6792,8 +7581,8 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- entities@6.0.0:
- resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==}
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
engines: {node: '>=0.12'}
env-paths@2.2.1:
@@ -6833,6 +7622,9 @@ packages:
es-module-lexer@1.7.0:
resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
+ es-module-shims@2.6.1:
+ resolution: {integrity: sha512-ZdU6uF4Xka2i0ZnBT+gMt0KIaQb7yCIU0aTPk9gwgLzv3uhtHhCdcgfoQkFQzOZKSh5YJYgSBqAO0yDgRy9oig==}
+
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
@@ -6841,8 +7633,8 @@ packages:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- es-toolkit@1.36.0:
- resolution: {integrity: sha512-5lpkRpDELuTSeAL//Rcg5urg+K/yOD1BobJSiNeCc89snMqgrhckmj8jdljqraDbpREiXTNW311RN518eVHBng==}
+ es-toolkit@1.39.5:
+ resolution: {integrity: sha512-z9V0qU4lx1TBXDNFWfAASWk6RNU6c6+TJBKE+FLIg8u0XJ6Yw58Hi0yX8ftEouj6p1QARRlXLFfHbIli93BdQQ==}
es6-promise@4.2.8:
resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
@@ -6858,13 +7650,8 @@ packages:
esbuild-plugin-alias@0.2.1:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
- esbuild@0.21.5:
- resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
- engines: {node: '>=12'}
- hasBin: true
-
- esbuild@0.25.3:
- resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
+ esbuild@0.25.5:
+ resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==}
engines: {node: '>=18'}
hasBin: true
@@ -6887,21 +7674,23 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
+ escodegen@2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+
eslint-compat-utils@0.5.1:
resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
- eslint-config-prettier@10.1.2:
- resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==}
+ eslint-config-prettier@10.1.5:
+ resolution: {integrity: sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
- eslint-formatter-kakoune@1.0.0:
- resolution: {integrity: sha512-Uk/TVLt6Nf6Xoz7C1iYuZjOSdJxe5aaauGRke8JhKeJwD66Y61/pY2FjtLP04Ooq9PwV34bzrkKkU2UZ5FtDRA==}
-
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
@@ -6918,8 +7707,8 @@ packages:
eslint-plugin-import-x:
optional: true
- eslint-module-utils@2.12.0:
- resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
+ eslint-module-utils@2.12.1:
+ resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -6965,8 +7754,8 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-import@2.31.0:
- resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
+ eslint-plugin-import@2.32.0:
+ resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -6979,8 +7768,8 @@ packages:
resolution: {integrity: sha512-3An5ISV5dq/kHfXdNyY5TUe2ONC3yXFSkLX2gu+W8xAhKhfvrRvkSAeKXCxZqZ0KJLX15ojBuLPyj+UikQMkOA==}
engines: {node: '>=18.0'}
- eslint-plugin-n@17.17.0:
- resolution: {integrity: sha512-2VvPK7Mo73z1rDFb6pTvkH6kFibAmnTubFq5l83vePxu0WiY1s0LOtj2WHb6Sa40R3w4mnh8GFYbHBQyMlotKw==}
+ eslint-plugin-n@17.20.0:
+ resolution: {integrity: sha512-IRSoatgB/NQJZG5EeTbv/iAx1byOGdbbyhQrNvWdCfTnmPxUT0ao9/eGOeG7ljD8wJBsxwE8f6tES5Db0FRKEw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -7002,8 +7791,8 @@ packages:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-scope@8.3.0:
- resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
+ eslint-scope@8.4.0:
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-utils@3.0.0:
@@ -7020,12 +7809,12 @@ 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.2.0:
- resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.25.1:
- resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
+ eslint@9.29.0:
+ resolution: {integrity: sha512-GsGizj2Y1rCWDu6XoEekL3RLilp0voSePurjZIkxL3wlm5o5EC9VpgaP7lrCvjnkuLvzFBQWB3vWB3K5KQTveQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -7034,6 +7823,9 @@ packages:
jiti:
optional: true
+ esm-env@1.2.2:
+ resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
+
esm@3.2.25:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
engines: {node: '>=6'}
@@ -7042,8 +7834,8 @@ packages:
resolution: {integrity: sha512-LeuOiyyCSc2sG0Clx9A/tzApfP2gz2/YPE7IBSQwP2JPZKm8S0WZ1b1DfH9eCYXo469k81od3lFvFloYJNpTYA==}
hasBin: true
- espree@10.3.0:
- resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ espree@10.4.0:
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@3.0.0:
@@ -7060,6 +7852,9 @@ packages:
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
+ esrap@1.4.9:
+ resolution: {integrity: sha512-3OMlcd0a03UGuZpPeUC1HxR3nA23l+HEyCiZw3b3FumJIN9KphoGzDJKMXI1S72jVS1dsenDyQC0kJlO1U9E1g==}
+
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -7072,6 +7867,9 @@ 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==}
@@ -7089,6 +7887,10 @@ packages:
event-stream@3.3.4:
resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
+ event-target-shim@5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
@@ -7121,8 +7923,8 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
- execa@9.5.2:
- resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==}
+ execa@9.6.0:
+ resolution: {integrity: sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==}
engines: {node: ^18.19.0 || >=20.5.0}
exit@0.1.2:
@@ -7148,6 +7950,9 @@ packages:
resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
engines: {node: '>= 0.10.0'}
+ exsolve@1.0.7:
+ resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
+
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -7171,15 +7976,26 @@ packages:
resolution: {integrity: sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ==}
engines: {node: '>=8'}
+ extract-zip@2.0.1:
+ resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
+ engines: {node: '>= 10.17.0'}
+ hasBin: true
+
fast-content-type-parse@2.0.1:
resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==}
+ fast-deep-equal@2.0.1:
+ resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
+
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
fast-diff@1.3.0:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+ fast-fifo@1.3.2:
+ resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+
fast-glob@3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
@@ -7203,6 +8019,10 @@ packages:
fast-uri@3.0.6:
resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
+ fast-xml-parser@4.5.3:
+ resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==}
+ hasBin: true
+
fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
engines: {node: '>= 4.9.1'}
@@ -7217,14 +8037,24 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- fdir@6.4.4:
- resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
+ fd-slicer@1.1.0:
+ resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
+ fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+
+ fflate@0.8.2:
+ resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
+
figures@2.0.0:
resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
engines: {node: '>=4'}
@@ -7352,8 +8182,8 @@ packages:
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
- flow-parser@0.269.1:
- resolution: {integrity: sha512-2Yr0kqvT7RwaGL192nT78O5AWJeECQjl0NEzBkMsx8OJt63BvNl5yvSIbE4qZ1VDSjEkhbUgaWYdwX354bVNjw==}
+ flow-parser@0.274.0:
+ resolution: {integrity: sha512-pwmoGcWUSyamhv1DWhSFBROYqBfVJ/XAjqAdcrKSaisn5vI5dQ0Ni0Lawrp03TE2ZPC69vseFdeWkYlpCAqxtw==}
engines: {node: '>=0.4.0'}
focus-trap@6.9.4:
@@ -7387,10 +8217,14 @@ packages:
form-data-utils@0.6.0:
resolution: {integrity: sha512-UaKdH5OKyNJYnTTzypNiGSC3vQr99zboZQDAQ/FCSOwp4DT9j/RREQf5hPdVG3pt0d08SklYCtVTdqUzxG1CGg==}
- form-data@4.0.2:
- resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
+ form-data@4.0.3:
+ resolution: {integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==}
engines: {node: '>= 6'}
+ formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
+
forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
@@ -7473,6 +8307,11 @@ packages:
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ fsevents@2.3.2:
+ resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -7481,15 +8320,16 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- fuse.js@7.1.0:
- resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
- engines: {node: '>=10'}
-
gauge@4.0.4:
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
+ geckodriver@5.0.0:
+ resolution: {integrity: sha512-vn7TtQ3b9VMJtVXsyWtQQl1fyBVFhQy7UvJF96kPuuJ0or5THH496AD3eUyaDD11+EqCxH9t6V+EP9soZQk4YQ==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -7506,6 +8346,10 @@ packages:
resolution: {integrity: sha512-PKsK2FSrQCyxcGHsGrLDcK0lx+0Ke+6e8KFFozA9/fIQLhQzPaRvJFdcz7+Axg3jUH/Mq+NI4xa5u/UT2tQskA==}
engines: {node: '>=14.16'}
+ get-port@7.1.0:
+ resolution: {integrity: sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==}
+ engines: {node: '>=16'}
+
get-proto@1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
@@ -7534,8 +8378,12 @@ packages:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
- get-tsconfig@4.10.0:
- resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
+ get-tsconfig@4.10.1:
+ resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
+
+ get-uri@6.0.4:
+ resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==}
+ engines: {node: '>= 14'}
get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
@@ -7605,8 +8453,8 @@ packages:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
- globals@16.0.0:
- resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
+ globals@16.2.0:
+ resolution: {integrity: sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==}
engines: {node: '>=18'}
globalyzer@0.1.0:
@@ -7645,12 +8493,18 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ grapheme-splitter@1.0.4:
+ resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
growly@1.3.0:
resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==}
+ hachure-fill@0.5.2:
+ resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==}
+
handlebars@4.7.8:
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
engines: {node: '>=0.4.7'}
@@ -7698,6 +8552,9 @@ packages:
resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
engines: {node: '>=0.10.0'}
+ hash-base@2.0.2:
+ resolution: {integrity: sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==}
+
hash-base@3.0.5:
resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==}
engines: {node: '>= 0.10'}
@@ -7711,12 +8568,21 @@ packages:
hast-util-from-parse5@7.1.2:
resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==}
+ hast-util-from-parse5@8.0.3:
+ resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==}
+
hast-util-parse-selector@3.1.1:
resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
+ hast-util-parse-selector@4.0.0:
+ resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
+
hast-util-raw@7.2.3:
resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
+ hast-util-raw@9.1.0:
+ resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==}
+
hast-util-sanitize@5.0.2:
resolution: {integrity: sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==}
@@ -7729,6 +8595,9 @@ packages:
hast-util-to-parse5@7.1.0:
resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
+ hast-util-to-parse5@8.0.0:
+ resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
+
hast-util-to-string@3.0.1:
resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==}
@@ -7741,6 +8610,9 @@ packages:
hastscript@7.2.0:
resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
+ hastscript@9.0.1:
+ resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==}
+
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
@@ -7794,6 +8666,10 @@ packages:
resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==}
engines: {node: ^18.17.0 || >=20.5.0}
+ html-encoding-sniffer@3.0.0:
+ resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
+ engines: {node: '>=12'}
+
html-encoding-sniffer@4.0.0:
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
engines: {node: '>=18'}
@@ -7811,14 +8687,20 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
+ htmlfy@0.6.7:
+ resolution: {integrity: sha512-r8hRd+oIM10lufovN+zr3VKPTYEIvIwqXGucidh2XQufmiw6sbUXFUFjWlfjo3AnefIDTyzykVzQ8IUVuT1peQ==}
+
+ htmlparser2@10.0.0:
+ resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==}
+
htmlparser2@3.10.1:
resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==}
htmlparser2@7.2.0:
resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==}
- http-cache-semantics@4.1.1:
- resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+ http-cache-semantics@4.2.0:
+ resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
@@ -7843,6 +8725,11 @@ packages:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
+ http-server@14.1.1:
+ resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==}
+ engines: {node: '>=12'}
+ hasBin: true
+
http2-wrapper@2.2.1:
resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
engines: {node: '>=10.19.0'}
@@ -7913,8 +8800,8 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- ignore@7.0.4:
- resolution: {integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==}
+ ignore@7.0.5:
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
immediate@3.0.6:
@@ -7924,11 +8811,18 @@ packages:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
+ import-lazy@4.0.0:
+ resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
+ engines: {node: '>=8'}
+
import-local@3.2.0:
resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
engines: {node: '>=8'}
hasBin: true
+ import-meta-resolve@4.1.0:
+ resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -7977,6 +8871,13 @@ packages:
resolution: {integrity: sha512-LJKFHCSeIRq9hanN14IlOtPSTe3lNES7TYDTE2xxdAy1LS5rYphajK1qtwvj3YmQXvvk0U2Vbmcni8P9EIQW9w==}
engines: {node: '>=18'}
+ internmap@1.0.1:
+ resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==}
+
+ internmap@2.0.3:
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
+ engines: {node: '>=12'}
+
interpret@3.1.1:
resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==}
engines: {node: '>=10.13.0'}
@@ -8129,6 +9030,9 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+ is-reference@3.0.3:
+ resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
+
is-regex@1.2.1:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
@@ -8247,6 +9151,10 @@ packages:
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
hasBin: true
+ jiti@2.4.2:
+ resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
+ hasBin: true
+
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
@@ -8257,6 +9165,9 @@ packages:
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
@@ -8357,6 +9268,10 @@ packages:
resolution: {integrity: sha512-3KF80UaaSSxo8jVnRYtMKNGFOoVPBdkkVPsw+Ad0y4oxKXPduS6G6iHkrf69yJVff/VAaYXkV42rtZ7daJxU3w==}
engines: {node: '>=0.10.0'}
+ katex@0.16.22:
+ resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==}
+ hasBin: true
+
keyborg@2.6.0:
resolution: {integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==}
@@ -8366,6 +9281,9 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ khroma@2.1.0:
+ resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==}
+
kind-of@3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
@@ -8382,23 +9300,22 @@ packages:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- kolay@3.5.5:
- resolution: {integrity: sha512-lQAbA5WbEHIu6eXtbPMgjUHJmQCFu09J6qm1xc0z+TcKgz8mRK/iDLfxf/BByCZVz8epHr89tk1ADZk2tV05iA==}
+ kolay@3.7.2:
+ resolution: {integrity: sha512-hPQtmzQmjwzp4eXKyyGbNg4MaHTt2d/iP5XcCWuNXY5HTU9/qfdTKNdkNaRvnX5rlxOqrnwk9EXT06c9OQkW1g==}
engines: {node: '>= 18'}
peerDependencies:
'@glint/template': '*'
- ember-source: '>= 6.4.0-alpha.3'
+
+ kolorist@1.8.0:
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
ky@1.8.1:
resolution: {integrity: sha512-7Bp3TpsE+L+TARSnnDpk3xg8Idi8RwSLdj6CMbNWoOARIrGrbuLGusV0dYwbZOm4bB3jHNxSw8Wk/ByDqJEnDw==}
engines: {node: '>=18'}
- language-subtag-registry@0.3.23:
- resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
-
- language-tags@1.0.9:
- resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
- engines: {node: '>=0.10'}
+ langium@3.3.1:
+ resolution: {integrity: sha512-QJv/h939gDpvT+9SiLVlY7tZC3xB2qK57v0J04Sh9wpMb6MP1q8gB21L3WIo8T5P1MSMg3Ep14L7KkDCFG3y4w==}
+ engines: {node: '>=16.0.0'}
latest-version@7.0.0:
resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
@@ -8408,6 +9325,16 @@ packages:
resolution: {integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==}
engines: {node: '>=18'}
+ layout-base@1.0.2:
+ resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==}
+
+ layout-base@2.0.1:
+ resolution: {integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==}
+
+ lazystream@1.0.1:
+ resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
+ engines: {node: '>= 0.6.3'}
+
lcid@3.1.1:
resolution: {integrity: sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==}
engines: {node: '>=8'}
@@ -8429,9 +9356,6 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- linkify-it@4.0.1:
- resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
-
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
@@ -8449,6 +9373,16 @@ packages:
loader.js@4.7.0:
resolution: {integrity: sha512-9M2KvGT6duzGMgkOcTkWb+PR/Q2Oe54df/tLgHGVmFpAmtqJ553xJh6N63iFYI2yjo2PeJXbS5skHi/QpJq4vA==}
+ local-pkg@1.1.1:
+ resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
+ engines: {node: '>=14'}
+
+ locate-app@2.5.0:
+ resolution: {integrity: sha512-xIqbzPMBYArJRmPGUZD9CzV9wOqmVtQnaAn3wrj3s6WYW0bQvPI7x+sPYUGmDTYMHefVK//zc6HEYZ1qnxIK+Q==}
+
+ locate-character@3.0.0:
+ resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
+
locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
@@ -8469,6 +9403,9 @@ packages:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ lodash-es@4.17.21:
+ resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
+
lodash._baseflatten@3.1.4:
resolution: {integrity: sha512-fESngZd+X4k+GbTxdMutf8ohQa0s3sJEHIcwtu4/LsIQ2JTDzdRxDCMQjW+ezzwRitLmHnacVVmosCbxifefbw==}
@@ -8484,6 +9421,9 @@ packages:
lodash.castarray@4.4.0:
resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
+ lodash.clonedeep@4.5.0:
+ resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
+
lodash.debounce@3.1.1:
resolution: {integrity: sha512-lcmJwMpdPAtChA4hfiwxTtgFeNAaow701wWUgVUqeD0XJF7vMXIN+bu/2FJSGxT0NUbZy9g9VFrlOFfPjl+0Ew==}
@@ -8515,6 +9455,9 @@ packages:
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
+ lodash.zip@4.2.0:
+ resolution: {integrity: sha512-C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg==}
+
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -8530,11 +9473,18 @@ packages:
resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
engines: {node: '>=12'}
+ loglevel-plugin-prefix@0.8.4:
+ resolution: {integrity: sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==}
+
+ loglevel@1.9.2:
+ resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
+ engines: {node: '>= 0.6.0'}
+
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
- loupe@3.1.3:
- resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==}
+ loupe@3.1.4:
+ resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -8561,6 +9511,10 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
+ lru-cache@7.18.3:
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
+
lunr@2.3.9:
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
@@ -8613,10 +9567,6 @@ packages:
peerDependencies:
markdown-it: '>= 13.0.0'
- markdown-it@13.0.2:
- resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==}
- hasBin: true
-
markdown-it@14.1.0:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
@@ -8624,8 +9574,8 @@ packages:
markdown-table@3.0.4:
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- marked@15.0.11:
- resolution: {integrity: sha512-1BEXAU2euRCG3xwgLVT1y0xbJEld1XOrmRJpUwRCcy7rxhSCwMrmEu9LXoPhHSCJG41V7YcQ2mjKRr5BA3ITIA==}
+ marked@15.0.12:
+ resolution: {integrity: sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==}
engines: {node: '>= 18'}
hasBin: true
@@ -8656,30 +9606,57 @@ packages:
mdast-util-find-and-replace@2.2.2:
resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
+ mdast-util-find-and-replace@3.0.2:
+ resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
+
mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
+
mdast-util-gfm-autolink-literal@1.0.3:
resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==}
+ mdast-util-gfm-autolink-literal@2.0.1:
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
+
mdast-util-gfm-footnote@1.0.2:
resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
+ mdast-util-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
+
mdast-util-gfm-strikethrough@1.0.3:
resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
+ mdast-util-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
+
mdast-util-gfm-table@1.0.7:
resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
+ mdast-util-gfm-table@2.0.0:
+ resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
+
mdast-util-gfm-task-list-item@1.0.2:
resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
+ mdast-util-gfm-task-list-item@2.0.0:
+ resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
+
mdast-util-gfm@2.0.2:
resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==}
+ mdast-util-gfm@3.1.0:
+ resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
+
mdast-util-phrasing@3.0.1:
resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
+ mdast-util-phrasing@4.1.0:
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+
mdast-util-to-hast@12.3.0:
resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
@@ -8689,9 +9666,15 @@ packages:
mdast-util-to-markdown@1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
+ mdast-util-to-markdown@2.1.2:
+ resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
+
mdast-util-to-string@3.2.0:
resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ mdast-util-to-string@4.0.0:
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
+
mdast@3.0.0:
resolution: {integrity: sha512-xySmf8g4fPKMeC07jXGz971EkLbWAJ83s4US2Tj9lEdnZ142UP5grN73H1Xd3HzrdbU5o9GYYP/y8F9ZSwLE9g==}
deprecated: '`mdast` was renamed to `remark`'
@@ -8699,9 +9682,6 @@ packages:
mdn-data@2.12.2:
resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
- mdurl@1.0.1:
- resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
-
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
@@ -8740,6 +9720,9 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
+ mermaid@11.7.0:
+ resolution: {integrity: sha512-/1/5R0rt0Z1Ak0CuznAnCF3HtQgayRXUz6SguzOwN4L+DuCobz0UxnQ+ZdTSZ3AugKVVh78tiVmsHpHWV25TCw==}
+
methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
@@ -8747,42 +9730,81 @@ packages:
micromark-core-commonmark@1.1.0:
resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
+ micromark-core-commonmark@2.0.3:
+ resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
+
micromark-extension-gfm-autolink-literal@1.0.5:
resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==}
+ micromark-extension-gfm-autolink-literal@2.1.0:
+ resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
+
micromark-extension-gfm-footnote@1.1.2:
resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==}
+ micromark-extension-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
+
micromark-extension-gfm-strikethrough@1.0.7:
resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==}
+ micromark-extension-gfm-strikethrough@2.1.0:
+ resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
+
micromark-extension-gfm-table@1.0.7:
resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==}
+ micromark-extension-gfm-table@2.1.1:
+ resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
+
micromark-extension-gfm-tagfilter@1.0.2:
resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==}
+ micromark-extension-gfm-tagfilter@2.0.0:
+ resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
+
micromark-extension-gfm-task-list-item@1.0.5:
resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==}
+ micromark-extension-gfm-task-list-item@2.1.0:
+ resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
+
micromark-extension-gfm@2.0.3:
resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==}
+ micromark-extension-gfm@3.0.0:
+ resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
+
micromark-factory-destination@1.1.0:
resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
+ micromark-factory-destination@2.0.1:
+ resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
+
micromark-factory-label@1.1.0:
resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
+ micromark-factory-label@2.0.1:
+ resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
+
micromark-factory-space@1.1.0:
resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
+ micromark-factory-space@2.0.1:
+ resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
+
micromark-factory-title@1.1.0:
resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
+ micromark-factory-title@2.0.1:
+ resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
+
micromark-factory-whitespace@1.1.0:
resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
+ micromark-factory-whitespace@2.0.1:
+ resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
+
micromark-util-character@1.2.0:
resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
@@ -8792,18 +9814,33 @@ packages:
micromark-util-chunked@1.1.0:
resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
+ micromark-util-chunked@2.0.1:
+ resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
+
micromark-util-classify-character@1.1.0:
resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
+ micromark-util-classify-character@2.0.1:
+ resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
+
micromark-util-combine-extensions@1.1.0:
resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
+ micromark-util-combine-extensions@2.0.1:
+ resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
+
micromark-util-decode-numeric-character-reference@1.1.0:
resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
+ micromark-util-decode-numeric-character-reference@2.0.2:
+ resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
+
micromark-util-decode-string@1.1.0:
resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
+ micromark-util-decode-string@2.0.1:
+ resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
+
micromark-util-encode@1.1.0:
resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
@@ -8813,12 +9850,21 @@ packages:
micromark-util-html-tag-name@1.2.0:
resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
+ micromark-util-html-tag-name@2.0.1:
+ resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
+
micromark-util-normalize-identifier@1.1.0:
resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
+ micromark-util-normalize-identifier@2.0.1:
+ resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
+
micromark-util-resolve-all@1.1.0:
resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
+ micromark-util-resolve-all@2.0.1:
+ resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
+
micromark-util-sanitize-uri@1.2.0:
resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
@@ -8828,6 +9874,9 @@ packages:
micromark-util-subtokenize@1.1.0:
resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
+ micromark-util-subtokenize@2.1.0:
+ resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
+
micromark-util-symbol@1.1.0:
resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
@@ -8843,6 +9892,9 @@ packages:
micromark@3.2.0:
resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
+ micromark@4.0.2:
+ resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
+
micromatch@3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
engines: {node: '>=0.10.0'}
@@ -8876,6 +9928,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ mime@4.0.7:
+ resolution: {integrity: sha512-2OfDPL+e03E0LrXaGYOtTFIYhiuzep94NSsuhrNULq+stylcJedcHdzHtz0atMUuGwJfFYs0YL5xeC/Ca2x0eQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+
mimic-fn@1.2.0:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
engines: {node: '>=4'}
@@ -8916,6 +9973,9 @@ packages:
minimalistic-crypto-utils@1.0.1:
resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
+ minimatch@3.0.8:
+ resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
+
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -9014,11 +10074,19 @@ packages:
resolution: {integrity: sha512-IXnMcJ6ZyTuhRmJSjzvHSRhlVPiN9Jwc6e59V0bEJ0ba6OBeX2L0E+mRN1QseeOF4mM+F1Rit6Nh7o+rl2Yn/A==}
engines: {node: '>0.9'}
+ mlly@1.7.4:
+ resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
+
mocha@10.8.2:
resolution: {integrity: sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==}
engines: {node: '>= 14.0.0'}
hasBin: true
+ mocha@11.7.1:
+ resolution: {integrity: sha512-5EK+Cty6KheMS/YLPPMJC64g5V61gIR25KsRItHw6x4hEKT6Njp1n9LOlH4gpevuwMVS66SXaBBpg+RWZkza4A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ hasBin: true
+
morgan@1.10.0:
resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==}
engines: {node: '>= 0.8.0'}
@@ -9027,12 +10095,19 @@ packages:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
+ mrmime@2.0.1:
+ resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
+ engines: {node: '>=10'}
+
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ muggle-string@0.4.1:
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+
mustache@4.2.0:
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
hasBin: true
@@ -9059,8 +10134,8 @@ packages:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
- napi-postinstall@0.2.3:
- resolution: {integrity: sha512-Mi7JISo/4Ij2tDZ2xBE2WH+/KvVlkhA6juEjpEeRAVPNCpN3nxJo/5FhDNKgBcdmcmhaH6JjgST4xY/23ZYK0w==}
+ napi-postinstall@0.2.4:
+ resolution: {integrity: sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
@@ -9078,6 +10153,10 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+ netmask@2.0.2:
+ resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
+ engines: {node: '>= 0.4.0'}
+
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
@@ -9088,6 +10167,11 @@ packages:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
+ deprecated: Use your platform's native DOMException instead
+
node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
@@ -9097,6 +10181,10 @@ packages:
encoding:
optional: true
+ node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
node-gyp@10.3.1:
resolution: {integrity: sha512-Pp3nFHBThHzVtNY7U6JfPjvT/DTE8+o/4xKsLQtBoU+j2HLsGlhcfzflAoUreaJbNmYnX+LlLi0qjV8kpyO6xQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -9148,8 +10236,8 @@ packages:
resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
engines: {node: '>=8'}
- normalize-url@8.0.1:
- resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
+ normalize-url@8.0.2:
+ resolution: {integrity: sha512-Ee/R3SyN4BuynXcnTaekmaVdbDAEiNrHqjQIA37mHU8G9pf7aaAD4ZX3XjBLo6rsdcxA/gtkcNYZLt30ACgynw==}
engines: {node: '>=14.16'}
npm-bundled@2.0.1:
@@ -9230,6 +10318,9 @@ packages:
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
+ nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+
nwsapi@2.2.20:
resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==}
@@ -9288,12 +10379,22 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ oniguruma-parser@0.12.1:
+ resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
+
oniguruma-to-es@2.3.0:
resolution: {integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==}
+ oniguruma-to-es@4.3.3:
+ resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==}
+
onp@2.0.4:
resolution: {integrity: sha512-GQD7jcdjF8mUto+St3mRGl6M/5zB00a54kiiOS2zuT15wbwol6zP42pMQf6Qb2op82kZpyjVhjzDNei+CS4mgQ==}
+ opener@1.5.2:
+ resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
+ hasBin: true
+
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
@@ -9397,6 +10498,14 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ pac-proxy-agent@7.2.0:
+ resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==}
+ engines: {node: '>= 14'}
+
+ pac-resolver@7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
+ engines: {node: '>= 14'}
+
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
@@ -9412,6 +10521,13 @@ packages:
resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
engines: {node: '>=14.16'}
+ package-manager-detector@1.3.0:
+ resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==}
+
+ package-name-regex@4.0.3:
+ resolution: {integrity: sha512-5YeQpY/R7ALs6pApzu2cg3xAzHWLiJ1mKr0eQOa4/toQDoIfjR3vxbwKIsrK0NhAlEQUJVzv/eYDXzoG4DG6Ig==}
+ engines: {node: '>=18'}
+
package-up@5.0.0:
resolution: {integrity: sha512-MQEgDUvXCa3sGvqHg3pzHO8e9gqTCMPVrWUko3vPQGntwegmFo52mZb2abIVTjFnUcW0BcPz0D93jV5Cas1DWA==}
engines: {node: '>=18'}
@@ -9453,6 +10569,12 @@ packages:
parse5-htmlparser2-tree-adapter@6.0.1:
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
+ parse5-htmlparser2-tree-adapter@7.1.0:
+ resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
+
+ parse5-parser-stream@7.1.2:
+ resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
+
parse5@5.1.1:
resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==}
@@ -9473,6 +10595,9 @@ packages:
path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+ path-data-parser@0.1.0:
+ resolution: {integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==}
+
path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -9533,17 +10658,23 @@ packages:
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- pathval@2.0.0:
- resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
+ pathval@2.0.1:
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
engines: {node: '>= 14.16'}
+ pattern-key-compare@2.0.0:
+ resolution: {integrity: sha512-b+yp/Q0KwFotxRgemVsNQ4qyqcA/LxzyfSjqJ7maKSlYTRmaUffwfX07l7KdxkVdc89k6WYtC3SwFCEo8GhbWQ==}
+
pause-stream@0.0.11:
resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
- pbkdf2@3.1.2:
- resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
+ pbkdf2@3.1.3:
+ resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==}
engines: {node: '>=0.12'}
+ pend@1.2.0:
+ resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+
penpal@6.2.2:
resolution: {integrity: sha512-RQD7hTx14/LY7QoS3tQYO3/fzVtwvZI+JeS5udgsu7FPaEDjlvfK9HBcme9/ipzSPKnrxSgacI9PI7154W62YQ==}
@@ -9585,6 +10716,12 @@ packages:
pkg-entry-points@1.1.1:
resolution: {integrity: sha512-BhZa7iaPmB4b3vKIACoppyUoYn8/sFs17VJJtzrzPZvEnN2nqrgg911tdL65lA2m1ml6UI3iPeYbZQ4VXpn1mA==}
+ pkg-types@1.3.1:
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+
+ pkg-types@2.1.0:
+ resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
+
pkg-up@2.0.0:
resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==}
engines: {node: '>=4'}
@@ -9593,6 +10730,22 @@ packages:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
+ playwright-core@1.53.1:
+ resolution: {integrity: sha512-Z46Oq7tLAyT0lGoFx4DOuB1IA9D1TPj0QkYxpPVUnGDqHHvDpCftu1J2hM2PiWsNMoZh8+LQaarAWcDfPBc6zg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ playwright@1.53.1:
+ resolution: {integrity: sha512-LJ13YLr/ocweuwxyGf1XNFWIU4M2zUSo149Qbp+A4cpwDjsxRPj7k6H25LBrEHiEwxvRbD8HdwvQmRMSvquhYw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ points-on-curve@0.2.0:
+ resolution: {integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==}
+
+ points-on-path@0.2.1:
+ resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==}
+
portfinder@1.0.37:
resolution: {integrity: sha512-yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw==}
engines: {node: '>= 10.12'}
@@ -9611,8 +10764,8 @@ packages:
peerDependencies:
postcss: ^8.0.0
- postcss-import@16.1.0:
- resolution: {integrity: sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==}
+ postcss-import@16.1.1:
+ resolution: {integrity: sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
postcss: ^8.0.0
@@ -9680,8 +10833,8 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
posthtml-boolean-attributes@0.3.1:
@@ -9724,14 +10877,14 @@ packages:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
- prettier-plugin-ember-template-tag@2.0.4:
- resolution: {integrity: sha512-Ude3MJyPBMr/Er5aSS9Y0dsnHWX3prpJB+Jj/BKKUT/EvG2ftnIMBsZXmRu68RJA62JJB8MdKBloYmCu2pTRNg==}
+ prettier-plugin-ember-template-tag@2.0.6:
+ resolution: {integrity: sha512-fo40XXhSEvpi5BQcG/EdKkij9M0s1KiIhPyXHpnAqHOwsd883fJ9YtTkz2RwzMwKU4XtVQ0bWNWXy+vgjlaMcQ==}
engines: {node: 18.* || >= 20}
peerDependencies:
prettier: '>= 3.0.0'
- prettier-plugin-tailwindcss@0.6.11:
- resolution: {integrity: sha512-YxaYSIvZPAqhrrEpRtonnrXdghZg1irNg4qrjboCXrpybLWVs55cW2N3juhspVJiO0JBvYJT8SYsJpc8OQSnsA==}
+ prettier-plugin-tailwindcss@0.6.13:
+ resolution: {integrity: sha512-uQ0asli1+ic8xrrSmIOaElDu0FacR4x69GynTh2oZjFY10JUt6EEumTQl5tB4fMeD6I1naKd+4rXQQ7esT2i1g==}
engines: {node: '>=14.21.3'}
peerDependencies:
'@ianvs/prettier-plugin-sort-imports': '*'
@@ -9790,11 +10943,15 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.5.3:
- resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
+ prettier@3.6.2:
+ resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
engines: {node: '>=14'}
hasBin: true
+ pretty-format@27.5.1:
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
pretty-ms@9.2.0:
resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
engines: {node: '>=18'}
@@ -9858,8 +11015,8 @@ packages:
property-information@6.5.0:
resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
- property-information@7.0.0:
- resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==}
+ property-information@7.1.0:
+ resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -9868,6 +11025,13 @@ packages:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
+ proxy-agent@6.5.0:
+ resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==}
+ engines: {node: '>= 14'}
+
+ proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+
prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
@@ -9884,8 +11048,13 @@ packages:
engines: {node: '>=16'}
hasBin: true
- pump@3.0.2:
- resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+ publint@0.3.12:
+ resolution: {integrity: sha512-1w3MMtL9iotBjm1mmXtG3Nk06wnq9UhGNRpQ2j6n1Zq7YAD6gnxMMZMIxlRPAydVjVbjSm+n0lhwqsD1m4LD5w==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ pump@3.0.3:
+ resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
@@ -9906,6 +11075,12 @@ packages:
resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
engines: {node: '>=0.6'}
+ quansync@0.2.10:
+ resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
+
+ query-selector-shadow-dom@1.0.1:
+ resolution: {integrity: sha512-lT5yCqEBgfoMYpf3F2xQRK7zEr1rhIIZuceDK6+xRkJQ4NMbHTwXqk4NkwDwQMNqXgG9r9fyHnzwNVs6zV5KRw==}
+
querystring-es3@0.2.1:
resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
engines: {node: '>=0.4.x'}
@@ -9953,11 +11128,22 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- reactiveweb@1.4.1:
- resolution: {integrity: sha512-AKyjhW680sqvTG9LxJwwJ8cK5iITlvmvAfwA6RvzXIy/Zx9orrensOTN++b3TP76FPC++GcFkTySrPCPWW8HYQ==}
+ react-dom@19.1.0:
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ peerDependencies:
+ react: ^19.1.0
+
+ react-is@17.0.2:
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
+
+ react@19.1.0:
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ engines: {node: '>=0.10.0'}
+
+ reactiveweb@1.6.2:
+ resolution: {integrity: sha512-8WFolGcpwBfMSmfwckIwsJTysChpfHRNJ7NTgojJRhRssaVE/gVtZmk21/kgT+cwea6K3XbWpnOfglblBt8T7w==}
peerDependencies:
'@ember/test-waiters': ^4.1.0
- ember-source: '>= 6.4.0-alpha.3'
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -9981,10 +11167,21 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readable-stream@4.7.0:
+ resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ readdir-glob@1.1.3:
+ resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
+
readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
+ engines: {node: '>= 14.18.0'}
+
recast@0.18.10:
resolution: {integrity: sha512-XNvYvkfdAN9QewbrxeTOjgINkdY/odTgTS56ZNEWL9Ml0weT4T3sFtvnTuF+Gxyu46ANcRm1ntrF6F5LAJPAaQ==}
engines: {node: '>= 4'}
@@ -10020,12 +11217,18 @@ packages:
regex-recursion@5.1.1:
resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
+ regex-recursion@6.0.2:
+ resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
+
regex-utilities@2.3.0:
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
regex@5.1.1:
resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
+ regex@6.0.1:
+ resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==}
+
regexpu-core@6.2.0:
resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
engines: {node: '>=4'}
@@ -10056,25 +11259,43 @@ packages:
rehype-raw@6.1.1:
resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==}
+ rehype-raw@7.0.0:
+ resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
+
+ rehype-stringify@10.0.1:
+ resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==}
+
rehype-stringify@9.0.4:
resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==}
- release-plan@0.16.0:
- resolution: {integrity: sha512-S2hrXACiy39LenrdvPAhSY7PcitS4A4fAxlzoPgYyCiS2OU6Ed+cUKvN4h9/uRyZ/B3AMGywZUIPtIhCUIjTng==}
+ release-plan@0.17.0:
+ resolution: {integrity: sha512-mE6ZKEC2FLl0bMeHcd0mKXTxM8rb+gaiaLaEyL6pUmo8zKLAtJxpj6dufaoLd7peKtiw4rDyKKB2IreoGJoqXQ==}
hasBin: true
remark-gfm@3.0.1:
resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==}
+ remark-gfm@4.0.1:
+ resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
+
remark-html@16.0.1:
resolution: {integrity: sha512-B9JqA5i0qZe0Nsf49q3OXyGvyXuZFDzAP2iOFLEumymuYJITVpiH1IgsTEwTpdptDmZlMDMWeDmSawdaJIGCXQ==}
remark-parse@10.0.2:
resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
+ remark-parse@11.0.0:
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
+
remark-rehype@10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
+ remark-rehype@11.1.2:
+ resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
+
+ remark-stringify@11.0.0:
+ resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
+
remote-git-tags@3.0.0:
resolution: {integrity: sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==}
engines: {node: '>=8'}
@@ -10166,6 +11387,9 @@ packages:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
+ resolve.imports@2.0.3:
+ resolution: {integrity: sha512-aQaI4EGxTXnhA9EWScjgcpuUAbm51MXGkIHQ0WOEUyFMNjb8Yp/jIKGUu6y1SXMYG3FhTqnnscFNxs2+Pjp9YQ==}
+
resolve@1.22.10:
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
engines: {node: '>= 0.4'}
@@ -10178,6 +11402,9 @@ packages:
resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
engines: {node: '>=14.16'}
+ resq@1.11.0:
+ resolution: {integrity: sha512-G10EBz+zAAy3zUd/CDoBbXRL6ia9kOo3xRHrMDsHljI0GDkhYlyjwoCx5+3eCC4swi1uCoZQhskuJkj7Gp57Bw==}
+
restore-cursor@2.0.0:
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
engines: {node: '>=4'}
@@ -10202,6 +11429,9 @@ packages:
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ rgb2hex@0.2.5:
+ resolution: {integrity: sha512-22MOP1Rh7sAo1BZpDG6R5RFYzR2lYEgwq7HEmyW2qcsOqR2lQKmn+O//xV3YG/0rrhMC6KVX2hU+ZXuaw9a5bw==}
+
rimraf@2.5.4:
resolution: {integrity: sha512-Lw7SHMjssciQb/rRz7JyPIy9+bbUshEucPoLRvWqy09vC5zQixl8Uet+Zl+SROBB/JMWHJRdCk1qdxNWHNMvlQ==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -10222,9 +11452,15 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
+ ripemd160@2.0.1:
+ resolution: {integrity: sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==}
+
ripemd160@2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
+ robust-predicates@3.0.2:
+ resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
+
rollup-plugin-copy-assets@2.0.3:
resolution: {integrity: sha512-ETShhQGb9SoiwcNrvb3BhUNSGR89Jao0+XxxfzzLW1YsUzx8+rMO4z9oqWWmo6OHUmfNQRvqRj0cAyPkS9lN9w==}
peerDependencies:
@@ -10241,6 +11477,13 @@ packages:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
+ rollup-plugin-inject@3.0.2:
+ resolution: {integrity: sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==}
+ deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.
+
+ rollup-plugin-node-polyfills@0.2.1:
+ resolution: {integrity: sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==}
+
rollup-plugin-ts@3.4.5:
resolution: {integrity: sha512-9iCstRJpEZXSRQuXitlSZAzcGlrqTbJg1pE4CMbEi6xYldxVncdPyzA2I+j6vnh73wBymZckerS+Q/iEE/M3Ow==}
engines: {node: '>=16.15.1', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'}
@@ -10271,11 +11514,17 @@ packages:
'@swc/helpers':
optional: true
- rollup@4.40.1:
- resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
+ rollup-pluginutils@2.8.2:
+ resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
+
+ rollup@4.44.0:
+ resolution: {integrity: sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ roughjs@4.6.6:
+ resolution: {integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==}
+
route-recognizer@0.3.4:
resolution: {integrity: sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==}
@@ -10314,6 +11563,9 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ rw@1.3.3:
+ resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
+
rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
@@ -10325,6 +11577,10 @@ packages:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
+ safaridriver@1.0.0:
+ resolution: {integrity: sha512-J92IFbskyo7OYB3Dt4aTdyhag1GlInrfbPCmMteb7aBK7PwlnGz1HI0+oyNN97j7pV9DqUAVoVgkNRMrfY47mQ==}
+ engines: {node: '>=18.0.0'}
+
safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -10363,6 +11619,9 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
+ scheduler@0.26.0:
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+
schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
@@ -10375,8 +11634,11 @@ packages:
resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
engines: {node: '>= 10.13.0'}
- selenium-webdriver@4.31.0:
- resolution: {integrity: sha512-0MWEwypM0+c1NnZ87UEMxZdwphKoaK2UJ2qXzKWrJiM0gazFjgNVimxlHTOO90G2cOhphZqwpqSCJy62NTEzyA==}
+ secure-compare@3.0.1:
+ resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==}
+
+ selenium-webdriver@4.33.0:
+ resolution: {integrity: sha512-5vRhk4iI0B9nYbEitfnCjPDXBfG6o9DNhj5DG2355eQo8idETknhj1tigqqlkHsGephSZwLZqEm/d+3e1stGUA==}
engines: {node: '>= 18.20.5'}
semver@5.7.2:
@@ -10387,8 +11649,13 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
@@ -10404,6 +11671,10 @@ packages:
resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==}
engines: {node: '>= 18'}
+ serialize-error@11.0.3:
+ resolution: {integrity: sha512-2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g==}
+ engines: {node: '>=14.16'}
+
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
@@ -10455,8 +11726,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.2:
- resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ shell-quote@1.8.3:
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
engines: {node: '>= 0.4'}
shellwords@0.1.1:
@@ -10465,6 +11736,9 @@ packages:
shiki@1.29.2:
resolution: {integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==}
+ shiki@3.7.0:
+ resolution: {integrity: sha512-ZcI4UT9n6N2pDuM2n3Jbk0sR4Swzq43nLPgS/4h0E3B/NrFn2HKElrDtceSf8Zx/OWYOo7G1SAtBLypCp+YXqg==}
+
should-handle-link@1.3.0:
resolution: {integrity: sha512-1+VHDYKARWyq1gL4nYVcLWk893m4PLgWPa41f/9Tt+AKJSt0B1dZ+HN6w7fQJ/v2vLC8rwJkyOUF8ijcsNSdaA==}
@@ -10488,6 +11762,10 @@ packages:
simple-html-tokenizer@0.5.11:
resolution: {integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==}
+ sirv@3.0.1:
+ resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
+ engines: {node: '>=18'}
+
slash@1.0.0:
resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
engines: {node: '>=0.10.0'}
@@ -10538,8 +11816,8 @@ packages:
resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
engines: {node: '>= 14'}
- socks@2.8.4:
- resolution: {integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==}
+ socks@2.8.5:
+ resolution: {integrity: sha512-iF+tNDQla22geJdTyJB1wM/qrX9DMRwWrciEPwWLPRWAUEM8sQiyxgckLxWT1f7+9VabJS0jTGGr4QgBuvi6Ww==}
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
sort-object-keys@1.1.3:
@@ -10590,6 +11868,9 @@ packages:
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
+ spacetrim@0.11.59:
+ resolution: {integrity: sha512-lLYsktklSRKprreOm7NXReW8YiX2VBjbgmXYEziOoGf/qsJqAEACaDvoTtUOycwjpaSh+bT8eu0KrJn7UNxiCg==}
+
spawn-args@0.2.0:
resolution: {integrity: sha512-73BoniQDcRWgnLAf/suKH6V5H54gd1KLzwYN9FB6J/evqTV33htH9xwV/4BHek+++jzxpVlZQKKZkqstPQPmQg==}
@@ -10609,6 +11890,10 @@ packages:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
+ split2@4.2.0:
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
+ engines: {node: '>= 10.x'}
+
split@0.3.3:
resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
@@ -10644,6 +11929,10 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
+ statuses@2.0.2:
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
+ engines: {node: '>= 0.8'}
+
std-env@3.9.0:
resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
@@ -10660,9 +11949,16 @@ packages:
stream-http@3.2.0:
resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==}
+ streamx@2.22.1:
+ resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
+
strict-event-emitter-types@2.0.0:
resolution: {integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==}
+ string-argv@0.3.2:
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
+ engines: {node: '>=0.6.19'}
+
string-template@0.2.1:
resolution: {integrity: sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==}
@@ -10746,6 +12042,12 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ strip-literal@3.0.0:
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+
+ strnum@1.1.2:
+ resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==}
+
style-loader@2.0.0:
resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==}
engines: {node: '>= 10.13.0'}
@@ -10758,6 +12060,9 @@ packages:
styled_string@0.0.1:
resolution: {integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA==}
+ stylis@4.3.6:
+ resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
+
sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -10779,6 +12084,10 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
+ svelte@5.34.9:
+ resolution: {integrity: sha512-sld35zFpooaSRSj4qw8Vl/cyyK0/sLQq9qhJ7BGZo/Kd0ggYtEnvNYLlzhhoqYsYQzA0hJqkzt3RBO/8KoTZOg==}
+ engines: {node: '>=18'}
+
svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
@@ -10798,8 +12107,8 @@ packages:
tabbable@5.3.3:
resolution: {integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==}
- tabster@8.5.4:
- resolution: {integrity: sha512-5Fe8vonlp6wjkBuaU3YImZsFncXkdxhCIE6CR28nD0n84kZERIDr9T9wBeya5h1Oj19AhzGFWyZrL6/29tCobA==}
+ tabster@8.5.6:
+ resolution: {integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==}
tailwindcss@3.4.17:
resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
@@ -10810,14 +12119,23 @@ packages:
resolution: {integrity: sha512-05G8/LrzqOOFvZhhAk32wsGiPZ1lfUrl+iV7+OkKgfofZxiceZWMHkKmow71YsyVQ8IvGBP2EjcIjE5gL4l5lA==}
hasBin: true
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ tapable@2.2.2:
+ resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
engines: {node: '>=6'}
+ tar-fs@3.0.10:
+ resolution: {integrity: sha512-C1SwlQGNLe/jPNqapK8epDsXME7CAJR5RL3GcE6KWx1d9OUByzoHVcbu1VPI8tevg9H8Alae0AApHHFGzrD5zA==}
+
+ tar-stream@3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
+
tar@6.2.1:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
+ tarparser@0.0.4:
+ resolution: {integrity: sha512-H3+VR6ys/N4eRBYbcyKuy4i0lKAxW/tx+wZANTFPfXjHLkz7UDs7V9g0rdGJDsVWYyqnmvmLM7YqWZ7yrtoReA==}
+
temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
@@ -10850,19 +12168,22 @@ packages:
uglify-js:
optional: true
- terser@5.39.0:
- resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
+ terser@5.43.1:
+ resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
engines: {node: '>=10'}
hasBin: true
testem-failure-only-reporter@1.0.0:
resolution: {integrity: sha512-G3fC1FSW/mI2ElrzaJfGEtTHBB7U1IFimwC1oIpUc1+wYsgw+2tCUV1t+cB/dsBbryq4Cbe1NQ397fJ2maCs7g==}
- testem@3.15.2:
- resolution: {integrity: sha512-mRzqZktqTCWi/rUP/RQOKXvMtuvY3lxuzBVb1xGXPnRNGMEj/1DaLGn6X447yOsz6SlWxSsZfcNuiE7fT1MOKg==}
+ testem@3.16.0:
+ resolution: {integrity: sha512-TKQ3CuG/u+vDa7IUQgRQHN753wjDlgYMWE45KF5WkXyWjTNxXHPrY0qPBmHWI+kDYWc3zsJqzbS7pdzt5sc33A==}
engines: {node: '>= 7.*'}
hasBin: true
+ text-decoder@1.2.3:
+ resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
+
textextensions@2.6.0:
resolution: {integrity: sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==}
engines: {node: '>=0.8'}
@@ -10899,20 +12220,23 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.13:
- resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
+ tinyexec@1.0.1:
+ resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
+
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
engines: {node: '>=12.0.0'}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@2.0.0:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
tldts-core@6.1.86:
@@ -10941,6 +12265,10 @@ packages:
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+ to-buffer@1.2.1:
+ resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==}
+ engines: {node: '>= 0.4'}
+
to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
@@ -10968,6 +12296,10 @@ packages:
toposort@2.0.2:
resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==}
+ totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+
tough-cookie@5.1.2:
resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
engines: {node: '>=16'}
@@ -10979,9 +12311,6 @@ packages:
resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
engines: {node: '>=18'}
- tracked-built-ins@3.4.0:
- resolution: {integrity: sha512-aRwWQXC3VkY50oYxS7wKZiavkjf3uaN+UYUH30D5gxUqbxDN2LnNsfWyDfckmxHUGw4gJDH5lpRS0jX/tim0vw==}
-
tracked-built-ins@4.0.0:
resolution: {integrity: sha512-0Jl43A1SDZd+yYCJvXfgDSn4Wk/zcawkyFTBPqOETU5UJRngnVEnQ8oOjawqPRg6qja3sKjIQ8z6X9xJzcUTUA==}
@@ -10989,7 +12318,7 @@ packages:
resolution: {integrity: sha512-adZtX+RGN6F+pWs/5JqVuDxLhuia4uhqmQp+UlUaxpykWjDFETtAdQR+LdDJiFPXFAXnS6FBqn/tnSLJQCm3Yw==}
engines: {node: 14.* || 16.* || >= 18}
peerDependencies:
- ember-source: '>= 6.4.0-alpha.3'
+ ember-source: '>= 6.7.0-alpha.1'
peerDependenciesMeta:
ember-source:
optional: true
@@ -11023,6 +12352,15 @@ packages:
peerDependencies:
typescript: ^3.x || ^4.x || ^5.x
+ ts-declaration-location@1.0.7:
+ resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
+ peerDependencies:
+ typescript: '>=4.0.0'
+
+ ts-dedent@2.2.0:
+ resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
+ engines: {node: '>=6.10'}
+
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
@@ -11042,38 +12380,38 @@ packages:
resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==}
engines: {node: ^16.14.0 || >=18.0.0}
- turbo-darwin-64@2.5.2:
- resolution: {integrity: sha512-2aIl0Sx230nLk+Cg2qSVxvPOBWCZpwKNuAMKoROTvWKif6VMpkWWiR9XEPoz7sHeLmCOed4GYGMjL1bqAiIS/g==}
+ turbo-darwin-64@2.5.4:
+ resolution: {integrity: sha512-ah6YnH2dErojhFooxEzmvsoZQTMImaruZhFPfMKPBq8sb+hALRdvBNLqfc8NWlZq576FkfRZ/MSi4SHvVFT9PQ==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@2.5.2:
- resolution: {integrity: sha512-MrFYhK/jYu8N6QlqZtqSHi3e4QVxlzqU3ANHTKn3/tThuwTLbNHEvzBPWSj5W7nZcM58dCqi6gYrfRz6bJZyAA==}
+ turbo-darwin-arm64@2.5.4:
+ resolution: {integrity: sha512-2+Nx6LAyuXw2MdXb7pxqle3MYignLvS7OwtsP9SgtSBaMlnNlxl9BovzqdYAgkUW3AsYiQMJ/wBRb7d+xemM5A==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@2.5.2:
- resolution: {integrity: sha512-LxNqUE2HmAJQ/8deoLgMUDzKxd5bKxqH0UBogWa+DF+JcXhtze3UTMr6lEr0dEofdsEUYK1zg8FRjglmwlN5YA==}
+ turbo-linux-64@2.5.4:
+ resolution: {integrity: sha512-5May2kjWbc8w4XxswGAl74GZ5eM4Gr6IiroqdLhXeXyfvWEdm2mFYCSWOzz0/z5cAgqyGidF1jt1qzUR8hTmOA==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@2.5.2:
- resolution: {integrity: sha512-0MI1Ao1q8zhd+UUbIEsrM+yLq1BsrcJQRGZkxIsHFlGp7WQQH1oR3laBgfnUCNdCotCMD6w4moc9pUbXdOR3bg==}
+ turbo-linux-arm64@2.5.4:
+ resolution: {integrity: sha512-/2yqFaS3TbfxV3P5yG2JUI79P7OUQKOUvAnx4MV9Bdz6jqHsHwc9WZPpO4QseQm+NvmgY6ICORnoVPODxGUiJg==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@2.5.2:
- resolution: {integrity: sha512-hOLcbgZzE5ttACHHyc1ajmWYq4zKT42IC3G6XqgiXxMbS+4eyVYTL+7UvCZBd3Kca1u4TLQdLQjeO76zyDJc2A==}
+ turbo-windows-64@2.5.4:
+ resolution: {integrity: sha512-EQUO4SmaCDhO6zYohxIjJpOKRN3wlfU7jMAj3CgcyTPvQR/UFLEKAYHqJOnJtymbQmiiM/ihX6c6W6Uq0yC7mA==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@2.5.2:
- resolution: {integrity: sha512-fMU41ABhSLa18H8V3Z7BMCGynQ8x+wj9WyBMvWm1jeyRKgkvUYJsO2vkIsy8m0vrwnIeVXKOIn6eSe1ddlBVqw==}
+ turbo-windows-arm64@2.5.4:
+ resolution: {integrity: sha512-oQ8RrK1VS8lrxkLriotFq+PiF7iiGgkZtfLKF4DDKsmdbPo0O9R2mQxm7jHLuXraRCuIQDWMIw6dpcr7Iykf4A==}
cpu: [arm64]
os: [win32]
- turbo@2.5.2:
- resolution: {integrity: sha512-Qo5lfuStr6LQh3sPQl7kIi243bGU4aHGDQJUf6ylAdGwks30jJFloc9NYHP7Y373+gGU9OS0faA4Mb5Sy8X9Xw==}
+ turbo@2.5.4:
+ resolution: {integrity: sha512-kc8ZibdRcuWUG1pbYSBFWqmIjynlD8Lp7IB6U3vIzvOv9VG+6Sp8bzyeBWE3Oi8XV5KsQrznyRTBPvrf99E4mA==}
hasBin: true
type-check@0.4.0:
@@ -11088,19 +12426,31 @@ packages:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- type-fest@4.40.1:
- resolution: {integrity: sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==}
+ type-fest@2.19.0:
+ resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
+ engines: {node: '>=12.20'}
+
+ type-fest@4.26.0:
+ resolution: {integrity: sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw==}
+ engines: {node: '>=16'}
+
+ type-fest@4.41.0:
+ resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
engines: {node: '>=16'}
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
+ engines: {node: '>= 0.4'}
+
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typedoc@0.28.3:
- resolution: {integrity: sha512-5svOCTfXvVSh6zbZKSQluZhR8yN2tKpTeHZxlmWpE6N5vc3R8k/jhg9nnD6n5tN9/ObuQTojkONrOxFdUFUG9w==}
+ typedoc@0.28.4:
+ resolution: {integrity: sha512-xKvKpIywE1rnqqLgjkoq0F3wOqYaKO9nV6YkkSat6IxOWacUCc/7Es0hR3OPmkIqkPoEn7U3x+sYdG72rstZQA==}
engines: {node: '>= 18', pnpm: '>= 10'}
hasBin: true
peerDependencies:
@@ -11109,11 +12459,11 @@ packages:
typesafe-path@0.2.2:
resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==}
- typescript-auto-import-cache@0.3.5:
- resolution: {integrity: sha512-fAIveQKsoYj55CozUiBoj4b/7WpN0i4o74wiGY5JVUEoD0XiqDk1tJqTEjgzL2/AizKQrXxyRosSebyDzBZKjw==}
+ typescript-auto-import-cache@0.3.6:
+ resolution: {integrity: sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ==}
- typescript-eslint@8.31.1:
- resolution: {integrity: sha512-j6DsEotD/fH39qKzXTQRwYYWlt7D+0HmfpOK+DVhwJOFLcdmn92hq3mBb7HlKJHbjjI/gTOqEcc9d6JfpFf/VA==}
+ typescript-eslint@8.35.0:
+ resolution: {integrity: sha512-uEnz70b7kBz6eg/j0Czy6K5NivaYopgxRjsnAJ2Fx5oTLo3wefTHIbL7AkQr1+7tJCRVpTs/wiM8JR/11Loq9A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -11122,8 +12472,13 @@ packages:
typescript-memoize@1.1.1:
resolution: {integrity: sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA==}
- typescript@5.7.3:
- resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
+ typescript@5.8.2:
+ resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
engines: {node: '>=14.17'}
hasBin: true
@@ -11131,12 +12486,12 @@ packages:
resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==}
hasBin: true
- uc.micro@1.0.6:
- resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
-
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
+ ufo@1.6.1:
+ resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
+
uglify-js@3.19.3:
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
@@ -11151,6 +12506,17 @@ packages:
undici-types@6.21.0:
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
+ undici-types@7.8.0:
+ resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==}
+
+ undici@6.21.3:
+ resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==}
+ engines: {node: '>=18.17'}
+
+ undici@7.10.0:
+ resolution: {integrity: sha512-u5otvFBOBZvmdjWLVW+5DAc9Nkq8f24g0O9oY7qw2JVIF1VocIFoyz9JFkuVOS2j41AufeO0xnlweJ2RLT8nGw==}
+ engines: {node: '>=20.18.1'}
+
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
@@ -11185,6 +12551,10 @@ packages:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
+ union@0.5.0:
+ resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
+ engines: {node: '>= 0.8.0'}
+
unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
@@ -11239,8 +12609,8 @@ packages:
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- universal-user-agent@7.0.2:
- resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
+ universal-user-agent@7.0.3:
+ resolution: {integrity: sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==}
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
@@ -11254,16 +12624,39 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
+ unplugin-icons@22.1.0:
+ resolution: {integrity: sha512-ect2ZNtk1Zgwb0NVHd0C1IDW/MV+Jk/xaq4t8o6rYdVS3+L660ZdD5kTSQZvsgdwCvquRw+/wYn75hsweRjoIA==}
+ peerDependencies:
+ '@svgr/core': '>=7.0.0'
+ '@svgx/core': ^1.0.1
+ '@vue/compiler-sfc': ^3.0.2 || ^2.7.0
+ svelte: ^3.0.0 || ^4.0.0 || ^5.0.0
+ vue-template-compiler: ^2.6.12
+ vue-template-es2015-compiler: ^1.9.0
+ peerDependenciesMeta:
+ '@svgr/core':
+ optional: true
+ '@svgx/core':
+ optional: true
+ '@vue/compiler-sfc':
+ optional: true
+ svelte:
+ optional: true
+ vue-template-compiler:
+ optional: true
+ vue-template-es2015-compiler:
+ optional: true
+
unplugin@1.16.1:
resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
engines: {node: '>=14.0.0'}
- unplugin@2.3.2:
- resolution: {integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w==}
+ unplugin@2.3.5:
+ resolution: {integrity: sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw==}
engines: {node: '>=18.12.0'}
- unrs-resolver@1.7.2:
- resolution: {integrity: sha512-BBKpaylOW8KbHsu378Zky/dGh4ckT/4NW/0SHRABdqRLcQJ2dAOjDo9g97p04sWflm0kqPqpUatxReNV/dqI5A==}
+ unrs-resolver@1.9.2:
+ resolution: {integrity: sha512-VUyWiTNQD7itdiMuJy+EuLEErLj3uwX/EpHQF8EOf33Dq3Ju6VW1GXm+swk6+1h7a49uv9fKZ+dft9jU7esdLA==}
unset-value@1.0.0:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
@@ -11286,6 +12679,9 @@ packages:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
+ url-join@4.0.1:
+ resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
+
url-parse-lax@3.0.0:
resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
@@ -11294,10 +12690,17 @@ packages:
resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
engines: {node: '>= 0.4'}
+ urlpattern-polyfill@10.1.0:
+ resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==}
+
use@3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
+ userhome@1.0.1:
+ resolution: {integrity: sha512-5cnLm4gseXjAclKowC4IjByaGsjtAoV6PrOQOljplNB54ReUYJP8HdAFq2muHinSDAh09PPX/uXDPfdxRHvuSA==}
+ engines: {node: '>= 0.8.0'}
+
username-sync@1.0.3:
resolution: {integrity: sha512-m/7/FSqjJNAzF2La448c/aEom0gJy7HY7Y509h6l0ePvEkFictAGptwWaj1msWJ38JbfEDOUoE8kqFee9EHKdA==}
@@ -11315,6 +12718,10 @@ packages:
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
hasBin: true
+ uuid@11.1.0:
+ resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
+ hasBin: true
+
uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
@@ -11324,9 +12731,6 @@ packages:
engines: {node: '>=8'}
hasBin: true
- v8-compile-cache@2.4.0:
- resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
-
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
@@ -11334,8 +12738,8 @@ packages:
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- validate-npm-package-name@6.0.0:
- resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
+ validate-npm-package-name@6.0.1:
+ resolution: {integrity: sha512-OaI//3H0J7ZkR1OqlhGA8cA+Cbk/2xFOQpJOt5+s27/ta9eZwpeervh4Mxh4w0im/kdgktowaqVNR7QOrUd7Yg==}
engines: {node: ^18.17.0 || >=20.5.0}
vary@1.1.2:
@@ -11345,6 +12749,9 @@ packages:
vfile-location@4.1.0:
resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
+ vfile-location@5.0.3:
+ resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
+
vfile-message@3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
@@ -11357,49 +12764,41 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-node@3.1.2:
- resolution: {integrity: sha512-/8iMryv46J3aK13iUXsei5G/A3CUlW4665THCPS+K8xAaqrVWiGB4RfXMQXCLjpK9P2eK//BczrVkn5JLAk6DA==}
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
+ vite-plugin-circular-dependency@0.5.0:
+ resolution: {integrity: sha512-7SQX1IZbf5to/S3A3/syfntRNg20Cth6KgTCwHpNZIcuDCtPclV2Bwvdd9HWG+alKZ04mmdlchNOPQgBl7/vQQ==}
+
+ vite-plugin-dts@4.5.4:
+ resolution: {integrity: sha512-d4sOM8M/8z7vRXHHq/ebbblfaxENjogAAekcfcDCCwAyvGqnPrc7f4NZbvItS+g4WTgerW0xDwSz5qz11JT3vg==}
+ peerDependencies:
+ typescript: '*'
+ vite: '*'
+ peerDependenciesMeta:
+ vite:
+ optional: true
+
+ vite-plugin-mkcert@1.17.8:
+ resolution: {integrity: sha512-S+4tNEyGqdZQ3RLAG54ETeO2qyURHWrVjUWKYikLAbmhh/iJ+36gDEja4OWwFyXNuvyXcZwNt5TZZR9itPeG5Q==}
+ engines: {node: '>=v16.7.0'}
+ peerDependencies:
+ vite: '>=3'
+
vite-plugin-node-polyfills@0.23.0:
resolution: {integrity: sha512-4n+Ys+2bKHQohPBKigFlndwWQ5fFKwaGY6muNDMTb0fSQLyBzS+jjUNRZG9sKF0S/Go4ApG6LFnUGopjkILg3w==}
peerDependencies:
vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
- vite@5.4.19:
- resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
+ vite-plugin-wasm@3.4.1:
+ resolution: {integrity: sha512-ja3nSo2UCkVeitltJGkS3pfQHAanHv/DqGatdI39ja6McgABlpsZ5hVgl6wuR8Qx5etY3T5qgDQhOWzc5RReZA==}
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
+ vite: ^2 || ^3 || ^4 || ^5 || ^6
- vite@6.3.4:
- resolution: {integrity: sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==}
+ vite@6.3.5:
+ resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -11438,16 +12837,16 @@ packages:
yaml:
optional: true
- vitest@3.1.2:
- resolution: {integrity: sha512-WaxpJe092ID1C0mr+LH9MmNrhfzi8I65EX/NRU/Ld016KqQNRgxSOlGNP1hHN+a/F8L15Mh8klwaF77zR3GeDQ==}
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/debug': ^4.1.12
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.1.2
- '@vitest/ui': 3.1.2
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -11469,6 +12868,14 @@ packages:
vm-browserify@1.1.2:
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
+ volar-service-html@0.0.64:
+ resolution: {integrity: sha512-5xknMYKmZBFzp2399RlsnGce25PfNu9ViXa1s63Q8NP6xeXcF3lInFsV+1o2DWBoXZdnXcuRvWOA+K+JIZLEcA==}
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+
volar-service-typescript@0.0.64:
resolution: {integrity: sha512-FN2H97iqjR1id8AM4fH7lTXuTx2on9zD6QlUFllaiHKqgNrEITlQwm/9Ujrd9ST7MUzhgIKyUsa2WlanX9kkMg==}
peerDependencies:
@@ -11477,6 +12884,9 @@ packages:
'@volar/language-service':
optional: true
+ vscode-html-languageservice@5.5.0:
+ resolution: {integrity: sha512-No6Er2P2L8IsXDnUFlp0bP4f2sdkJv+zJLZYFhtEQIp+2xNfxY8WYkhSxLJ/7bZhuV/aU55lmGSSHBVxSGer3Q==}
+
vscode-json-languageservice@4.2.1:
resolution: {integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==}
@@ -11500,9 +12910,20 @@ packages:
vscode-nls@5.2.0:
resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==}
+ vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+
vscode-uri@3.1.0:
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
+ vue@3.5.17:
+ resolution: {integrity: sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
@@ -11510,6 +12931,11 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
+ wait-port@1.1.0:
+ resolution: {integrity: sha512-3e04qkoN3LxTMLakdqeWth8nih8usyg+sf1Bgdf9wwUkp05iuK1eSY/QpLvscT/+F/gA89+LpUmmgBtesbqI2Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+
walk-sync@0.3.4:
resolution: {integrity: sha512-ttGcuHA/OBnN2pcM6johpYlEms7XpO5/fyKIr48541xXedan4roO8cS1Q2S/zbbjGH/BarYDAMeS2Mi9HE5Tig==}
@@ -11531,8 +12957,8 @@ packages:
resolution: {integrity: sha512-MrJK9z7kD5Gl3jHBnnBVHvr1saVGAfmkyyrvuNzV/oe0Gr1nwZTy5VSA0Gw2j2Or0Mu8HcjUa44qlBvC2Ofnpg==}
engines: {node: '>= 8'}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ watchpack@2.4.4:
+ resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
@@ -11541,6 +12967,23 @@ packages:
web-namespaces@2.0.1:
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
+ web-streams-polyfill@3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ engines: {node: '>= 8'}
+
+ webdriver@9.16.2:
+ resolution: {integrity: sha512-T7QKqD+N0hfvrxq/am5wqdOuyOy7F2tGS7X2f/7jyhrxSPG6Q0cNkSt4gCwla+q3nDMivCP0QIPc7mAVSx5AYQ==}
+ engines: {node: '>=18.20.0'}
+
+ webdriverio@9.16.2:
+ resolution: {integrity: sha512-aRcfBZyY+OFqz2DI0ZYmMahGlH3h/clAXXOQSFN5QfrHG4Cjuo5xy3lq4tVfszjEJ813+wwC4HJLbgDmMrPXkA==}
+ engines: {node: '>=18.20.0'}
+ peerDependencies:
+ puppeteer-core: '>=22.x || <=24.x'
+ peerDependenciesMeta:
+ puppeteer-core:
+ optional: true
+
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -11573,15 +13016,15 @@ packages:
webpack-sources@1.4.3:
resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ webpack-sources@3.3.3:
+ resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
engines: {node: '>=10.13.0'}
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.99.7:
- resolution: {integrity: sha512-CNqKBRMQjwcmKR0idID5va1qlhrqVUKpovi+Ec79ksW8ux7iS1+A6VqzfZXgVYCFRKl7XL5ap3ZoMpwBJxcg0w==}
+ webpack@5.99.9:
+ resolution: {integrity: sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -11598,6 +13041,10 @@ packages:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
+ whatwg-encoding@2.0.0:
+ resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
+ engines: {node: '>=12'}
+
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
@@ -11663,8 +13110,8 @@ packages:
workerpool@6.5.1:
resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
- workerpool@9.2.0:
- resolution: {integrity: sha512-PKZqBOCo6CYkVOwAxWxQaSF2Fvb5Iv2fCeTP7buyWI2GiynWr46NcXSgK/idoV6e60dgCBfgYc+Un3HMvmqP8w==}
+ workerpool@9.3.2:
+ resolution: {integrity: sha512-Xz4Nm9c+LiBHhDR5bDLnNzmj6+5F+cyEAWPMkbs2awq/dYazR/efelZzUAjB/y3kNHL+uzkHvxVVpaOfGCPV7A==}
wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
@@ -11711,8 +13158,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ ws@8.18.2:
+ resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -11734,8 +13181,8 @@ packages:
xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
- xstate@5.19.2:
- resolution: {integrity: sha512-B8fL2aP0ogn5aviAXFzI5oZseAMqN00fg/TeDa3ZtatyDcViYLIfuQl4y8qmHCiKZgGEzmnTyNtNQL9oeJE2gw==}
+ xstate@5.19.4:
+ resolution: {integrity: sha512-h1UMSYOB564NXqAI+VpXrxwaBdOJUh6LOStooQ+Rn/+gqJWtGBfjZn265BwFI8Mp4ZoOyoLDNf8X1yp3faBUZQ==}
xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
@@ -11759,9 +13206,9 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.7.1:
- resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
- engines: {node: '>= 14'}
+ yaml@2.8.0:
+ resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
+ engines: {node: '>= 14.6'}
hasBin: true
yargs-parser@20.2.9:
@@ -11788,6 +13235,9 @@ packages:
resolution: {integrity: sha512-WJROw2k51FvKMfR5236gNhv+BlLHjQI1P5/2Qvu9DnMjTWeda9j+YQgKIxjkSufzu+XanwKHre8lmRDuv9hqnw==}
hasBin: true
+ yauzl@2.10.0:
+ resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -11804,6 +13254,13 @@ packages:
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
+ zimmerframe@1.1.2:
+ resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
+
+ zip-stream@6.0.1:
+ resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
+ engines: {node: '>= 14'}
+
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -11828,12 +13285,19 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@asamuzakjp/css-color@3.1.5':
+ '@antfu/install-pkg@1.1.0':
+ dependencies:
+ package-manager-detector: 1.3.0
+ tinyexec: 1.0.1
+
+ '@antfu/utils@8.1.1': {}
+
+ '@asamuzakjp/css-color@3.2.0':
dependencies:
- '@csstools/css-calc': 2.1.3(c34895f76d88506bae462547752fc0af)
- '@csstools/css-color-parser': 3.0.9(c34895f76d88506bae462547752fc0af)
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-calc': 2.1.4(f5bbab77a7781b6ee795024fdb514bb3)
+ '@csstools/css-color-parser': 3.0.10(f5bbab77a7781b6ee795024fdb514bb3)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
lru-cache: 10.4.3
'@babel/code-frame@7.27.1':
@@ -11842,82 +13306,82 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.27.1': {}
+ '@babel/compat-data@7.27.5': {}
- '@babel/core@7.27.1':
+ '@babel/core@7.27.7':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
- '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
- '@babel/helpers': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/template': 7.27.1
- '@babel/traverse': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.27.7
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.27.7
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.27.1(4a43aebe8aa03544380dbd584f92ba52)':
+ '@babel/eslint-parser@7.27.5(deda1a73e14af5de11cfd237cc45e668)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.27.1':
+ '@babel/generator@7.27.5':
dependencies:
- '@babel/parser': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/parser': 7.27.7
+ '@babel/types': 7.27.7
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.27.1':
+ '@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.27.1
+ '@babel/types': 7.27.7
- '@babel/helper-compilation-targets@7.27.1':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.27.1
+ '@babel/compat-data': 7.27.5
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.24.4
+ browserslist: 4.25.1
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.1)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.1)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.1)':
+ '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
lodash.debounce: 4.0.8
resolve: 1.22.10
transitivePeerDependencies:
@@ -11925,55 +13389,55 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.27.7
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.27.1
+ '@babel/types': 7.27.7
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.1)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.1)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.27.7
transitivePeerDependencies:
- supports-color
@@ -11985,486 +13449,487 @@ snapshots:
'@babel/helper-wrap-function@7.27.1':
dependencies:
- '@babel/template': 7.27.1
- '@babel/traverse': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.27.1':
+ '@babel/helpers@7.27.6':
dependencies:
- '@babel/template': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/template': 7.27.2
+ '@babel/types': 7.27.7
- '@babel/parser@7.27.1':
+ '@babel/parser@7.27.7':
dependencies:
- '@babel/types': 7.27.1
+ '@babel/types': 7.27.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.27.1)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-proposal-decorators@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.27.1)':
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.27.1)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.1)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.1)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.1)
- '@babel/traverse': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.7)
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
- '@babel/traverse': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
+ '@babel/traverse': 7.27.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/template': 7.27.1
+ '@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-object-rest-spread@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.7)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-regenerator@7.27.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-runtime@7.27.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.1)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.1)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.7)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.7)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-annotate-as-pure': 7.27.1
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.1)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.27.1
'@babel/polyfill@7.12.1':
@@ -12472,109 +13937,109 @@ snapshots:
core-js: 2.6.12
regenerator-runtime: 0.13.11
- '@babel/preset-env@7.27.1(@babel/core@7.27.1)':
+ '@babel/preset-env@7.27.2(@babel/core@7.27.7)':
dependencies:
- '@babel/compat-data': 7.27.1
- '@babel/core': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
+ '@babel/compat-data': 7.27.5
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-block-scoping': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-destructuring': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-object-rest-spread': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-regenerator': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.1)
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.1)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.1)
- core-js-compat: 3.42.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.7)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.27.7)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.7)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.7)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-regenerator': 7.27.5(@babel/core@7.27.7)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.7)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.7)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.7)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.7)
+ core-js-compat: 3.43.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.27.1(@babel/core@7.27.1)':
+ '@babel/preset-flow@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.7)
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.1)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/types': 7.27.7
esutils: 2.0.3
- '@babel/preset-typescript@7.27.1(@babel/core@7.27.1)':
+ '@babel/preset-typescript@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.27.1(@babel/core@7.27.1)':
+ '@babel/register@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -12585,35 +14050,54 @@ snapshots:
dependencies:
regenerator-runtime: 0.13.11
- '@babel/runtime@7.27.1': {}
+ '@babel/runtime@7.27.6': {}
- '@babel/standalone@7.27.1': {}
+ '@babel/standalone@7.27.7': {}
- '@babel/template@7.27.1':
+ '@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/parser': 7.27.7
+ '@babel/types': 7.27.7
- '@babel/traverse@7.27.1':
+ '@babel/traverse@7.27.7':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/template': 7.27.1
- '@babel/types': 7.27.1
- debug: 4.4.0(supports-color@8.1.1)
+ '@babel/generator': 7.27.5
+ '@babel/parser': 7.27.7
+ '@babel/template': 7.27.2
+ '@babel/types': 7.27.7
+ debug: 4.4.1
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.27.1':
+ '@babel/types@7.27.7':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
'@bazel/runfiles@6.3.1': {}
+ '@braintree/sanitize-url@7.1.1': {}
+
+ '@chevrotain/cst-dts-gen@11.0.3':
+ dependencies:
+ '@chevrotain/gast': 11.0.3
+ '@chevrotain/types': 11.0.3
+ lodash-es: 4.17.21
+
+ '@chevrotain/gast@11.0.3':
+ dependencies:
+ '@chevrotain/types': 11.0.3
+ lodash-es: 4.17.21
+
+ '@chevrotain/regexp-to-ast@11.0.3': {}
+
+ '@chevrotain/types@11.0.3': {}
+
+ '@chevrotain/utils@11.0.3': {}
+
'@cnakazawa/watch@1.0.4':
dependencies:
exec-sh: 0.3.6
@@ -12621,14 +14105,14 @@ snapshots:
'@codemirror/autocomplete@6.18.6':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@codemirror/buildhelper@1.0.2':
dependencies:
- '@lezer/generator': 1.7.3
+ '@lezer/generator': 1.8.0
'@marijn/buildtool': 1.1.0
'@marijn/testtool': 0.1.3
transitivePeerDependencies:
@@ -12636,79 +14120,79 @@ snapshots:
- supports-color
- utf-8-validate
- '@codemirror/commands@6.8.0':
+ '@codemirror/commands@6.8.1':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@codemirror/lang-angular@0.1.4':
dependencies:
'@codemirror/lang-html': 6.4.9
- '@codemirror/lang-javascript': 6.2.3
- '@codemirror/language': 6.11.0
+ '@codemirror/lang-javascript': 6.2.4
+ '@codemirror/language': 6.11.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@codemirror/lang-cpp@6.0.2':
+ '@codemirror/lang-cpp@6.0.3':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@lezer/cpp': 1.1.3
'@codemirror/lang-css@6.3.1':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
- '@lezer/css': 1.1.11
+ '@lezer/css': 1.2.1
'@codemirror/lang-go@6.0.1':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
- '@lezer/go': 1.0.0
+ '@lezer/go': 1.0.1
'@codemirror/lang-html@6.4.9':
dependencies:
'@codemirror/autocomplete': 6.18.6
'@codemirror/lang-css': 6.3.1
- '@codemirror/lang-javascript': 6.2.3
- '@codemirror/language': 6.11.0
+ '@codemirror/lang-javascript': 6.2.4
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
- '@lezer/css': 1.1.11
+ '@lezer/css': 1.2.1
'@lezer/html': 1.3.10
- '@codemirror/lang-java@6.0.1':
+ '@codemirror/lang-java@6.0.2':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@lezer/java': 1.1.3
- '@codemirror/lang-javascript@6.2.3':
+ '@codemirror/lang-javascript@6.2.4':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/lint': 6.8.5
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@lezer/javascript': 1.5.1
- '@codemirror/lang-json@6.0.1':
+ '@codemirror/lang-json@6.0.2':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@lezer/json': 1.0.3
'@codemirror/lang-less@6.0.2':
dependencies:
'@codemirror/lang-css': 6.3.1
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
@@ -12717,56 +14201,56 @@ snapshots:
dependencies:
'@codemirror/autocomplete': 6.18.6
'@codemirror/lang-html': 6.4.9
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@codemirror/lang-markdown@6.3.2':
+ '@codemirror/lang-markdown@6.3.3':
dependencies:
'@codemirror/autocomplete': 6.18.6
'@codemirror/lang-html': 6.4.9
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@lezer/markdown': 1.4.3
- '@codemirror/lang-php@6.0.1':
+ '@codemirror/lang-php@6.0.2':
dependencies:
'@codemirror/lang-html': 6.4.9
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
'@lezer/php': 1.0.2
- '@codemirror/lang-python@6.2.0':
+ '@codemirror/lang-python@6.2.1':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
'@lezer/python': 1.1.18
- '@codemirror/lang-rust@6.0.1':
+ '@codemirror/lang-rust@6.0.2':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@lezer/rust': 1.0.2
'@codemirror/lang-sass@6.0.2':
dependencies:
'@codemirror/lang-css': 6.3.1
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
- '@lezer/sass': 1.0.7
+ '@lezer/sass': 1.1.0
- '@codemirror/lang-sql@6.8.0':
+ '@codemirror/lang-sql@6.9.0':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -12775,15 +14259,15 @@ snapshots:
'@codemirror/lang-vue@0.1.3':
dependencies:
'@codemirror/lang-html': 6.4.9
- '@codemirror/lang-javascript': 6.2.3
- '@codemirror/language': 6.11.0
+ '@codemirror/lang-javascript': 6.2.4
+ '@codemirror/language': 6.11.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
'@codemirror/lang-wast@6.0.2':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
@@ -12791,16 +14275,16 @@ snapshots:
'@codemirror/lang-xml@6.1.0':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@lezer/xml': 1.0.6
'@codemirror/lang-yaml@6.1.2':
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -12810,32 +14294,32 @@ snapshots:
'@codemirror/language-data@6.5.1':
dependencies:
'@codemirror/lang-angular': 0.1.4
- '@codemirror/lang-cpp': 6.0.2
+ '@codemirror/lang-cpp': 6.0.3
'@codemirror/lang-css': 6.3.1
'@codemirror/lang-go': 6.0.1
'@codemirror/lang-html': 6.4.9
- '@codemirror/lang-java': 6.0.1
- '@codemirror/lang-javascript': 6.2.3
- '@codemirror/lang-json': 6.0.1
+ '@codemirror/lang-java': 6.0.2
+ '@codemirror/lang-javascript': 6.2.4
+ '@codemirror/lang-json': 6.0.2
'@codemirror/lang-less': 6.0.2
'@codemirror/lang-liquid': 6.2.3
- '@codemirror/lang-markdown': 6.3.2
- '@codemirror/lang-php': 6.0.1
- '@codemirror/lang-python': 6.2.0
- '@codemirror/lang-rust': 6.0.1
+ '@codemirror/lang-markdown': 6.3.3
+ '@codemirror/lang-php': 6.0.2
+ '@codemirror/lang-python': 6.2.1
+ '@codemirror/lang-rust': 6.0.2
'@codemirror/lang-sass': 6.0.2
- '@codemirror/lang-sql': 6.8.0
+ '@codemirror/lang-sql': 6.9.0
'@codemirror/lang-vue': 0.1.3
'@codemirror/lang-wast': 6.0.2
'@codemirror/lang-xml': 6.1.0
'@codemirror/lang-yaml': 6.1.2
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/legacy-modes': 6.5.1
- '@codemirror/language@6.11.0':
+ '@codemirror/language@6.11.2':
dependencies:
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
@@ -12843,40 +14327,35 @@ snapshots:
'@codemirror/legacy-modes@6.5.1':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/lint@6.8.5':
dependencies:
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
crelt: 1.0.6
- '@codemirror/search@6.5.10':
+ '@codemirror/search@6.5.11':
dependencies:
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
crelt: 1.0.6
'@codemirror/state@6.5.2':
dependencies:
'@marijn/find-cluster-break': 1.0.2
- '@codemirror/theme-one-dark@6.1.2':
+ '@codemirror/theme-one-dark@6.1.3':
dependencies:
- '@codemirror/language': 6.11.0
+ '@codemirror/language': 6.11.2
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@lezer/highlight': 1.2.1
- '@codemirror/view@6.36.3':
- dependencies:
- '@codemirror/state': 6.5.2
- style-mod: 4.1.2
- w3c-keyname: 2.2.8
-
- '@codemirror/view@6.36.4':
+ '@codemirror/view@6.37.2':
dependencies:
'@codemirror/state': 6.5.2
+ crelt: 1.0.6
style-mod: 4.1.2
w3c-keyname: 2.2.8
@@ -12885,23 +14364,23 @@ snapshots:
'@csstools/color-helpers@5.0.2': {}
- '@csstools/css-calc@2.1.3(c34895f76d88506bae462547752fc0af)':
+ '@csstools/css-calc@2.1.4(f5bbab77a7781b6ee795024fdb514bb3)':
dependencies:
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-color-parser@3.0.9(c34895f76d88506bae462547752fc0af)':
+ '@csstools/css-color-parser@3.0.10(f5bbab77a7781b6ee795024fdb514bb3)':
dependencies:
'@csstools/color-helpers': 5.0.2
- '@csstools/css-calc': 2.1.3(c34895f76d88506bae462547752fc0af)
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-calc': 2.1.4(f5bbab77a7781b6ee795024fdb514bb3)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-tokenizer@3.0.3': {}
+ '@csstools/css-tokenizer@3.0.4': {}
'@discoveryjs/json-ext@0.6.3': {}
@@ -12924,41 +14403,40 @@ snapshots:
'@ember/string@4.0.1': {}
- '@ember/test-helpers@5.2.1(35438b6e272b520ca540b25aef2325ed)':
+ '@ember/test-helpers@5.2.2(a6fa8d0f1f3c894a01569e258197c230)':
dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
'@simple-dom/interface': 1.4.0
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
dom-element-descriptors: 0.5.1
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- '@babel/core'
- '@glint/template'
- supports-color
- '@ember/test-waiters@4.1.0(@glint/template@1.4.1-unstable.0e0d936)':
+ '@ember/test-waiters@4.1.0(@glint/template@1.5.2)':
dependencies:
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
transitivePeerDependencies:
- '@glint/template'
- supports-color
- '@embroider/addon-dev@7.1.4(3ec773558af3c5715bd809db622cba9b)':
+ '@embroider/addon-dev@7.1.5(@glint/template@1.5.2)(rollup@4.44.0)':
dependencies:
- '@embroider/core': 3.5.6(@glint/template@1.4.1-unstable.0e0d936)
+ '@embroider/core': 3.5.7(@glint/template@1.5.2)
'@rollup/pluginutils': 4.2.1
content-tag: 3.1.3
execa: 5.1.1
fs-extra: 10.1.0
minimatch: 3.1.2
- rollup-plugin-copy-assets: 2.0.3(rollup@4.40.1)
+ rollup-plugin-copy-assets: 2.0.3(rollup@4.44.0)
walk-sync: 3.0.0
yargs: 17.7.2
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.44.0
transitivePeerDependencies:
- '@glint/template'
- bufferutil
@@ -12966,19 +14444,19 @@ snapshots:
- supports-color
- utf-8-validate
- '@embroider/addon-dev@8.0.1(3ec773558af3c5715bd809db622cba9b)':
+ '@embroider/addon-dev@8.1.0(@glint/template@1.5.2)(rollup@4.44.0)':
dependencies:
- '@embroider/core': 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@embroider/core': 4.1.1(@glint/template@1.5.2)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
content-tag: 3.1.3
execa: 5.1.1
fs-extra: 10.1.0
minimatch: 3.1.2
- rollup-plugin-copy-assets: 2.0.3(rollup@4.40.1)
+ rollup-plugin-copy-assets: 2.0.3(rollup@4.44.0)
walk-sync: 3.0.0
yargs: 17.7.2
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.44.0
transitivePeerDependencies:
- '@glint/template'
- bufferutil
@@ -12991,37 +14469,38 @@ snapshots:
'@embroider/shared-internals': 3.0.0
broccoli-funnel: 3.0.8
common-ancestor-path: 1.0.1
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
'@embroider/addon-shim@1.8.9':
dependencies:
- '@embroider/shared-internals': 2.9.0
+ '@embroider/shared-internals': 2.9.1
broccoli-funnel: 3.0.8
common-ancestor-path: 1.0.1
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
- '@embroider/compat@4.0.0-alpha.14(b7a999138b8027b0ac2cf2b061763543)':
+ '@embroider/compat@4.1.0(92fd543e0147ab048441f1395fd340cb)':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/core': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.1)
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
- '@babel/runtime': 7.27.1
- '@babel/traverse': 7.27.1
- '@embroider/core': 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
- '@embroider/macros': 1.17.0-alpha.7(@glint/template@1.4.1-unstable.0e0d936)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.7)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
+ '@babel/runtime': 7.27.6
+ '@babel/traverse': 7.27.7
+ '@embroider/core': 4.1.1(@glint/template@1.5.2)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
'@types/babel__code-frame': 7.0.6
assert-never: 1.4.0
babel-import-util: 3.0.1
- babel-plugin-debug-macros: 1.0.2(@babel/core@7.27.1)
- babel-plugin-ember-template-compilation: 2.4.1
+ babel-plugin-debug-macros: 1.0.2(@babel/core@7.27.7)
+ babel-plugin-ember-template-compilation: 3.0.0
+ babel-plugin-ember-template-compilation-2: babel-plugin-ember-template-compilation@2.4.1
babel-plugin-syntax-dynamic-import: 6.18.0
babylon: 6.18.0
bind-decorator: 1.0.11
@@ -13034,8 +14513,8 @@ snapshots:
broccoli-plugin: 4.0.7
broccoli-source: 3.0.1
chalk: 4.1.2
- debug: 4.4.0(supports-color@8.1.1)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ debug: 4.4.1(supports-color@8.1.1)
+ ember-source: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
fast-sourcemap-concat: 2.1.1
fs-extra: 9.1.0
fs-tree-diff: 2.0.1
@@ -13045,7 +14524,7 @@ snapshots:
resolve: 1.22.10
resolve-package-path: 4.0.3
resolve.exports: 2.0.3
- semver: 7.7.1
+ semver: 7.7.2
symlink-or-copy: 1.3.1
tree-sync: 2.1.0
typescript-memoize: 1.1.1
@@ -13061,20 +14540,20 @@ snapshots:
'@embroider/config-meta-loader@1.0.0': {}
- '@embroider/core@3.5.6(@glint/template@1.4.1-unstable.0e0d936)':
+ '@embroider/core@3.5.7(@glint/template@1.5.2)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/traverse': 7.27.1
- '@embroider/macros': 1.16.13(@glint/template@1.4.1-unstable.0e0d936)
- '@embroider/shared-internals': 2.9.0
+ '@babel/core': 7.27.7
+ '@babel/parser': 7.27.7
+ '@babel/traverse': 7.27.7
+ '@embroider/macros': 1.16.13(@glint/template@1.5.2)
+ '@embroider/shared-internals': 2.9.1
assert-never: 1.4.0
- babel-plugin-ember-template-compilation: 2.3.0
+ babel-plugin-ember-template-compilation: 2.4.1
broccoli-node-api: 1.7.0
broccoli-persistent-filter: 3.1.3
broccoli-plugin: 4.0.7
broccoli-source: 3.0.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
fast-sourcemap-concat: 2.1.1
filesize: 10.1.6
fs-extra: 9.1.0
@@ -13085,7 +14564,7 @@ snapshots:
lodash: 4.17.21
resolve: 1.22.10
resolve-package-path: 4.0.3
- semver: 7.7.1
+ semver: 7.7.2
typescript-memoize: 1.1.1
walk-sync: 3.0.0
transitivePeerDependencies:
@@ -13095,21 +14574,21 @@ snapshots:
- supports-color
- utf-8-validate
- '@embroider/core@4.0.2(@glint/template@1.4.1-unstable.0e0d936)':
+ '@embroider/core@4.1.1(@glint/template@1.5.2)':
dependencies:
- '@babel/core': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/traverse': 7.27.1
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ '@babel/core': 7.27.7
+ '@babel/parser': 7.27.7
+ '@babel/traverse': 7.27.7
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
'@embroider/reverse-exports': 0.1.2
'@embroider/shared-internals': 3.0.0
assert-never: 1.4.0
- babel-plugin-ember-template-compilation: 2.4.1
+ babel-plugin-ember-template-compilation: 3.0.0
broccoli-node-api: 1.7.0
broccoli-persistent-filter: 3.1.3
broccoli-plugin: 4.0.7
broccoli-source: 3.0.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
escape-string-regexp: 4.0.0
fast-sourcemap-concat: 2.1.1
fs-extra: 9.1.0
@@ -13121,7 +14600,7 @@ snapshots:
resolve: 1.22.10
resolve-package-path: 4.0.3
resolve.exports: 2.0.3
- semver: 7.7.1
+ semver: 7.7.2
typescript-memoize: 1.1.1
walk-sync: 3.0.0
transitivePeerDependencies:
@@ -13131,7 +14610,7 @@ snapshots:
- supports-color
- utf-8-validate
- '@embroider/macros@1.16.13(@glint/template@1.4.1-unstable.0e0d936)':
+ '@embroider/macros@1.16.13(@glint/template@1.5.2)':
dependencies:
'@embroider/shared-internals': 2.9.0
assert-never: 1.4.0
@@ -13140,13 +14619,13 @@ snapshots:
find-up: 5.0.0
lodash: 4.17.21
resolve: 1.22.10
- semver: 7.7.1
+ semver: 7.7.2
optionalDependencies:
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@glint/template': 1.5.2
transitivePeerDependencies:
- supports-color
- '@embroider/macros@1.16.9(@glint/template@1.4.1-unstable.0e0d936)':
+ '@embroider/macros@1.16.9(@glint/template@1.5.2)':
dependencies:
'@embroider/shared-internals': 2.8.1
assert-never: 1.4.0
@@ -13155,28 +14634,13 @@ snapshots:
find-up: 5.0.0
lodash: 4.17.21
resolve: 1.22.10
- semver: 7.7.1
- optionalDependencies:
- '@glint/template': 1.4.1-unstable.0e0d936
- transitivePeerDependencies:
- - supports-color
-
- '@embroider/macros@1.17.0-alpha.7(@glint/template@1.4.1-unstable.0e0d936)':
- dependencies:
- '@embroider/shared-internals': 3.0.0-alpha.5
- assert-never: 1.4.0
- babel-import-util: 3.0.1
- ember-cli-babel: 7.26.11
- find-up: 5.0.0
- lodash: 4.17.21
- resolve: 1.22.10
- semver: 7.7.1
+ semver: 7.7.2
optionalDependencies:
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@glint/template': 1.5.2
transitivePeerDependencies:
- supports-color
- '@embroider/macros@1.17.2(@glint/template@1.4.1-unstable.0e0d936)':
+ '@embroider/macros@1.18.0(@glint/template@1.5.2)':
dependencies:
'@embroider/shared-internals': 3.0.0
assert-never: 1.4.0
@@ -13185,9 +14649,9 @@ snapshots:
find-up: 5.0.0
lodash: 4.17.21
resolve: 1.22.10
- semver: 7.7.1
+ semver: 7.7.2
optionalDependencies:
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@glint/template': 1.5.2
transitivePeerDependencies:
- supports-color
@@ -13196,12 +14660,12 @@ snapshots:
mem: 8.1.1
resolve.exports: 2.0.3
- '@embroider/router@3.0.1(7846a93c8b1f30739aa00d18e5665097)':
+ '@embroider/router@3.0.1(955f32ae434990a535df6fdf22ac9d24)':
dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
optionalDependencies:
- '@embroider/core': 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
+ '@embroider/core': 4.1.1(@glint/template@1.5.2)
transitivePeerDependencies:
- '@glint/template'
- supports-color
@@ -13209,7 +14673,7 @@ snapshots:
'@embroider/shared-internals@2.8.1':
dependencies:
babel-import-util: 2.1.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
ember-rfc176-data: 0.3.18
fs-extra: 9.1.0
is-subdir: 1.2.0
@@ -13218,7 +14682,7 @@ snapshots:
minimatch: 3.1.2
pkg-entry-points: 1.1.1
resolve-package-path: 4.0.3
- semver: 7.7.1
+ semver: 7.7.2
typescript-memoize: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -13226,7 +14690,7 @@ snapshots:
'@embroider/shared-internals@2.9.0':
dependencies:
babel-import-util: 2.1.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
ember-rfc176-data: 0.3.18
fs-extra: 9.1.0
is-subdir: 1.2.0
@@ -13235,15 +14699,15 @@ snapshots:
minimatch: 3.1.2
pkg-entry-points: 1.1.1
resolve-package-path: 4.0.3
- semver: 7.7.1
+ semver: 7.7.2
typescript-memoize: 1.1.1
transitivePeerDependencies:
- supports-color
- '@embroider/shared-internals@3.0.0':
+ '@embroider/shared-internals@2.9.1':
dependencies:
- babel-import-util: 3.0.1
- debug: 4.4.0(supports-color@8.1.1)
+ babel-import-util: 2.1.1
+ debug: 4.4.1
ember-rfc176-data: 0.3.18
fs-extra: 9.1.0
is-subdir: 1.2.0
@@ -13252,16 +14716,15 @@ snapshots:
minimatch: 3.1.2
pkg-entry-points: 1.1.1
resolve-package-path: 4.0.3
- resolve.exports: 2.0.3
- semver: 7.7.1
+ semver: 7.7.2
typescript-memoize: 1.1.1
transitivePeerDependencies:
- supports-color
- '@embroider/shared-internals@3.0.0-alpha.5':
+ '@embroider/shared-internals@3.0.0':
dependencies:
babel-import-util: 3.0.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
ember-rfc176-data: 0.3.18
fs-extra: 9.1.0
is-subdir: 1.2.0
@@ -13271,50 +14734,38 @@ snapshots:
pkg-entry-points: 1.1.1
resolve-package-path: 4.0.3
resolve.exports: 2.0.3
- semver: 7.7.1
+ semver: 7.7.2
typescript-memoize: 1.1.1
transitivePeerDependencies:
- supports-color
- '@embroider/test-setup@4.0.0(f2c9d6d40664e9e0201334b48b463c6d)':
+ '@embroider/test-setup@4.0.0(ef9630e9efb74e1ecbf498830a1599b6)':
dependencies:
lodash: 4.17.21
resolve: 1.22.10
- optionalDependencies:
- '@embroider/compat': 4.0.0-alpha.14(b7a999138b8027b0ac2cf2b061763543)
- '@embroider/core': 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
-
- '@embroider/util@1.14.0-alpha.2(9aa72d8bbadc40778c7370136c2e3207)':
- dependencies:
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- broccoli-funnel: 3.0.8
- ember-cli-babel: 7.26.11
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
- optionalDependencies:
- '@glint/environment-ember-loose': 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
- '@glint/template': 1.4.1-unstable.0e0d936
- transitivePeerDependencies:
- - supports-color
+ optionalDependencies:
+ '@embroider/compat': 4.1.0(92fd543e0147ab048441f1395fd340cb)
+ '@embroider/core': 4.1.1(@glint/template@1.5.2)
- '@embroider/vite@1.1.0(a168c95d7c3395be8cb05b206bc64649)':
+ '@embroider/vite@1.1.5(f84d803e044295a678332d8da1216f2e)':
dependencies:
- '@babel/core': 7.27.1
- '@embroider/core': 4.0.2(@glint/template@1.4.1-unstable.0e0d936)
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ '@babel/core': 7.27.7
+ '@embroider/core': 4.1.1(@glint/template@1.5.2)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
'@embroider/reverse-exports': 0.1.2
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
assert-never: 1.4.0
- browserslist: 4.24.4
- browserslist-to-esbuild: 2.1.1(browserslist@4.24.4)
+ browserslist: 4.25.1
+ browserslist-to-esbuild: 2.1.1(browserslist@4.25.1)
content-tag: 3.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
fast-glob: 3.3.3
fs-extra: 10.1.0
jsdom: 25.0.1
send: 0.18.0
source-map-url: 0.4.1
- terser: 5.39.0
- vite: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ terser: 5.43.1
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
transitivePeerDependencies:
- '@glint/template'
- bufferutil
@@ -13339,176 +14790,111 @@ snapshots:
tslib: 2.8.1
optional: true
- '@esbuild/aix-ppc64@0.21.5':
- optional: true
-
- '@esbuild/aix-ppc64@0.25.3':
- optional: true
-
- '@esbuild/android-arm64@0.21.5':
- optional: true
-
- '@esbuild/android-arm64@0.25.3':
- optional: true
-
- '@esbuild/android-arm@0.21.5':
- optional: true
-
- '@esbuild/android-arm@0.25.3':
- optional: true
-
- '@esbuild/android-x64@0.21.5':
- optional: true
-
- '@esbuild/android-x64@0.25.3':
- optional: true
-
- '@esbuild/darwin-arm64@0.21.5':
- optional: true
-
- '@esbuild/darwin-arm64@0.25.3':
- optional: true
-
- '@esbuild/darwin-x64@0.21.5':
- optional: true
-
- '@esbuild/darwin-x64@0.25.3':
- optional: true
-
- '@esbuild/freebsd-arm64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-arm64@0.25.3':
- optional: true
-
- '@esbuild/freebsd-x64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-x64@0.25.3':
- optional: true
-
- '@esbuild/linux-arm64@0.21.5':
- optional: true
-
- '@esbuild/linux-arm64@0.25.3':
- optional: true
-
- '@esbuild/linux-arm@0.21.5':
- optional: true
-
- '@esbuild/linux-arm@0.25.3':
- optional: true
-
- '@esbuild/linux-ia32@0.21.5':
- optional: true
-
- '@esbuild/linux-ia32@0.25.3':
- optional: true
-
- '@esbuild/linux-loong64@0.21.5':
- optional: true
-
- '@esbuild/linux-loong64@0.25.3':
+ '@esbuild/aix-ppc64@0.25.5':
optional: true
- '@esbuild/linux-mips64el@0.21.5':
+ '@esbuild/android-arm64@0.25.5':
optional: true
- '@esbuild/linux-mips64el@0.25.3':
+ '@esbuild/android-arm@0.25.5':
optional: true
- '@esbuild/linux-ppc64@0.21.5':
+ '@esbuild/android-x64@0.25.5':
optional: true
- '@esbuild/linux-ppc64@0.25.3':
+ '@esbuild/darwin-arm64@0.25.5':
optional: true
- '@esbuild/linux-riscv64@0.21.5':
+ '@esbuild/darwin-x64@0.25.5':
optional: true
- '@esbuild/linux-riscv64@0.25.3':
+ '@esbuild/freebsd-arm64@0.25.5':
optional: true
- '@esbuild/linux-s390x@0.21.5':
+ '@esbuild/freebsd-x64@0.25.5':
optional: true
- '@esbuild/linux-s390x@0.25.3':
+ '@esbuild/linux-arm64@0.25.5':
optional: true
- '@esbuild/linux-x64@0.21.5':
+ '@esbuild/linux-arm@0.25.5':
optional: true
- '@esbuild/linux-x64@0.25.3':
+ '@esbuild/linux-ia32@0.25.5':
optional: true
- '@esbuild/netbsd-arm64@0.25.3':
+ '@esbuild/linux-loong64@0.25.5':
optional: true
- '@esbuild/netbsd-x64@0.21.5':
+ '@esbuild/linux-mips64el@0.25.5':
optional: true
- '@esbuild/netbsd-x64@0.25.3':
+ '@esbuild/linux-ppc64@0.25.5':
optional: true
- '@esbuild/openbsd-arm64@0.25.3':
+ '@esbuild/linux-riscv64@0.25.5':
optional: true
- '@esbuild/openbsd-x64@0.21.5':
+ '@esbuild/linux-s390x@0.25.5':
optional: true
- '@esbuild/openbsd-x64@0.25.3':
+ '@esbuild/linux-x64@0.25.5':
optional: true
- '@esbuild/sunos-x64@0.21.5':
+ '@esbuild/netbsd-arm64@0.25.5':
optional: true
- '@esbuild/sunos-x64@0.25.3':
+ '@esbuild/netbsd-x64@0.25.5':
optional: true
- '@esbuild/win32-arm64@0.21.5':
+ '@esbuild/openbsd-arm64@0.25.5':
optional: true
- '@esbuild/win32-arm64@0.25.3':
+ '@esbuild/openbsd-x64@0.25.5':
optional: true
- '@esbuild/win32-ia32@0.21.5':
+ '@esbuild/sunos-x64@0.25.5':
optional: true
- '@esbuild/win32-ia32@0.25.3':
+ '@esbuild/win32-arm64@0.25.5':
optional: true
- '@esbuild/win32-x64@0.21.5':
+ '@esbuild/win32-ia32@0.25.5':
optional: true
- '@esbuild/win32-x64@0.25.3':
+ '@esbuild/win32-x64@0.25.5':
optional: true
- '@eslint-community/eslint-utils@4.6.1(eslint@9.25.1(jiti@1.21.7))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.29.0(jiti@2.4.2))':
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/config-array@0.20.0':
+ '@eslint/config-array@0.20.1':
dependencies:
'@eslint/object-schema': 2.1.6
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.2.2': {}
+ '@eslint/config-helpers@0.2.3': {}
+
+ '@eslint/core@0.14.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
- '@eslint/core@0.13.0':
+ '@eslint/core@0.15.1':
dependencies:
'@types/json-schema': 7.0.15
'@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.0(supports-color@8.1.1)
- espree: 10.3.0
+ debug: 4.4.1
+ espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.1
@@ -13518,33 +14904,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.25.1': {}
+ '@eslint/js@9.29.0': {}
'@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.2.8':
+ '@eslint/plugin-kit@0.3.3':
dependencies:
- '@eslint/core': 0.13.0
+ '@eslint/core': 0.15.1
levn: 0.4.1
- '@floating-ui/core@1.6.9':
+ '@floating-ui/core@1.7.2':
dependencies:
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/utils': 0.2.10
- '@floating-ui/dom@1.6.13':
+ '@floating-ui/dom@1.7.2':
dependencies:
- '@floating-ui/core': 1.6.9
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/core': 1.7.2
+ '@floating-ui/utils': 0.2.10
- '@floating-ui/utils@0.2.9': {}
+ '@floating-ui/utils@0.2.10': {}
- '@fortawesome/ember-fontawesome@3.0.0(0aa3478cb0458e1c40c07b2353c2ea8b)':
+ '@fortawesome/ember-fontawesome@3.0.1(4a12eb098ca1bed4b5215fa2aae4d12b)':
dependencies:
'@embroider/addon-shim': 1.10.0
'@fortawesome/fontawesome-svg-core': 6.7.2
'@glimmer/component': 2.0.0
- '@glimmer/tracking': 1.1.2
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- supports-color
@@ -13568,12 +14952,12 @@ snapshots:
'@gar/promisify@1.1.3': {}
- '@gerrit0/mini-shiki@3.3.0':
+ '@gerrit0/mini-shiki@3.7.0':
dependencies:
- '@shikijs/engine-oniguruma': 3.3.0
- '@shikijs/langs': 3.3.0
- '@shikijs/themes': 3.3.0
- '@shikijs/types': 3.3.0
+ '@shikijs/engine-oniguruma': 3.7.0
+ '@shikijs/langs': 3.7.0
+ '@shikijs/themes': 3.7.0
+ '@shikijs/types': 3.7.0
'@shikijs/vscode-textmate': 10.0.2
'@glimmer/compiler@0.94.10':
@@ -13619,7 +15003,7 @@ snapshots:
'@glimmer/interfaces@0.94.6':
dependencies:
'@simple-dom/interface': 1.4.0
- type-fest: 4.40.1
+ type-fest: 4.41.0
'@glimmer/manager@0.94.9':
dependencies:
@@ -13709,11 +15093,6 @@ snapshots:
'@handlebars/parser': 2.0.0
simple-html-tokenizer: 0.5.11
- '@glimmer/tracking@1.1.2':
- dependencies:
- '@glimmer/env': 0.1.7
- '@glimmer/validator': 0.44.0
-
'@glimmer/util@0.84.3':
dependencies:
'@glimmer/env': 0.1.7
@@ -13729,8 +15108,6 @@ snapshots:
dependencies:
'@glimmer/interfaces': 0.94.6
- '@glimmer/validator@0.44.0': {}
-
'@glimmer/validator@0.84.3':
dependencies:
'@glimmer/env': 0.1.7
@@ -13741,9 +15118,9 @@ snapshots:
'@glimmer/global-context': 0.93.4
'@glimmer/interfaces': 0.94.6
- '@glimmer/vm-babel-plugins@0.93.4(@babel/core@7.27.1)':
+ '@glimmer/vm-babel-plugins@0.93.4(@babel/core@7.27.7)':
dependencies:
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.27.1)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.27.7)
transitivePeerDependencies:
- '@babel/core'
@@ -13760,23 +15137,24 @@ snapshots:
dependencies:
'@glimmer/interfaces': 0.94.6
- '@glint/core@1.4.1-unstable.0e0d936(typescript@5.7.3)':
+ '@glint/core@2.0.0-alpha.2(typescript@5.8.3)':
dependencies:
- '@glimmer/syntax': 0.84.3
- '@volar/kit': 2.4.11(typescript@5.7.3)
- '@volar/language-core': 2.4.11
- '@volar/language-server': 2.4.11
- '@volar/language-service': 2.4.11
- '@volar/source-map': 2.4.11
- '@volar/test-utils': 2.4.11
- '@volar/typescript': 2.4.11
+ '@glimmer/syntax': 0.94.9
+ '@volar/kit': 2.4.12(typescript@5.8.3)
+ '@volar/language-core': 2.4.12
+ '@volar/language-server': 2.4.12
+ '@volar/language-service': 2.4.12
+ '@volar/source-map': 2.4.12
+ '@volar/test-utils': 2.4.12
+ '@volar/typescript': 2.4.12
computeds: 0.0.1
escape-string-regexp: 4.0.0
- semver: 7.7.1
+ semver: 7.7.2
silent-error: 1.1.1
- typescript: 5.7.3
+ typescript: 5.8.3
uuid: 8.3.2
- volar-service-typescript: 0.0.64(@volar/language-service@2.4.11)
+ volar-service-html: 0.0.64(@volar/language-service@2.4.12)
+ volar-service-typescript: 0.0.64(@volar/language-service@2.4.12)
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.1.0
@@ -13784,21 +15162,48 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@glint/environment-ember-loose@1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)':
+ '@glint/environment-ember-loose@2.0.0-alpha.2(78dfa0aa056494065dc7f85bef240c2b)':
dependencies:
'@glimmer/component': 2.0.0
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@glint/core': 2.0.0-alpha.2(typescript@5.8.3)
+ '@glint/template': 1.5.2
optionalDependencies:
ember-cli-htmlbars: 6.3.0
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
- '@glint/environment-ember-template-imports@1.4.1-unstable.0e0d936(a7adb5a1ab57244e6db9238d89e8b57a)':
+ '@glint/environment-ember-loose@2.0.0-alpha.2(8d24ab070777f0adfc1b913d3eb93438)':
dependencies:
- '@glint/environment-ember-loose': 1.4.1-unstable.0e0d936(f935a6c828fba30304237d33124e9fbe)
- '@glint/template': 1.4.1-unstable.0e0d936
- content-tag: 2.0.3
+ '@glimmer/component': 2.0.0
+ '@glint/core': 2.0.0-alpha.2(typescript@5.8.3)
+ '@glint/template': 1.5.2
+ optionalDependencies:
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
+
+ '@glint/environment-ember-template-imports@2.0.0-alpha.2(2d6b24ad1f33a1c0662557a0468023b6)':
+ dependencies:
+ '@glint/core': 2.0.0-alpha.2(typescript@5.8.3)
+ '@glint/environment-ember-loose': 2.0.0-alpha.2(78dfa0aa056494065dc7f85bef240c2b)
+ '@glint/template': 1.5.2
+ content-tag: 3.1.3
- '@glint/template@1.4.1-unstable.0e0d936': {}
+ '@glint/environment-ember-template-imports@2.0.0-alpha.2(efdaeaa7c1b4a594945abe637b363b34)':
+ dependencies:
+ '@glint/core': 2.0.0-alpha.2(typescript@5.8.3)
+ '@glint/environment-ember-loose': 2.0.0-alpha.2(8d24ab070777f0adfc1b913d3eb93438)
+ '@glint/template': 1.5.2
+ content-tag: 3.1.3
+
+ '@glint/template@1.5.2': {}
+
+ '@glint/tsserver-plugin@2.0.0-alpha.2':
+ dependencies:
+ '@glint/core': 2.0.0-alpha.2(typescript@5.8.3)
+ '@volar/language-core': 2.4.12
+ '@volar/typescript': 2.4.12
+ jiti: 2.4.2
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
'@handlebars/parser@2.0.0': {}
@@ -13813,9 +15218,36 @@ snapshots:
'@humanwhocodes/retry@0.3.1': {}
- '@humanwhocodes/retry@0.4.2': {}
+ '@humanwhocodes/retry@0.4.3': {}
+
+ '@iconify-json/devicon@1.2.29':
+ dependencies:
+ '@iconify/types': 2.0.0
+
+ '@iconify-json/mdi@1.2.3':
+ dependencies:
+ '@iconify/types': 2.0.0
+
+ '@iconify-json/vscode-icons@1.2.23':
+ dependencies:
+ '@iconify/types': 2.0.0
+
+ '@iconify/types@2.0.0': {}
+
+ '@iconify/utils@2.3.0':
+ dependencies:
+ '@antfu/install-pkg': 1.1.0
+ '@antfu/utils': 8.1.1
+ '@iconify/types': 2.0.0
+ debug: 4.4.1
+ globals: 15.15.0
+ kolorist: 1.8.0
+ local-pkg: 1.1.1
+ mlly: 1.7.4
+ transitivePeerDependencies:
+ - supports-color
- '@inquirer/figures@1.0.11': {}
+ '@inquirer/figures@1.0.12': {}
'@isaacs/cliui@8.0.2':
dependencies:
@@ -13856,18 +15288,18 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/css@1.1.11':
+ '@lezer/css@1.2.1':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/generator@1.7.3':
+ '@lezer/generator@1.8.0':
dependencies:
'@lezer/common': 1.2.3
'@lezer/lr': 1.4.2
- '@lezer/go@1.0.0':
+ '@lezer/go@1.0.1':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -13928,7 +15360,7 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/sass@1.0.7':
+ '@lezer/sass@1.1.0':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -13974,11 +15406,11 @@ snapshots:
'@marijn/buildtool@1.1.0':
dependencies:
'@types/mocha': 9.1.1
- acorn: 8.14.1
+ acorn: 8.15.0
acorn-walk: 8.3.4
- rollup: 4.40.1
- rollup-plugin-dts: 6.2.1(rollup@4.40.1)(typescript@5.7.3)
- typescript: 5.7.3
+ rollup: 4.44.0
+ rollup-plugin-dts: 6.2.1(rollup@4.44.0)(typescript@5.8.3)
+ typescript: 5.8.3
'@marijn/find-cluster-break@1.0.2': {}
@@ -13987,7 +15419,7 @@ snapshots:
esmoduleserve: 0.2.1
ist: 1.1.7
mocha: 10.8.2
- selenium-webdriver: 4.31.0
+ selenium-webdriver: 4.33.0
serve-static: 1.16.2
transitivePeerDependencies:
- bufferutil
@@ -13996,7 +15428,46 @@ snapshots:
'@mdn/browser-compat-data@5.7.6': {}
- '@napi-rs/wasm-runtime@0.2.9':
+ '@mermaid-js/parser@0.5.0':
+ dependencies:
+ langium: 3.3.1
+
+ '@microsoft/api-extractor-model@7.30.6(@types/node@24.0.4)':
+ dependencies:
+ '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc-config': 0.17.1
+ '@rushstack/node-core-library': 5.13.1(@types/node@24.0.4)
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@microsoft/api-extractor@7.52.8(@types/node@24.0.4)':
+ dependencies:
+ '@microsoft/api-extractor-model': 7.30.6(@types/node@24.0.4)
+ '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc-config': 0.17.1
+ '@rushstack/node-core-library': 5.13.1(@types/node@24.0.4)
+ '@rushstack/rig-package': 0.5.3
+ '@rushstack/terminal': 0.15.3(@types/node@24.0.4)
+ '@rushstack/ts-command-line': 5.0.1(@types/node@24.0.4)
+ lodash: 4.17.21
+ minimatch: 3.0.8
+ resolve: 1.22.10
+ semver: 7.5.4
+ source-map: 0.6.1
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@microsoft/tsdoc-config@0.17.1':
+ dependencies:
+ '@microsoft/tsdoc': 0.15.1
+ ajv: 8.12.0
+ jju: 1.4.0
+ resolve: 1.22.10
+
+ '@microsoft/tsdoc@0.15.1': {}
+
+ '@napi-rs/wasm-runtime@0.2.11':
dependencies:
'@emnapi/core': 1.4.3
'@emnapi/runtime': 1.4.3
@@ -14100,11 +15571,11 @@ snapshots:
'@npmcli/fs@1.1.1':
dependencies:
'@gar/promisify': 1.1.3
- semver: 7.7.1
+ semver: 7.7.2
'@npmcli/fs@3.1.1':
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
'@npmcli/git@5.0.8':
dependencies:
@@ -14115,7 +15586,7 @@ snapshots:
proc-log: 4.2.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.7.1
+ semver: 7.7.2
which: 4.0.0
transitivePeerDependencies:
- bluebird
@@ -14128,7 +15599,7 @@ snapshots:
npm-pick-manifest: 10.0.0
proc-log: 5.0.0
promise-retry: 2.0.1
- semver: 7.7.1
+ semver: 7.7.2
which: 5.0.0
'@npmcli/installed-package-contents@2.1.0':
@@ -14151,18 +15622,18 @@ snapshots:
json-parse-even-better-errors: 3.0.2
normalize-package-data: 6.0.2
proc-log: 4.2.0
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- bluebird
- '@npmcli/package-json@6.1.1':
+ '@npmcli/package-json@6.2.0':
dependencies:
'@npmcli/git': 6.0.3
glob: 10.4.5
hosted-git-info: 8.1.0
json-parse-even-better-errors: 4.0.0
proc-log: 5.0.0
- semver: 7.7.1
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
'@npmcli/promise-spawn@7.0.2':
@@ -14186,26 +15657,51 @@ snapshots:
- bluebird
- supports-color
- '@nullvoxpopuli/eslint-configs@5.1.2(3bc82b1c84735d71a1834d84f703b2bb)':
- dependencies:
- '@babel/core': 7.27.1
- '@eslint/js': 9.25.1
- '@typescript-eslint/parser': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- cosmiconfig: 9.0.0(typescript@5.7.3)
- ember-eslint: 0.2.1(c1bcb6d22fccf46caa4c33fa572a5552)
- eslint: 9.25.1(jiti@1.21.7)
- eslint-import-resolver-typescript: 3.10.1(ef28e62e366c2199181025423683258b)
- eslint-plugin-decorator-position: 6.0.0(50deeae86dce8f13aa370e771bd788cf)
- eslint-plugin-import: 2.31.0(e88e4ed15243864f8818c186c313aaf2)
+ '@nullvoxpopuli/eslint-configs@5.1.2(2312fcc0c6440a04337cdb71f7598cfa)':
+ dependencies:
+ '@babel/core': 7.27.7
+ '@eslint/js': 9.29.0
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
+ cosmiconfig: 9.0.0(typescript@5.8.3)
+ ember-eslint: 0.2.1(97d2d781f7d3cae1635bb456dbe4664b)
+ eslint: 9.29.0(jiti@2.4.2)
+ eslint-import-resolver-typescript: 3.10.1(250ac5e8f4846a40323c11978d0cf3ba)
+ eslint-plugin-decorator-position: 6.0.0(cc9e849b7867bf45101c63c84069ae55)
+ eslint-plugin-import: 2.32.0(5f93bd763816fedf2e1510cc4d330771)
+ eslint-plugin-json: 4.0.1
+ eslint-plugin-n: 17.20.0(f34568f6b8e005732038c441d846657e)
+ eslint-plugin-simple-import-sort: 12.1.1(eslint@9.29.0(jiti@2.4.2))
+ globals: 16.2.0
+ prettier-plugin-ember-template-tag: 2.0.6(prettier@3.6.2)
+ optionalDependencies:
+ '@babel/eslint-parser': 7.27.5(deda1a73e14af5de11cfd237cc45e668)
+ prettier: 3.6.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-webpack
+ - eslint-plugin-import-x
+ - supports-color
+ - typescript
+
+ '@nullvoxpopuli/eslint-configs@5.1.2(3ce5c1427ba3c9a76ad0ef8d05e26171)':
+ dependencies:
+ '@babel/core': 7.27.7
+ '@eslint/js': 9.29.0
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
+ cosmiconfig: 9.0.0(typescript@5.8.3)
+ ember-eslint: 0.2.1(97d2d781f7d3cae1635bb456dbe4664b)
+ eslint: 9.29.0(jiti@2.4.2)
+ eslint-import-resolver-typescript: 3.10.1(250ac5e8f4846a40323c11978d0cf3ba)
+ eslint-plugin-decorator-position: 6.0.0(cc9e849b7867bf45101c63c84069ae55)
+ eslint-plugin-import: 2.32.0(5f93bd763816fedf2e1510cc4d330771)
eslint-plugin-json: 4.0.1
- eslint-plugin-n: 17.17.0(eslint@9.25.1(jiti@1.21.7))
- eslint-plugin-simple-import-sort: 12.1.1(eslint@9.25.1(jiti@1.21.7))
- globals: 16.0.0
- prettier-plugin-ember-template-tag: 2.0.4(prettier@3.5.3)
+ eslint-plugin-n: 17.20.0(f34568f6b8e005732038c441d846657e)
+ eslint-plugin-simple-import-sort: 12.1.1(eslint@9.29.0(jiti@2.4.2))
+ globals: 16.2.0
+ prettier-plugin-ember-template-tag: 2.0.6(prettier@3.6.2)
optionalDependencies:
- '@babel/eslint-parser': 7.27.1(4a43aebe8aa03544380dbd584f92ba52)
- '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.1)
- prettier: 3.5.3
+ '@babel/eslint-parser': 7.27.5(deda1a73e14af5de11cfd237cc45e668)
+ '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.7)
+ prettier: 3.6.2
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
@@ -14218,26 +15714,26 @@ snapshots:
dependencies:
'@octokit/auth-token': 5.1.2
'@octokit/graphql': 8.2.2
- '@octokit/request': 9.2.3
+ '@octokit/request': 9.2.4
'@octokit/request-error': 6.1.8
- '@octokit/types': 14.0.0
+ '@octokit/types': 14.1.0
before-after-hook: 3.0.2
- universal-user-agent: 7.0.2
+ universal-user-agent: 7.0.3
'@octokit/endpoint@10.1.4':
dependencies:
- '@octokit/types': 14.0.0
- universal-user-agent: 7.0.2
+ '@octokit/types': 14.1.0
+ universal-user-agent: 7.0.3
'@octokit/graphql@8.2.2':
dependencies:
- '@octokit/request': 9.2.3
- '@octokit/types': 14.0.0
- universal-user-agent: 7.0.2
+ '@octokit/request': 9.2.4
+ '@octokit/types': 14.1.0
+ universal-user-agent: 7.0.3
'@octokit/openapi-types@24.2.0': {}
- '@octokit/openapi-types@25.0.0': {}
+ '@octokit/openapi-types@25.1.0': {}
'@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.5)':
dependencies:
@@ -14255,15 +15751,15 @@ snapshots:
'@octokit/request-error@6.1.8':
dependencies:
- '@octokit/types': 14.0.0
+ '@octokit/types': 14.1.0
- '@octokit/request@9.2.3':
+ '@octokit/request@9.2.4':
dependencies:
'@octokit/endpoint': 10.1.4
'@octokit/request-error': 6.1.8
- '@octokit/types': 14.0.0
+ '@octokit/types': 14.1.0
fast-content-type-parse: 2.0.1
- universal-user-agent: 7.0.2
+ universal-user-agent: 7.0.3
'@octokit/rest@21.1.1':
dependencies:
@@ -14276,9 +15772,9 @@ snapshots:
dependencies:
'@octokit/openapi-types': 24.2.0
- '@octokit/types@14.0.0':
+ '@octokit/types@14.1.0':
dependencies:
- '@octokit/openapi-types': 25.0.0
+ '@octokit/openapi-types': 25.1.0
'@open-rpc/client-js@1.8.1(encoding@0.1.13)':
dependencies:
@@ -14296,15 +15792,15 @@ snapshots:
'@pnpm/config.env-replace@1.1.0': {}
- '@pnpm/constants@10.0.0': {}
+ '@pnpm/constants@1001.1.0': {}
- '@pnpm/error@6.0.3':
+ '@pnpm/error@1000.0.2':
dependencies:
- '@pnpm/constants': 10.0.0
+ '@pnpm/constants': 1001.1.0
- '@pnpm/find-workspace-dir@7.0.3':
+ '@pnpm/find-workspace-dir@1000.1.0':
dependencies:
- '@pnpm/error': 6.0.3
+ '@pnpm/error': 1000.0.2
find-up: 5.0.0
'@pnpm/network.ca-file@1.0.2':
@@ -14317,126 +15813,198 @@ snapshots:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@prettier/sync@0.2.1(prettier@3.5.3)':
+ '@polka/url@1.0.0-next.29': {}
+
+ '@prettier/sync@0.2.1(prettier@3.6.2)':
+ dependencies:
+ prettier: 3.6.2
+
+ '@promptbook/utils@0.69.5':
+ dependencies:
+ spacetrim: 0.11.59
+
+ '@publint/pack@0.1.2': {}
+
+ '@puppeteer/browsers@2.10.5':
+ dependencies:
+ debug: 4.4.1(supports-color@8.1.1)
+ extract-zip: 2.0.1
+ progress: 2.0.3
+ proxy-agent: 6.5.0
+ semver: 7.7.2
+ tar-fs: 3.0.10
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - bare-buffer
+ - supports-color
+
+ '@replit/codemirror-lang-svelte@6.0.0(8ea3a73854c03a97a986b4fe3900fecd)':
dependencies:
- prettier: 3.5.3
+ '@codemirror/autocomplete': 6.18.6
+ '@codemirror/lang-css': 6.3.1
+ '@codemirror/lang-html': 6.4.9
+ '@codemirror/lang-javascript': 6.2.4
+ '@codemirror/language': 6.11.2
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.37.2
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/javascript': 1.5.1
+ '@lezer/lr': 1.4.2
- '@rollup/plugin-babel@6.0.4(c02d2d5a8fda7d4368cd0ec913e412b4)':
+ '@rollup/plugin-babel@6.0.4(aa037b6a5bf0eb542b1305ef15813167)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/helper-module-imports': 7.27.1
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
optionalDependencies:
'@types/babel__core': 7.20.5
- rollup: 4.40.1
+ rollup: 4.44.0
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@28.0.3(rollup@4.40.1)':
+ '@rollup/plugin-commonjs@28.0.6(rollup@4.44.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.4.4(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.2)
is-reference: 1.2.1
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.44.0
- '@rollup/plugin-inject@5.0.5(rollup@4.40.1)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.44.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
estree-walker: 2.0.2
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.44.0
- '@rollup/plugin-node-resolve@15.3.1(rollup@4.40.1)':
+ '@rollup/plugin-node-resolve@15.3.1(rollup@4.44.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.44.0
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.4(rollup@4.40.1)':
+ '@rollup/pluginutils@5.2.0(rollup@4.44.0)':
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.44.0
+
+ '@rollup/rollup-android-arm-eabi@4.44.0':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.40.1':
+ '@rollup/rollup-android-arm64@4.44.0':
optional: true
- '@rollup/rollup-android-arm64@4.40.1':
+ '@rollup/rollup-darwin-arm64@4.44.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.1':
+ '@rollup/rollup-darwin-x64@4.44.0':
optional: true
- '@rollup/rollup-darwin-x64@4.40.1':
+ '@rollup/rollup-freebsd-arm64@4.44.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.1':
+ '@rollup/rollup-freebsd-x64@4.44.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.44.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.44.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ '@rollup/rollup-linux-arm64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ '@rollup/rollup-linux-arm64-musl@4.44.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ '@rollup/rollup-linux-riscv64-musl@4.44.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ '@rollup/rollup-linux-s390x-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ '@rollup/rollup-linux-x64-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.1':
+ '@rollup/rollup-linux-x64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.1':
+ '@rollup/rollup-linux-x64-musl@4.44.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ '@rollup/rollup-win32-arm64-msvc@4.44.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ '@rollup/rollup-win32-ia32-msvc@4.44.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.1':
+ '@rollup/rollup-win32-x64-msvc@4.44.0':
optional: true
'@rtsao/scc@1.1.0': {}
+ '@rushstack/node-core-library@5.13.1(@types/node@24.0.4)':
+ dependencies:
+ ajv: 8.13.0
+ ajv-draft-04: 1.0.0(ajv@8.13.0)
+ ajv-formats: 3.0.1
+ fs-extra: 11.3.0
+ import-lazy: 4.0.0
+ jju: 1.4.0
+ resolve: 1.22.10
+ semver: 7.5.4
+ optionalDependencies:
+ '@types/node': 24.0.4
+
+ '@rushstack/rig-package@0.5.3':
+ dependencies:
+ resolve: 1.22.10
+ strip-json-comments: 3.1.1
+
+ '@rushstack/terminal@0.15.3(@types/node@24.0.4)':
+ dependencies:
+ '@rushstack/node-core-library': 5.13.1(@types/node@24.0.4)
+ supports-color: 8.1.1
+ optionalDependencies:
+ '@types/node': 24.0.4
+
+ '@rushstack/ts-command-line@5.0.1(@types/node@24.0.4)':
+ dependencies:
+ '@rushstack/terminal': 0.15.3(@types/node@24.0.4)
+ '@types/argparse': 1.0.38
+ argparse: 1.0.10
+ string-argv: 0.3.2
+ transitivePeerDependencies:
+ - '@types/node'
+
'@sec-ant/readable-stream@0.4.1': {}
'@shikijs/core@1.29.2':
@@ -14448,36 +16016,49 @@ snapshots:
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
+ '@shikijs/core@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.5
+
'@shikijs/engine-javascript@1.29.2':
dependencies:
'@shikijs/types': 1.29.2
'@shikijs/vscode-textmate': 10.0.2
oniguruma-to-es: 2.3.0
+ '@shikijs/engine-javascript@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+ oniguruma-to-es: 4.3.3
+
'@shikijs/engine-oniguruma@1.29.2':
dependencies:
'@shikijs/types': 1.29.2
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/engine-oniguruma@3.3.0':
+ '@shikijs/engine-oniguruma@3.7.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.7.0
'@shikijs/vscode-textmate': 10.0.2
'@shikijs/langs@1.29.2':
dependencies:
'@shikijs/types': 1.29.2
- '@shikijs/langs@3.3.0':
+ '@shikijs/langs@3.7.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.7.0
- '@shikijs/rehype@1.29.2':
+ '@shikijs/rehype@3.7.0':
dependencies:
- '@shikijs/types': 1.29.2
+ '@shikijs/types': 3.7.0
'@types/hast': 3.0.4
hast-util-to-string: 3.0.1
- shiki: 1.29.2
+ shiki: 3.7.0
unified: 11.0.5
unist-util-visit: 5.0.0
@@ -14485,16 +16066,16 @@ snapshots:
dependencies:
'@shikijs/types': 1.29.2
- '@shikijs/themes@3.3.0':
+ '@shikijs/themes@3.7.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.7.0
'@shikijs/types@1.29.2':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- '@shikijs/types@3.3.0':
+ '@shikijs/types@3.7.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -14549,6 +16130,10 @@ snapshots:
'@socket.io/component-emitter@3.1.2': {}
+ '@sveltejs/acorn-typescript@1.0.5(acorn@8.15.0)':
+ dependencies:
+ acorn: 8.15.0
+
'@szmarczak/http-timer@1.1.2':
dependencies:
defer-to-connect: 1.1.3
@@ -14565,6 +16150,21 @@ snapshots:
postcss-selector-parser: 6.0.10
tailwindcss: 3.4.17
+ '@testing-library/dom@10.4.0':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.27.6
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ chalk: 4.1.2
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 27.5.1
+
+ '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)':
+ dependencies:
+ '@testing-library/dom': 10.4.0
+
'@timhall/ansi-colors@5.0.0': {}
'@timhall/cli@0.5.0':
@@ -14573,13 +16173,15 @@ snapshots:
meant: 1.0.3
mri: 1.2.0
- '@timhall/dedent@0.8.2(@babel/core@7.27.1)':
+ '@timhall/dedent@0.8.2(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
babel-plugin-macros: 2.8.0
'@tootallnate/once@1.1.2': {}
+ '@tootallnate/quickjs-emscripten@0.23.0': {}
+
'@tsconfig/ember@3.0.10': {}
'@tufjs/canonical-json@2.0.0': {}
@@ -14594,24 +16196,28 @@ snapshots:
tslib: 2.8.1
optional: true
+ '@types/argparse@1.0.38': {}
+
+ '@types/aria-query@5.0.4': {}
+
'@types/babel__code-frame@7.0.6': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/parser': 7.27.7
+ '@babel/types': 7.27.7
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.7
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.27.1
+ '@babel/types': 7.27.7
'@types/babel__standalone@7.1.9':
dependencies:
- '@babel/parser': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/parser': 7.27.7
+ '@babel/types': 7.27.7
'@types/babel__core': 7.20.5
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
@@ -14619,24 +16225,28 @@ snapshots:
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.27.1
- '@babel/types': 7.27.1
+ '@babel/parser': 7.27.7
+ '@babel/types': 7.27.7
'@types/babel__traverse@7.20.7':
dependencies:
- '@babel/types': 7.27.1
+ '@babel/types': 7.27.7
- '@types/body-parser@1.19.5':
+ '@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/chai-as-promised@7.1.8':
dependencies:
- '@types/chai': 4.3.20
+ '@types/chai': 5.2.2
'@types/chai@4.3.20': {}
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+
'@types/codemirror@5.60.15':
dependencies:
'@types/tern': 0.23.9
@@ -14645,68 +16255,189 @@ snapshots:
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
+
+ '@types/cors@2.8.19':
+ dependencies:
+ '@types/node': 24.0.4
+
+ '@types/d3-array@3.2.1': {}
+
+ '@types/d3-axis@3.0.6':
+ dependencies:
+ '@types/d3-selection': 3.0.11
+
+ '@types/d3-brush@3.0.6':
+ dependencies:
+ '@types/d3-selection': 3.0.11
+
+ '@types/d3-chord@3.0.6': {}
+
+ '@types/d3-color@3.1.3': {}
+
+ '@types/d3-contour@3.0.6':
+ dependencies:
+ '@types/d3-array': 3.2.1
+ '@types/geojson': 7946.0.16
+
+ '@types/d3-delaunay@6.0.4': {}
+
+ '@types/d3-dispatch@3.0.6': {}
+
+ '@types/d3-drag@3.0.7':
+ dependencies:
+ '@types/d3-selection': 3.0.11
+
+ '@types/d3-dsv@3.0.7': {}
+
+ '@types/d3-ease@3.0.2': {}
+
+ '@types/d3-fetch@3.0.7':
+ dependencies:
+ '@types/d3-dsv': 3.0.7
+
+ '@types/d3-force@3.0.10': {}
+
+ '@types/d3-format@3.0.4': {}
+
+ '@types/d3-geo@3.1.0':
+ dependencies:
+ '@types/geojson': 7946.0.16
+
+ '@types/d3-hierarchy@3.1.7': {}
+
+ '@types/d3-interpolate@3.0.4':
+ dependencies:
+ '@types/d3-color': 3.1.3
+
+ '@types/d3-path@3.1.1': {}
+
+ '@types/d3-polygon@3.0.2': {}
+
+ '@types/d3-quadtree@3.0.6': {}
+
+ '@types/d3-random@3.0.3': {}
+
+ '@types/d3-scale-chromatic@3.1.0': {}
+
+ '@types/d3-scale@4.0.9':
+ dependencies:
+ '@types/d3-time': 3.0.4
- '@types/cors@2.8.17':
+ '@types/d3-selection@3.0.11': {}
+
+ '@types/d3-shape@3.1.7':
+ dependencies:
+ '@types/d3-path': 3.1.1
+
+ '@types/d3-time-format@4.0.3': {}
+
+ '@types/d3-time@3.0.4': {}
+
+ '@types/d3-timer@3.0.2': {}
+
+ '@types/d3-transition@3.0.9':
+ dependencies:
+ '@types/d3-selection': 3.0.11
+
+ '@types/d3-zoom@3.0.8':
dependencies:
- '@types/node': 22.15.3
+ '@types/d3-interpolate': 3.0.4
+ '@types/d3-selection': 3.0.11
+
+ '@types/d3@7.4.3':
+ dependencies:
+ '@types/d3-array': 3.2.1
+ '@types/d3-axis': 3.0.6
+ '@types/d3-brush': 3.0.6
+ '@types/d3-chord': 3.0.6
+ '@types/d3-color': 3.1.3
+ '@types/d3-contour': 3.0.6
+ '@types/d3-delaunay': 6.0.4
+ '@types/d3-dispatch': 3.0.6
+ '@types/d3-drag': 3.0.7
+ '@types/d3-dsv': 3.0.7
+ '@types/d3-ease': 3.0.2
+ '@types/d3-fetch': 3.0.7
+ '@types/d3-force': 3.0.10
+ '@types/d3-format': 3.0.4
+ '@types/d3-geo': 3.1.0
+ '@types/d3-hierarchy': 3.1.7
+ '@types/d3-interpolate': 3.0.4
+ '@types/d3-path': 3.1.1
+ '@types/d3-polygon': 3.0.2
+ '@types/d3-quadtree': 3.0.6
+ '@types/d3-random': 3.0.3
+ '@types/d3-scale': 4.0.9
+ '@types/d3-scale-chromatic': 3.1.0
+ '@types/d3-selection': 3.0.11
+ '@types/d3-shape': 3.1.7
+ '@types/d3-time': 3.0.4
+ '@types/d3-time-format': 4.0.3
+ '@types/d3-timer': 3.0.2
+ '@types/d3-transition': 3.0.9
+ '@types/d3-zoom': 3.0.8
'@types/debug@4.1.12':
dependencies:
'@types/ms': 2.1.0
+ '@types/deep-eql@4.0.2': {}
+
'@types/dompurify@3.2.0':
dependencies:
- dompurify: 3.2.5
+ dompurify: 3.2.6
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 9.6.1
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
'@types/eslint@8.56.12':
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
'@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
- '@types/estree@1.0.7': {}
+ '@types/estree@1.0.8': {}
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 22.15.3
- '@types/qs': 6.9.18
+ '@types/node': 24.0.4
+ '@types/qs': 6.14.0
'@types/range-parser': 1.2.7
- '@types/send': 0.17.4
+ '@types/send': 0.17.5
- '@types/express@4.17.21':
+ '@types/express@4.17.23':
dependencies:
- '@types/body-parser': 1.19.5
+ '@types/body-parser': 1.19.6
'@types/express-serve-static-core': 4.19.6
- '@types/qs': 6.9.18
- '@types/serve-static': 1.15.7
+ '@types/qs': 6.14.0
+ '@types/serve-static': 1.15.8
'@types/fs-extra@5.1.0':
dependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/fs-extra@8.1.5':
dependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
+
+ '@types/geojson@7946.0.16': {}
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/hast@2.3.10':
dependencies:
@@ -14720,7 +16451,7 @@ snapshots:
'@types/http-cache-semantics@4.0.4': {}
- '@types/http-errors@2.0.4': {}
+ '@types/http-errors@2.0.5': {}
'@types/json-schema@7.0.15': {}
@@ -14728,7 +16459,7 @@ snapshots:
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/lz-string@1.5.0':
dependencies:
@@ -14756,17 +16487,21 @@ snapshots:
'@types/node@17.0.45': {}
- '@types/node@22.15.3':
+ '@types/node@20.19.1':
dependencies:
undici-types: 6.21.0
+ '@types/node@24.0.4':
+ dependencies:
+ undici-types: 7.8.0
+
'@types/object-path@0.11.4': {}
'@types/parse-json@4.0.2': {}
'@types/parse5@6.0.3': {}
- '@types/qs@6.9.18': {}
+ '@types/qs@6.14.0': {}
'@types/qunit@2.19.12': {}
@@ -14776,33 +16511,35 @@ snapshots:
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/rimraf@2.0.5':
dependencies:
'@types/glob': 8.1.0
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
'@types/rsvp@4.0.9': {}
'@types/semver@7.7.0': {}
- '@types/send@0.17.4':
+ '@types/send@0.17.5':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
- '@types/serve-static@1.15.7':
+ '@types/serve-static@1.15.8':
dependencies:
- '@types/http-errors': 2.0.4
- '@types/node': 22.15.3
- '@types/send': 0.17.4
+ '@types/http-errors': 2.0.5
+ '@types/node': 24.0.4
+ '@types/send': 0.17.5
+
+ '@types/sinonjs__fake-timers@8.1.5': {}
'@types/symlink-or-copy@1.2.2': {}
'@types/tern@0.23.9':
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
'@types/trusted-types@2.0.7':
optional: true
@@ -14815,221 +16552,271 @@ snapshots:
'@types/uuid@10.0.0': {}
+ '@types/which@2.0.2': {}
+
+ '@types/ws@8.18.1':
+ dependencies:
+ '@types/node': 24.0.4
+
'@types/yargs-parser@21.0.3': {}
'@types/yargs@17.0.33':
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.31.1(d59bc2466e37e4c727f298aa0ba509e7)':
+ '@types/yauzl@2.10.3':
+ dependencies:
+ '@types/node': 24.0.4
+ optional: true
+
+ '@typescript-eslint/eslint-plugin@8.35.0(9f9d3da3b040ff2bc796e11469979659)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- '@typescript-eslint/scope-manager': 8.31.1
- '@typescript-eslint/type-utils': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- '@typescript-eslint/utils': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- '@typescript-eslint/visitor-keys': 8.31.1
- eslint: 9.25.1(jiti@1.21.7)
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
+ '@typescript-eslint/scope-manager': 8.35.0
+ '@typescript-eslint/type-utils': 8.35.0(f34568f6b8e005732038c441d846657e)
+ '@typescript-eslint/utils': 8.35.0(f34568f6b8e005732038c441d846657e)
+ '@typescript-eslint/visitor-keys': 8.35.0
+ eslint: 9.29.0(jiti@2.4.2)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.7.3)
- typescript: 5.7.3
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.35.0(f34568f6b8e005732038c441d846657e)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.35.0
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.35.0
+ debug: 4.4.1
+ eslint: 9.29.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.31.1(54d0da154413141e84f5f122231c9cc2)':
+ '@typescript-eslint/project-service@8.35.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.31.1
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.31.1
- debug: 4.4.0(supports-color@8.1.1)
- eslint: 9.25.1(jiti@1.21.7)
- typescript: 5.7.3
+ '@typescript-eslint/tsconfig-utils': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.35.0
+ debug: 4.4.1
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.31.1':
+ '@typescript-eslint/scope-manager@8.35.0':
+ dependencies:
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/visitor-keys': 8.35.0
+
+ '@typescript-eslint/tsconfig-utils@8.35.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/visitor-keys': 8.31.1
+ typescript: 5.8.3
- '@typescript-eslint/type-utils@8.31.1(54d0da154413141e84f5f122231c9cc2)':
+ '@typescript-eslint/type-utils@8.35.0(f34568f6b8e005732038c441d846657e)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.7.3)
- '@typescript-eslint/utils': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- debug: 4.4.0(supports-color@8.1.1)
- eslint: 9.25.1(jiti@1.21.7)
- ts-api-utils: 2.1.0(typescript@5.7.3)
- typescript: 5.7.3
+ '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.35.0(f34568f6b8e005732038c441d846657e)
+ debug: 4.4.1
+ eslint: 9.29.0(jiti@2.4.2)
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.31.1': {}
+ '@typescript-eslint/types@8.35.0': {}
- '@typescript-eslint/typescript-estree@8.31.1(typescript@5.7.3)':
+ '@typescript-eslint/typescript-estree@8.35.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/visitor-keys': 8.31.1
- debug: 4.4.0(supports-color@8.1.1)
+ '@typescript-eslint/project-service': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/visitor-keys': 8.35.0
+ debug: 4.4.1
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.1.0(typescript@5.7.3)
- typescript: 5.7.3
+ semver: 7.7.2
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.31.1(54d0da154413141e84f5f122231c9cc2)':
+ '@typescript-eslint/utils@8.35.0(f34568f6b8e005732038c441d846657e)':
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
- '@typescript-eslint/scope-manager': 8.31.1
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.7.3)
- eslint: 9.25.1(jiti@1.21.7)
- typescript: 5.7.3
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.29.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.35.0
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
+ eslint: 9.29.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.31.1':
+ '@typescript-eslint/visitor-keys@8.35.0':
dependencies:
- '@typescript-eslint/types': 8.31.1
- eslint-visitor-keys: 4.2.0
+ '@typescript-eslint/types': 8.35.0
+ eslint-visitor-keys: 4.2.1
'@ungap/structured-clone@1.3.0': {}
- '@universal-ember/kolay-ui@0.0.13(e637f023840ebf6df20e52f04f3f8750)':
- dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
- '@embroider/addon-shim': 1.8.9
- '@glimmer/component': 2.0.0
- '@glimmer/tracking': 1.1.2
- '@glint/template': 1.4.1-unstable.0e0d936
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
- ember-primitives: 0.30.0(4eb5a63083ebd3f3afbb5c714291c843)
- ember-resources: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
- qunit: 2.24.1
- reactiveweb: 1.4.1(737c6461a8730545861e6febe5b0676c)
- tracked-built-ins: 4.0.0(@babel/core@7.27.1)
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
+ '@unrs/resolver-binding-android-arm-eabi@1.9.2':
+ optional: true
+
+ '@unrs/resolver-binding-android-arm64@1.9.2':
+ optional: true
- '@unrs/resolver-binding-darwin-arm64@1.7.2':
+ '@unrs/resolver-binding-darwin-arm64@1.9.2':
optional: true
- '@unrs/resolver-binding-darwin-x64@1.7.2':
+ '@unrs/resolver-binding-darwin-x64@1.9.2':
optional: true
- '@unrs/resolver-binding-freebsd-x64@1.7.2':
+ '@unrs/resolver-binding-freebsd-x64@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2':
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-arm-musleabihf@1.7.2':
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-arm64-gnu@1.7.2':
+ '@unrs/resolver-binding-linux-arm64-gnu@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-arm64-musl@1.7.2':
+ '@unrs/resolver-binding-linux-arm64-musl@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-ppc64-gnu@1.7.2':
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-riscv64-gnu@1.7.2':
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-riscv64-musl@1.7.2':
+ '@unrs/resolver-binding-linux-riscv64-musl@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-s390x-gnu@1.7.2':
+ '@unrs/resolver-binding-linux-s390x-gnu@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-x64-gnu@1.7.2':
+ '@unrs/resolver-binding-linux-x64-gnu@1.9.2':
optional: true
- '@unrs/resolver-binding-linux-x64-musl@1.7.2':
+ '@unrs/resolver-binding-linux-x64-musl@1.9.2':
optional: true
- '@unrs/resolver-binding-wasm32-wasi@1.7.2':
+ '@unrs/resolver-binding-wasm32-wasi@1.9.2':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.9
+ '@napi-rs/wasm-runtime': 0.2.11
optional: true
- '@unrs/resolver-binding-win32-arm64-msvc@1.7.2':
+ '@unrs/resolver-binding-win32-arm64-msvc@1.9.2':
optional: true
- '@unrs/resolver-binding-win32-ia32-msvc@1.7.2':
+ '@unrs/resolver-binding-win32-ia32-msvc@1.9.2':
optional: true
- '@unrs/resolver-binding-win32-x64-msvc@1.7.2':
+ '@unrs/resolver-binding-win32-x64-msvc@1.9.2':
optional: true
- '@vitest/expect@3.1.2':
+ '@vitest/browser@3.2.4(2e993a30aa94f334ebb078d5cc3beeef)':
+ dependencies:
+ '@testing-library/dom': 10.4.0
+ '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
+ '@vitest/mocker': 3.2.4(b6180693ed26d1b7a1153265ba481eba)
+ '@vitest/utils': 3.2.4
+ magic-string: 0.30.17
+ sirv: 3.0.1
+ tinyrainbow: 2.0.0
+ vitest: 3.2.4(fba6a93057071088ca51d2200171aeef)
+ ws: 8.18.2
+ optionalDependencies:
+ playwright: 1.53.1
+ webdriverio: 9.16.2
+ transitivePeerDependencies:
+ - bufferutil
+ - msw
+ - utf-8-validate
+ - vite
+
+ '@vitest/expect@3.2.4':
dependencies:
- '@vitest/spy': 3.1.2
- '@vitest/utils': 3.1.2
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.1.2(31d608db47cd080961b235354555fefa)':
+ '@vitest/mocker@3.2.4(b6180693ed26d1b7a1153265ba481eba)':
dependencies:
- '@vitest/spy': 3.1.2
+ '@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
- '@vitest/pretty-format@3.1.2':
+ '@vitest/pretty-format@3.2.4':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.1.2':
+ '@vitest/runner@3.2.4':
dependencies:
- '@vitest/utils': 3.1.2
+ '@vitest/utils': 3.2.4
pathe: 2.0.3
+ strip-literal: 3.0.0
- '@vitest/snapshot@3.1.2':
+ '@vitest/snapshot@3.2.4':
dependencies:
- '@vitest/pretty-format': 3.1.2
+ '@vitest/pretty-format': 3.2.4
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.1.2':
+ '@vitest/spy@3.2.4':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.3
- '@vitest/utils@3.1.2':
+ '@vitest/ui@3.2.4(vitest@3.2.4)':
dependencies:
- '@vitest/pretty-format': 3.1.2
- loupe: 3.1.3
+ '@vitest/utils': 3.2.4
+ fflate: 0.8.2
+ flatted: 3.3.3
+ pathe: 2.0.3
+ sirv: 3.0.1
+ tinyglobby: 0.2.14
+ tinyrainbow: 2.0.0
+ vitest: 3.2.4(fba6a93057071088ca51d2200171aeef)
+
+ '@vitest/utils@3.2.4':
+ dependencies:
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.1.4
tinyrainbow: 2.0.0
- '@volar/kit@2.4.11(typescript@5.7.3)':
+ '@volar/kit@2.4.12(typescript@5.8.3)':
dependencies:
- '@volar/language-service': 2.4.11
- '@volar/typescript': 2.4.11
+ '@volar/language-service': 2.4.12
+ '@volar/typescript': 2.4.12
typesafe-path: 0.2.2
- typescript: 5.7.3
+ typescript: 5.8.3
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.1.0
- '@volar/language-core@2.4.11':
+ '@volar/language-core@2.4.12':
+ dependencies:
+ '@volar/source-map': 2.4.12
+
+ '@volar/language-core@2.4.15':
dependencies:
- '@volar/source-map': 2.4.11
+ '@volar/source-map': 2.4.15
- '@volar/language-server@2.4.11':
+ '@volar/language-server@2.4.12':
dependencies:
- '@volar/language-core': 2.4.11
- '@volar/language-service': 2.4.11
- '@volar/typescript': 2.4.11
+ '@volar/language-core': 2.4.12
+ '@volar/language-service': 2.4.12
+ '@volar/typescript': 2.4.12
path-browserify: 1.0.1
request-light: 0.7.0
vscode-languageserver: 9.0.1
@@ -15037,28 +16824,160 @@ snapshots:
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.1.0
- '@volar/language-service@2.4.11':
+ '@volar/language-service@2.4.12':
dependencies:
- '@volar/language-core': 2.4.11
+ '@volar/language-core': 2.4.12
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.1.0
- '@volar/source-map@2.4.11': {}
+ '@volar/source-map@2.4.12': {}
+
+ '@volar/source-map@2.4.15': {}
- '@volar/test-utils@2.4.11':
+ '@volar/test-utils@2.4.12':
dependencies:
- '@volar/language-core': 2.4.11
- '@volar/language-server': 2.4.11
+ '@volar/language-core': 2.4.12
+ '@volar/language-server': 2.4.12
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.1.0
- '@volar/typescript@2.4.11':
+ '@volar/typescript@2.4.12':
dependencies:
- '@volar/language-core': 2.4.11
+ '@volar/language-core': 2.4.12
path-browserify: 1.0.1
vscode-uri: 3.1.0
+ '@volar/typescript@2.4.15':
+ dependencies:
+ '@volar/language-core': 2.4.15
+ path-browserify: 1.0.1
+ vscode-uri: 3.1.0
+
+ '@vscode/l10n@0.0.18': {}
+
+ '@vue/compiler-core@3.5.17':
+ dependencies:
+ '@babel/parser': 7.27.7
+ '@vue/shared': 3.5.17
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
+ '@vue/compiler-dom@3.5.17':
+ dependencies:
+ '@vue/compiler-core': 3.5.17
+ '@vue/shared': 3.5.17
+
+ '@vue/compiler-sfc@3.5.17':
+ dependencies:
+ '@babel/parser': 7.27.7
+ '@vue/compiler-core': 3.5.17
+ '@vue/compiler-dom': 3.5.17
+ '@vue/compiler-ssr': 3.5.17
+ '@vue/shared': 3.5.17
+ estree-walker: 2.0.2
+ magic-string: 0.30.17
+ postcss: 8.5.6
+ source-map-js: 1.2.1
+
+ '@vue/compiler-ssr@3.5.17':
+ dependencies:
+ '@vue/compiler-dom': 3.5.17
+ '@vue/shared': 3.5.17
+
+ '@vue/compiler-vue2@2.7.16':
+ dependencies:
+ de-indent: 1.0.2
+ he: 1.2.0
+
+ '@vue/language-core@2.2.0(typescript@5.8.3)':
+ dependencies:
+ '@volar/language-core': 2.4.15
+ '@vue/compiler-dom': 3.5.17
+ '@vue/compiler-vue2': 2.7.16
+ '@vue/shared': 3.5.17
+ alien-signals: 0.4.14
+ minimatch: 9.0.5
+ muggle-string: 0.4.1
+ path-browserify: 1.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@vue/reactivity@3.5.17':
+ dependencies:
+ '@vue/shared': 3.5.17
+
+ '@vue/repl@4.6.1': {}
+
+ '@vue/runtime-core@3.5.17':
+ dependencies:
+ '@vue/reactivity': 3.5.17
+ '@vue/shared': 3.5.17
+
+ '@vue/runtime-dom@3.5.17':
+ dependencies:
+ '@vue/reactivity': 3.5.17
+ '@vue/runtime-core': 3.5.17
+ '@vue/shared': 3.5.17
+ csstype: 3.1.3
+
+ '@vue/server-renderer@3.5.17(vue@3.5.17(typescript@5.8.3))':
+ dependencies:
+ '@vue/compiler-ssr': 3.5.17
+ '@vue/shared': 3.5.17
+ vue: 3.5.17(typescript@5.8.3)
+
+ '@vue/shared@3.5.17': {}
+
+ '@wdio/config@9.16.2':
+ dependencies:
+ '@wdio/logger': 9.16.2
+ '@wdio/types': 9.16.2
+ '@wdio/utils': 9.16.2
+ deepmerge-ts: 7.1.5
+ glob: 10.4.5
+ import-meta-resolve: 4.1.0
+ transitivePeerDependencies:
+ - bare-buffer
+ - supports-color
+
+ '@wdio/logger@9.16.2':
+ dependencies:
+ chalk: 5.4.1
+ loglevel: 1.9.2
+ loglevel-plugin-prefix: 0.8.4
+ strip-ansi: 7.1.0
+
+ '@wdio/protocols@9.16.2': {}
+
+ '@wdio/repl@9.16.2':
+ dependencies:
+ '@types/node': 20.19.1
+
+ '@wdio/types@9.16.2':
+ dependencies:
+ '@types/node': 20.19.1
+
+ '@wdio/utils@9.16.2':
+ dependencies:
+ '@puppeteer/browsers': 2.10.5
+ '@wdio/logger': 9.16.2
+ '@wdio/types': 9.16.2
+ decamelize: 6.0.0
+ deepmerge-ts: 7.1.5
+ edgedriver: 6.1.1
+ geckodriver: 5.0.0
+ get-port: 7.1.0
+ import-meta-resolve: 4.1.0
+ locate-app: 2.5.0
+ safaridriver: 1.0.0
+ split2: 4.2.0
+ wait-port: 1.1.0
+ transitivePeerDependencies:
+ - bare-buffer
+ - supports-color
+
'@webassemblyjs/ast@1.14.1':
dependencies:
'@webassemblyjs/helper-numbers': 1.13.2
@@ -15135,53 +17054,59 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
- '@webpack-cli/configtest@3.0.1(webpack-cli@6.0.1)(webpack@5.99.7)':
+ '@webpack-cli/configtest@3.0.1(webpack-cli@6.0.1)(webpack@5.99.9)':
dependencies:
- webpack: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.99.7)
+ webpack: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.9)
- '@webpack-cli/info@3.0.1(webpack-cli@6.0.1)(webpack@5.99.7)':
+ '@webpack-cli/info@3.0.1(webpack-cli@6.0.1)(webpack@5.99.9)':
dependencies:
- webpack: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.99.7)
+ webpack: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.9)
- '@webpack-cli/serve@3.0.1(webpack-cli@6.0.1)(webpack@5.99.7)':
+ '@webpack-cli/serve@3.0.1(webpack-cli@6.0.1)(webpack@5.99.9)':
dependencies:
- webpack: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.99.7)
+ webpack: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.9)
'@wessberg/stringutil@1.0.19': {}
'@xmldom/xmldom@0.8.10': {}
- '@xstate/inspect@0.8.0(ws@8.18.1)(xstate@5.19.2)':
+ '@xstate/inspect@0.8.0(ws@8.18.2)(xstate@5.19.4)':
dependencies:
fast-safe-stringify: 2.1.1
- ws: 8.18.1
- xstate: 5.19.2
+ ws: 8.18.2
+ xstate: 5.19.4
'@xtuc/ieee754@1.2.0': {}
'@xtuc/long@4.2.2': {}
+ '@zip.js/zip.js@2.7.62': {}
+
abbrev@1.1.1: {}
abbrev@2.0.0: {}
+ abort-controller@3.0.0:
+ dependencies:
+ event-target-shim: 5.0.1
+
accepts@1.3.8:
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-jsx@5.3.2(acorn@8.14.1):
+ acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
acorn-walk@8.3.4:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
- acorn@8.14.1: {}
+ acorn@8.15.0: {}
agent-base@4.3.0:
dependencies:
@@ -15189,7 +17114,7 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
@@ -15204,10 +17129,18 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
+ ajv-draft-04@1.0.0(ajv@8.13.0):
+ optionalDependencies:
+ ajv: 8.13.0
+
ajv-formats@2.1.1:
dependencies:
ajv: 8.17.1
+ ajv-formats@3.0.1:
+ dependencies:
+ ajv: 8.17.1
+
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
@@ -15224,6 +17157,20 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
+ ajv@8.12.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+
+ ajv@8.13.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
@@ -15231,6 +17178,8 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
+ alien-signals@0.4.14: {}
+
amd-name-resolver@1.3.1:
dependencies:
ensure-posix-path: 1.1.1
@@ -15264,6 +17213,8 @@ snapshots:
dependencies:
color-convert: 2.0.1
+ ansi-styles@5.2.0: {}
+
ansi-styles@6.2.1: {}
ansicolors@0.2.1: {}
@@ -15284,6 +17235,26 @@ snapshots:
aproba@2.0.0: {}
+ archiver-utils@5.0.2:
+ dependencies:
+ glob: 10.4.5
+ graceful-fs: 4.2.11
+ is-stream: 2.0.1
+ lazystream: 1.0.1
+ lodash: 4.17.21
+ normalize-path: 3.0.0
+ readable-stream: 4.7.0
+
+ archiver@7.0.1:
+ dependencies:
+ archiver-utils: 5.0.2
+ async: 3.2.6
+ buffer-crc32: 1.0.0
+ readable-stream: 4.7.0
+ readdir-glob: 1.1.3
+ tar-stream: 3.1.7
+ zip-stream: 6.0.1
+
are-we-there-yet@3.0.1:
dependencies:
delegates: 1.0.0
@@ -15297,6 +17268,10 @@ snapshots:
argparse@2.0.1: {}
+ aria-query@5.3.0:
+ dependencies:
+ dequal: 2.0.3
+
aria-query@5.3.2: {}
arr-diff@4.0.0: {}
@@ -15339,6 +17314,10 @@ snapshots:
ast-types@0.13.3: {}
+ ast-types@0.13.4:
+ dependencies:
+ tslib: 2.8.1
+
ast-types@0.16.1:
dependencies:
tslib: 2.8.1
@@ -15357,7 +17336,7 @@ snapshots:
async-disk-cache@2.1.0:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
heimdalljs: 0.2.6
istextorbinary: 2.6.0
mkdirp: 0.5.6
@@ -15388,60 +17367,70 @@ snapshots:
atob@2.1.2: {}
- autoprefixer@10.4.21(postcss@8.5.3):
+ autoprefixer@10.4.21(postcss@8.5.6):
dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001716
+ browserslist: 4.25.1
+ caniuse-lite: 1.0.30001726
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
- babel-core@7.0.0-bridge.0(@babel/core@7.27.1):
+ axios@1.10.0(debug@4.4.1):
dependencies:
- '@babel/core': 7.27.1
+ follow-redirects: 1.15.9(debug@4.4.1)
+ form-data: 4.0.3
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
+ axobject-query@4.1.0: {}
- babel-import-util@1.4.1: {}
+ b4a@1.6.7: {}
+
+ babel-core@7.0.0-bridge.0(@babel/core@7.27.7):
+ dependencies:
+ '@babel/core': 7.27.7
babel-import-util@2.1.1: {}
babel-import-util@3.0.1: {}
- babel-loader@10.0.0(@babel/core@7.27.1)(webpack@5.99.7):
+ babel-loader@10.0.0(@babel/core@7.27.7)(webpack@5.99.9):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
find-up: 5.0.0
- webpack: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
+ webpack: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
- babel-loader@8.4.1(@babel/core@7.27.1)(webpack@5.99.7):
+ babel-loader@8.4.1(@babel/core@7.27.7)(webpack@5.99.9):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.99.7
+ webpack: 5.99.9
- babel-plugin-debug-macros@0.2.0(@babel/core@7.27.1):
+ babel-plugin-debug-macros@0.2.0(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
semver: 5.7.2
- babel-plugin-debug-macros@0.3.4(@babel/core@7.27.1):
+ babel-plugin-debug-macros@0.3.4(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
semver: 5.7.2
- babel-plugin-debug-macros@1.0.2(@babel/core@7.27.1):
+ babel-plugin-debug-macros@1.0.2(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
babel-import-util: 2.1.1
- semver: 7.7.1
+ semver: 7.7.2
babel-plugin-ember-data-packages-polyfill@0.1.2:
dependencies:
@@ -15451,15 +17440,16 @@ snapshots:
dependencies:
ember-rfc176-data: 0.3.18
- babel-plugin-ember-template-compilation@2.3.0:
+ babel-plugin-ember-template-compilation@2.4.1:
dependencies:
- '@glimmer/syntax': 0.84.3
+ '@glimmer/syntax': 0.94.9
babel-import-util: 3.0.1
- babel-plugin-ember-template-compilation@2.4.1:
+ babel-plugin-ember-template-compilation@3.0.0:
dependencies:
'@glimmer/syntax': 0.94.9
babel-import-util: 3.0.1
+ import-meta-resolve: 4.1.0
babel-plugin-htmlbars-inline-precompile@5.3.1:
dependencies:
@@ -15471,7 +17461,7 @@ snapshots:
babel-plugin-macros@2.8.0:
dependencies:
- '@babel/runtime': 7.27.1
+ '@babel/runtime': 7.27.6
cosmiconfig: 6.0.0
resolve: 1.22.10
@@ -15491,27 +17481,27 @@ snapshots:
reselect: 4.1.8
resolve: 1.22.10
- babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.1):
+ babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.7):
dependencies:
- '@babel/compat-data': 7.27.1
- '@babel/core': 7.27.1
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.1)
+ '@babel/compat-data': 7.27.5
+ '@babel/core': 7.27.7
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.1):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.1)
- core-js-compat: 3.42.0
+ '@babel/core': 7.27.7
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.7)
+ core-js-compat: 3.43.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.1):
+ babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
@@ -15519,9 +17509,9 @@ snapshots:
babel-remove-types@1.0.1:
dependencies:
- '@babel/core': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
prettier: 2.8.8
transitivePeerDependencies:
- supports-color
@@ -15538,6 +17528,31 @@ snapshots:
balanced-match@1.0.2: {}
+ bare-events@2.5.4:
+ optional: true
+
+ bare-fs@4.1.5:
+ dependencies:
+ bare-events: 2.5.4
+ bare-path: 3.0.0
+ bare-stream: 2.6.5(bare-events@2.5.4)
+ optional: true
+
+ bare-os@3.6.1:
+ optional: true
+
+ bare-path@3.0.0:
+ dependencies:
+ bare-os: 3.6.1
+ optional: true
+
+ bare-stream@2.6.5(bare-events@2.5.4):
+ dependencies:
+ streamx: 2.22.1
+ optionalDependencies:
+ bare-events: 2.5.4
+ optional: true
+
base64-js@1.5.1: {}
base64id@2.0.0: {}
@@ -15556,6 +17571,8 @@ snapshots:
dependencies:
safe-buffer: 5.1.2
+ basic-ftp@5.0.5: {}
+
before-after-hook@3.0.2: {}
better-path-resolve@1.0.0:
@@ -15614,12 +17631,14 @@ snapshots:
raw-body: 1.1.7
safe-json-parse: 1.0.1
- brace-expansion@1.1.11:
+ boolbase@1.0.0: {}
+
+ brace-expansion@1.1.12:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- brace-expansion@2.0.1:
+ brace-expansion@2.0.2:
dependencies:
balanced-match: 1.0.2
@@ -15661,7 +17680,7 @@ snapshots:
broccoli-babel-transpiler@7.8.1:
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@babel/polyfill': 7.12.1
broccoli-funnel: 2.0.2
broccoli-merge-trees: 3.0.2
@@ -15676,9 +17695,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- broccoli-babel-transpiler@8.0.2(@babel/core@7.27.1):
+ broccoli-babel-transpiler@8.0.2(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
broccoli-persistent-filter: 3.1.3
clone: 2.1.2
hash-for-dep: 1.5.1
@@ -15690,18 +17709,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- broccoli-builder@0.18.14:
- dependencies:
- broccoli-node-info: 1.1.0
- heimdalljs: 0.2.6
- promise-map-series: 0.2.3
- quick-temp: 0.1.8
- rimraf: 2.7.1
- rsvp: 3.6.2
- silent-error: 1.1.1
- transitivePeerDependencies:
- - supports-color
-
broccoli-caching-writer@3.0.3:
dependencies:
broccoli-kitchen-sink-helpers: 0.3.1
@@ -15798,7 +17805,7 @@ snapshots:
dependencies:
array-equal: 1.0.2
broccoli-plugin: 4.0.7
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
fs-tree-diff: 2.0.1
heimdalljs: 0.2.6
minimatch: 3.1.2
@@ -15834,8 +17841,6 @@ snapshots:
broccoli-node-api@1.7.0: {}
- broccoli-node-info@1.1.0: {}
-
broccoli-node-info@2.2.0: {}
broccoli-output-wrapper@3.2.5:
@@ -15943,7 +17948,7 @@ snapshots:
broccoli-persistent-filter: 2.3.1
broccoli-plugin: 2.1.0
chalk: 2.4.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
ensure-posix-path: 1.1.1
fs-extra: 8.1.0
minimatch: 3.1.2
@@ -15958,7 +17963,7 @@ snapshots:
dependencies:
'@types/chai': 4.3.20
'@types/chai-as-promised': 7.1.8
- '@types/express': 4.17.21
+ '@types/express': 4.17.23
ansi-html: 0.0.7
broccoli-node-info: 2.2.0
broccoli-slow-trees: 3.1.0
@@ -16042,26 +18047,26 @@ snapshots:
'@types/object-path': 0.11.4
'@types/semver': 7.7.0
'@types/ua-parser-js': 0.7.39
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001716
+ browserslist: 4.25.1
+ caniuse-lite: 1.0.30001726
isbot: 3.8.0
object-path: 0.11.8
- semver: 7.7.1
+ semver: 7.7.2
ua-parser-js: 1.0.40
- browserslist-to-esbuild@2.1.1(browserslist@4.24.4):
+ browserslist-to-esbuild@2.1.1(browserslist@4.25.1):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.25.1
meow: 13.2.0
- browserslist@4.24.4:
+ browserslist@4.25.1:
dependencies:
- caniuse-lite: 1.0.30001716
- electron-to-chromium: 1.5.148
+ caniuse-lite: 1.0.30001726
+ electron-to-chromium: 1.5.174
node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.24.4)
+ update-browserslist-db: 1.1.3(browserslist@4.25.1)
- browserstack-local@1.5.6:
+ browserstack-local@1.5.7:
dependencies:
agent-base: 6.0.2
https-proxy-agent: 5.0.1
@@ -16081,6 +18086,10 @@ snapshots:
dependencies:
node-int64: 0.4.0
+ buffer-crc32@0.2.13: {}
+
+ buffer-crc32@1.0.0: {}
+
buffer-from@1.1.2: {}
buffer-xor@1.0.3: {}
@@ -16095,11 +18104,11 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- build-time-reporter-webpack-plugin@1.4.3(webpack@5.99.7):
+ build-time-reporter-webpack-plugin@1.4.3(webpack@5.99.9):
dependencies:
dashify: 2.0.0
schema-utils: 2.7.1
- webpack: 5.99.7
+ webpack: 5.99.9
builtin-status-codes@3.0.0: {}
@@ -16165,17 +18174,17 @@ snapshots:
dependencies:
'@types/http-cache-semantics': 4.0.4
get-stream: 6.0.1
- http-cache-semantics: 4.1.1
+ http-cache-semantics: 4.2.0
keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.1
+ normalize-url: 8.0.2
responselike: 3.0.0
cacheable-request@6.1.0:
dependencies:
clone-response: 1.0.3
get-stream: 5.2.0
- http-cache-semantics: 4.1.1
+ http-cache-semantics: 4.2.0
keyv: 3.1.0
lowercase-keys: 2.0.0
normalize-url: 4.5.1
@@ -16212,7 +18221,7 @@ snapshots:
dependencies:
tmp: 0.0.28
- caniuse-lite@1.0.30001716: {}
+ caniuse-lite@1.0.30001726: {}
capture-exit@2.0.0:
dependencies:
@@ -16230,8 +18239,8 @@ snapshots:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.3
- pathval: 2.0.0
+ loupe: 3.1.4
+ pathval: 2.0.1
chalk@2.4.2:
dependencies:
@@ -16262,6 +18271,43 @@ snapshots:
check-error@2.1.1: {}
+ cheerio-select@2.1.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-select: 5.1.0
+ css-what: 6.1.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+
+ cheerio@1.1.0:
+ dependencies:
+ cheerio-select: 2.1.0
+ dom-serializer: 2.0.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ encoding-sniffer: 0.2.1
+ htmlparser2: 10.0.0
+ parse5: 7.3.0
+ parse5-htmlparser2-tree-adapter: 7.1.0
+ parse5-parser-stream: 7.1.2
+ undici: 7.10.0
+ whatwg-mimetype: 4.0.0
+
+ chevrotain-allstar@0.3.1(chevrotain@11.0.3):
+ dependencies:
+ chevrotain: 11.0.3
+ lodash-es: 4.17.21
+
+ chevrotain@11.0.3:
+ dependencies:
+ '@chevrotain/cst-dts-gen': 11.0.3
+ '@chevrotain/gast': 11.0.3
+ '@chevrotain/regexp-to-ast': 11.0.3
+ '@chevrotain/types': 11.0.3
+ '@chevrotain/utils': 11.0.3
+ lodash-es: 4.17.21
+
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
@@ -16274,6 +18320,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.3:
+ dependencies:
+ readdirp: 4.1.2
+
chownr@2.0.0: {}
chrome-trace-event@1.0.4: {}
@@ -16363,29 +18413,37 @@ snapshots:
clone@2.1.2: {}
+ clsx@2.1.1: {}
+
+ codemirror-lang-mermaid@0.5.0:
+ dependencies:
+ '@codemirror/language': 6.11.2
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+
codemirror-languageserver@1.12.1(encoding@0.1.13):
dependencies:
'@codemirror/autocomplete': 6.18.6
'@codemirror/lint': 6.8.5
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
'@open-rpc/client-js': 1.8.1(encoding@0.1.13)
- marked: 15.0.11
+ marked: 15.0.12
vscode-languageserver-protocol: 3.17.5
transitivePeerDependencies:
- bufferutil
- encoding
- utf-8-validate
- codemirror@6.0.1:
+ codemirror@6.0.2:
dependencies:
'@codemirror/autocomplete': 6.18.6
- '@codemirror/commands': 6.8.0
- '@codemirror/language': 6.11.0
+ '@codemirror/commands': 6.8.1
+ '@codemirror/language': 6.11.2
'@codemirror/lint': 6.8.5
- '@codemirror/search': 6.5.10
+ '@codemirror/search': 6.5.11
'@codemirror/state': 6.5.2
- '@codemirror/view': 6.36.4
+ '@codemirror/view': 6.37.2
collection-visit@1.0.0:
dependencies:
@@ -16418,6 +18476,8 @@ snapshots:
dependencies:
delayed-stream: 1.0.0
+ comlink@4.4.2: {}
+
comma-separated-tokens@2.0.3: {}
commander@12.1.0: {}
@@ -16430,19 +18490,31 @@ snapshots:
commander@8.3.0: {}
+ commander@9.5.0: {}
+
common-ancestor-path@1.0.1: {}
common-tags@1.8.2: {}
commondir@1.0.1: {}
- compatfactory@3.0.0(typescript@5.7.3):
+ compare-versions@6.1.1: {}
+
+ compatfactory@3.0.0(typescript@5.8.3):
dependencies:
helpertypes: 0.0.19
- typescript: 5.7.3
+ typescript: 5.8.3
component-emitter@1.3.1: {}
+ compress-commons@6.0.2:
+ dependencies:
+ crc-32: 1.2.2
+ crc32-stream: 6.0.0
+ is-stream: 2.0.1
+ normalize-path: 3.0.0
+ readable-stream: 4.7.0
+
compressible@2.0.18:
dependencies:
mime-db: 1.54.0
@@ -16463,16 +18535,20 @@ snapshots:
concat-map@0.0.1: {}
- concurrently@9.1.2:
+ concurrently@9.2.0:
dependencies:
chalk: 4.1.2
lodash: 4.17.21
rxjs: 7.8.2
- shell-quote: 1.8.2
+ shell-quote: 1.8.3
supports-color: 8.1.1
tree-kill: 1.2.2
yargs: 17.7.2
+ confbox@0.1.8: {}
+
+ confbox@0.2.2: {}
+
config-chain@1.1.13:
dependencies:
ini: 1.3.8
@@ -16523,10 +18599,6 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- content-tag-utils@0.3.1:
- dependencies:
- content-tag: 3.1.3
-
content-tag@2.0.3: {}
content-tag@3.1.3: {}
@@ -16547,9 +18619,9 @@ snapshots:
copy-descriptor@0.1.1: {}
- core-js-compat@3.42.0:
+ core-js-compat@3.43.0:
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.25.1
core-js@2.6.12: {}
@@ -16564,6 +18636,16 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
+ corser@2.0.1: {}
+
+ cose-base@1.0.3:
+ dependencies:
+ layout-base: 1.0.2
+
+ cose-base@2.2.0:
+ dependencies:
+ layout-base: 2.0.1
+
cosmiconfig@6.0.0:
dependencies:
'@types/parse-json': 4.0.2
@@ -16572,20 +18654,34 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@9.0.0(typescript@5.7.3):
+ cosmiconfig@9.0.0(typescript@5.8.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.7.3
+ typescript: 5.8.3
+
+ crc-32@1.2.2: {}
+
+ crc32-stream@6.0.0:
+ dependencies:
+ crc-32: 1.2.2
+ readable-stream: 4.7.0
create-ecdh@4.0.4:
dependencies:
bn.js: 4.12.2
elliptic: 6.6.1
+ create-hash@1.1.3:
+ dependencies:
+ cipher-base: 1.0.6
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+
create-hash@1.2.0:
dependencies:
cipher-base: 1.0.6
@@ -16635,49 +18731,255 @@ snapshots:
diffie-hellman: 5.0.3
hash-base: 3.0.5
inherits: 2.0.4
- pbkdf2: 3.1.2
+ pbkdf2: 3.1.3
public-encrypt: 4.0.3
randombytes: 2.1.0
randomfill: 1.0.4
- crypto-random-string@2.0.0: {}
+ crypto-random-string@2.0.0: {}
+
+ css-loader@5.2.7(webpack@5.99.9):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.5.6)
+ loader-utils: 2.0.4
+ postcss: 8.5.6
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.6)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.5.6)
+ postcss-modules-scope: 3.2.1(postcss@8.5.6)
+ postcss-modules-values: 4.0.0(postcss@8.5.6)
+ postcss-value-parser: 4.2.0
+ schema-utils: 3.3.0
+ semver: 7.7.2
+ webpack: 5.99.9
+
+ css-select@5.1.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ nth-check: 2.1.1
+
+ css-shorthand-properties@1.1.2: {}
+
+ css-tree@3.1.0:
+ dependencies:
+ mdn-data: 2.12.2
+ source-map-js: 1.2.1
+
+ css-value@0.0.1: {}
+
+ css-what@6.1.0: {}
+
+ cssesc@3.0.0: {}
+
+ cssstyle@4.6.0:
+ dependencies:
+ '@asamuzakjp/css-color': 3.2.0
+ rrweb-cssom: 0.8.0
+
+ csstype@3.1.3: {}
+
+ cytoscape-cose-bilkent@4.1.0(cytoscape@3.32.0):
+ dependencies:
+ cose-base: 1.0.3
+ cytoscape: 3.32.0
+
+ cytoscape-fcose@2.2.0(cytoscape@3.32.0):
+ dependencies:
+ cose-base: 2.2.0
+ cytoscape: 3.32.0
+
+ cytoscape@3.32.0: {}
+
+ d3-array@2.12.1:
+ dependencies:
+ internmap: 1.0.1
+
+ d3-array@3.2.4:
+ dependencies:
+ internmap: 2.0.3
+
+ d3-axis@3.0.0: {}
+
+ d3-brush@3.0.0:
+ dependencies:
+ d3-dispatch: 3.0.1
+ d3-drag: 3.0.0
+ d3-interpolate: 3.0.1
+ d3-selection: 3.0.0
+ d3-transition: 3.0.1(d3-selection@3.0.0)
+
+ d3-chord@3.0.1:
+ dependencies:
+ d3-path: 3.1.0
+
+ d3-color@3.1.0: {}
+
+ d3-contour@4.0.2:
+ dependencies:
+ d3-array: 3.2.4
+
+ d3-delaunay@6.0.4:
+ dependencies:
+ delaunator: 5.0.1
+
+ d3-dispatch@3.0.1: {}
+
+ d3-drag@3.0.0:
+ dependencies:
+ d3-dispatch: 3.0.1
+ d3-selection: 3.0.0
+
+ d3-dsv@3.0.1:
+ dependencies:
+ commander: 7.2.0
+ iconv-lite: 0.6.3
+ rw: 1.3.3
+
+ d3-ease@3.0.1: {}
+
+ d3-fetch@3.0.1:
+ dependencies:
+ d3-dsv: 3.0.1
+
+ d3-force@3.0.0:
+ dependencies:
+ d3-dispatch: 3.0.1
+ d3-quadtree: 3.0.1
+ d3-timer: 3.0.1
+
+ d3-format@3.1.0: {}
+
+ d3-geo@3.1.1:
+ dependencies:
+ d3-array: 3.2.4
+
+ d3-hierarchy@3.1.2: {}
+
+ d3-interpolate@3.0.1:
+ dependencies:
+ d3-color: 3.1.0
+
+ d3-path@1.0.9: {}
+
+ d3-path@3.1.0: {}
+
+ d3-polygon@3.0.1: {}
+
+ d3-quadtree@3.0.1: {}
+
+ d3-random@3.0.1: {}
+
+ d3-sankey@0.12.3:
+ dependencies:
+ d3-array: 2.12.1
+ d3-shape: 1.3.7
+
+ d3-scale-chromatic@3.1.0:
+ dependencies:
+ d3-color: 3.1.0
+ d3-interpolate: 3.0.1
+
+ d3-scale@4.0.2:
+ dependencies:
+ d3-array: 3.2.4
+ d3-format: 3.1.0
+ d3-interpolate: 3.0.1
+ d3-time: 3.1.0
+ d3-time-format: 4.1.0
+
+ d3-selection@3.0.0: {}
+
+ d3-shape@1.3.7:
+ dependencies:
+ d3-path: 1.0.9
+
+ d3-shape@3.2.0:
+ dependencies:
+ d3-path: 3.1.0
- css-loader@5.2.7(webpack@5.99.7):
+ d3-time-format@4.1.0:
dependencies:
- icss-utils: 5.1.0(postcss@8.5.3)
- loader-utils: 2.0.4
- postcss: 8.5.3
- postcss-modules-extract-imports: 3.1.0(postcss@8.5.3)
- postcss-modules-local-by-default: 4.2.0(postcss@8.5.3)
- postcss-modules-scope: 3.2.1(postcss@8.5.3)
- postcss-modules-values: 4.0.0(postcss@8.5.3)
- postcss-value-parser: 4.2.0
- schema-utils: 3.3.0
- semver: 7.7.1
- webpack: 5.99.7
+ d3-time: 3.1.0
- css-tree@3.1.0:
+ d3-time@3.1.0:
dependencies:
- mdn-data: 2.12.2
- source-map-js: 1.2.1
+ d3-array: 3.2.4
- cssesc@3.0.0: {}
+ d3-timer@3.0.1: {}
- cssstyle@4.3.1:
+ d3-transition@3.0.1(d3-selection@3.0.0):
dependencies:
- '@asamuzakjp/css-color': 3.1.5
- rrweb-cssom: 0.8.0
+ d3-color: 3.1.0
+ d3-dispatch: 3.0.1
+ d3-ease: 3.0.1
+ d3-interpolate: 3.0.1
+ d3-selection: 3.0.0
+ d3-timer: 3.0.1
+
+ d3-zoom@3.0.0:
+ dependencies:
+ d3-dispatch: 3.0.1
+ d3-drag: 3.0.0
+ d3-interpolate: 3.0.1
+ d3-selection: 3.0.0
+ d3-transition: 3.0.1(d3-selection@3.0.0)
+
+ d3@7.9.0:
+ dependencies:
+ d3-array: 3.2.4
+ d3-axis: 3.0.0
+ d3-brush: 3.0.0
+ d3-chord: 3.0.1
+ d3-color: 3.1.0
+ d3-contour: 4.0.2
+ d3-delaunay: 6.0.4
+ d3-dispatch: 3.0.1
+ d3-drag: 3.0.0
+ d3-dsv: 3.0.1
+ d3-ease: 3.0.1
+ d3-fetch: 3.0.1
+ d3-force: 3.0.0
+ d3-format: 3.1.0
+ d3-geo: 3.1.1
+ d3-hierarchy: 3.1.2
+ d3-interpolate: 3.0.1
+ d3-path: 3.1.0
+ d3-polygon: 3.0.1
+ d3-quadtree: 3.0.1
+ d3-random: 3.0.1
+ d3-scale: 4.0.2
+ d3-scale-chromatic: 3.1.0
+ d3-selection: 3.0.0
+ d3-shape: 3.2.0
+ d3-time: 3.1.0
+ d3-time-format: 4.1.0
+ d3-timer: 3.0.1
+ d3-transition: 3.0.1(d3-selection@3.0.0)
+ d3-zoom: 3.0.0
dag-map@2.0.2: {}
+ dagre-d3-es@7.0.11:
+ dependencies:
+ d3: 7.9.0
+ lodash-es: 4.17.21
+
dashify@2.0.0: {}
+ data-uri-to-buffer@4.0.1: {}
+
+ data-uri-to-buffer@6.0.2: {}
+
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- date-fns@3.6.0: {}
+ dayjs@1.11.13: {}
+
+ de-indent@1.0.2: {}
debug@2.6.9:
dependencies:
@@ -16691,7 +18993,11 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.0(supports-color@8.1.1):
+ debug@4.4.1:
+ dependencies:
+ ms: 2.1.3
+
+ debug@4.4.1(supports-color@8.1.1):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -16699,9 +19005,11 @@ snapshots:
decamelize@4.0.0: {}
+ decamelize@6.0.0: {}
+
decimal.js@10.5.0: {}
- decode-named-character-reference@1.1.0:
+ decode-named-character-reference@1.2.0:
dependencies:
character-entities: 2.0.2
@@ -16715,9 +19023,9 @@ snapshots:
dependencies:
mimic-response: 3.1.0
- decorator-transforms@2.3.0(@babel/core@7.27.1):
+ decorator-transforms@2.3.0(@babel/core@7.27.7):
dependencies:
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.7)
babel-import-util: 3.0.1
transitivePeerDependencies:
- '@babel/core'
@@ -16728,6 +19036,8 @@ snapshots:
deep-is@0.1.4: {}
+ deepmerge-ts@7.1.5: {}
+
deepmerge@4.3.1: {}
defaults@1.0.4:
@@ -16757,6 +19067,16 @@ snapshots:
is-descriptor: 1.0.3
isobject: 3.0.1
+ degenerator@5.0.1:
+ dependencies:
+ ast-types: 0.13.4
+ escodegen: 2.1.0
+ esprima: 4.0.1
+
+ delaunator@5.0.1:
+ dependencies:
+ robust-predicates: 3.0.2
+
delayed-stream@1.0.0: {}
delegates@1.0.0: {}
@@ -16788,6 +19108,8 @@ snapshots:
diff@5.2.0: {}
+ diff@7.0.0: {}
+
diffie-hellman@5.0.3:
dependencies:
bn.js: 4.12.2
@@ -16804,6 +19126,8 @@ snapshots:
dependencies:
esutils: 2.0.3
+ dom-accessibility-api@0.5.16: {}
+
dom-element-descriptors@0.5.1: {}
dom-serializer@0.2.2:
@@ -16817,6 +19141,12 @@ snapshots:
domhandler: 4.3.1
entities: 2.2.0
+ dom-serializer@2.0.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.5.0
+
domain-browser@4.22.0: {}
domelementtype@1.3.1: {}
@@ -16831,7 +19161,11 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.2.5:
+ domhandler@5.0.3:
+ dependencies:
+ domelementtype: 2.3.0
+
+ dompurify@3.2.6:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -16846,6 +19180,12 @@ snapshots:
domelementtype: 2.3.0
domhandler: 4.3.1
+ domutils@3.2.2:
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
@@ -16867,6 +19207,25 @@ snapshots:
eastasianwidth@0.2.0: {}
+ edge-paths@3.0.5:
+ dependencies:
+ '@types/which': 2.0.2
+ which: 2.0.2
+
+ edgedriver@6.1.1:
+ dependencies:
+ '@wdio/logger': 9.16.2
+ '@zip.js/zip.js': 2.7.62
+ decamelize: 6.0.0
+ edge-paths: 3.0.5
+ fast-xml-parser: 4.5.3
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ node-fetch: 3.3.2
+ which: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+
editions@1.3.4: {}
editions@2.3.1:
@@ -16876,7 +19235,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.148: {}
+ electron-to-chromium@1.5.174: {}
elliptic@6.6.1:
dependencies:
@@ -16890,52 +19249,53 @@ snapshots:
ember-apply@2.15.0:
dependencies:
- '@babel/core': 7.27.1
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
chalk: 5.4.1
ember-template-recast: 6.1.5
execa: 8.0.1
find-up: 7.0.0
fs-extra: 11.3.0
globby: 14.1.0
- jscodeshift: 0.15.2(4da242a27615870776983f1ebf94ba5e)
+ jscodeshift: 0.15.2(6ff61888cb104ba9cae37e4cddb605c9)
json5: 2.2.3
latest-version: 7.0.0
ora: 7.0.1
pacote: 17.0.7
- postcss: 8.5.3
+ postcss: 8.5.6
posthtml: 0.16.6
posthtml-boolean-attributes: 0.3.1
- prettier: 3.5.3
- semver: 7.7.1
+ prettier: 3.6.2
+ semver: 7.7.2
sort-object-keys: 1.1.3
unified: 11.0.5
yargs: 17.7.2
- yarn-workspaces-list: 0.2.0(@babel/core@7.27.1)
+ yarn-workspaces-list: 0.2.0(@babel/core@7.27.7)
transitivePeerDependencies:
- bluebird
- supports-color
- ember-async-data@1.0.3(94d55f01f44bf4fdfc9f541bd2ea489a):
+ ember-async-data@2.0.1(a6fa8d0f1f3c894a01569e258197c230):
dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
transitivePeerDependencies:
+ - '@babel/core'
- '@glint/template'
- supports-color
- ember-auto-import@2.10.0(ab4d4f1a3a3e98c3a6f0c8fc00f4f729):
- dependencies:
- '@babel/core': 7.27.1
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- '@embroider/shared-internals': 2.9.0
- babel-loader: 8.4.1(@babel/core@7.27.1)(webpack@5.99.7)
+ ember-auto-import@2.10.0(@glint/template@1.5.2)(webpack@5.99.9):
+ dependencies:
+ '@babel/core': 7.27.7
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.7)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
+ '@embroider/shared-internals': 2.9.1
+ babel-loader: 8.4.1(@babel/core@7.27.7)(webpack@5.99.9)
babel-plugin-ember-modules-api-polyfill: 3.5.0
babel-plugin-ember-template-compilation: 2.4.1
babel-plugin-htmlbars-inline-precompile: 5.3.1
@@ -16945,22 +19305,22 @@ snapshots:
broccoli-merge-trees: 4.2.0
broccoli-plugin: 4.0.7
broccoli-source: 3.0.1
- css-loader: 5.2.7(webpack@5.99.7)
- debug: 4.4.0(supports-color@8.1.1)
+ css-loader: 5.2.7(webpack@5.99.9)
+ debug: 4.4.1
fs-extra: 10.1.0
fs-tree-diff: 2.0.1
handlebars: 4.7.8
is-subdir: 1.2.0
js-string-escape: 1.0.1
lodash: 4.17.21
- mini-css-extract-plugin: 2.9.2(webpack@5.99.7)
+ mini-css-extract-plugin: 2.9.2(webpack@5.99.9)
minimatch: 3.1.2
parse5: 6.0.1
pkg-entry-points: 1.1.1
resolve: 1.22.10
resolve-package-path: 4.0.3
- semver: 7.7.1
- style-loader: 2.0.0(webpack@5.99.7)
+ semver: 7.7.2
+ style-loader: 2.0.0(webpack@5.99.9)
typescript-memoize: 1.1.1
walk-sync: 3.0.0
transitivePeerDependencies:
@@ -16968,48 +19328,34 @@ snapshots:
- supports-color
- webpack
- ember-cache-primitive-polyfill@1.0.1(@babel/core@7.27.1):
+ ember-cache-primitive-polyfill@1.0.1(@babel/core@7.27.7):
dependencies:
ember-cli-babel: 7.26.11
ember-cli-version-checker: 5.1.2
- ember-compatibility-helpers: 1.2.7(@babel/core@7.27.1)
+ ember-compatibility-helpers: 1.2.7(@babel/core@7.27.7)
silent-error: 1.1.1
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-cached-decorator-polyfill@1.0.2(35438b6e272b520ca540b25aef2325ed):
- dependencies:
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- '@glimmer/tracking': 1.1.2
- babel-import-util: 1.4.1
- ember-cache-primitive-polyfill: 1.0.1(@babel/core@7.27.1)
- ember-cli-babel: 7.26.11
- ember-cli-babel-plugin-helpers: 1.1.1
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
- transitivePeerDependencies:
- - '@babel/core'
- - '@glint/template'
- - supports-color
-
ember-cli-babel-plugin-helpers@1.1.1: {}
ember-cli-babel@7.26.11:
dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.7)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
'@babel/polyfill': 7.12.1
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
'@babel/runtime': 7.12.18
amd-name-resolver: 1.3.1
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.27.1)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.27.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
@@ -17029,26 +19375,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-babel@8.2.0(@babel/core@7.27.1):
- dependencies:
- '@babel/core': 7.27.1
- '@babel/helper-compilation-targets': 7.27.1
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.1)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.27.1)
- '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
+ ember-cli-babel@8.2.0(@babel/core@7.27.7):
+ dependencies:
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.27.7)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.7)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
'@babel/runtime': 7.12.18
amd-name-resolver: 1.3.1
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.27.1)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.27.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.2
- broccoli-babel-transpiler: 8.0.2(@babel/core@7.27.1)
+ broccoli-babel-transpiler: 8.0.2(@babel/core@7.27.7)
broccoli-debug: 0.6.5
broccoli-funnel: 3.0.8
broccoli-source: 3.0.1
@@ -17058,15 +19404,15 @@ snapshots:
ember-cli-version-checker: 5.1.2
ensure-posix-path: 1.1.1
resolve-package-path: 4.0.3
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
ember-cli-browserstack@3.0.0:
dependencies:
browserstack: 1.6.1
- browserstack-local: 1.5.6
- debug: 4.4.0(supports-color@8.1.1)
+ browserstack-local: 1.5.7
+ debug: 4.4.1
rsvp: 4.8.5
yargs: 17.7.2
transitivePeerDependencies:
@@ -17088,7 +19434,7 @@ snapshots:
hash-for-dep: 1.5.1
heimdalljs-logger: 0.1.10
json-stable-stringify: '@nolyfill/json-stable-stringify@1.0.44'
- semver: 7.7.1
+ semver: 7.7.2
silent-error: 1.1.1
strip-bom: 4.0.0
walk-sync: 2.2.0
@@ -17108,7 +19454,7 @@ snapshots:
hash-for-dep: 1.5.1
heimdalljs-logger: 0.1.10
js-string-escape: 1.0.1
- semver: 7.7.1
+ semver: 7.7.2
silent-error: 1.1.1
walk-sync: 2.2.0
transitivePeerDependencies:
@@ -17127,7 +19473,7 @@ snapshots:
ember-cli-preprocess-registry@5.0.1:
dependencies:
broccoli-funnel: 3.0.8
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
@@ -17151,17 +19497,16 @@ snapshots:
ember-cli-version-checker@5.1.2:
dependencies:
resolve-package-path: 3.1.0
- semver: 7.7.1
+ semver: 7.7.2
silent-error: 1.1.1
transitivePeerDependencies:
- supports-color
- ember-cli@6.2.2(handlebars@4.7.8)(underscore@1.13.7):
+ ember-cli@6.5.0(handlebars@4.7.8)(underscore@1.13.7):
dependencies:
- '@pnpm/find-workspace-dir': 7.0.3
+ '@pnpm/find-workspace-dir': 1000.1.0
babel-remove-types: 1.0.1
broccoli: 3.5.2
- broccoli-builder: 0.18.14
broccoli-concat: 4.2.5
broccoli-config-loader: 1.0.1
broccoli-config-replace: 1.1.2
@@ -17181,10 +19526,10 @@ snapshots:
compression: 1.8.0
configstore: 5.0.1
console-ui: 3.1.2
- content-tag: 2.0.3
+ content-tag: 3.1.3
core-object: 3.1.5
dag-map: 2.0.2
- diff: 5.2.0
+ diff: 7.0.0
ember-cli-is-package-missing: 1.0.0
ember-cli-normalize-entity-name: 1.0.0
ember-cli-preprocess-registry: 5.0.1
@@ -17213,8 +19558,8 @@ snapshots:
is-language-code: 3.1.0
isbinaryfile: 5.0.4
lodash: 4.17.21
- markdown-it: 13.0.2
- markdown-it-terminal: 0.4.0(markdown-it@13.0.2)
+ markdown-it: 14.1.0
+ markdown-it-terminal: 0.4.0(markdown-it@14.1.0)
minimatch: 7.4.6
morgan: 1.10.0
nopt: 3.0.6
@@ -17229,17 +19574,17 @@ snapshots:
resolve-package-path: 4.0.3
safe-stable-stringify: 2.5.0
sane: 5.0.1
- semver: 7.7.1
+ semver: 7.7.2
silent-error: 1.1.1
sort-package-json: 2.15.1
symlink-or-copy: 1.3.1
temp: 0.9.4
- testem: 3.15.2(handlebars@4.7.8)(underscore@1.13.7)
+ testem: 3.16.0(handlebars@4.7.8)(underscore@1.13.7)
tiny-lr: 2.0.0
tree-sync: 2.1.0
walk-sync: 3.0.0
watch-detector: 1.0.2
- workerpool: 9.2.0
+ workerpool: 9.3.2
yam: 1.0.0
transitivePeerDependencies:
- arc-templates
@@ -17298,9 +19643,9 @@ snapshots:
- walrus
- whiskers
- ember-compatibility-helpers@1.2.7(@babel/core@7.27.1):
+ ember-compatibility-helpers@1.2.7(@babel/core@7.27.7):
dependencies:
- babel-plugin-debug-macros: 0.2.0(@babel/core@7.27.1)
+ babel-plugin-debug-macros: 0.2.0(@babel/core@7.27.7)
ember-cli-version-checker: 5.1.2
find-up: 5.0.0
fs-extra: 9.1.0
@@ -17309,38 +19654,36 @@ snapshots:
- '@babel/core'
- supports-color
- ember-container-query@5.1.1(dd7c8c71e23b008546e35fcf85ff31fd):
+ ember-container-query@6.0.1(@babel/core@7.27.7):
dependencies:
'@embroider/addon-shim': 1.10.0
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-element-helper: 0.8.7(c74a9e52ce1ef5cbfa31d9959d9dadca)
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ ember-element-helper: 0.8.8
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
ember-resize-observer-service: 1.1.0
transitivePeerDependencies:
- '@babel/core'
- - ember-source
- supports-color
- ember-deep-tracked@2.0.1(@glint/template@1.4.1-unstable.0e0d936):
+ ember-deep-tracked@2.0.1(@glint/template@1.5.2):
dependencies:
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
ember-tracked-storage-polyfill: 1.0.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- ember-element-helper@0.8.7(c74a9e52ce1ef5cbfa31d9959d9dadca):
+ ember-element-helper@0.8.8:
dependencies:
'@embroider/addon-shim': 1.10.0
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- supports-color
- ember-eslint-parser@0.5.9(a535be2b3684a674ff41516a3018459b):
+ ember-eslint-parser@0.5.9(b8bee54b5cf65bea1945d6142a564ea0):
dependencies:
- '@babel/core': 7.27.1
- '@babel/eslint-parser': 7.27.1(4a43aebe8aa03544380dbd584f92ba52)
+ '@babel/core': 7.27.7
+ '@babel/eslint-parser': 7.27.5(deda1a73e14af5de11cfd237cc45e668)
'@glimmer/syntax': 0.92.3
content-tag: 2.0.3
eslint-scope: 7.2.2
@@ -17348,20 +19691,20 @@ snapshots:
mathml-tag-names: 2.1.3
svg-tags: 1.0.0
optionalDependencies:
- '@typescript-eslint/parser': 8.31.1(54d0da154413141e84f5f122231c9cc2)
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
transitivePeerDependencies:
- eslint
- ember-eslint@0.2.1(c1bcb6d22fccf46caa4c33fa572a5552):
+ ember-eslint@0.2.1(97d2d781f7d3cae1635bb456dbe4664b):
dependencies:
- '@babel/eslint-parser': 7.27.1(4a43aebe8aa03544380dbd584f92ba52)
- '@eslint/js': 9.25.1
- eslint-config-prettier: 10.1.2(eslint@9.25.1(jiti@1.21.7))
- eslint-plugin-ember: 12.5.0(a535be2b3684a674ff41516a3018459b)
- eslint-plugin-n: 17.17.0(eslint@9.25.1(jiti@1.21.7))
- eslint-plugin-qunit: 8.1.2(eslint@9.25.1(jiti@1.21.7))
+ '@babel/eslint-parser': 7.27.5(deda1a73e14af5de11cfd237cc45e668)
+ '@eslint/js': 9.29.0
+ eslint-config-prettier: 10.1.5(eslint@9.29.0(jiti@2.4.2))
+ eslint-plugin-ember: 12.5.0(b8bee54b5cf65bea1945d6142a564ea0)
+ eslint-plugin-n: 17.20.0(f34568f6b8e005732038c441d846657e)
+ eslint-plugin-qunit: 8.1.2(eslint@9.29.0(jiti@2.4.2))
globals: 15.15.0
- typescript-eslint: 8.31.1(54d0da154413141e84f5f122231c9cc2)
+ typescript-eslint: 8.35.0(f34568f6b8e005732038c441d846657e)
transitivePeerDependencies:
- '@babel/core'
- '@typescript-eslint/parser'
@@ -17369,132 +19712,160 @@ snapshots:
- supports-color
- typescript
- ember-focus-trap@1.1.1(c74a9e52ce1ef5cbfa31d9959d9dadca):
+ ember-focus-trap@1.1.1(c97baf9c810f393a596045d691514450):
dependencies:
'@embroider/addon-shim': 1.10.0
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ ember-source: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
focus-trap: 6.9.4
transitivePeerDependencies:
- supports-color
- ember-load-initializers@3.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca):
+ ember-load-initializers@3.0.1(c97baf9c810f393a596045d691514450):
dependencies:
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ ember-source: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
- ember-modifier@4.2.0(dd7c8c71e23b008546e35fcf85ff31fd):
+ ember-modifier@4.2.2(@babel/core@7.27.7):
dependencies:
'@embroider/addon-shim': 1.10.0
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
ember-cli-normalize-entity-name: 1.0.0
ember-cli-string-utils: 1.1.0
- optionalDependencies:
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- '@babel/core'
- supports-color
- ember-modify-based-class-resource@1.1.1(d989acf9e45b1ebee269476011f33e76):
+ ember-modify-based-class-resource@1.1.2(7c6664bded591a03f87f10d5855b691e):
dependencies:
- '@babel/runtime': 7.27.1
+ '@babel/runtime': 7.27.6
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- '@glimmer/tracking': 1.1.2
- ember-resources: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
+ ember-resources: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
optionalDependencies:
'@glimmer/component': 2.0.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
- ember-on-resize-modifier@2.0.2(e216a0a025cc7b9407e6404146486007):
+ ember-on-resize-modifier@2.0.2(5cad8b098662645e6c943eaba1acf79c):
dependencies:
- ember-auto-import: 2.10.0(ab4d4f1a3a3e98c3a6f0c8fc00f4f729)
+ ember-auto-import: 2.10.0(@glint/template@1.5.2)(webpack@5.99.9)
ember-cli-babel: 7.26.11
ember-cli-htmlbars: 5.7.2
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
ember-resize-observer-service: 1.1.0
transitivePeerDependencies:
- '@babel/core'
- '@glint/template'
- - ember-source
- supports-color
- webpack
- ember-page-title@9.0.1(c74a9e52ce1ef5cbfa31d9959d9dadca):
+ ember-page-title@9.0.2:
dependencies:
'@embroider/addon-shim': 1.10.0
'@simple-dom/document': 1.4.0
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- supports-color
- ember-primitives@0.27.2(4eb5a63083ebd3f3afbb5c714291c843):
+ ember-primitives@0.32.0(6c98c0a79848ce8beb1ad80690d67516):
dependencies:
- '@babel/runtime': 7.27.1
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@babel/runtime': 7.27.6
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.16.9(@glint/template@1.4.1-unstable.0e0d936)
- '@floating-ui/dom': 1.6.13
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
+ '@floating-ui/dom': 1.7.2
'@glimmer/component': 2.0.0
- '@glimmer/tracking': 1.1.2
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-element-helper: 0.8.7(c74a9e52ce1ef5cbfa31d9959d9dadca)
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
- ember-resources: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ ember-element-helper: 0.8.8
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
+ ember-resources: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
form-data-utils: 0.6.0
- reactiveweb: 1.4.1(737c6461a8730545861e6febe5b0676c)
+ reactiveweb: 1.6.2(752d8e73f0791d5fdf782be4b4d821fb)
should-handle-link: 1.3.0
- tabster: 8.5.4
- tracked-built-ins: 3.4.0(@babel/core@7.27.1)
- tracked-toolbox: 2.0.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ tabster: 8.5.6
+ tracked-built-ins: 4.0.0(@babel/core@7.27.7)
+ tracked-toolbox: 2.0.0(d5c4cd3aa2b6d7c8399ab0614013717b)
optionalDependencies:
- '@ember/test-helpers': 5.2.1(35438b6e272b520ca540b25aef2325ed)
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@ember/test-helpers': 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
+ '@glint/template': 1.5.2
transitivePeerDependencies:
- '@babel/core'
+ - ember-source
- supports-color
- ember-primitives@0.30.0(4eb5a63083ebd3f3afbb5c714291c843):
+ ember-primitives@0.34.0(6c98c0a79848ce8beb1ad80690d67516):
dependencies:
- '@babel/runtime': 7.27.1
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@babel/runtime': 7.27.6
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- '@floating-ui/dom': 1.6.13
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
+ '@floating-ui/dom': 1.7.2
'@glimmer/component': 2.0.0
- '@glimmer/tracking': 1.1.2
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-element-helper: 0.8.7(c74a9e52ce1ef5cbfa31d9959d9dadca)
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
- ember-resources: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ ember-element-helper: 0.8.8
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
+ ember-resources: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
form-data-utils: 0.6.0
- reactiveweb: 1.4.1(737c6461a8730545861e6febe5b0676c)
+ reactiveweb: 1.6.2(752d8e73f0791d5fdf782be4b4d821fb)
should-handle-link: 1.3.0
- tabster: 8.5.4
- tracked-built-ins: 4.0.0(@babel/core@7.27.1)
- tracked-toolbox: 2.0.0(dd7c8c71e23b008546e35fcf85ff31fd)
+ tabster: 8.5.6
+ tracked-built-ins: 4.0.0(@babel/core@7.27.7)
+ tracked-toolbox: 2.0.0(d5c4cd3aa2b6d7c8399ab0614013717b)
optionalDependencies:
- '@ember/test-helpers': 5.2.1(35438b6e272b520ca540b25aef2325ed)
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@ember/test-helpers': 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
+ '@glint/template': 1.5.2
transitivePeerDependencies:
- '@babel/core'
+ - ember-source
- supports-color
- ember-qunit@9.0.2(fc7db7c59c65629a3191e53d4fcb3f42):
+ ember-qunit@9.0.3(350ab0b2e11c21a3c2b2aceab21168ff):
dependencies:
- '@ember/test-helpers': 5.2.1(35438b6e272b520ca540b25aef2325ed)
+ '@ember/test-helpers': 5.2.2(a6fa8d0f1f3c894a01569e258197c230)
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
qunit: 2.24.1
qunit-theme-ember: 1.0.0
transitivePeerDependencies:
- '@glint/template'
- supports-color
+ ember-repl@6.0.0(195a05b01182dfe3c5bd09fac10054f9):
+ dependencies:
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/standalone': 7.27.7
+ '@embroider/addon-shim': 1.8.9
+ '@embroider/macros': 1.16.9(@glint/template@1.5.2)
+ babel-import-util: 3.0.1
+ babel-plugin-ember-template-compilation: 2.4.1
+ broccoli-file-creator: 2.1.1
+ change-case: 5.4.4
+ common-tags: 1.8.2
+ content-tag: 3.1.3
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ ember-resources: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
+ line-column: 1.0.2
+ magic-string: 0.30.17
+ mdast: 3.0.0
+ parse-static-imports: 1.1.0
+ rehype-raw: 6.1.1
+ rehype-stringify: 9.0.4
+ remark-gfm: 3.0.1
+ remark-parse: 10.0.2
+ remark-rehype: 10.1.0
+ unified: 10.1.2
+ unist-util-visit: 5.0.0
+ uuid: 10.0.0
+ vfile: 6.0.3
+ webpack: 5.99.9
+ optionalDependencies:
+ '@glimmer/compiler': 0.94.10
+ '@glimmer/syntax': 0.94.9
+ '@glint/template': 1.5.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@glimmer/component'
+ - supports-color
+
ember-resize-observer-service@1.1.0:
dependencies:
ember-cli-babel: 7.26.11
@@ -17502,21 +19873,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-resolver@13.1.0(c74a9e52ce1ef5cbfa31d9959d9dadca):
+ ember-resolver@13.1.1:
dependencies:
ember-cli-babel: 7.26.11
- optionalDependencies:
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- supports-color
- ember-resources@7.0.3(366a6eab8f9b46b64877d79074d1f6e3):
+ ember-resources@7.0.6(807cfcd3020ea8ad8edb1795de9ad08f):
dependencies:
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- '@glimmer/tracking': 1.1.2
- '@glint/template': 1.4.1-unstable.0e0d936
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
+ '@glint/template': 1.5.2
optionalDependencies:
'@glimmer/component': 2.0.0
transitivePeerDependencies:
@@ -17532,8 +19899,8 @@ snapshots:
ember-router-generator@2.0.0:
dependencies:
- '@babel/parser': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/parser': 7.27.7
+ '@babel/traverse': 7.27.7
recast: 0.18.10
transitivePeerDependencies:
- supports-color
@@ -17544,9 +19911,9 @@ snapshots:
transitivePeerDependencies:
- encoding
- ember-source@6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5):
+ ember-source@6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5):
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
'@ember/edition-utils': 1.2.0
'@embroider/addon-shim': 1.10.0
'@glimmer/compiler': 0.94.10
@@ -17565,14 +19932,14 @@ snapshots:
'@glimmer/util': 0.94.8
'@glimmer/validator': 0.94.8
'@glimmer/vm': 0.94.8
- '@glimmer/vm-babel-plugins': 0.93.4(@babel/core@7.27.1)
+ '@glimmer/vm-babel-plugins': 0.93.4(@babel/core@7.27.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-cli-babel: 8.2.0(@babel/core@7.27.1)
+ ember-cli-babel: 8.2.0(@babel/core@7.27.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
@@ -17584,21 +19951,21 @@ snapshots:
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.7.1
+ semver: 7.7.2
silent-error: 1.1.1
simple-html-tokenizer: 0.5.11
transitivePeerDependencies:
- rsvp
- supports-color
- ember-statechart-component@7.1.0(3ffd7886aff435d24c21e15ab46546a1):
+ ember-statechart-component@7.1.0(d2b7e8f753a849123bebc248970a2e43):
dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
'@glimmer/component': 2.0.0
- '@glint/template': 1.4.1-unstable.0e0d936
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- xstate: 5.19.2
+ '@glint/template': 1.5.2
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ xstate: 5.19.4
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -17611,42 +19978,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-template-lint-plugin-prettier@5.0.0(40262242fa399d75348cc3c565859963):
+ ember-template-lint-plugin-prettier@5.0.0(2af43b82e342603bc0195887319c0738):
dependencies:
- '@prettier/sync': 0.2.1(prettier@3.5.3)
- ember-template-lint: 7.2.0(@babel/core@7.27.1)
- prettier: 3.5.3
+ '@prettier/sync': 0.2.1(prettier@3.6.2)
+ ember-template-lint: 7.9.1
+ prettier: 3.6.2
prettier-linter-helpers: 1.0.0
- ember-template-lint@7.2.0(@babel/core@7.27.1):
+ ember-template-lint@7.9.1:
dependencies:
- '@babel/generator': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
- '@babel/traverse': 7.27.1
'@lint-todo/utils': 13.1.1
- aria-query: 5.3.2
- chalk: 5.4.1
- ci-info: 4.2.0
content-tag: 3.1.3
- content-tag-utils: 0.3.1
- date-fns: 3.6.0
- ember-template-recast: 6.1.5
- eslint-formatter-kakoune: 1.0.0
- find-up: 7.0.0
- fuse.js: 7.1.0
- get-stdin: 9.0.0
- globby: 14.1.0
- is-glob: 4.0.3
- language-tags: 1.0.9
- micromatch: 4.0.8
- resolve: 1.22.10
- v8-compile-cache: 2.4.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
ember-template-recast@6.1.5:
dependencies:
@@ -17677,7 +20019,7 @@ snapshots:
lodash: 4.17.21
package-json: 6.5.0
remote-git-tags: 3.0.0
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- encoding
@@ -17685,14 +20027,14 @@ snapshots:
dependencies:
chalk: 4.1.2
cli-table3: 0.6.5
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
ember-try-config: 4.0.0(encoding@0.1.13)
- es-toolkit: 1.36.0
+ es-toolkit: 1.39.5
execa: 4.1.0
fs-extra: 6.0.1
resolve: 1.22.10
rimraf: 3.0.2
- semver: 7.7.1
+ semver: 7.7.2
temp-dir: 2.0.0
walk-sync: 2.2.0
transitivePeerDependencies:
@@ -17713,12 +20055,17 @@ snapshots:
encodeurl@2.0.0: {}
+ encoding-sniffer@0.2.1:
+ dependencies:
+ iconv-lite: 0.6.3
+ whatwg-encoding: 3.1.1
+
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
optional: true
- end-of-stream@1.4.4:
+ end-of-stream@1.4.5:
dependencies:
once: 1.4.0
@@ -17726,8 +20073,8 @@ snapshots:
engine.io@6.6.4:
dependencies:
- '@types/cors': 2.8.17
- '@types/node': 22.15.3
+ '@types/cors': 2.8.19
+ '@types/node': 24.0.4
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.7.2
@@ -17740,10 +20087,10 @@ snapshots:
- supports-color
- utf-8-validate
- enhanced-resolve@5.18.1:
+ enhanced-resolve@5.18.2:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.1
+ tapable: 2.2.2
ensure-posix-path@1.1.1: {}
@@ -17755,7 +20102,7 @@ snapshots:
entities@4.5.0: {}
- entities@6.0.0: {}
+ entities@6.0.1: {}
env-paths@2.2.1: {}
@@ -17783,6 +20130,8 @@ snapshots:
es-module-lexer@1.7.0: {}
+ es-module-shims@2.6.1: {}
+
es-object-atoms@1.1.1:
dependencies:
es-errors: 1.3.0
@@ -17794,7 +20143,7 @@ snapshots:
has-tostringtag: 1.0.2
hasown: '@nolyfill/hasown@1.0.44'
- es-toolkit@1.36.0: {}
+ es-toolkit@1.39.5: {}
es6-promise@4.2.8: {}
@@ -17802,69 +20151,43 @@ snapshots:
dependencies:
es6-promise: 4.2.8
- esbuild-loader@4.3.0(webpack@5.99.7):
+ esbuild-loader@4.3.0(webpack@5.99.9):
dependencies:
- esbuild: 0.25.3
- get-tsconfig: 4.10.0
+ esbuild: 0.25.5
+ get-tsconfig: 4.10.1
loader-utils: 2.0.4
- webpack: 5.99.7
+ webpack: 5.99.9
webpack-sources: 1.4.3
esbuild-plugin-alias@0.2.1: {}
- 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
-
- esbuild@0.25.3:
+ esbuild@0.25.5:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.3
- '@esbuild/android-arm': 0.25.3
- '@esbuild/android-arm64': 0.25.3
- '@esbuild/android-x64': 0.25.3
- '@esbuild/darwin-arm64': 0.25.3
- '@esbuild/darwin-x64': 0.25.3
- '@esbuild/freebsd-arm64': 0.25.3
- '@esbuild/freebsd-x64': 0.25.3
- '@esbuild/linux-arm': 0.25.3
- '@esbuild/linux-arm64': 0.25.3
- '@esbuild/linux-ia32': 0.25.3
- '@esbuild/linux-loong64': 0.25.3
- '@esbuild/linux-mips64el': 0.25.3
- '@esbuild/linux-ppc64': 0.25.3
- '@esbuild/linux-riscv64': 0.25.3
- '@esbuild/linux-s390x': 0.25.3
- '@esbuild/linux-x64': 0.25.3
- '@esbuild/netbsd-arm64': 0.25.3
- '@esbuild/netbsd-x64': 0.25.3
- '@esbuild/openbsd-arm64': 0.25.3
- '@esbuild/openbsd-x64': 0.25.3
- '@esbuild/sunos-x64': 0.25.3
- '@esbuild/win32-arm64': 0.25.3
- '@esbuild/win32-ia32': 0.25.3
- '@esbuild/win32-x64': 0.25.3
+ '@esbuild/aix-ppc64': 0.25.5
+ '@esbuild/android-arm': 0.25.5
+ '@esbuild/android-arm64': 0.25.5
+ '@esbuild/android-x64': 0.25.5
+ '@esbuild/darwin-arm64': 0.25.5
+ '@esbuild/darwin-x64': 0.25.5
+ '@esbuild/freebsd-arm64': 0.25.5
+ '@esbuild/freebsd-x64': 0.25.5
+ '@esbuild/linux-arm': 0.25.5
+ '@esbuild/linux-arm64': 0.25.5
+ '@esbuild/linux-ia32': 0.25.5
+ '@esbuild/linux-loong64': 0.25.5
+ '@esbuild/linux-mips64el': 0.25.5
+ '@esbuild/linux-ppc64': 0.25.5
+ '@esbuild/linux-riscv64': 0.25.5
+ '@esbuild/linux-s390x': 0.25.5
+ '@esbuild/linux-x64': 0.25.5
+ '@esbuild/netbsd-arm64': 0.25.5
+ '@esbuild/netbsd-x64': 0.25.5
+ '@esbuild/openbsd-arm64': 0.25.5
+ '@esbuild/openbsd-x64': 0.25.5
+ '@esbuild/sunos-x64': 0.25.5
+ '@esbuild/win32-arm64': 0.25.5
+ '@esbuild/win32-ia32': 0.25.5
+ '@esbuild/win32-x64': 0.25.5
escalade@3.2.0: {}
@@ -17876,16 +20199,22 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.25.1(jiti@1.21.7)):
+ escodegen@2.1.0:
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
- semver: 7.7.1
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ optionalDependencies:
+ source-map: 0.6.1
- eslint-config-prettier@10.1.2(eslint@9.25.1(jiti@1.21.7)):
+ eslint-compat-utils@0.5.1(eslint@9.29.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
+ semver: 7.7.2
- eslint-formatter-kakoune@1.0.0: {}
+ eslint-config-prettier@10.1.5(eslint@9.29.0(jiti@2.4.2)):
+ dependencies:
+ eslint: 9.29.0(jiti@2.4.2)
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -17895,71 +20224,71 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.10.1(ef28e62e366c2199181025423683258b):
+ eslint-import-resolver-typescript@3.10.1(250ac5e8f4846a40323c11978d0cf3ba):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.4.0(supports-color@8.1.1)
- eslint: 9.25.1(jiti@1.21.7)
- get-tsconfig: 4.10.0
+ debug: 4.4.1
+ eslint: 9.29.0(jiti@2.4.2)
+ get-tsconfig: 4.10.1
is-bun-module: 2.0.0
stable-hash: 0.0.5
- tinyglobby: 0.2.13
- unrs-resolver: 1.7.2
+ tinyglobby: 0.2.14
+ unrs-resolver: 1.9.2
optionalDependencies:
- eslint-plugin-import: 2.31.0(e88e4ed15243864f8818c186c313aaf2)
+ eslint-plugin-import: 2.32.0(5f93bd763816fedf2e1510cc4d330771)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(fc6dd6a4b8161574b4fa726f7fb74ca6):
+ eslint-module-utils@2.12.1(dd5928daacb6a63622f81a8feb69bded):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- eslint: 9.25.1(jiti@1.21.7)
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
+ eslint: 9.29.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.10.1(ef28e62e366c2199181025423683258b)
+ eslint-import-resolver-typescript: 3.10.1(250ac5e8f4846a40323c11978d0cf3ba)
transitivePeerDependencies:
- supports-color
- eslint-plugin-decorator-position@6.0.0(50deeae86dce8f13aa370e771bd788cf):
+ eslint-plugin-decorator-position@6.0.0(cc9e849b7867bf45101c63c84069ae55):
dependencies:
- '@babel/core': 7.27.1
- '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.7)
'@ember-data/rfc395-data': 0.0.4
ember-rfc176-data: 0.3.18
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
snake-case: 3.0.4
optionalDependencies:
- '@babel/eslint-parser': 7.27.1(4a43aebe8aa03544380dbd584f92ba52)
+ '@babel/eslint-parser': 7.27.5(deda1a73e14af5de11cfd237cc45e668)
transitivePeerDependencies:
- supports-color
- eslint-plugin-ember@12.5.0(a535be2b3684a674ff41516a3018459b):
+ eslint-plugin-ember@12.5.0(b8bee54b5cf65bea1945d6142a564ea0):
dependencies:
'@ember-data/rfc395-data': 0.0.4
css-tree: 3.1.0
- ember-eslint-parser: 0.5.9(a535be2b3684a674ff41516a3018459b)
+ ember-eslint-parser: 0.5.9(b8bee54b5cf65bea1945d6142a564ea0)
ember-rfc176-data: 0.3.18
- eslint: 9.25.1(jiti@1.21.7)
- eslint-utils: 3.0.0(eslint@9.25.1(jiti@1.21.7))
+ eslint: 9.29.0(jiti@2.4.2)
+ eslint-utils: 3.0.0(eslint@9.29.0(jiti@2.4.2))
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.31.1(54d0da154413141e84f5f122231c9cc2)
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
transitivePeerDependencies:
- '@babel/core'
- eslint-plugin-es-x@7.8.0(eslint@9.25.1(jiti@1.21.7)):
+ eslint-plugin-es-x@7.8.0(eslint@9.29.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.29.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.25.1(jiti@1.21.7)
- eslint-compat-utils: 0.5.1(eslint@9.25.1(jiti@1.21.7))
+ eslint: 9.29.0(jiti@2.4.2)
+ eslint-compat-utils: 0.5.1(eslint@9.29.0(jiti@2.4.2))
- eslint-plugin-import@2.31.0(e88e4ed15243864f8818c186c313aaf2):
+ eslint-plugin-import@2.32.0(5f93bd763816fedf2e1510cc4d330771):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: '@nolyfill/array-includes@1.0.44'
@@ -17968,9 +20297,9 @@ snapshots:
array.prototype.flatmap: '@nolyfill/array.prototype.flatmap@1.0.44'
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(fc6dd6a4b8161574b4fa726f7fb74ca6)
+ eslint-module-utils: 2.12.1(dd5928daacb6a63622f81a8feb69bded)
hasown: '@nolyfill/hasown@1.0.44'
is-core-module: '@nolyfill/is-core-module@1.0.39'
is-glob: 4.0.3
@@ -17982,7 +20311,7 @@ snapshots:
string.prototype.trimend: '@nolyfill/string.prototype.trimend@1.0.44'
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.31.1(54d0da154413141e84f5f122231c9cc2)
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -17993,28 +20322,33 @@ snapshots:
lodash: 4.17.21
vscode-json-languageservice: 4.2.1
- eslint-plugin-n@17.17.0(eslint@9.25.1(jiti@1.21.7)):
+ eslint-plugin-n@17.20.0(f34568f6b8e005732038c441d846657e):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
- enhanced-resolve: 5.18.1
- eslint: 9.25.1(jiti@1.21.7)
- eslint-plugin-es-x: 7.8.0(eslint@9.25.1(jiti@1.21.7))
- get-tsconfig: 4.10.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.29.0(jiti@2.4.2))
+ '@typescript-eslint/utils': 8.35.0(f34568f6b8e005732038c441d846657e)
+ enhanced-resolve: 5.18.2
+ eslint: 9.29.0(jiti@2.4.2)
+ eslint-plugin-es-x: 7.8.0(eslint@9.29.0(jiti@2.4.2))
+ get-tsconfig: 4.10.1
globals: 15.15.0
ignore: 5.3.2
minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.2
+ ts-declaration-location: 1.0.7(typescript@5.8.3)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
- eslint-plugin-qunit@8.1.2(eslint@9.25.1(jiti@1.21.7)):
+ eslint-plugin-qunit@8.1.2(eslint@9.29.0(jiti@2.4.2)):
dependencies:
- eslint-utils: 3.0.0(eslint@9.25.1(jiti@1.21.7))
+ eslint-utils: 3.0.0(eslint@9.29.0(jiti@2.4.2))
requireindex: 1.2.0
transitivePeerDependencies:
- eslint
- eslint-plugin-simple-import-sort@12.1.1(eslint@9.25.1(jiti@1.21.7)):
+ eslint-plugin-simple-import-sort@12.1.1(eslint@9.29.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
eslint-scope@5.1.1:
dependencies:
@@ -18026,45 +20360,45 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-scope@8.3.0:
+ eslint-scope@8.4.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-utils@3.0.0(eslint@9.25.1(jiti@1.21.7)):
+ eslint-utils@3.0.0(eslint@9.29.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.29.0(jiti@2.4.2)
eslint-visitor-keys: 2.1.0
eslint-visitor-keys@2.1.0: {}
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.2.0: {}
+ eslint-visitor-keys@4.2.1: {}
- eslint@9.25.1(jiti@1.21.7):
+ eslint@9.29.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.29.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.20.0
- '@eslint/config-helpers': 0.2.2
- '@eslint/core': 0.13.0
+ '@eslint/config-array': 0.20.1
+ '@eslint/config-helpers': 0.2.3
+ '@eslint/core': 0.14.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.25.1
- '@eslint/plugin-kit': 0.2.8
+ '@eslint/js': 9.29.0
+ '@eslint/plugin-kit': 0.3.3
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.7
+ '@humanwhocodes/retry': 0.4.3
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
escape-string-regexp: 4.0.0
- eslint-scope: 8.3.0
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -18080,26 +20414,28 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 1.21.7
+ jiti: 2.4.2
transitivePeerDependencies:
- supports-color
+ esm-env@1.2.2: {}
+
esm@3.2.25: {}
esmoduleserve@0.2.1:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
acorn-walk: 8.3.4
resolve: 1.22.10
serve-static: 1.16.2
transitivePeerDependencies:
- supports-color
- espree@10.3.0:
+ espree@10.4.0:
dependencies:
- acorn: 8.14.1
- acorn-jsx: 5.3.2(acorn@8.14.1)
- eslint-visitor-keys: 4.2.0
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
+ eslint-visitor-keys: 4.2.1
esprima@3.0.0: {}
@@ -18109,6 +20445,10 @@ snapshots:
dependencies:
estraverse: 5.3.0
+ esrap@1.4.9:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -18117,11 +20457,13 @@ snapshots:
estraverse@5.3.0: {}
+ estree-walker@0.6.1: {}
+
estree-walker@2.0.2: {}
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
esutils@2.0.3: {}
@@ -18137,6 +20479,8 @@ snapshots:
stream-combiner: 0.0.4
through: 2.3.8
+ event-target-shim@5.0.1: {}
+
eventemitter3@4.0.7: {}
events-to-array@1.1.2: {}
@@ -18196,7 +20540,7 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- execa@9.5.2:
+ execa@9.6.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.6
@@ -18269,6 +20613,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ exsolve@1.0.7: {}
+
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -18301,12 +20647,26 @@ snapshots:
extract-stack@2.0.0: {}
+ extract-zip@2.0.1:
+ dependencies:
+ debug: 4.4.1(supports-color@8.1.1)
+ get-stream: 5.2.0
+ yauzl: 2.10.0
+ optionalDependencies:
+ '@types/yauzl': 2.10.3
+ transitivePeerDependencies:
+ - supports-color
+
fast-content-type-parse@2.0.1: {}
+ fast-deep-equal@2.0.1: {}
+
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
+ fast-fifo@1.3.2: {}
+
fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -18339,6 +20699,10 @@ snapshots:
fast-uri@3.0.6: {}
+ fast-xml-parser@4.5.3:
+ dependencies:
+ strnum: 1.1.2
+
fastest-levenshtein@1.0.16: {}
fastq@1.19.1:
@@ -18353,10 +20717,21 @@ snapshots:
dependencies:
bser: 2.1.1
- fdir@6.4.4(picomatch@4.0.2):
+ fd-slicer@1.1.0:
+ dependencies:
+ pend: 1.2.0
+
+ fdir@6.4.6(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
+ fetch-blob@3.2.0:
+ dependencies:
+ node-domexception: 1.0.0
+ web-streams-polyfill: 3.3.3
+
+ fflate@0.8.2: {}
+
figures@2.0.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -18373,11 +20748,11 @@ snapshots:
dependencies:
flat-cache: 4.0.1
- file-loader@6.2.0(webpack@5.99.7):
+ file-loader@6.2.0(webpack@5.99.9):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.99.7
+ webpack: 5.99.9
filesize@10.1.6: {}
@@ -18491,11 +20866,11 @@ snapshots:
lodash.flatten: 3.0.2
minimatch: 3.1.2
- fix-bad-declaration-output@1.1.4(4da242a27615870776983f1ebf94ba5e):
+ fix-bad-declaration-output@1.1.4(6ff61888cb104ba9cae37e4cddb605c9):
dependencies:
fs-extra: 11.3.0
globby: 14.1.0
- jscodeshift: 0.15.2(4da242a27615870776983f1ebf94ba5e)
+ jscodeshift: 0.15.2(6ff61888cb104ba9cae37e4cddb605c9)
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
@@ -18537,13 +20912,15 @@ snapshots:
flatted@3.3.3: {}
- flow-parser@0.269.1: {}
+ flow-parser@0.274.0: {}
focus-trap@6.9.4:
dependencies:
tabbable: 5.3.3
- follow-redirects@1.15.9: {}
+ follow-redirects@1.15.9(debug@4.4.1):
+ optionalDependencies:
+ debug: 4.4.1
for-each@0.3.5:
dependencies:
@@ -18560,13 +20937,18 @@ snapshots:
form-data-utils@0.6.0: {}
- form-data@4.0.2:
+ form-data@4.0.3:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: '@nolyfill/hasown@1.0.44'
mime-types: 2.1.35
+ formdata-polyfill@4.0.10:
+ dependencies:
+ fetch-blob: 3.2.0
+
forwarded@0.2.0: {}
fractal-page-object@1.0.0:
@@ -18690,13 +21072,14 @@ snapshots:
fs.realpath@1.0.0: {}
+ fsevents@2.3.2:
+ optional: true
+
fsevents@2.3.3:
optional: true
function-bind@1.1.2: {}
- fuse.js@7.1.0: {}
-
gauge@4.0.4:
dependencies:
aproba: 2.0.0
@@ -18708,6 +21091,20 @@ snapshots:
strip-ansi: 6.0.1
wide-align: 1.1.5
+ geckodriver@5.0.0:
+ dependencies:
+ '@wdio/logger': 9.16.2
+ '@zip.js/zip.js': 2.7.62
+ decamelize: 6.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ node-fetch: 3.3.2
+ tar-fs: 3.0.10
+ which: 5.0.0
+ transitivePeerDependencies:
+ - bare-buffer
+ - supports-color
+
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
@@ -18727,6 +21124,8 @@ snapshots:
get-own-enumerable-keys@1.0.0: {}
+ get-port@7.1.0: {}
+
get-proto@1.0.1:
dependencies:
dunder-proto: 1.0.1
@@ -18736,11 +21135,11 @@ snapshots:
get-stream@4.1.0:
dependencies:
- pump: 3.0.2
+ pump: 3.0.3
get-stream@5.2.0:
dependencies:
- pump: 3.0.2
+ pump: 3.0.3
get-stream@6.0.1: {}
@@ -18751,10 +21150,18 @@ snapshots:
'@sec-ant/readable-stream': 0.4.1
is-stream: 4.0.1
- get-tsconfig@4.10.0:
+ get-tsconfig@4.10.1:
dependencies:
resolve-pkg-maps: 1.0.0
+ get-uri@6.0.4:
+ dependencies:
+ basic-ftp: 5.0.5
+ data-uri-to-buffer: 6.0.2
+ debug: 4.4.1(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
get-value@2.0.6: {}
git-hooks-list@3.2.0: {}
@@ -18847,7 +21254,7 @@ snapshots:
globals@15.15.0: {}
- globals@16.0.0: {}
+ globals@16.2.0: {}
globalyzer@0.1.0: {}
@@ -18875,7 +21282,7 @@ snapshots:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.3
- ignore: 7.0.4
+ ignore: 7.0.5
path-type: 6.0.0
slash: 5.1.0
unicorn-magic: 0.3.0
@@ -18918,10 +21325,14 @@ snapshots:
graceful-fs@4.2.11: {}
+ grapheme-splitter@1.0.4: {}
+
graphemer@1.4.0: {}
growly@1.3.0: {}
+ hachure-fill@0.5.2: {}
+
handlebars@4.7.8:
dependencies:
minimist: 1.2.8
@@ -18970,6 +21381,10 @@ snapshots:
is-number: 3.0.0
kind-of: 4.0.0
+ hash-base@2.0.2:
+ dependencies:
+ inherits: 2.0.4
+
hash-base@3.0.5:
dependencies:
inherits: 2.0.4
@@ -19001,10 +21416,25 @@ snapshots:
vfile-location: 4.1.0
web-namespaces: 2.0.1
+ hast-util-from-parse5@8.0.3:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ devlop: 1.1.0
+ hastscript: 9.0.1
+ property-information: 7.1.0
+ vfile: 6.0.3
+ vfile-location: 5.0.3
+ web-namespaces: 2.0.1
+
hast-util-parse-selector@3.1.1:
dependencies:
'@types/hast': 2.3.10
+ hast-util-parse-selector@4.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+
hast-util-raw@7.2.3:
dependencies:
'@types/hast': 2.3.10
@@ -19019,6 +21449,22 @@ snapshots:
web-namespaces: 2.0.1
zwitch: 2.0.4
+ hast-util-raw@9.1.0:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ '@ungap/structured-clone': 1.3.0
+ hast-util-from-parse5: 8.0.3
+ hast-util-to-parse5: 8.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.2.0
+ parse5: 7.3.0
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
+
hast-util-sanitize@5.0.2:
dependencies:
'@types/hast': 3.0.4
@@ -19048,7 +21494,7 @@ snapshots:
hast-util-whitespace: 3.0.0
html-void-elements: 3.0.0
mdast-util-to-hast: 13.2.0
- property-information: 7.0.0
+ property-information: 7.1.0
space-separated-tokens: 2.0.2
stringify-entities: 4.0.4
zwitch: 2.0.4
@@ -19062,6 +21508,16 @@ snapshots:
web-namespaces: 2.0.1
zwitch: 2.0.4
+ hast-util-to-parse5@8.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
+
hast-util-to-string@3.0.1:
dependencies:
'@types/hast': 3.0.4
@@ -19080,6 +21536,14 @@ snapshots:
property-information: 6.5.0
space-separated-tokens: 2.0.2
+ hastscript@9.0.1:
+ dependencies:
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ hast-util-parse-selector: 4.0.0
+ property-information: 7.1.0
+ space-separated-tokens: 2.0.2
+
he@1.2.0: {}
heimdalljs-fs-monitor@1.1.1:
@@ -19137,6 +21601,10 @@ snapshots:
dependencies:
lru-cache: 10.4.3
+ html-encoding-sniffer@3.0.0:
+ dependencies:
+ whatwg-encoding: 2.0.0
+
html-encoding-sniffer@4.0.0:
dependencies:
whatwg-encoding: 3.1.1
@@ -19149,6 +21617,15 @@ snapshots:
html-void-elements@3.0.0: {}
+ htmlfy@0.6.7: {}
+
+ htmlparser2@10.0.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ entities: 6.0.1
+
htmlparser2@3.10.1:
dependencies:
domelementtype: 1.3.1
@@ -19165,7 +21642,7 @@ snapshots:
domutils: 2.8.0
entities: 3.0.1
- http-cache-semantics@4.1.1: {}
+ http-cache-semantics@4.2.0: {}
http-errors@1.6.3:
dependencies:
@@ -19188,25 +21665,44 @@ snapshots:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.9(debug@4.4.1)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
+ http-server@14.1.1:
+ dependencies:
+ basic-auth: 2.0.1
+ chalk: 4.1.2
+ corser: 2.0.1
+ he: 1.2.0
+ html-encoding-sniffer: 3.0.0
+ http-proxy: 1.18.1
+ mime: 1.6.0
+ minimist: 1.2.8
+ opener: 1.5.2
+ portfinder: 1.0.37
+ secure-compare: 3.0.1
+ union: 0.5.0
+ url-join: 4.0.1
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+
http2-wrapper@2.2.1:
dependencies:
quick-lru: 5.1.1
@@ -19224,14 +21720,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
@@ -19257,9 +21753,9 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.5.3):
+ icss-utils@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
ieee754@1.2.1: {}
@@ -19273,7 +21769,7 @@ snapshots:
ignore@5.3.2: {}
- ignore@7.0.4: {}
+ ignore@7.0.5: {}
immediate@3.0.6: {}
@@ -19282,11 +21778,15 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
+ import-lazy@4.0.0: {}
+
import-local@3.2.0:
dependencies:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
+ import-meta-resolve@4.1.0: {}
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -19344,7 +21844,7 @@ snapshots:
inquirer@9.3.7:
dependencies:
- '@inquirer/figures': 1.0.11
+ '@inquirer/figures': 1.0.12
ansi-escapes: 4.3.2
cli-width: 4.1.0
external-editor: 3.1.0
@@ -19357,6 +21857,10 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
+ internmap@1.0.1: {}
+
+ internmap@2.0.3: {}
+
interpret@3.1.1: {}
invert-kv@3.0.1: {}
@@ -19389,7 +21893,7 @@ snapshots:
is-bun-module@2.0.0:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
is-callable@1.2.7: {}
@@ -19444,7 +21948,7 @@ snapshots:
is-language-code@3.1.0:
dependencies:
- '@babel/runtime': 7.27.1
+ '@babel/runtime': 7.27.6
is-module@1.0.0: {}
@@ -19472,7 +21976,11 @@ snapshots:
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
+
+ is-reference@3.0.3:
+ dependencies:
+ '@types/estree': 1.0.8
is-regex@1.2.1:
dependencies:
@@ -19568,18 +22076,22 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
merge-stream: 2.0.0
supports-color: 8.1.1
jiti@1.21.7: {}
+ jiti@2.4.2: {}
+
jju@1.4.0: {}
js-string-escape@1.0.1: {}
js-tokens@4.0.0: {}
+ js-tokens@9.0.1: {}
+
js-yaml@3.14.1:
dependencies:
argparse: 1.0.10
@@ -19591,21 +22103,21 @@ snapshots:
jsbn@1.1.0: {}
- jscodeshift@0.15.2(4da242a27615870776983f1ebf94ba5e):
- dependencies:
- '@babel/core': 7.27.1
- '@babel/parser': 7.27.1
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-flow': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.27.1)
- '@babel/register': 7.27.1(@babel/core@7.27.1)
- babel-core: 7.0.0-bridge.0(@babel/core@7.27.1)
+ jscodeshift@0.15.2(6ff61888cb104ba9cae37e4cddb605c9):
+ dependencies:
+ '@babel/core': 7.27.7
+ '@babel/parser': 7.27.7
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.7)
+ '@babel/preset-flow': 7.27.1(@babel/core@7.27.7)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.27.7)
+ '@babel/register': 7.27.1(@babel/core@7.27.7)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.27.7)
chalk: 4.1.2
- flow-parser: 0.269.1
+ flow-parser: 0.274.0
graceful-fs: 4.2.11
micromatch: 4.0.8
neo-async: 2.6.2
@@ -19614,16 +22126,16 @@ snapshots:
temp: 0.8.4
write-file-atomic: 2.4.3
optionalDependencies:
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
jsdom@25.0.1:
dependencies:
- cssstyle: 4.3.1
+ cssstyle: 4.6.0
data-urls: 5.0.0
decimal.js: 10.5.0
- form-data: 4.0.2
+ form-data: 4.0.3
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
@@ -19639,7 +22151,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- ws: 8.18.1
+ ws: 8.18.2
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -19701,6 +22213,10 @@ snapshots:
junk@1.0.3: {}
+ katex@0.16.22:
+ dependencies:
+ commander: 8.3.0
+
keyborg@2.6.0: {}
keyv@3.1.0:
@@ -19711,6 +22227,8 @@ snapshots:
dependencies:
json-buffer: 3.0.1
+ khroma@2.1.0: {}
+
kind-of@3.2.2:
dependencies:
is-buffer: 1.1.6
@@ -19723,49 +22241,63 @@ snapshots:
kleur@4.1.5: {}
- kolay@3.5.5(c4490396783557fe5222cd180df98cad):
+ kolay@3.7.2(9499744f27228c86d2e40118f70524b2):
dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
'@glimmer/component': 2.0.0
- '@glimmer/tracking': 1.1.2
- '@glint/template': 1.4.1-unstable.0e0d936
+ '@glint/template': 1.5.2
common-tags: 1.8.2
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-modifier: 4.2.0(dd7c8c71e23b008546e35fcf85ff31fd)
- ember-primitives: 0.27.2(4eb5a63083ebd3f3afbb5c714291c843)
- ember-repl: link:packages/ember-repl/addon
- ember-resources: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ ember-modifier: 4.2.2(@babel/core@7.27.7)
+ ember-primitives: 0.32.0(6c98c0a79848ce8beb1ad80690d67516)
+ ember-repl: 6.0.0(195a05b01182dfe3c5bd09fac10054f9)
+ ember-resources: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
globby: 14.1.0
json5: 2.2.3
package-up: 5.0.0
- reactiveweb: 1.4.1(737c6461a8730545861e6febe5b0676c)
+ reactiveweb: 1.6.2(752d8e73f0791d5fdf782be4b4d821fb)
send: 1.2.0
- tracked-built-ins: 4.0.0(@babel/core@7.27.1)
- typedoc: 0.28.3(typescript@5.7.3)
- unplugin: 2.3.2
+ tracked-built-ins: 4.0.0(@babel/core@7.27.7)
+ typedoc: 0.28.4(typescript@5.8.3)
+ unplugin: 2.3.5
transitivePeerDependencies:
- '@babel/core'
- '@ember/test-helpers'
+ - '@glimmer/compiler'
+ - '@glimmer/syntax'
+ - ember-source
- supports-color
- typescript
+ - webpack
- ky@1.8.1: {}
+ kolorist@1.8.0: {}
- language-subtag-registry@0.3.23: {}
+ ky@1.8.1: {}
- language-tags@1.0.9:
+ langium@3.3.1:
dependencies:
- language-subtag-registry: 0.3.23
+ chevrotain: 11.0.3
+ chevrotain-allstar: 0.3.1(chevrotain@11.0.3)
+ vscode-languageserver: 9.0.1
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
latest-version@7.0.0:
dependencies:
package-json: 8.1.1
- latest-version@9.0.0:
+ latest-version@9.0.0:
+ dependencies:
+ package-json: 10.0.1
+
+ layout-base@1.0.2: {}
+
+ layout-base@2.0.1: {}
+
+ lazystream@1.0.1:
dependencies:
- package-json: 10.0.1
+ readable-stream: 2.3.8
lcid@3.1.1:
dependencies:
@@ -19789,10 +22321,6 @@ snapshots:
lines-and-columns@1.2.4: {}
- linkify-it@4.0.1:
- dependencies:
- uc.micro: 1.0.6
-
linkify-it@5.0.0:
dependencies:
uc.micro: 2.1.0
@@ -19809,6 +22337,20 @@ snapshots:
loader.js@4.7.0: {}
+ local-pkg@1.1.1:
+ dependencies:
+ mlly: 1.7.4
+ pkg-types: 2.1.0
+ quansync: 0.2.10
+
+ locate-app@2.5.0:
+ dependencies:
+ '@promptbook/utils': 0.69.5
+ type-fest: 4.26.0
+ userhome: 1.0.1
+
+ locate-character@3.0.0: {}
+
locate-path@2.0.0:
dependencies:
p-locate: 2.0.0
@@ -19831,6 +22373,8 @@ snapshots:
dependencies:
p-locate: 6.0.0
+ lodash-es@4.17.21: {}
+
lodash._baseflatten@3.1.4:
dependencies:
lodash.isarguments: 3.1.0
@@ -19844,6 +22388,8 @@ snapshots:
lodash.castarray@4.4.0: {}
+ lodash.clonedeep@4.5.0: {}
+
lodash.debounce@3.1.1:
dependencies:
lodash._getnative: 3.9.1
@@ -19869,6 +22415,8 @@ snapshots:
lodash.uniq@4.5.0: {}
+ lodash.zip@4.2.0: {}
+
lodash@4.17.21: {}
log-symbols@2.2.0:
@@ -19885,9 +22433,13 @@ snapshots:
chalk: 5.4.1
is-unicode-supported: 1.3.0
+ loglevel-plugin-prefix@0.8.4: {}
+
+ loglevel@1.9.2: {}
+
longest-streak@3.1.0: {}
- loupe@3.1.3: {}
+ loupe@3.1.4: {}
lower-case@2.0.2:
dependencies:
@@ -19909,6 +22461,8 @@ snapshots:
dependencies:
yallist: 4.0.0
+ lru-cache@7.18.3: {}
+
lunr@2.3.9: {}
lz-string@1.5.0: {}
@@ -19934,7 +22488,7 @@ snapshots:
dependencies:
'@npmcli/agent': 2.2.2
cacache: 18.0.4
- http-cache-semantics: 4.1.1
+ http-cache-semantics: 4.2.0
is-lambda: 1.0.1
minipass: 7.1.2
minipass-fetch: 3.0.5
@@ -19951,7 +22505,7 @@ snapshots:
dependencies:
agentkeepalive: 4.6.0
cacache: 15.3.0
- http-cache-semantics: 4.1.1
+ http-cache-semantics: 4.2.0
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-lambda: 1.0.1
@@ -19985,21 +22539,13 @@ snapshots:
dependencies:
object-visit: 1.0.1
- markdown-it-terminal@0.4.0(markdown-it@13.0.2):
+ markdown-it-terminal@0.4.0(markdown-it@14.1.0):
dependencies:
ansi-styles: 3.2.1
cardinal: 1.0.0
cli-table: 0.3.11
lodash.merge: 4.6.2
- markdown-it: 13.0.2
-
- markdown-it@13.0.2:
- dependencies:
- argparse: 2.0.1
- entities: 3.0.1
- linkify-it: 4.0.1
- mdurl: 1.0.1
- uc.micro: 1.0.6
+ markdown-it: 14.1.0
markdown-it@14.1.0:
dependencies:
@@ -20012,7 +22558,7 @@ snapshots:
markdown-table@3.0.4: {}
- marked@15.0.11: {}
+ marked@15.0.12: {}
matcher-collection@1.1.2:
dependencies:
@@ -20053,11 +22599,18 @@ snapshots:
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
+ mdast-util-find-and-replace@3.0.2:
+ dependencies:
+ '@types/mdast': 4.0.4
+ escape-string-regexp: 5.0.0
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+
mdast-util-from-markdown@1.3.1:
dependencies:
'@types/mdast': 3.0.15
'@types/unist': 2.0.11
- decode-named-character-reference: 1.1.0
+ decode-named-character-reference: 1.2.0
mdast-util-to-string: 3.2.0
micromark: 3.2.0
micromark-util-decode-numeric-character-reference: 1.1.0
@@ -20070,6 +22623,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-from-markdown@2.0.2:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ decode-named-character-reference: 1.2.0
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.2
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-decode-string: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ unist-util-stringify-position: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm-autolink-literal@1.0.3:
dependencies:
'@types/mdast': 3.0.15
@@ -20077,17 +22647,43 @@ snapshots:
mdast-util-find-and-replace: 2.2.2
micromark-util-character: 1.2.0
+ mdast-util-gfm-autolink-literal@2.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-find-and-replace: 3.0.2
+ micromark-util-character: 2.1.1
+
mdast-util-gfm-footnote@1.0.2:
dependencies:
'@types/mdast': 3.0.15
mdast-util-to-markdown: 1.5.0
micromark-util-normalize-identifier: 1.1.0
+ mdast-util-gfm-footnote@2.1.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ micromark-util-normalize-identifier: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm-strikethrough@1.0.3:
dependencies:
'@types/mdast': 3.0.15
mdast-util-to-markdown: 1.5.0
+ mdast-util-gfm-strikethrough@2.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm-table@1.0.7:
dependencies:
'@types/mdast': 3.0.15
@@ -20097,11 +22693,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-gfm-table@2.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ markdown-table: 3.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm-task-list-item@1.0.2:
dependencies:
'@types/mdast': 3.0.15
mdast-util-to-markdown: 1.5.0
+ mdast-util-gfm-task-list-item@2.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm@2.0.2:
dependencies:
mdast-util-from-markdown: 1.3.1
@@ -20114,11 +22729,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-gfm@3.1.0:
+ dependencies:
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-gfm-autolink-literal: 2.0.1
+ mdast-util-gfm-footnote: 2.1.0
+ mdast-util-gfm-strikethrough: 2.0.0
+ mdast-util-gfm-table: 2.0.0
+ mdast-util-gfm-task-list-item: 2.0.0
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-phrasing@3.0.1:
dependencies:
'@types/mdast': 3.0.15
unist-util-is: 5.2.1
+ mdast-util-phrasing@4.1.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ unist-util-is: 6.0.0
+
mdast-util-to-hast@12.3.0:
dependencies:
'@types/hast': 2.3.10
@@ -20153,16 +22785,30 @@ snapshots:
unist-util-visit: 4.1.2
zwitch: 2.0.4
+ mdast-util-to-markdown@2.1.2:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 4.1.0
+ mdast-util-to-string: 4.0.0
+ micromark-util-classify-character: 2.0.1
+ micromark-util-decode-string: 2.0.1
+ unist-util-visit: 5.0.0
+ zwitch: 2.0.4
+
mdast-util-to-string@3.2.0:
dependencies:
'@types/mdast': 3.0.15
+ mdast-util-to-string@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+
mdast@3.0.0: {}
mdn-data@2.12.2: {}
- mdurl@1.0.1: {}
-
mdurl@2.0.0: {}
meant@1.0.3: {}
@@ -20199,11 +22845,36 @@ snapshots:
merge2@1.4.1: {}
+ mermaid@11.7.0:
+ dependencies:
+ '@braintree/sanitize-url': 7.1.1
+ '@iconify/utils': 2.3.0
+ '@mermaid-js/parser': 0.5.0
+ '@types/d3': 7.4.3
+ cytoscape: 3.32.0
+ cytoscape-cose-bilkent: 4.1.0(cytoscape@3.32.0)
+ cytoscape-fcose: 2.2.0(cytoscape@3.32.0)
+ d3: 7.9.0
+ d3-sankey: 0.12.3
+ dagre-d3-es: 7.0.11
+ dayjs: 1.11.13
+ dompurify: 3.2.6
+ katex: 0.16.22
+ khroma: 2.1.0
+ lodash-es: 4.17.21
+ marked: 15.0.12
+ roughjs: 4.6.6
+ stylis: 4.3.6
+ ts-dedent: 2.2.0
+ uuid: 11.1.0
+ transitivePeerDependencies:
+ - supports-color
+
methods@1.1.2: {}
micromark-core-commonmark@1.1.0:
dependencies:
- decode-named-character-reference: 1.1.0
+ decode-named-character-reference: 1.2.0
micromark-factory-destination: 1.1.0
micromark-factory-label: 1.1.0
micromark-factory-space: 1.1.0
@@ -20220,6 +22891,25 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-core-commonmark@2.0.3:
+ dependencies:
+ decode-named-character-reference: 1.2.0
+ devlop: 1.1.0
+ micromark-factory-destination: 2.0.1
+ micromark-factory-label: 2.0.1
+ micromark-factory-space: 2.0.1
+ micromark-factory-title: 2.0.1
+ micromark-factory-whitespace: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-classify-character: 2.0.1
+ micromark-util-html-tag-name: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-subtokenize: 2.1.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm-autolink-literal@1.0.5:
dependencies:
micromark-util-character: 1.2.0
@@ -20227,6 +22917,13 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
+ micromark-extension-gfm-autolink-literal@2.1.0:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm-footnote@1.1.2:
dependencies:
micromark-core-commonmark: 1.1.0
@@ -20238,6 +22935,17 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-extension-gfm-footnote@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.3
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm-strikethrough@1.0.7:
dependencies:
micromark-util-chunked: 1.1.0
@@ -20247,6 +22955,15 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-extension-gfm-strikethrough@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.1
+ micromark-util-classify-character: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm-table@1.0.7:
dependencies:
micromark-factory-space: 1.1.0
@@ -20255,10 +22972,22 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-extension-gfm-table@2.1.1:
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm-tagfilter@1.0.2:
dependencies:
micromark-util-types: 1.1.0
+ micromark-extension-gfm-tagfilter@2.0.0:
+ dependencies:
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm-task-list-item@1.0.5:
dependencies:
micromark-factory-space: 1.1.0
@@ -20267,6 +22996,14 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-extension-gfm-task-list-item@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-gfm@2.0.3:
dependencies:
micromark-extension-gfm-autolink-literal: 1.0.5
@@ -20278,12 +23015,29 @@ snapshots:
micromark-util-combine-extensions: 1.1.0
micromark-util-types: 1.1.0
+ micromark-extension-gfm@3.0.0:
+ dependencies:
+ micromark-extension-gfm-autolink-literal: 2.1.0
+ micromark-extension-gfm-footnote: 2.1.0
+ micromark-extension-gfm-strikethrough: 2.1.0
+ micromark-extension-gfm-table: 2.1.1
+ micromark-extension-gfm-tagfilter: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.1.0
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-factory-destination@1.1.0:
dependencies:
micromark-util-character: 1.2.0
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
+ micromark-factory-destination@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-factory-label@1.1.0:
dependencies:
micromark-util-character: 1.2.0
@@ -20291,11 +23045,23 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-factory-label@2.0.1:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-factory-space@1.1.0:
dependencies:
micromark-util-character: 1.2.0
micromark-util-types: 1.1.0
+ micromark-factory-space@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-types: 2.0.2
+
micromark-factory-title@1.1.0:
dependencies:
micromark-factory-space: 1.1.0
@@ -20303,6 +23069,13 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
+ micromark-factory-title@2.0.1:
+ dependencies:
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-factory-whitespace@1.1.0:
dependencies:
micromark-factory-space: 1.1.0
@@ -20310,6 +23083,13 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
+ micromark-factory-whitespace@2.0.1:
+ dependencies:
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-util-character@1.2.0:
dependencies:
micromark-util-symbol: 1.1.0
@@ -20324,42 +23104,78 @@ snapshots:
dependencies:
micromark-util-symbol: 1.1.0
+ micromark-util-chunked@2.0.1:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+
micromark-util-classify-character@1.1.0:
dependencies:
micromark-util-character: 1.2.0
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
+ micromark-util-classify-character@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-util-combine-extensions@1.1.0:
dependencies:
micromark-util-chunked: 1.1.0
micromark-util-types: 1.1.0
+ micromark-util-combine-extensions@2.0.1:
+ dependencies:
+ micromark-util-chunked: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-util-decode-numeric-character-reference@1.1.0:
dependencies:
micromark-util-symbol: 1.1.0
+ micromark-util-decode-numeric-character-reference@2.0.2:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+
micromark-util-decode-string@1.1.0:
dependencies:
- decode-named-character-reference: 1.1.0
+ decode-named-character-reference: 1.2.0
micromark-util-character: 1.2.0
micromark-util-decode-numeric-character-reference: 1.1.0
micromark-util-symbol: 1.1.0
+ micromark-util-decode-string@2.0.1:
+ dependencies:
+ decode-named-character-reference: 1.2.0
+ micromark-util-character: 2.1.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-symbol: 2.0.1
+
micromark-util-encode@1.1.0: {}
micromark-util-encode@2.0.1: {}
micromark-util-html-tag-name@1.2.0: {}
+ micromark-util-html-tag-name@2.0.1: {}
+
micromark-util-normalize-identifier@1.1.0:
dependencies:
micromark-util-symbol: 1.1.0
+ micromark-util-normalize-identifier@2.0.1:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+
micromark-util-resolve-all@1.1.0:
dependencies:
micromark-util-types: 1.1.0
+ micromark-util-resolve-all@2.0.1:
+ dependencies:
+ micromark-util-types: 2.0.2
+
micromark-util-sanitize-uri@1.2.0:
dependencies:
micromark-util-character: 1.2.0
@@ -20379,6 +23195,13 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-util-subtokenize@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-util-symbol@1.1.0: {}
micromark-util-symbol@2.0.1: {}
@@ -20390,8 +23213,8 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.0(supports-color@8.1.1)
- decode-named-character-reference: 1.1.0
+ debug: 4.4.1
+ decode-named-character-reference: 1.2.0
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
micromark-util-character: 1.2.0
@@ -20409,6 +23232,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ micromark@4.0.2:
+ dependencies:
+ '@types/debug': 4.1.12
+ debug: 4.4.1
+ decode-named-character-reference: 1.2.0
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.3
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-encode: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-subtokenize: 2.1.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
micromatch@3.1.10:
dependencies:
arr-diff: 4.0.0
@@ -20451,6 +23296,8 @@ snapshots:
mime@1.6.0: {}
+ mime@4.0.7: {}
+
mimic-fn@1.2.0: {}
mimic-fn@2.1.0: {}
@@ -20465,35 +23312,39 @@ snapshots:
mimic-response@4.0.0: {}
- mini-css-extract-plugin@2.9.2(webpack@5.99.7):
+ mini-css-extract-plugin@2.9.2(webpack@5.99.9):
dependencies:
schema-utils: 4.3.2
- tapable: 2.2.1
- webpack: 5.99.7
+ tapable: 2.2.2
+ webpack: 5.99.9
minimalistic-assert@1.0.1: {}
minimalistic-crypto-utils@1.0.1: {}
+ minimatch@3.0.8:
+ dependencies:
+ brace-expansion: 1.1.12
+
minimatch@3.1.2:
dependencies:
- brace-expansion: 1.1.11
+ brace-expansion: 1.1.12
minimatch@5.1.6:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@7.4.6:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@8.0.4:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@9.0.5:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimist@1.2.8: {}
@@ -20573,12 +23424,19 @@ snapshots:
mktemp@0.4.0: {}
+ mlly@1.7.4:
+ dependencies:
+ acorn: 8.15.0
+ pathe: 2.0.3
+ pkg-types: 1.3.1
+ ufo: 1.6.1
+
mocha@10.8.2:
dependencies:
ansi-colors: 4.1.3
browser-stdout: 1.3.1
chokidar: 3.6.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
diff: 5.2.0
escape-string-regexp: 4.0.0
find-up: 5.0.0
@@ -20596,6 +23454,29 @@ snapshots:
yargs-parser: 20.2.9
yargs-unparser: 2.0.0
+ mocha@11.7.1:
+ dependencies:
+ browser-stdout: 1.3.1
+ chokidar: 4.0.3
+ debug: 4.4.1(supports-color@8.1.1)
+ diff: 7.0.0
+ escape-string-regexp: 4.0.0
+ find-up: 5.0.0
+ glob: 10.4.5
+ he: 1.2.0
+ js-yaml: 4.1.0
+ log-symbols: 4.1.0
+ minimatch: 9.0.5
+ ms: 2.1.3
+ picocolors: 1.1.1
+ serialize-javascript: 6.0.2
+ strip-json-comments: 3.1.1
+ supports-color: 8.1.1
+ workerpool: 9.3.2
+ yargs: 17.7.2
+ yargs-parser: 21.1.1
+ yargs-unparser: 2.0.0
+
morgan@1.10.0:
dependencies:
basic-auth: 2.0.1
@@ -20608,10 +23489,14 @@ snapshots:
mri@1.2.0: {}
+ mrmime@2.0.1: {}
+
ms@2.0.0: {}
ms@2.1.3: {}
+ muggle-string@0.4.1: {}
+
mustache@4.2.0: {}
mute-stream@0.0.7: {}
@@ -20644,7 +23529,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- napi-postinstall@0.2.3: {}
+ napi-postinstall@0.2.4: {}
natural-compare@1.4.0: {}
@@ -20654,6 +23539,8 @@ snapshots:
neo-async@2.6.2: {}
+ netmask@2.0.2: {}
+
nice-try@1.0.5: {}
no-case@3.0.4:
@@ -20665,12 +23552,20 @@ snapshots:
dependencies:
minimatch: 3.1.2
+ node-domexception@1.0.0: {}
+
node-fetch@2.7.0(encoding@0.1.13):
dependencies:
whatwg-url: 5.0.0
optionalDependencies:
encoding: 0.1.13
+ node-fetch@3.3.2:
+ dependencies:
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
+ formdata-polyfill: 4.0.10
+
node-gyp@10.3.1:
dependencies:
env-paths: 2.2.1
@@ -20680,7 +23575,7 @@ snapshots:
make-fetch-happen: 13.0.1
nopt: 7.2.1
proc-log: 4.2.0
- semver: 7.7.1
+ semver: 7.7.2
tar: 6.2.1
which: 4.0.0
transitivePeerDependencies:
@@ -20692,7 +23587,7 @@ snapshots:
dependencies:
growly: 1.3.0
is-wsl: 2.2.0
- semver: 7.7.1
+ semver: 7.7.2
shellwords: 0.1.1
uuid: 8.3.2
which: 2.0.2
@@ -20742,7 +23637,7 @@ snapshots:
normalize-package-data@6.0.2:
dependencies:
hosted-git-info: 7.0.2
- semver: 7.7.1
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
normalize-path@2.1.1:
@@ -20755,7 +23650,7 @@ snapshots:
normalize-url@4.5.1: {}
- normalize-url@8.0.1: {}
+ normalize-url@8.0.2: {}
npm-bundled@2.0.1:
dependencies:
@@ -20767,11 +23662,11 @@ snapshots:
npm-install-checks@6.3.0:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
npm-install-checks@7.1.1:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
npm-normalize-package-bin@2.0.0: {}
@@ -20783,15 +23678,15 @@ snapshots:
dependencies:
hosted-git-info: 7.0.2
proc-log: 4.2.0
- semver: 7.7.1
+ semver: 7.7.2
validate-npm-package-name: 5.0.1
npm-package-arg@12.0.2:
dependencies:
hosted-git-info: 8.1.0
proc-log: 5.0.0
- semver: 7.7.1
- validate-npm-package-name: 6.0.0
+ semver: 7.7.2
+ validate-npm-package-name: 6.0.1
npm-packlist@5.1.3:
dependencies:
@@ -20809,14 +23704,14 @@ snapshots:
npm-install-checks: 7.1.1
npm-normalize-package-bin: 4.0.0
npm-package-arg: 12.0.2
- semver: 7.7.1
+ semver: 7.7.2
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.3
- semver: 7.7.1
+ semver: 7.7.2
npm-registry-fetch@16.2.1:
dependencies:
@@ -20855,6 +23750,10 @@ snapshots:
gauge: 4.0.4
set-blocking: 2.0.0
+ nth-check@2.1.1:
+ dependencies:
+ boolbase: 1.0.0
+
nwsapi@2.2.20: {}
object-assign@4.1.1: {}
@@ -20905,14 +23804,24 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ oniguruma-parser@0.12.1: {}
+
oniguruma-to-es@2.3.0:
dependencies:
emoji-regex-xs: 1.0.0
regex: 5.1.1
regex-recursion: 5.1.1
+ oniguruma-to-es@4.3.3:
+ dependencies:
+ oniguruma-parser: 0.12.1
+ regex: 6.0.1
+ regex-recursion: 6.0.2
+
onp@2.0.4: {}
+ opener@1.5.2: {}
+
optionator@0.9.4:
dependencies:
deep-is: 0.1.4
@@ -21025,6 +23934,24 @@ snapshots:
p-try@2.2.0: {}
+ pac-proxy-agent@7.2.0:
+ dependencies:
+ '@tootallnate/quickjs-emscripten': 0.23.0
+ agent-base: 7.1.3
+ debug: 4.4.1(supports-color@8.1.1)
+ get-uri: 6.0.4
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ pac-resolver: 7.0.1
+ socks-proxy-agent: 8.0.5
+ transitivePeerDependencies:
+ - supports-color
+
+ pac-resolver@7.0.1:
+ dependencies:
+ degenerator: 5.0.1
+ netmask: 2.0.2
+
package-json-from-dist@1.0.1: {}
package-json@10.0.1:
@@ -21032,7 +23959,7 @@ snapshots:
ky: 1.8.1
registry-auth-token: 5.1.0
registry-url: 6.0.1
- semver: 7.7.1
+ semver: 7.7.2
package-json@6.5.0:
dependencies:
@@ -21046,7 +23973,11 @@ snapshots:
got: 12.6.1
registry-auth-token: 5.1.0
registry-url: 6.0.1
- semver: 7.7.1
+ semver: 7.7.2
+
+ package-manager-detector@1.3.0: {}
+
+ package-name-regex@4.0.3: {}
package-up@5.0.0:
dependencies:
@@ -21088,7 +24019,7 @@ snapshots:
browserify-aes: 1.2.0
evp_bytestokey: 1.0.3
hash-base: 3.0.5
- pbkdf2: 3.1.2
+ pbkdf2: 3.1.3
safe-buffer: 5.2.1
parse-github-repo-url@1.4.1: {}
@@ -21110,13 +24041,22 @@ snapshots:
dependencies:
parse5: 6.0.1
+ parse5-htmlparser2-tree-adapter@7.1.0:
+ dependencies:
+ domhandler: 5.0.3
+ parse5: 7.3.0
+
+ parse5-parser-stream@7.1.2:
+ dependencies:
+ parse5: 7.3.0
+
parse5@5.1.1: {}
parse5@6.0.1: {}
parse5@7.3.0:
dependencies:
- entities: 6.0.0
+ entities: 6.0.1
parseurl@1.3.3: {}
@@ -21124,6 +24064,8 @@ snapshots:
path-browserify@1.0.1: {}
+ path-data-parser@0.1.0: {}
+
path-exists@3.0.0: {}
path-exists@4.0.0: {}
@@ -21161,19 +24103,24 @@ snapshots:
pathe@2.0.3: {}
- pathval@2.0.0: {}
+ pathval@2.0.1: {}
+
+ pattern-key-compare@2.0.0: {}
pause-stream@0.0.11:
dependencies:
through: 2.3.8
- pbkdf2@3.1.2:
+ pbkdf2@3.1.3:
dependencies:
- create-hash: 1.2.0
+ create-hash: 1.1.3
create-hmac: 1.1.7
- ripemd160: 2.0.2
+ ripemd160: 2.0.1
safe-buffer: 5.2.1
sha.js: 2.4.11
+ to-buffer: 1.2.1
+
+ pend@1.2.0: {}
penpal@6.2.2: {}
@@ -21203,6 +24150,18 @@ snapshots:
pkg-entry-points@1.1.1: {}
+ pkg-types@1.3.1:
+ dependencies:
+ confbox: 0.1.8
+ mlly: 1.7.4
+ pathe: 2.0.3
+
+ pkg-types@2.1.0:
+ dependencies:
+ confbox: 0.2.2
+ exsolve: 1.0.7
+ pathe: 2.0.3
+
pkg-up@2.0.0:
dependencies:
find-up: 2.1.0
@@ -21211,10 +24170,25 @@ snapshots:
dependencies:
find-up: 3.0.0
+ playwright-core@1.53.1: {}
+
+ playwright@1.53.1:
+ dependencies:
+ playwright-core: 1.53.1
+ optionalDependencies:
+ fsevents: 2.3.2
+
+ points-on-curve@0.2.0: {}
+
+ points-on-path@0.2.1:
+ dependencies:
+ path-data-parser: 0.1.0
+ points-on-curve: 0.2.0
+
portfinder@1.0.37:
dependencies:
async: 3.2.6
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
@@ -21222,56 +24196,56 @@ snapshots:
possible-typed-array-names@1.1.0: {}
- postcss-import@15.1.0(postcss@8.5.3):
+ postcss-import@15.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.10
- postcss-import@16.1.0(postcss@8.5.3):
+ postcss-import@16.1.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.10
- postcss-js@4.0.1(postcss@8.5.3):
+ postcss-js@4.0.1(postcss@8.5.6):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.5.3
+ postcss: 8.5.6
- postcss-load-config@4.0.2(postcss@8.5.3):
+ postcss-load-config@4.0.2(postcss@8.5.6):
dependencies:
lilconfig: 3.1.3
- yaml: 2.7.1
+ yaml: 2.8.0
optionalDependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
- postcss-modules-extract-imports@3.1.0(postcss@8.5.3):
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
- postcss-modules-local-by-default@4.2.0(postcss@8.5.3):
+ postcss-modules-local-by-default@4.2.0(postcss@8.5.6):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.3)
- postcss: 8.5.3
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.1(postcss@8.5.3):
+ postcss-modules-scope@3.2.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-selector-parser: 7.1.0
- postcss-modules-values@4.0.0(postcss@8.5.3):
+ postcss-modules-values@4.0.0(postcss@8.5.6):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.3)
- postcss: 8.5.3
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
- postcss-nested@6.2.0(postcss@8.5.3):
+ postcss-nested@6.2.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
postcss-selector-parser@6.0.10:
@@ -21291,7 +24265,7 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss@8.5.3:
+ postcss@8.5.6:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -21333,21 +24307,27 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier-plugin-ember-template-tag@2.0.4(prettier@3.5.3):
+ prettier-plugin-ember-template-tag@2.0.6(prettier@3.6.2):
dependencies:
- '@babel/core': 7.27.1
- content-tag: 2.0.3
- prettier: 3.5.3
+ '@babel/core': 7.27.7
+ content-tag: 3.1.3
+ prettier: 3.6.2
transitivePeerDependencies:
- supports-color
- prettier-plugin-tailwindcss@0.6.11(prettier@3.5.3):
+ prettier-plugin-tailwindcss@0.6.13(prettier@3.6.2):
dependencies:
- prettier: 3.5.3
+ prettier: 3.6.2
prettier@2.8.8: {}
- prettier@3.5.3: {}
+ prettier@3.6.2: {}
+
+ pretty-format@27.5.1:
+ dependencies:
+ ansi-regex: 5.0.1
+ ansi-styles: 5.2.0
+ react-is: 17.0.2
pretty-ms@9.2.0:
dependencies:
@@ -21394,7 +24374,7 @@ snapshots:
property-information@6.5.0: {}
- property-information@7.0.0: {}
+ property-information@7.1.0: {}
proto-list@1.2.4: {}
@@ -21403,6 +24383,21 @@ snapshots:
forwarded: 0.2.0
ipaddr.js: 1.9.1
+ proxy-agent@6.5.0:
+ dependencies:
+ agent-base: 7.1.3
+ debug: 4.4.1(supports-color@8.1.1)
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ lru-cache: 7.18.3
+ pac-proxy-agent: 7.2.0
+ proxy-from-env: 1.1.0
+ socks-proxy-agent: 8.0.5
+ transitivePeerDependencies:
+ - supports-color
+
+ proxy-from-env@1.1.0: {}
+
prr@1.0.1: {}
ps-tree@1.2.0:
@@ -21424,9 +24419,16 @@ snapshots:
picocolors: 1.1.1
sade: 1.8.1
- pump@3.0.2:
+ publint@0.3.12:
+ dependencies:
+ '@publint/pack': 0.1.2
+ package-manager-detector: 1.3.0
+ picocolors: 1.1.1
+ sade: 1.8.1
+
+ pump@3.0.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
punycode.js@2.3.1: {}
@@ -21443,6 +24445,10 @@ snapshots:
dependencies:
side-channel: '@nolyfill/side-channel@1.0.44'
+ quansync@0.2.10: {}
+
+ query-selector-shadow-dom@1.0.1: {}
+
querystring-es3@0.2.1: {}
queue-microtask@1.2.3: {}
@@ -21497,20 +24503,26 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- reactiveweb@1.4.1(737c6461a8730545861e6febe5b0676c):
+ react-dom@19.1.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ scheduler: 0.26.0
+
+ react-is@17.0.2: {}
+
+ react@19.1.0: {}
+
+ reactiveweb@1.6.2(752d8e73f0791d5fdf782be4b4d821fb):
dependencies:
- '@ember/test-waiters': 4.1.0(@glint/template@1.4.1-unstable.0e0d936)
+ '@ember/test-waiters': 4.1.0(@glint/template@1.5.2)
'@embroider/addon-shim': 1.10.0
- '@embroider/macros': 1.17.2(@glint/template@1.4.1-unstable.0e0d936)
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-async-data: 1.0.3(94d55f01f44bf4fdfc9f541bd2ea489a)
- ember-cached-decorator-polyfill: 1.0.2(35438b6e272b520ca540b25aef2325ed)
- ember-resources: 7.0.3(366a6eab8f9b46b64877d79074d1f6e3)
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ '@embroider/macros': 1.18.0(@glint/template@1.5.2)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
+ ember-async-data: 2.0.1(a6fa8d0f1f3c894a01569e258197c230)
+ ember-resources: 7.0.6(807cfcd3020ea8ad8edb1795de9ad08f)
transitivePeerDependencies:
- '@babel/core'
- '@glimmer/component'
- - '@glimmer/tracking'
- '@glint/template'
- supports-color
@@ -21553,10 +24565,24 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readable-stream@4.7.0:
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+
+ readdir-glob@1.1.3:
+ dependencies:
+ minimatch: 5.1.6
+
readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
+ readdirp@4.1.2: {}
+
recast@0.18.10:
dependencies:
ast-types: 0.13.3
@@ -21610,12 +24636,20 @@ snapshots:
regex: 5.1.1
regex-utilities: 2.3.0
+ regex-recursion@6.0.2:
+ dependencies:
+ regex-utilities: 2.3.0
+
regex-utilities@2.3.0: {}
regex@5.1.1:
dependencies:
regex-utilities: 2.3.0
+ regex@6.0.1:
+ dependencies:
+ regex-utilities: 2.3.0
+
regexpu-core@6.2.0:
dependencies:
regenerate: 1.4.2
@@ -21653,27 +24687,39 @@ snapshots:
hast-util-raw: 7.2.3
unified: 10.1.2
+ rehype-raw@7.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+ hast-util-raw: 9.1.0
+ vfile: 6.0.3
+
+ rehype-stringify@10.0.1:
+ dependencies:
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.5
+ unified: 11.0.5
+
rehype-stringify@9.0.4:
dependencies:
'@types/hast': 2.3.10
hast-util-to-html: 8.0.4
unified: 10.1.2
- release-plan@0.16.0:
+ release-plan@0.17.0:
dependencies:
'@manypkg/get-packages': 2.2.2
- '@npmcli/package-json': 6.1.1
+ '@npmcli/package-json': 6.2.0
'@octokit/rest': 21.1.1
assert-never: 1.4.0
chalk: 5.4.1
cli-highlight: 2.1.11
- execa: 9.5.2
+ execa: 9.6.0
fs-extra: 11.3.0
github-changelog: 2.0.0
js-yaml: 4.1.0
latest-version: 9.0.0
parse-github-repo-url: 1.4.1
- semver: 7.7.1
+ semver: 7.7.2
yargs: 17.7.2
transitivePeerDependencies:
- bluebird
@@ -21688,6 +24734,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-gfm@4.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-gfm: 3.1.0
+ micromark-extension-gfm: 3.0.0
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+
remark-html@16.0.1:
dependencies:
'@types/mdast': 4.0.4
@@ -21704,6 +24761,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-parse@11.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ micromark-util-types: 2.0.2
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+
remark-rehype@10.1.0:
dependencies:
'@types/hast': 2.3.10
@@ -21711,15 +24777,29 @@ snapshots:
mdast-util-to-hast: 12.3.0
unified: 10.1.2
+ remark-rehype@11.1.2:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-to-hast: 13.2.0
+ unified: 11.0.5
+ vfile: 6.0.3
+
+ remark-stringify@11.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-to-markdown: 2.1.2
+ unified: 11.0.5
+
remote-git-tags@3.0.0: {}
remove-trailing-separator@1.1.0: {}
remove-types@1.0.0:
dependencies:
- '@babel/core': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.1)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
prettier: 2.8.8
transitivePeerDependencies:
- supports-color
@@ -21787,6 +24867,10 @@ snapshots:
resolve.exports@2.0.3: {}
+ resolve.imports@2.0.3:
+ dependencies:
+ pattern-key-compare: 2.0.0
+
resolve@1.22.10:
dependencies:
is-core-module: '@nolyfill/is-core-module@1.0.39'
@@ -21801,6 +24885,10 @@ snapshots:
dependencies:
lowercase-keys: 3.0.0
+ resq@1.11.0:
+ dependencies:
+ fast-deep-equal: 2.0.1
+
restore-cursor@2.0.0:
dependencies:
onetime: 2.0.1
@@ -21822,6 +24910,8 @@ snapshots:
reusify@1.1.0: {}
+ rgb2hex@0.2.5: {}
+
rimraf@2.5.4:
dependencies:
glob: 7.2.3
@@ -21838,15 +24928,22 @@ snapshots:
dependencies:
glob: 7.2.3
+ ripemd160@2.0.1:
+ dependencies:
+ hash-base: 2.0.2
+ inherits: 2.0.4
+
ripemd160@2.0.2:
dependencies:
hash-base: 3.0.5
inherits: 2.0.4
- rollup-plugin-copy-assets@2.0.3(rollup@4.40.1):
+ robust-predicates@3.0.2: {}
+
+ rollup-plugin-copy-assets@2.0.3(rollup@4.44.0):
dependencies:
fs-extra: 7.0.1
- rollup: 4.40.1
+ rollup: 4.44.0
rollup-plugin-copy@3.5.0:
dependencies:
@@ -21856,61 +24953,82 @@ snapshots:
globby: 10.0.1
is-plain-object: 3.0.1
- rollup-plugin-dts@6.2.1(rollup@4.40.1)(typescript@5.7.3):
+ rollup-plugin-dts@6.2.1(rollup@4.44.0)(typescript@5.8.3):
dependencies:
magic-string: 0.30.17
- rollup: 4.40.1
- typescript: 5.7.3
+ rollup: 4.44.0
+ typescript: 5.8.3
optionalDependencies:
'@babel/code-frame': 7.27.1
- rollup-plugin-ts@3.4.5(b06035194ce3a7bebf1c6065b473a8cf):
+ rollup-plugin-inject@3.0.2:
+ dependencies:
+ estree-walker: 0.6.1
+ magic-string: 0.25.9
+ rollup-pluginutils: 2.8.2
+
+ rollup-plugin-node-polyfills@0.2.1:
+ dependencies:
+ rollup-plugin-inject: 3.0.2
+
+ rollup-plugin-ts@3.4.5(1c16e74c10cfd9b56232f9a6c86e4c91):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
'@wessberg/stringutil': 1.0.19
ansi-colors: 4.1.3
- browserslist: 4.24.4
+ browserslist: 4.25.1
browserslist-generator: 2.3.0(patch_hash=8012b033c48b9eeeb2a450dd39dcc4fd9632dda6b3697bfddcd5371ab1866ebe)
- compatfactory: 3.0.0(typescript@5.7.3)
+ compatfactory: 3.0.0(typescript@5.8.3)
crosspath: 2.0.0
magic-string: 0.30.17
- rollup: 4.40.1
- ts-clone-node: 3.0.0(typescript@5.7.3)
+ rollup: 4.44.0
+ ts-clone-node: 3.0.0(typescript@5.8.3)
tslib: 2.8.1
- typescript: 5.7.3
+ typescript: 5.8.3
optionalDependencies:
- '@babel/core': 7.27.1
- '@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-env': 7.27.1(@babel/core@7.27.1)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.27.1)
- '@babel/runtime': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.7)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.27.7)
+ '@babel/runtime': 7.27.6
- rollup@4.40.1:
+ rollup-pluginutils@2.8.2:
dependencies:
- '@types/estree': 1.0.7
+ estree-walker: 0.6.1
+
+ rollup@4.44.0:
+ dependencies:
+ '@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.1
- '@rollup/rollup-android-arm64': 4.40.1
- '@rollup/rollup-darwin-arm64': 4.40.1
- '@rollup/rollup-darwin-x64': 4.40.1
- '@rollup/rollup-freebsd-arm64': 4.40.1
- '@rollup/rollup-freebsd-x64': 4.40.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.1
- '@rollup/rollup-linux-arm-musleabihf': 4.40.1
- '@rollup/rollup-linux-arm64-gnu': 4.40.1
- '@rollup/rollup-linux-arm64-musl': 4.40.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-musl': 4.40.1
- '@rollup/rollup-linux-s390x-gnu': 4.40.1
- '@rollup/rollup-linux-x64-gnu': 4.40.1
- '@rollup/rollup-linux-x64-musl': 4.40.1
- '@rollup/rollup-win32-arm64-msvc': 4.40.1
- '@rollup/rollup-win32-ia32-msvc': 4.40.1
- '@rollup/rollup-win32-x64-msvc': 4.40.1
+ '@rollup/rollup-android-arm-eabi': 4.44.0
+ '@rollup/rollup-android-arm64': 4.44.0
+ '@rollup/rollup-darwin-arm64': 4.44.0
+ '@rollup/rollup-darwin-x64': 4.44.0
+ '@rollup/rollup-freebsd-arm64': 4.44.0
+ '@rollup/rollup-freebsd-x64': 4.44.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.44.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.44.0
+ '@rollup/rollup-linux-arm64-gnu': 4.44.0
+ '@rollup/rollup-linux-arm64-musl': 4.44.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.44.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.44.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.44.0
+ '@rollup/rollup-linux-riscv64-musl': 4.44.0
+ '@rollup/rollup-linux-s390x-gnu': 4.44.0
+ '@rollup/rollup-linux-x64-gnu': 4.44.0
+ '@rollup/rollup-linux-x64-musl': 4.44.0
+ '@rollup/rollup-win32-arm64-msvc': 4.44.0
+ '@rollup/rollup-win32-ia32-msvc': 4.44.0
+ '@rollup/rollup-win32-x64-msvc': 4.44.0
fsevents: 2.3.3
+ roughjs@4.6.6:
+ dependencies:
+ hachure-fill: 0.5.2
+ path-data-parser: 0.1.0
+ points-on-curve: 0.2.0
+ points-on-path: 0.2.1
+
route-recognizer@0.3.4: {}
router_js@8.0.6(route-recognizer@0.3.4)(rsvp@4.8.5):
@@ -21937,6 +25055,8 @@ snapshots:
dependencies:
queue-microtask: 1.2.3
+ rw@1.3.3: {}
+
rxjs@6.6.7:
dependencies:
tslib: 1.14.1
@@ -21949,6 +25069,8 @@ snapshots:
dependencies:
mri: 1.2.0
+ safaridriver@1.0.0: {}
+
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
@@ -21999,6 +25121,8 @@ snapshots:
dependencies:
xmlchars: 2.2.0
+ scheduler@0.26.0: {}
+
schema-utils@2.7.1:
dependencies:
'@types/json-schema': 7.0.15
@@ -22018,12 +25142,14 @@ snapshots:
ajv-formats: 2.1.1
ajv-keywords: 5.1.0(ajv@8.17.1)
- selenium-webdriver@4.31.0:
+ secure-compare@3.0.1: {}
+
+ selenium-webdriver@4.33.0:
dependencies:
'@bazel/runfiles': 6.3.1
jszip: 3.10.1
tmp: 0.2.3
- ws: 8.18.1
+ ws: 8.18.2
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -22032,7 +25158,11 @@ snapshots:
semver@6.3.1: {}
- semver@7.7.1: {}
+ semver@7.5.4:
+ dependencies:
+ lru-cache: 6.0.0
+
+ semver@7.7.2: {}
send@0.18.0:
dependencies:
@@ -22072,7 +25202,7 @@ snapshots:
send@1.2.0:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
@@ -22082,10 +25212,14 @@ snapshots:
ms: 2.1.3
on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 2.0.1
+ statuses: 2.0.2
transitivePeerDependencies:
- supports-color
+ serialize-error@11.0.3:
+ dependencies:
+ type-fest: 2.19.0
+
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -22144,7 +25278,7 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.2: {}
+ shell-quote@1.8.3: {}
shellwords@0.1.1: {}
@@ -22159,6 +25293,17 @@ snapshots:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
+ shiki@3.7.0:
+ dependencies:
+ '@shikijs/core': 3.7.0
+ '@shikijs/engine-javascript': 3.7.0
+ '@shikijs/engine-oniguruma': 3.7.0
+ '@shikijs/langs': 3.7.0
+ '@shikijs/themes': 3.7.0
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+
should-handle-link@1.3.0: {}
siginfo@2.0.0: {}
@@ -22186,6 +25331,12 @@ snapshots:
simple-html-tokenizer@0.5.11: {}
+ sirv@3.0.1:
+ dependencies:
+ '@polka/url': 1.0.0-next.29
+ mrmime: 2.0.1
+ totalist: 3.0.1
+
slash@1.0.0: {}
slash@3.0.0: {}
@@ -22255,20 +25406,20 @@ snapshots:
socks-proxy-agent@6.2.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.0(supports-color@8.1.1)
- socks: 2.8.4
+ debug: 4.4.1(supports-color@8.1.1)
+ socks: 2.8.5
transitivePeerDependencies:
- supports-color
socks-proxy-agent@8.0.5:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
- socks: 2.8.4
+ debug: 4.4.1(supports-color@8.1.1)
+ socks: 2.8.5
transitivePeerDependencies:
- supports-color
- socks@2.8.4:
+ socks@2.8.5:
dependencies:
ip-address: 9.0.5
smart-buffer: 4.2.0
@@ -22282,9 +25433,9 @@ snapshots:
get-stdin: 9.0.0
git-hooks-list: 3.2.0
is-plain-obj: 4.1.0
- semver: 7.7.1
+ semver: 7.7.2
sort-object-keys: 1.1.3
- tinyglobby: 0.2.13
+ tinyglobby: 0.2.14
source-list-map@2.0.1: {}
@@ -22319,6 +25470,8 @@ snapshots:
space-separated-tokens@2.0.2: {}
+ spacetrim@0.11.59: {}
+
spawn-args@0.2.0: {}
spdx-correct@3.2.0:
@@ -22339,6 +25492,8 @@ snapshots:
dependencies:
extend-shallow: 3.0.2
+ split2@4.2.0: {}
+
split@0.3.3:
dependencies:
through: 2.3.8
@@ -22368,6 +25523,8 @@ snapshots:
statuses@2.0.1: {}
+ statuses@2.0.2: {}
+
std-env@3.9.0: {}
stdin-discarder@0.1.0:
@@ -22390,8 +25547,17 @@ snapshots:
readable-stream: 3.6.2
xtend: 4.0.2
+ streamx@2.22.1:
+ dependencies:
+ fast-fifo: 1.3.2
+ text-decoder: 1.2.3
+ optionalDependencies:
+ bare-events: 2.5.4
+
strict-event-emitter-types@2.0.0: {}
+ string-argv@0.3.2: {}
+
string-template@0.2.1: {}
string-width@2.1.1:
@@ -22470,16 +25636,24 @@ snapshots:
strip-json-comments@3.1.1: {}
- style-loader@2.0.0(webpack@5.99.7):
+ strip-literal@3.0.0:
+ dependencies:
+ js-tokens: 9.0.1
+
+ strnum@1.1.2: {}
+
+ style-loader@2.0.0(webpack@5.99.9):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.99.7
+ webpack: 5.99.9
style-mod@4.1.2: {}
styled_string@0.0.1: {}
+ stylis@4.3.6: {}
+
sucrase@3.35.0:
dependencies:
'@jridgewell/gen-mapping': 0.3.8
@@ -22504,6 +25678,23 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
+ svelte@5.34.9:
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@sveltejs/acorn-typescript': 1.0.5(acorn@8.15.0)
+ '@types/estree': 1.0.8
+ acorn: 8.15.0
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ clsx: 2.1.1
+ esm-env: 1.2.2
+ esrap: 1.4.9
+ is-reference: 3.0.3
+ locate-character: 3.0.0
+ magic-string: 0.30.17
+ zimmerframe: 1.1.2
+
svg-tags@1.0.0: {}
symbol-tree@3.2.4: {}
@@ -22522,7 +25713,7 @@ snapshots:
sync-disk-cache@2.1.0:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
heimdalljs: 0.2.6
mkdirp: 0.5.6
rimraf: 3.0.2
@@ -22532,10 +25723,12 @@ snapshots:
tabbable@5.3.3: {}
- tabster@8.5.4:
+ tabster@8.5.6:
dependencies:
keyborg: 2.6.0
tslib: 2.8.1
+ optionalDependencies:
+ '@rollup/rollup-linux-x64-gnu': 4.40.0
tailwindcss@3.4.17:
dependencies:
@@ -22553,11 +25746,11 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.1.1
- postcss: 8.5.3
- postcss-import: 15.1.0(postcss@8.5.3)
- postcss-js: 4.0.1(postcss@8.5.3)
- postcss-load-config: 4.0.2(postcss@8.5.3)
- postcss-nested: 6.2.0(postcss@8.5.3)
+ postcss: 8.5.6
+ postcss-import: 15.1.0(postcss@8.5.6)
+ postcss-js: 4.0.1(postcss@8.5.6)
+ postcss-load-config: 4.0.2(postcss@8.5.6)
+ postcss-nested: 6.2.0(postcss@8.5.6)
postcss-selector-parser: 6.1.2
resolve: 1.22.10
sucrase: 3.35.0
@@ -22570,7 +25763,23 @@ snapshots:
js-yaml: 3.14.1
minipass: 2.9.0
- tapable@2.2.1: {}
+ tapable@2.2.2: {}
+
+ tar-fs@3.0.10:
+ dependencies:
+ pump: 3.0.3
+ tar-stream: 3.1.7
+ optionalDependencies:
+ bare-fs: 4.1.5
+ bare-path: 3.0.0
+ transitivePeerDependencies:
+ - bare-buffer
+
+ tar-stream@3.1.7:
+ dependencies:
+ b4a: 1.6.7
+ fast-fifo: 1.3.2
+ streamx: 2.22.1
tar@6.2.1:
dependencies:
@@ -22581,6 +25790,8 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
+ tarparser@0.0.4: {}
+
temp-dir@2.0.0: {}
temp-fs@0.9.9:
@@ -22596,36 +25807,36 @@ snapshots:
mkdirp: 0.5.6
rimraf: 2.6.3
- terser-webpack-plugin@5.3.14(esbuild@0.25.3)(webpack@5.99.7):
+ terser-webpack-plugin@5.3.14(esbuild@0.25.5)(webpack@5.99.9):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
+ terser: 5.43.1
+ webpack: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
optionalDependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.5
- terser-webpack-plugin@5.3.14(webpack@5.99.7):
+ terser-webpack-plugin@5.3.14(webpack@5.99.9):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.99.7
+ terser: 5.43.1
+ webpack: 5.99.9
- terser@5.39.0:
+ terser@5.43.1:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.14.1
+ acorn: 8.15.0
commander: 2.20.3
source-map-support: 0.5.21
testem-failure-only-reporter@1.0.0(handlebars@4.7.8)(underscore@1.13.7):
dependencies:
- testem: 3.15.2(handlebars@4.7.8)(underscore@1.13.7)
+ testem: 3.16.0(handlebars@4.7.8)(underscore@1.13.7)
transitivePeerDependencies:
- arc-templates
- atpl
@@ -22683,7 +25894,7 @@ snapshots:
- walrus
- whiskers
- testem@3.15.2(handlebars@4.7.8)(underscore@1.13.7):
+ testem@3.16.0(handlebars@4.7.8)(underscore@1.13.7):
dependencies:
'@xmldom/xmldom': 0.8.10
backbone: 1.6.1
@@ -22767,6 +25978,10 @@ snapshots:
- walrus
- whiskers
+ text-decoder@1.2.3:
+ dependencies:
+ b4a: 1.6.7
+
textextensions@2.6.0: {}
thenify-all@1.6.0:
@@ -22810,16 +26025,18 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.13:
+ tinyexec@1.0.1: {}
+
+ tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.2)
picomatch: 4.0.2
- tinypool@1.0.2: {}
+ tinypool@1.1.1: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
+ tinyspy@4.0.3: {}
tldts-core@6.1.86: {}
@@ -22843,6 +26060,12 @@ snapshots:
tmpl@1.0.5: {}
+ to-buffer@1.2.1:
+ dependencies:
+ isarray: '@nolyfill/isarray@1.0.44'
+ safe-buffer: 5.2.1
+ typed-array-buffer: 1.0.3
+
to-object-path@0.3.0:
dependencies:
kind-of: 3.2.2
@@ -22869,6 +26092,8 @@ snapshots:
toposort@2.0.2: {}
+ totalist@3.0.1: {}
+
tough-cookie@5.1.2:
dependencies:
tldts: 6.1.86
@@ -22879,30 +26104,21 @@ snapshots:
dependencies:
punycode: 2.3.1
- tracked-built-ins@3.4.0(@babel/core@7.27.1):
- dependencies:
- '@embroider/addon-shim': 1.10.0
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
- ember-tracked-storage-polyfill: 1.0.0
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
-
- tracked-built-ins@4.0.0(@babel/core@7.27.1):
+ tracked-built-ins@4.0.0(@babel/core@7.27.7):
dependencies:
'@embroider/addon-shim': 1.10.0
- decorator-transforms: 2.3.0(@babel/core@7.27.1)
+ decorator-transforms: 2.3.0(@babel/core@7.27.7)
ember-tracked-storage-polyfill: 1.0.0
transitivePeerDependencies:
- '@babel/core'
- supports-color
- tracked-toolbox@2.0.0(dd7c8c71e23b008546e35fcf85ff31fd):
+ tracked-toolbox@2.0.0(d5c4cd3aa2b6d7c8399ab0614013717b):
dependencies:
'@embroider/addon-shim': 1.10.0
- ember-cache-primitive-polyfill: 1.0.1(@babel/core@7.27.1)
+ ember-cache-primitive-polyfill: 1.0.1(@babel/core@7.27.7)
optionalDependencies:
- ember-source: 6.4.0(@glimmer/component@2.0.0)(rsvp@4.8.5)
+ ember-source: 6.7.0-alpha.3(patch_hash=ce25d468f4e598d7dacd16a6d27af9254ff94a9194ae612aec34111a65476b80)(@glimmer/component@2.0.0)(rsvp@4.8.5)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -22921,7 +26137,7 @@ snapshots:
tree-sync@2.1.0:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1
fs-tree-diff: 2.0.1
mkdirp: 0.5.6
quick-temp: 0.1.8
@@ -22933,14 +26149,21 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@2.1.0(typescript@5.7.3):
+ ts-api-utils@2.1.0(typescript@5.8.3):
dependencies:
- typescript: 5.7.3
+ typescript: 5.8.3
- ts-clone-node@3.0.0(typescript@5.7.3):
+ ts-clone-node@3.0.0(typescript@5.8.3):
dependencies:
- compatfactory: 3.0.0(typescript@5.7.3)
- typescript: 5.7.3
+ compatfactory: 3.0.0(typescript@5.8.3)
+ typescript: 5.8.3
+
+ ts-declaration-location@1.0.7(typescript@5.8.3):
+ dependencies:
+ picomatch: 4.0.2
+ typescript: 5.8.3
+
+ ts-dedent@2.2.0: {}
ts-interface-checker@0.1.13: {}
@@ -22960,37 +26183,37 @@ snapshots:
tuf-js@2.2.1:
dependencies:
'@tufjs/models': 2.0.1
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
make-fetch-happen: 13.0.1
transitivePeerDependencies:
- supports-color
- turbo-darwin-64@2.5.2:
+ turbo-darwin-64@2.5.4:
optional: true
- turbo-darwin-arm64@2.5.2:
+ turbo-darwin-arm64@2.5.4:
optional: true
- turbo-linux-64@2.5.2:
+ turbo-linux-64@2.5.4:
optional: true
- turbo-linux-arm64@2.5.2:
+ turbo-linux-arm64@2.5.4:
optional: true
- turbo-windows-64@2.5.2:
+ turbo-windows-64@2.5.4:
optional: true
- turbo-windows-arm64@2.5.2:
+ turbo-windows-arm64@2.5.4:
optional: true
- turbo@2.5.2:
+ turbo@2.5.4:
optionalDependencies:
- turbo-darwin-64: 2.5.2
- turbo-darwin-arm64: 2.5.2
- turbo-linux-64: 2.5.2
- turbo-linux-arm64: 2.5.2
- turbo-windows-64: 2.5.2
- turbo-windows-arm64: 2.5.2
+ turbo-darwin-64: 2.5.4
+ turbo-darwin-arm64: 2.5.4
+ turbo-linux-64: 2.5.4
+ turbo-linux-arm64: 2.5.4
+ turbo-windows-64: 2.5.4
+ turbo-windows-arm64: 2.5.4
type-check@0.4.0:
dependencies:
@@ -23000,52 +26223,64 @@ snapshots:
type-fest@0.21.3: {}
- type-fest@4.40.1: {}
+ type-fest@2.19.0: {}
+
+ type-fest@4.26.0: {}
+
+ type-fest@4.41.0: {}
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
+ typed-array-buffer@1.0.3:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-typed-array: 1.1.15
+
typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
- typedoc@0.28.3(typescript@5.7.3):
+ typedoc@0.28.4(typescript@5.8.3):
dependencies:
- '@gerrit0/mini-shiki': 3.3.0
+ '@gerrit0/mini-shiki': 3.7.0
lunr: 2.3.9
markdown-it: 14.1.0
minimatch: 9.0.5
- typescript: 5.7.3
- yaml: 2.7.1
+ typescript: 5.8.3
+ yaml: 2.8.0
typesafe-path@0.2.2: {}
- typescript-auto-import-cache@0.3.5:
+ typescript-auto-import-cache@0.3.6:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
- typescript-eslint@8.31.1(54d0da154413141e84f5f122231c9cc2):
+ typescript-eslint@8.35.0(f34568f6b8e005732038c441d846657e):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.31.1(d59bc2466e37e4c727f298aa0ba509e7)
- '@typescript-eslint/parser': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- '@typescript-eslint/utils': 8.31.1(54d0da154413141e84f5f122231c9cc2)
- eslint: 9.25.1(jiti@1.21.7)
- typescript: 5.7.3
+ '@typescript-eslint/eslint-plugin': 8.35.0(9f9d3da3b040ff2bc796e11469979659)
+ '@typescript-eslint/parser': 8.35.0(f34568f6b8e005732038c441d846657e)
+ '@typescript-eslint/utils': 8.35.0(f34568f6b8e005732038c441d846657e)
+ eslint: 9.29.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
typescript-memoize@1.1.1: {}
- typescript@5.7.3: {}
+ typescript@5.8.2: {}
- ua-parser-js@1.0.40: {}
+ typescript@5.8.3: {}
- uc.micro@1.0.6: {}
+ ua-parser-js@1.0.40: {}
uc.micro@2.1.0: {}
+ ufo@1.6.1: {}
+
uglify-js@3.19.3:
optional: true
@@ -23058,6 +26293,12 @@ snapshots:
undici-types@6.21.0: {}
+ undici-types@7.8.0: {}
+
+ undici@6.21.3: {}
+
+ undici@7.10.0: {}
+
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
@@ -23100,6 +26341,10 @@ snapshots:
is-extendable: 0.1.1
set-value: 2.0.1
+ union@0.5.0:
+ dependencies:
+ qs: 6.14.0
+
unique-filename@1.1.1:
dependencies:
unique-slug: 2.0.2
@@ -23170,7 +26415,7 @@ snapshots:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- universal-user-agent@7.0.2: {}
+ universal-user-agent@7.0.3: {}
universalify@0.1.2: {}
@@ -23178,38 +26423,50 @@ snapshots:
unpipe@1.0.0: {}
+ unplugin-icons@22.1.0:
+ dependencies:
+ '@antfu/install-pkg': 1.1.0
+ '@iconify/utils': 2.3.0
+ debug: 4.4.1
+ local-pkg: 1.1.1
+ unplugin: 2.3.5
+ transitivePeerDependencies:
+ - supports-color
+
unplugin@1.16.1:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
webpack-virtual-modules: 0.6.2
- unplugin@2.3.2:
+ unplugin@2.3.5:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
picomatch: 4.0.2
webpack-virtual-modules: 0.6.2
- unrs-resolver@1.7.2:
+ unrs-resolver@1.9.2:
dependencies:
- napi-postinstall: 0.2.3
+ napi-postinstall: 0.2.4
optionalDependencies:
- '@unrs/resolver-binding-darwin-arm64': 1.7.2
- '@unrs/resolver-binding-darwin-x64': 1.7.2
- '@unrs/resolver-binding-freebsd-x64': 1.7.2
- '@unrs/resolver-binding-linux-arm-gnueabihf': 1.7.2
- '@unrs/resolver-binding-linux-arm-musleabihf': 1.7.2
- '@unrs/resolver-binding-linux-arm64-gnu': 1.7.2
- '@unrs/resolver-binding-linux-arm64-musl': 1.7.2
- '@unrs/resolver-binding-linux-ppc64-gnu': 1.7.2
- '@unrs/resolver-binding-linux-riscv64-gnu': 1.7.2
- '@unrs/resolver-binding-linux-riscv64-musl': 1.7.2
- '@unrs/resolver-binding-linux-s390x-gnu': 1.7.2
- '@unrs/resolver-binding-linux-x64-gnu': 1.7.2
- '@unrs/resolver-binding-linux-x64-musl': 1.7.2
- '@unrs/resolver-binding-wasm32-wasi': 1.7.2
- '@unrs/resolver-binding-win32-arm64-msvc': 1.7.2
- '@unrs/resolver-binding-win32-ia32-msvc': 1.7.2
- '@unrs/resolver-binding-win32-x64-msvc': 1.7.2
+ '@unrs/resolver-binding-android-arm-eabi': 1.9.2
+ '@unrs/resolver-binding-android-arm64': 1.9.2
+ '@unrs/resolver-binding-darwin-arm64': 1.9.2
+ '@unrs/resolver-binding-darwin-x64': 1.9.2
+ '@unrs/resolver-binding-freebsd-x64': 1.9.2
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.9.2
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.9.2
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.9.2
+ '@unrs/resolver-binding-linux-arm64-musl': 1.9.2
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.9.2
+ '@unrs/resolver-binding-linux-riscv64-gnu': 1.9.2
+ '@unrs/resolver-binding-linux-riscv64-musl': 1.9.2
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.9.2
+ '@unrs/resolver-binding-linux-x64-gnu': 1.9.2
+ '@unrs/resolver-binding-linux-x64-musl': 1.9.2
+ '@unrs/resolver-binding-wasm32-wasi': 1.9.2
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.9.2
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.9.2
+ '@unrs/resolver-binding-win32-x64-msvc': 1.9.2
unset-value@1.0.0:
dependencies:
@@ -23218,9 +26475,9 @@ snapshots:
upath@2.0.1: {}
- update-browserslist-db@1.1.3(browserslist@4.24.4):
+ update-browserslist-db@1.1.3(browserslist@4.25.1):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.25.1
escalade: 3.2.0
picocolors: 1.1.1
@@ -23230,6 +26487,8 @@ snapshots:
urix@0.1.0: {}
+ url-join@4.0.1: {}
+
url-parse-lax@3.0.0:
dependencies:
prepend-http: 2.0.0
@@ -23239,8 +26498,12 @@ snapshots:
punycode: 1.4.1
qs: 6.14.0
+ urlpattern-polyfill@10.1.0: {}
+
use@3.1.1: {}
+ userhome@1.0.1: {}
+
username-sync@1.0.3: {}
util-deprecate@1.0.2: {}
@@ -23257,6 +26520,8 @@ snapshots:
uuid@10.0.0: {}
+ uuid@11.1.0: {}
+
uuid@8.3.2: {}
uvu@0.5.6:
@@ -23266,8 +26531,6 @@ snapshots:
kleur: 4.1.5
sade: 1.8.1
- v8-compile-cache@2.4.0: {}
-
validate-npm-package-license@3.0.4:
dependencies:
spdx-correct: 3.2.0
@@ -23275,7 +26538,7 @@ snapshots:
validate-npm-package-name@5.0.1: {}
- validate-npm-package-name@6.0.0: {}
+ validate-npm-package-name@6.0.1: {}
vary@1.1.2: {}
@@ -23284,6 +26547,11 @@ snapshots:
'@types/unist': 2.0.11
vfile: 5.3.7
+ vfile-location@5.0.3:
+ dependencies:
+ '@types/unist': 3.0.3
+ vfile: 6.0.3
+
vfile-message@3.1.4:
dependencies:
'@types/unist': 2.0.11
@@ -23306,13 +26574,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@3.1.2(f29614dea4066c5dfbbb8cdc00ed66a1):
+ vite-node@3.2.4(8c458d10456fc315d1676c3f4c279c5f):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -23327,65 +26595,98 @@ snapshots:
- tsx
- yaml
- vite-plugin-node-polyfills@0.23.0(31546948ebf91a14ce3f9df2a33bf7d7):
+ vite-plugin-circular-dependency@0.5.0(rollup@4.44.0):
dependencies:
- '@rollup/plugin-inject': 5.0.5(rollup@4.40.1)
- node-stdlib-browser: 1.3.1
- vite: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
+ chalk: 4.1.2
transitivePeerDependencies:
- rollup
- vite@5.4.19(@types/node@22.15.3)(terser@5.39.0):
+ vite-plugin-dts@4.5.4(2f023d249cd22ff295c10df6dedd6efe):
dependencies:
- esbuild: 0.21.5
- postcss: 8.5.3
- rollup: 4.40.1
+ '@microsoft/api-extractor': 7.52.8(@types/node@24.0.4)
+ '@rollup/pluginutils': 5.2.0(rollup@4.44.0)
+ '@volar/typescript': 2.4.15
+ '@vue/language-core': 2.2.0(typescript@5.8.3)
+ compare-versions: 6.1.1
+ debug: 4.4.1(supports-color@8.1.1)
+ kolorist: 1.8.0
+ local-pkg: 1.1.1
+ magic-string: 0.30.17
+ typescript: 5.8.3
optionalDependencies:
- '@types/node': 22.15.3
- fsevents: 2.3.3
- terser: 5.39.0
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ transitivePeerDependencies:
+ - '@types/node'
+ - rollup
+ - supports-color
+
+ vite-plugin-mkcert@1.17.8(b6180693ed26d1b7a1153265ba481eba):
+ dependencies:
+ axios: 1.10.0(debug@4.4.1)
+ debug: 4.4.1
+ picocolors: 1.1.1
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ transitivePeerDependencies:
+ - supports-color
+
+ vite-plugin-node-polyfills@0.23.0(c12a7027306cfedcbe4a580b859170c2):
+ dependencies:
+ '@rollup/plugin-inject': 5.0.5(rollup@4.44.0)
+ node-stdlib-browser: 1.3.1
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ transitivePeerDependencies:
+ - rollup
+
+ vite-plugin-wasm@3.4.1(b6180693ed26d1b7a1153265ba481eba):
+ dependencies:
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
- vite@6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1):
+ vite@6.3.5(8c458d10456fc315d1676c3f4c279c5f):
dependencies:
- esbuild: 0.25.3
- fdir: 6.4.4(picomatch@4.0.2)
+ esbuild: 0.25.5
+ fdir: 6.4.6(picomatch@4.0.2)
picomatch: 4.0.2
- postcss: 8.5.3
- rollup: 4.40.1
- tinyglobby: 0.2.13
+ postcss: 8.5.6
+ rollup: 4.44.0
+ tinyglobby: 0.2.14
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
fsevents: 2.3.3
- jiti: 1.21.7
- terser: 5.39.0
- yaml: 2.7.1
-
- vitest@3.1.2(212b84efdd1fb3a1616191536ec10813):
- dependencies:
- '@vitest/expect': 3.1.2
- '@vitest/mocker': 3.1.2(31d608db47cd080961b235354555fefa)
- '@vitest/pretty-format': 3.1.2
- '@vitest/runner': 3.1.2
- '@vitest/snapshot': 3.1.2
- '@vitest/spy': 3.1.2
- '@vitest/utils': 3.1.2
+ jiti: 2.4.2
+ terser: 5.43.1
+ yaml: 2.8.0
+
+ vitest@3.2.4(fba6a93057071088ca51d2200171aeef):
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(b6180693ed26d1b7a1153265ba481eba)
+ '@vitest/pretty-format': 3.2.4
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
chai: 5.2.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
+ picomatch: 4.0.2
std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.13
- tinypool: 1.0.2
+ tinyglobby: 0.2.14
+ tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.3.4(f29614dea4066c5dfbbb8cdc00ed66a1)
- vite-node: 3.1.2(f29614dea4066c5dfbbb8cdc00ed66a1)
+ vite: 6.3.5(8c458d10456fc315d1676c3f4c279c5f)
+ vite-node: 3.2.4(8c458d10456fc315d1676c3f4c279c5f)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.15.3
+ '@types/node': 24.0.4
+ '@vitest/browser': 3.2.4(2e993a30aa94f334ebb078d5cc3beeef)
+ '@vitest/ui': 3.2.4(vitest@3.2.4)
jsdom: 25.0.1
transitivePeerDependencies:
- jiti
@@ -23403,16 +26704,31 @@ snapshots:
vm-browserify@1.1.2: {}
- volar-service-typescript@0.0.64(@volar/language-service@2.4.11):
+ volar-service-html@0.0.64(@volar/language-service@2.4.12):
+ dependencies:
+ vscode-html-languageservice: 5.5.0
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.1.0
+ optionalDependencies:
+ '@volar/language-service': 2.4.12
+
+ volar-service-typescript@0.0.64(@volar/language-service@2.4.12):
dependencies:
path-browserify: 1.0.1
- semver: 7.7.1
- typescript-auto-import-cache: 0.3.5
+ semver: 7.7.2
+ typescript-auto-import-cache: 0.3.6
vscode-languageserver-textdocument: 1.0.12
vscode-nls: 5.2.0
vscode-uri: 3.1.0
optionalDependencies:
- '@volar/language-service': 2.4.11
+ '@volar/language-service': 2.4.12
+
+ vscode-html-languageservice@5.5.0:
+ dependencies:
+ '@vscode/l10n': 0.0.18
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.1.0
vscode-json-languageservice@4.2.1:
dependencies:
@@ -23439,14 +26755,34 @@ snapshots:
vscode-nls@5.2.0: {}
+ vscode-uri@3.0.8: {}
+
vscode-uri@3.1.0: {}
+ vue@3.5.17(typescript@5.8.3):
+ dependencies:
+ '@vue/compiler-dom': 3.5.17
+ '@vue/compiler-sfc': 3.5.17
+ '@vue/runtime-dom': 3.5.17
+ '@vue/server-renderer': 3.5.17(vue@3.5.17(typescript@5.8.3))
+ '@vue/shared': 3.5.17
+ optionalDependencies:
+ typescript: 5.8.3
+
w3c-keyname@2.2.8: {}
w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
+ wait-port@1.1.0:
+ dependencies:
+ chalk: 4.1.2
+ commander: 9.5.0
+ debug: 4.4.1(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
walk-sync@0.3.4:
dependencies:
ensure-posix-path: 1.1.1
@@ -23484,7 +26820,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- watchpack@2.4.2:
+ watchpack@2.4.4:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -23495,16 +26831,69 @@ snapshots:
web-namespaces@2.0.1: {}
+ web-streams-polyfill@3.3.3: {}
+
+ webdriver@9.16.2:
+ dependencies:
+ '@types/node': 20.19.1
+ '@types/ws': 8.18.1
+ '@wdio/config': 9.16.2
+ '@wdio/logger': 9.16.2
+ '@wdio/protocols': 9.16.2
+ '@wdio/types': 9.16.2
+ '@wdio/utils': 9.16.2
+ deepmerge-ts: 7.1.5
+ undici: 6.21.3
+ ws: 8.18.2
+ transitivePeerDependencies:
+ - bare-buffer
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ webdriverio@9.16.2:
+ dependencies:
+ '@types/node': 20.19.1
+ '@types/sinonjs__fake-timers': 8.1.5
+ '@wdio/config': 9.16.2
+ '@wdio/logger': 9.16.2
+ '@wdio/protocols': 9.16.2
+ '@wdio/repl': 9.16.2
+ '@wdio/types': 9.16.2
+ '@wdio/utils': 9.16.2
+ archiver: 7.0.1
+ aria-query: 5.3.2
+ cheerio: 1.1.0
+ css-shorthand-properties: 1.1.2
+ css-value: 0.0.1
+ grapheme-splitter: 1.0.4
+ htmlfy: 0.6.7
+ is-plain-obj: 4.1.0
+ jszip: 3.10.1
+ lodash.clonedeep: 4.5.0
+ lodash.zip: 4.2.0
+ query-selector-shadow-dom: 1.0.1
+ resq: 1.11.0
+ rgb2hex: 0.2.5
+ serialize-error: 11.0.3
+ urlpattern-polyfill: 10.1.0
+ webdriver: 9.16.2
+ transitivePeerDependencies:
+ - bare-buffer
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
webidl-conversions@3.0.1: {}
webidl-conversions@7.0.0: {}
- webpack-cli@6.0.1(webpack@5.99.7):
+ webpack-cli@6.0.1(webpack@5.99.9):
dependencies:
'@discoveryjs/json-ext': 0.6.3
- '@webpack-cli/configtest': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.7)
- '@webpack-cli/info': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.7)
- '@webpack-cli/serve': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.7)
+ '@webpack-cli/configtest': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.9)
+ '@webpack-cli/info': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.9)
+ '@webpack-cli/serve': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.9)
colorette: 2.0.20
commander: 12.1.0
cross-spawn: 7.0.6
@@ -23513,7 +26902,7 @@ snapshots:
import-local: 3.2.0
interpret: 3.1.1
rechoir: 0.8.0
- webpack: 5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1)
+ webpack: 5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1)
webpack-merge: 6.0.1
webpack-merge@6.0.1:
@@ -23529,22 +26918,22 @@ snapshots:
source-list-map: 2.0.1
source-map: 0.6.1
- webpack-sources@3.2.3: {}
+ webpack-sources@3.3.3: {}
webpack-virtual-modules@0.6.2: {}
- webpack@5.99.7:
+ webpack@5.99.9:
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.14.1
- browserslist: 4.24.4
+ acorn: 8.15.0
+ browserslist: 4.25.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.18.2
es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
@@ -23555,27 +26944,27 @@ snapshots:
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 4.3.2
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(webpack@5.99.7)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ tapable: 2.2.2
+ terser-webpack-plugin: 5.3.14(webpack@5.99.9)
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.99.7(esbuild@0.25.3)(webpack-cli@6.0.1):
+ webpack@5.99.9(esbuild@0.25.5)(webpack-cli@6.0.1):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.14.1
- browserslist: 4.24.4
+ acorn: 8.15.0
+ browserslist: 4.25.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.18.2
es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
@@ -23586,12 +26975,12 @@ snapshots:
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 4.3.2
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(esbuild@0.25.3)(webpack@5.99.7)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ tapable: 2.2.2
+ terser-webpack-plugin: 5.3.14(esbuild@0.25.5)(webpack@5.99.9)
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
optionalDependencies:
- webpack-cli: 6.0.1(webpack@5.99.7)
+ webpack-cli: 6.0.1(webpack@5.99.9)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -23605,6 +26994,10 @@ snapshots:
websocket-extensions@0.1.4: {}
+ whatwg-encoding@2.0.0:
+ dependencies:
+ iconv-lite: 0.6.3
+
whatwg-encoding@3.1.1:
dependencies:
iconv-lite: 0.6.3
@@ -23666,7 +27059,7 @@ snapshots:
workerpool@3.1.2:
dependencies:
- '@babel/core': 7.27.1
+ '@babel/core': 7.27.7
object-assign: 4.1.1
rsvp: 4.8.5
transitivePeerDependencies:
@@ -23674,7 +27067,7 @@ snapshots:
workerpool@6.5.1: {}
- workerpool@9.2.0: {}
+ workerpool@9.3.2: {}
wrap-ansi@6.2.0:
dependencies:
@@ -23713,7 +27106,7 @@ snapshots:
ws@8.17.1: {}
- ws@8.18.1: {}
+ ws@8.18.2: {}
xdg-basedir@4.0.0: {}
@@ -23721,7 +27114,7 @@ snapshots:
xmlchars@2.2.0: {}
- xstate@5.19.2: {}
+ xstate@5.19.4: {}
xtend@4.0.2: {}
@@ -23738,7 +27131,7 @@ snapshots:
yaml@1.10.2: {}
- yaml@2.7.1: {}
+ yaml@2.8.0: {}
yargs-parser@20.2.9: {}
@@ -23771,10 +27164,10 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
- yarn-workspaces-list@0.2.0(@babel/core@7.27.1):
+ yarn-workspaces-list@0.2.0(@babel/core@7.27.7):
dependencies:
'@timhall/cli': 0.5.0
- '@timhall/dedent': 0.8.2(@babel/core@7.27.1)
+ '@timhall/dedent': 0.8.2(@babel/core@7.27.7)
find-yarn-workspace-root: 1.2.1
mri: 1.2.0
toposort: 2.0.2
@@ -23782,6 +27175,11 @@ snapshots:
- '@babel/core'
- supports-color
+ yauzl@2.10.0:
+ dependencies:
+ buffer-crc32: 0.2.13
+ fd-slicer: 1.1.0
+
yocto-queue@0.1.0: {}
yocto-queue@1.2.1: {}
@@ -23790,4 +27188,12 @@ snapshots:
yoctocolors@2.1.1: {}
+ zimmerframe@1.1.2: {}
+
+ zip-stream@6.0.1:
+ dependencies:
+ archiver-utils: 5.0.2
+ compress-commons: 6.0.2
+ readable-stream: 4.7.0
+
zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 79b4cd50f..ba71afa2e 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -14,6 +14,7 @@ packages:
- './packages/*'
- './packages/*/addon'
- './packages/*/test-app'
+ - './packages/repl-sdk/tests-self'
- './packages/app-support/*'
- './packages/app-support/*/addon'
- './packages/app-support/*/test-app'
diff --git a/spikes/es-module-shim/index.html b/spikes/es-module-shim/index.html
new file mode 100644
index 000000000..c69e1eff4
--- /dev/null
+++ b/spikes/es-module-shim/index.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+ JS Bin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/spikes/es-module-shim/package.json b/spikes/es-module-shim/package.json
new file mode 100644
index 000000000..b5e7e91b9
--- /dev/null
+++ b/spikes/es-module-shim/package.json
@@ -0,0 +1,18 @@
+{
+ "name": "@nullvoxpopuli/ember-repl-es-module-shim",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "start": "pnpm http-server -c-1"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "devDependencies": {
+ "http-server": "^14.1.1"
+ },
+ "volta": {
+ "extends": "../../package.json"
+ }
+}
diff --git a/spikes/url-shortening/package.json b/spikes/url-shortening/package.json
index 1ac9cdaaf..fadc4a228 100644
--- a/spikes/url-shortening/package.json
+++ b/spikes/url-shortening/package.json
@@ -14,11 +14,11 @@
},
"devDependencies": {
"@nullvoxpopuli/eslint-configs": "^5.0.0",
- "eslint": "^9.25.1",
- "prettier": "^3.5.2",
- "prettier-plugin-ember-template-tag": "2.0.4",
- "typescript": "5.7.3",
- "vitest": "^3.0.6"
+ "eslint": "^9.29.0",
+ "prettier": "^3.6.2",
+ "prettier-plugin-ember-template-tag": "2.0.6",
+ "typescript": "5.8.3",
+ "vitest": "^3.2.4"
},
"scripts": {
"lint": "pnpm -w exec lint",
diff --git a/turbo.json b/turbo.json
index 274c68f99..ab0e7a750 100644
--- a/turbo.json
+++ b/turbo.json
@@ -58,13 +58,22 @@
"dependsOn": ["build"]
},
"build:prod": { "outputs": ["dist/**"], "dependsOn": ["^build"] },
+ "build:test": { "outputs": ["dist/**"], "dependsOn": ["^build"] },
"build": {
"outputs": ["dist/**", "declarations/**"],
"dependsOn": ["^build"]
},
"test:node": {
"outputs": [],
- "dependsOn": []
+ "dependsOn": ["^build", "build:test"]
+ },
+ "test:firefox": {
+ "outputs": [],
+ "dependsOn": ["^build", "build:test"]
+ },
+ "test:chrome": {
+ "outputs": [],
+ "dependsOn": ["^build", "build:test"]
},
// Apps will have test:ember and test:browserstack
// They are separate so that they can cache independently
@@ -75,7 +84,7 @@
"EMBER_TRY_CURRENT_SCENARIO",
"EMBROIDER_TEST_SETUP_OPTIONS"
],
- "dependsOn": ["^build"]
+ "dependsOn": ["^build", "build:test"]
},
"test:browserstack": {
"dependsOn": ["^build"],