` elements, and calling `runQuery` directly.
+`
` elements automatically make their results available to child components (or pages, if used in a layout), while
+`runQuery` keeps the query scoped to the current page.
+
+### Using `
`
+
+#### Writing Queries
+
+To add a query to your page, use a `
` element with an `evidence-query-name` attribute (`lang=sql` is optional but recommended).
+
+Wrapping this in a `` tag will prevent formatters from changing your SQL.
+
+Example:
+
+```svelte
+
+SELECT * FROM my_first_table
+
+```
+
+When using `
`, you can interpolate variables from the page using _template string syntax_, Svelte syntax is not supported.
+
+Working Example:
+
+```svelte
+
+SELECT * FROM my_first_table WHERE user_id = '${selectedUserId}'
+
+```
+
+Broken Example:
+
+```svelte
+
+SELECT * FROM my_first_table WHERE user_id = '{selectedUserId}'
+
+```
+
+#### Accessing Queries
+
+To load queries that are placed on the page, create a reference to the queries store from `$evidence/queries`
+
+```svelte
+
+```
+
+`$queries` is a set of [`QueryStore`](https://github.com/evidence-dev/evidence/tree/main/packages/query-store) based on what is provided on the page.
+
+#### Full Example
+
+```svelte
+
+
+
+SELECT * FROM my_first_table
+
+
+{#if !$myFirstQuery.loaded}
+
+ Loading...
+{:else if $myFirstQuery.error}
+
+ Error: {$myFirstQuery.error.message}
+{:else}
+
+ {#each $myFirstQuery as row (row.id)}
+ Row ID: {row.id}
+ {:else}
+ No resuls available
+ {/each}
+{/if}
+```
+
+### Using `runQuery`
+
+#### Full Example
+
+```svelte
+
+
+
+{#if !$myFirstQuery.loaded}
+
+ Loading...
+{:else if $myFirstQuery.error}
+
+ Error: {$myFirstQuery.error.message}
+{:else}
+
+ {#each $myFirstQuery as row (row.id)}
+ Row ID: {row.id}
+ {:else}
+ No resuls available
+ {/each}
+{/if}
+```
+
+### Enabling SSR
+
+If you are using the [`
`](#using-code) method, all you need to do is make sure the server hook is installed.
+
+If you are using the [`runQuery`](#using-runquery) method, you will need to use the ` ` component.
+
+#### Configuring SSR Hook
+
+1. Ensure that you have a `./src/hooks.server.[js|ts]` file
+2. Create or update the `handle` function to match:
+
+ - To create:
+
+ ```javascript
+ import { ssrHook } from '$evidence/ssrHook.svelte.js';
+
+ /** @type {import('@sveltejs/kit').Handle} */
+ export async function handle({ event, resolve }) {
+ /** @type {{ name: string, queryString: string}[]} */
+ const presentQueries = [];
+ const response = await resolve(event, {
+ transformPageChunk: ssrHook(presentQueries)
+ });
+ return response;
+ }
+ ```
+
+ - If you already use `resolve` and `transformPageChunk`, you can chain the functions like so:
+
+ ```javascript
+ import { ssrHook } from '$evidence/ssrHook.svelte.js';
+
+ /** @type {import('@sveltejs/kit').Handle} */
+ export async function handle({ event, resolve }) {
+ /** @type {{ name: string, queryString: string}[]} */
+ const presentQueries = []
+ const evidenceChunkTransform = ssrHook(presentQueries)
+
+ const response = await resolve(event, {
+ transformPageChunk: ({html, done}) => {
+ // ... Do something to html
+ html = await evidenceChunkTransform({ html, done })
+ // ... Do other things to html
+ return html
+ });
+ return response;
+ }
+ ```
+
+#### Using ` `
+
+` ` registers your queries with the Evidence Preprocessor, which enables correct rehydration of your queries.
+
+```svelte
+
+
+
+```
diff --git a/packages/lib/sdk/package.json b/packages/lib/sdk/package.json
new file mode 100644
index 0000000000..972b9a9864
--- /dev/null
+++ b/packages/lib/sdk/package.json
@@ -0,0 +1,96 @@
+{
+ "name": "@evidence-dev/sdk",
+ "version": "0.0.1",
+ "description": "",
+ "bin": {
+ "evidence-sdk": "./src/cli.js",
+ "evidence": "./src/cli.js"
+ },
+ "exports": {
+ ".": {
+ "default": "./src/index.js",
+ "import": "./src/index.js",
+ "require": null,
+ "types": "./types/index.d.ts"
+ },
+ "./ambient": {
+ "default": null,
+ "import": null,
+ "node": null,
+ "require": null,
+ "types": "./src/types/virtuals.d.ts"
+ },
+ "./query-store": {
+ "default": "./src/query-store/index.js",
+ "import": "./src/query-store/index.js",
+ "require": null,
+ "types": "./src/query-store/index.d.ts"
+ }
+ },
+ "scripts": {
+ "prepack": "npm run check && npm run build",
+ "postinstall": "npm run build",
+ "test": "vitest",
+ "check:types": "tsc -p tsconfig.json --noEmit",
+ "check": "tsc -p tsconfig.json --noEmit && eslint src",
+ "build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
+ "build": "tsc -p tsconfig.json --emitDeclarationOnly",
+ "format": "prettier src -w",
+ "lint": "eslint src --fix",
+ "cli": "node ./src/cli.js"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "MIT",
+ "type": "module",
+ "dependencies": {
+ "@brianmd/citty": "^0.0.1",
+ "@clack/prompts": "^0.7.0",
+ "@evidence-dev/universal-sql": "^2.0.3",
+ "@steeze-ui/simple-icons": "^1.7.1",
+ "@steeze-ui/tabler-icons": "^2.1.1",
+ "@types/estree": "^1.0.5",
+ "@types/express": "^4.17.21",
+ "@types/jsdom": "^21.1.6",
+ "@types/lodash.merge": "^4.6.9",
+ "@types/node": "^20.11.0",
+ "@typescript-eslint/typescript-estree": "^6.18.1",
+ "@uwdata/mosaic-sql": "^0.4.0",
+ "@vitest/coverage-v8": "^1.2.0",
+ "chalk": "^5.3.0",
+ "chokidar": "^3.5.3",
+ "eslint": "^8.56.0",
+ "eslint-config-prettier": "^9.1.0",
+ "eslint-plugin-svelte": "^2.35.1",
+ "estree-walker": "^3.0.3",
+ "express": "^4.18.2",
+ "highlight.js": "^11.9.0",
+ "jsdom": "^23.2.0",
+ "lodash.merge": "^4.6.2",
+ "mdsvex": "^0.11.0",
+ "nanoid": "^5.0.4",
+ "ora": "^8.0.1",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^1.0.3",
+ "prettier": "^3.1.1",
+ "prettier-plugin-svelte": "^3.1.2",
+ "recast": "^0.23.4",
+ "svelte-sequential-preprocessor": "^2.0.1",
+ "sveltekit-autoimport": "^1.7.1",
+ "vite": "^5.0.11",
+ "vitest": "^1.1.3",
+ "yaml": "^2.3.4",
+ "zod": "^3.22.4"
+ },
+ "devDependencies": {
+ "@changesets/cli": "^2.27.1",
+ "memfs": "^4.6.0",
+ "svelte": "^4.2.8",
+ "typescript": "^5.3.3"
+ },
+ "peerDependencies": {
+ "@evidence-dev/universal-sql": "^2.0.1",
+ "nanoid": "^5.0.4",
+ "perfect-debounce": "^1.0.0"
+ }
+}
diff --git a/packages/lib/sdk/pnpm-lock.yaml b/packages/lib/sdk/pnpm-lock.yaml
new file mode 100644
index 0000000000..1f575f3f3d
--- /dev/null
+++ b/packages/lib/sdk/pnpm-lock.yaml
@@ -0,0 +1,5835 @@
+lockfileVersion: '6.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
+
+dependencies:
+ '@brianmd/citty':
+ specifier: ^0.0.1
+ version: 0.0.1
+ '@clack/prompts':
+ specifier: ^0.7.0
+ version: 0.7.0
+ '@evidence-dev/universal-sql':
+ specifier: ^2.0.3
+ version: 2.0.3
+ '@steeze-ui/simple-icons':
+ specifier: ^1.7.1
+ version: 1.7.1
+ '@steeze-ui/tabler-icons':
+ specifier: ^2.1.1
+ version: 2.1.1
+ '@types/estree':
+ specifier: ^1.0.5
+ version: 1.0.5
+ '@types/express':
+ specifier: ^4.17.21
+ version: 4.17.21
+ '@types/jsdom':
+ specifier: ^21.1.6
+ version: 21.1.6
+ '@types/lodash.merge':
+ specifier: ^4.6.9
+ version: 4.6.9
+ '@types/node':
+ specifier: ^20.11.2
+ version: 20.11.2
+ '@typescript-eslint/typescript-estree':
+ specifier: ^6.18.1
+ version: 6.18.1(typescript@5.3.3)
+ '@uwdata/mosaic-sql':
+ specifier: ^0.4.0
+ version: 0.4.0
+ '@vitest/coverage-v8':
+ specifier: ^1.2.0
+ version: 1.2.0(vitest@1.2.0)
+ chalk:
+ specifier: ^5.3.0
+ version: 5.3.0
+ chokidar:
+ specifier: ^3.5.3
+ version: 3.5.3
+ eslint:
+ specifier: ^8.56.0
+ version: 8.56.0
+ eslint-config-prettier:
+ specifier: ^9.1.0
+ version: 9.1.0(eslint@8.56.0)
+ eslint-plugin-svelte:
+ specifier: ^2.35.1
+ version: 2.35.1(eslint@8.56.0)(svelte@4.2.8)
+ estree-walker:
+ specifier: ^3.0.3
+ version: 3.0.3
+ express:
+ specifier: ^4.18.2
+ version: 4.18.2
+ highlight.js:
+ specifier: ^11.9.0
+ version: 11.9.0
+ jsdom:
+ specifier: ^23.2.0
+ version: 23.2.0
+ lodash.merge:
+ specifier: ^4.6.2
+ version: 4.6.2
+ mdsvex:
+ specifier: ^0.11.0
+ version: 0.11.0(svelte@4.2.8)
+ nanoid:
+ specifier: ^5.0.4
+ version: 5.0.4
+ ora:
+ specifier: ^8.0.1
+ version: 8.0.1
+ perfect-debounce:
+ specifier: ^1.0.0
+ version: 1.0.0
+ pkg-types:
+ specifier: ^1.0.3
+ version: 1.0.3
+ prettier:
+ specifier: ^3.1.1
+ version: 3.2.2
+ prettier-plugin-svelte:
+ specifier: ^3.1.2
+ version: 3.1.2(prettier@3.2.2)(svelte@4.2.8)
+ prettier-plugin-tailwindcss:
+ specifier: ^0.5.11
+ version: 0.5.11(prettier-plugin-svelte@3.1.2)(prettier@3.2.2)
+ recast:
+ specifier: ^0.23.4
+ version: 0.23.4
+ svelte-sequential-preprocessor:
+ specifier: ^2.0.1
+ version: 2.0.1
+ sveltekit-autoimport:
+ specifier: ^1.7.1
+ version: 1.7.1(@sveltejs/kit@1.30.3)
+ vite:
+ specifier: ^5.0.11
+ version: 5.0.12(@types/node@20.11.2)
+ vitest:
+ specifier: ^1.1.3
+ version: 1.2.0(@types/node@20.11.2)(jsdom@23.2.0)
+ yaml:
+ specifier: ^2.3.4
+ version: 2.3.4
+ zod:
+ specifier: ^3.22.4
+ version: 3.22.4
+
+devDependencies:
+ '@changesets/cli':
+ specifier: ^2.27.1
+ version: 2.27.1
+ memfs:
+ specifier: ^4.6.0
+ version: 4.6.0(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)
+ svelte:
+ specifier: ^4.2.8
+ version: 4.2.8
+ typescript:
+ specifier: ^5.3.3
+ version: 5.3.3
+
+packages:
+
+ /@aashutoshrathi/word-wrap@1.2.6:
+ resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /@ampproject/remapping@2.2.1:
+ resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.21
+
+ /@asamuzakjp/dom-selector@2.0.2:
+ resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==}
+ dependencies:
+ bidi-js: 1.0.3
+ css-tree: 2.3.1
+ is-potential-custom-element-name: 1.0.1
+ dev: false
+
+ /@babel/code-frame@7.23.5:
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.23.4
+ chalk: 2.4.2
+ dev: true
+
+ /@babel/helper-string-parser@7.23.4:
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-validator-identifier@7.22.20:
+ resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ engines: {node: '>=6.9.0'}
+
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ dev: true
+
+ /@babel/parser@7.23.6:
+ resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.6
+ dev: false
+
+ /@babel/runtime@7.23.8:
+ resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.1
+ dev: true
+
+ /@babel/types@7.23.6:
+ resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+ dev: false
+
+ /@bcoe/v8-coverage@0.2.3:
+ resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+ dev: false
+
+ /@brianmd/citty@0.0.1:
+ resolution: {integrity: sha512-GIw4FjBrNMqXVACK6UAIr2zDiRdxm+t2k9IpR04e2OGZ8zHy1HPVEGoofqoaHCfqeJtn3tRR5uQM6DgGuKZHmw==}
+ dependencies:
+ consola: 3.2.3
+ dev: false
+
+ /@changesets/apply-release-plan@7.0.0:
+ resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/config': 3.0.0
+ '@changesets/get-version-range-type': 0.4.0
+ '@changesets/git': 3.0.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ detect-indent: 6.1.0
+ fs-extra: 7.0.1
+ lodash.startcase: 4.4.0
+ outdent: 0.5.0
+ prettier: 2.8.8
+ resolve-from: 5.0.0
+ semver: 7.5.4
+ dev: true
+
+ /@changesets/assemble-release-plan@6.0.0:
+ resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ semver: 7.5.4
+ dev: true
+
+ /@changesets/changelog-git@0.2.0:
+ resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
+ dependencies:
+ '@changesets/types': 6.0.0
+ dev: true
+
+ /@changesets/cli@2.27.1:
+ resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==}
+ hasBin: true
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/apply-release-plan': 7.0.0
+ '@changesets/assemble-release-plan': 6.0.0
+ '@changesets/changelog-git': 0.2.0
+ '@changesets/config': 3.0.0
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/get-release-plan': 4.0.0
+ '@changesets/git': 3.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/pre': 2.0.0
+ '@changesets/read': 0.6.0
+ '@changesets/types': 6.0.0
+ '@changesets/write': 0.3.0
+ '@manypkg/get-packages': 1.1.3
+ '@types/semver': 7.5.6
+ ansi-colors: 4.1.3
+ chalk: 2.4.2
+ ci-info: 3.9.0
+ enquirer: 2.4.1
+ external-editor: 3.1.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ meow: 6.1.1
+ outdent: 0.5.0
+ p-limit: 2.3.0
+ preferred-pm: 3.1.2
+ resolve-from: 5.0.0
+ semver: 7.5.4
+ spawndamnit: 2.0.0
+ term-size: 2.2.1
+ tty-table: 4.2.3
+ dev: true
+
+ /@changesets/config@3.0.0:
+ resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==}
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ micromatch: 4.0.5
+ dev: true
+
+ /@changesets/errors@0.2.0:
+ resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
+ dependencies:
+ extendable-error: 0.1.7
+ dev: true
+
+ /@changesets/get-dependents-graph@2.0.0:
+ resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==}
+ dependencies:
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ chalk: 2.4.2
+ fs-extra: 7.0.1
+ semver: 7.5.4
+ dev: true
+
+ /@changesets/get-release-plan@4.0.0:
+ resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/assemble-release-plan': 6.0.0
+ '@changesets/config': 3.0.0
+ '@changesets/pre': 2.0.0
+ '@changesets/read': 0.6.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ dev: true
+
+ /@changesets/get-version-range-type@0.4.0:
+ resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
+ dev: true
+
+ /@changesets/git@3.0.0:
+ resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ is-subdir: 1.2.0
+ micromatch: 4.0.5
+ spawndamnit: 2.0.0
+ dev: true
+
+ /@changesets/logger@0.1.0:
+ resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==}
+ dependencies:
+ chalk: 2.4.2
+ dev: true
+
+ /@changesets/parse@0.4.0:
+ resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
+ dependencies:
+ '@changesets/types': 6.0.0
+ js-yaml: 3.14.1
+ dev: true
+
+ /@changesets/pre@2.0.0:
+ resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ dev: true
+
+ /@changesets/read@0.6.0:
+ resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/git': 3.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/parse': 0.4.0
+ '@changesets/types': 6.0.0
+ chalk: 2.4.2
+ fs-extra: 7.0.1
+ p-filter: 2.1.0
+ dev: true
+
+ /@changesets/types@4.1.0:
+ resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
+ dev: true
+
+ /@changesets/types@6.0.0:
+ resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
+ dev: true
+
+ /@changesets/write@0.3.0:
+ resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/types': 6.0.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ prettier: 2.8.8
+ dev: true
+
+ /@clack/core@0.3.3:
+ resolution: {integrity: sha512-5ZGyb75BUBjlll6eOa1m/IZBxwk91dooBWhPSL67sWcLS0zt9SnswRL0l26TVdBhb0wnWORRxUn//uH6n4z7+A==}
+ dependencies:
+ picocolors: 1.0.0
+ sisteransi: 1.0.5
+ dev: false
+
+ /@clack/prompts@0.7.0:
+ resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==}
+ dependencies:
+ '@clack/core': 0.3.3
+ picocolors: 1.0.0
+ sisteransi: 1.0.5
+ dev: false
+ bundledDependencies:
+ - is-unicode-supported
+
+ /@duckdb/duckdb-wasm@1.27.0:
+ resolution: {integrity: sha512-qx0OjbS1NWAWZSU6hJb6bbyhN48LQn5kO54XsGeBdXbtJYDpPWGfTksP6meWsH8DKCUJIwAXLLImuGvIcY0l0A==}
+ dependencies:
+ apache-arrow: 11.0.0
+ dev: false
+
+ /@esbuild/aix-ppc64@0.19.11:
+ resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/android-arm64@0.19.11:
+ resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/android-arm@0.19.11:
+ resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/android-x64@0.19.11:
+ resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/darwin-arm64@0.19.11:
+ resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/darwin-x64@0.19.11:
+ resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/freebsd-arm64@0.19.11:
+ resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/freebsd-x64@0.19.11:
+ resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-arm64@0.19.11:
+ resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-arm@0.19.11:
+ resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-ia32@0.19.11:
+ resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-loong64@0.19.11:
+ resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-mips64el@0.19.11:
+ resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-ppc64@0.19.11:
+ resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-riscv64@0.19.11:
+ resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-s390x@0.19.11:
+ resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/linux-x64@0.19.11:
+ resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/netbsd-x64@0.19.11:
+ resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/openbsd-x64@0.19.11:
+ resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/sunos-x64@0.19.11:
+ resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/win32-arm64@0.19.11:
+ resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/win32-ia32@0.19.11:
+ resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@esbuild/win32-x64@0.19.11:
+ resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
+ resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ dependencies:
+ eslint: 8.56.0
+ eslint-visitor-keys: 3.4.3
+ dev: false
+
+ /@eslint-community/regexpp@4.10.0:
+ resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ dev: false
+
+ /@eslint/eslintrc@2.1.4:
+ resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4
+ espree: 9.6.1
+ globals: 13.24.0
+ ignore: 5.3.0
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@eslint/js@8.56.0:
+ resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: false
+
+ /@evidence-dev/universal-sql@2.0.3:
+ resolution: {integrity: sha512-/NiX5LQX0KUCyhaYLtvO23BbyQtWIHOGhlzgi0Ze6TXY7tQuR2RZ3vDKYEItAZF+r64JpSDkefRkMAsjPuTo6A==}
+ dependencies:
+ '@duckdb/duckdb-wasm': 1.27.0
+ '@types/lodash.chunk': 4.2.9
+ '@types/node': 20.11.2
+ apache-arrow: 11.0.0
+ chalk: 5.3.0
+ cli-progress: 3.12.0
+ duckdb: 0.9.2
+ lodash.chunk: 4.2.0
+ parquet-wasm: 0.5.0
+ web-worker: 1.3.0
+ transitivePeerDependencies:
+ - bluebird
+ - encoding
+ - supports-color
+ dev: false
+
+ /@fastify/busboy@2.1.0:
+ resolution: {integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==}
+ engines: {node: '>=14'}
+ dev: false
+
+ /@gar/promisify@1.1.3:
+ resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
+ dev: false
+
+ /@humanwhocodes/config-array@0.11.14:
+ resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
+ engines: {node: '>=10.10.0'}
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.2
+ debug: 4.3.4
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@humanwhocodes/module-importer@1.0.1:
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+ dev: false
+
+ /@humanwhocodes/object-schema@2.0.2:
+ resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
+ dev: false
+
+ /@istanbuljs/schema@0.1.3:
+ resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@jest/schemas@29.6.3:
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+ dev: false
+
+ /@jridgewell/gen-mapping@0.3.3:
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.21
+
+ /@jridgewell/resolve-uri@3.1.1:
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/set-array@1.1.2:
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/sourcemap-codec@1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+
+ /@jridgewell/trace-mapping@0.3.21:
+ resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+
+ /@manypkg/find-root@1.1.0:
+ resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@types/node': 12.20.55
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+ dev: true
+
+ /@manypkg/get-packages@1.1.3:
+ resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
+ dependencies:
+ '@babel/runtime': 7.23.8
+ '@changesets/types': 4.1.0
+ '@manypkg/find-root': 1.1.0
+ fs-extra: 8.1.0
+ globby: 11.1.0
+ read-yaml-file: 1.1.0
+ dev: true
+
+ /@mapbox/node-pre-gyp@1.0.11:
+ resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
+ hasBin: true
+ dependencies:
+ detect-libc: 2.0.2
+ https-proxy-agent: 5.0.1
+ make-dir: 3.1.0
+ node-fetch: 2.7.0
+ nopt: 5.0.0
+ npmlog: 5.0.1
+ rimraf: 3.0.2
+ semver: 7.5.4
+ tar: 6.2.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: false
+
+ /@nodelib/fs.scandir@2.1.5:
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ /@nodelib/fs.stat@2.0.5:
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
+
+ /@nodelib/fs.walk@1.2.8:
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.16.0
+
+ /@npmcli/fs@2.1.2:
+ resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ '@gar/promisify': 1.1.3
+ semver: 7.5.4
+ dev: false
+
+ /@npmcli/move-file@2.0.1:
+ resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ deprecated: This functionality has been moved to @npmcli/fs
+ dependencies:
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
+ dev: false
+
+ /@polka/url@1.0.0-next.24:
+ resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
+ dev: false
+
+ /@rollup/pluginutils@4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ dev: false
+
+ /@rollup/rollup-android-arm-eabi@4.9.5:
+ resolution: {integrity: sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-android-arm64@4.9.5:
+ resolution: {integrity: sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-darwin-arm64@4.9.5:
+ resolution: {integrity: sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-darwin-x64@4.9.5:
+ resolution: {integrity: sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-linux-arm-gnueabihf@4.9.5:
+ resolution: {integrity: sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-linux-arm64-gnu@4.9.5:
+ resolution: {integrity: sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-linux-arm64-musl@4.9.5:
+ resolution: {integrity: sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-linux-riscv64-gnu@4.9.5:
+ resolution: {integrity: sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.9.5:
+ resolution: {integrity: sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-linux-x64-musl@4.9.5:
+ resolution: {integrity: sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-win32-arm64-msvc@4.9.5:
+ resolution: {integrity: sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-win32-ia32-msvc@4.9.5:
+ resolution: {integrity: sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@rollup/rollup-win32-x64-msvc@4.9.5:
+ resolution: {integrity: sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@sinclair/typebox@0.27.8:
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ dev: false
+
+ /@steeze-ui/simple-icons@1.7.1:
+ resolution: {integrity: sha512-vIsurZBiP6ksg/6zvE6wQVKVludu3UFtePmIAWAbmfjlA6LcjGx+IpX0xNOhVfUs8dC8cMOVn2yLbDhQm5dLYA==}
+ dev: false
+
+ /@steeze-ui/tabler-icons@2.1.1:
+ resolution: {integrity: sha512-cWnORbuPwXhsrH3hebxZ0gSF/zMZEuLz014XoGcxXhU+GPYixqXjyBbTfJiGjbexRjkj7A2/1ocx6AcWEwN1Pw==}
+ dev: false
+
+ /@sveltejs/kit@1.30.3(svelte@4.2.8)(vite@5.0.12):
+ resolution: {integrity: sha512-0DzVXfU4h+tChFvoc8C61IqErCyskD4ydSIDjpKS2lYlEzIYrtYrY7juSqACFxqcvZAnOEXvSY+zZ8br0+ZMMg==}
+ engines: {node: ^16.14 || >=18}
+ hasBin: true
+ requiresBuild: true
+ peerDependencies:
+ svelte: ^3.54.0 || ^4.0.0-next.0 || ^5.0.0-next.0
+ vite: ^4.0.0
+ dependencies:
+ '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.8)(vite@5.0.12)
+ '@types/cookie': 0.5.4
+ cookie: 0.5.0
+ devalue: 4.3.2
+ esm-env: 1.0.0
+ kleur: 4.1.5
+ magic-string: 0.30.7
+ mrmime: 1.0.1
+ sade: 1.8.1
+ set-cookie-parser: 2.6.0
+ sirv: 2.0.4
+ svelte: 4.2.8
+ tiny-glob: 0.2.9
+ undici: 5.26.5
+ vite: 5.0.12(@types/node@20.11.2)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.8)(vite@5.0.12):
+ resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==}
+ engines: {node: ^14.18.0 || >= 16}
+ peerDependencies:
+ '@sveltejs/vite-plugin-svelte': ^2.2.0
+ svelte: ^3.54.0 || ^4.0.0
+ vite: ^4.0.0
+ dependencies:
+ '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.8)(vite@5.0.12)
+ debug: 4.3.4
+ svelte: 4.2.8
+ vite: 5.0.12(@types/node@20.11.2)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@sveltejs/vite-plugin-svelte@2.5.3(svelte@4.2.8)(vite@5.0.12):
+ resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==}
+ engines: {node: ^14.18.0 || >= 16}
+ peerDependencies:
+ svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
+ vite: ^4.0.0
+ dependencies:
+ '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.8)(vite@5.0.12)
+ debug: 4.3.4
+ deepmerge: 4.3.1
+ kleur: 4.1.5
+ magic-string: 0.30.7
+ svelte: 4.2.8
+ svelte-hmr: 0.15.3(svelte@4.2.8)
+ vite: 5.0.12(@types/node@20.11.2)
+ vitefu: 0.2.5(vite@5.0.12)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@tootallnate/once@2.0.0:
+ resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
+ engines: {node: '>= 10'}
+ dev: false
+
+ /@types/body-parser@1.19.5:
+ resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+ dependencies:
+ '@types/connect': 3.4.38
+ '@types/node': 20.11.2
+ dev: false
+
+ /@types/command-line-args@5.2.0:
+ resolution: {integrity: sha512-UuKzKpJJ/Ief6ufIaIzr3A/0XnluX7RvFgwkV89Yzvm77wCh1kFaFmqN8XEnGcN62EuHdedQjEMb8mYxFLGPyA==}
+ dev: false
+
+ /@types/command-line-usage@5.0.2:
+ resolution: {integrity: sha512-n7RlEEJ+4x4TS7ZQddTmNSxP+zziEG0TNsMfiRIxcIVXt71ENJ9ojeXmGO3wPoTdn7pJcU2xc3CJYMktNT6DPg==}
+ dev: false
+
+ /@types/connect@3.4.38:
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+ dependencies:
+ '@types/node': 20.11.2
+ dev: false
+
+ /@types/cookie@0.5.4:
+ resolution: {integrity: sha512-7z/eR6O859gyWIAjuvBWFzNURmf2oPBmJlfVWkwehU5nzIyjwBsTh7WMmEEV4JFnHuQ3ex4oyTvfKzcyJVDBNA==}
+ dev: false
+
+ /@types/estree@1.0.5:
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+
+ /@types/express-serve-static-core@4.17.41:
+ resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
+ dependencies:
+ '@types/node': 20.11.2
+ '@types/qs': 6.9.11
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
+ dev: false
+
+ /@types/express@4.17.21:
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+ dependencies:
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.17.41
+ '@types/qs': 6.9.11
+ '@types/serve-static': 1.15.5
+ dev: false
+
+ /@types/flatbuffers@1.10.3:
+ resolution: {integrity: sha512-kwJQsAROanCiMXSLjcTLmYVBIJ9Qyuqs92SaDIcj2EII2KnDgZbiU7it1Z/JfZd1gmxw/lAahMysQ6ZM+j3Ryw==}
+ dev: false
+
+ /@types/http-errors@2.0.4:
+ resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
+ dev: false
+
+ /@types/istanbul-lib-coverage@2.0.6:
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+ dev: false
+
+ /@types/jsdom@21.1.6:
+ resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==}
+ dependencies:
+ '@types/node': 20.11.2
+ '@types/tough-cookie': 4.0.5
+ parse5: 7.1.2
+ dev: false
+
+ /@types/lodash.chunk@4.2.9:
+ resolution: {integrity: sha512-Z9VtFUSnmT0No/QymqfG9AGbfOA4O5qB/uyP89xeZBqDAsKsB4gQFTqt7d0pHjbsTwtQ4yZObQVHuKlSOhIJ5Q==}
+ dependencies:
+ '@types/lodash': 4.14.202
+ dev: false
+
+ /@types/lodash.merge@4.6.9:
+ resolution: {integrity: sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==}
+ dependencies:
+ '@types/lodash': 4.14.202
+ dev: false
+
+ /@types/lodash@4.14.202:
+ resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
+ dev: false
+
+ /@types/mime@1.3.5:
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
+ dev: false
+
+ /@types/mime@3.0.4:
+ resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
+ dev: false
+
+ /@types/minimist@1.2.5:
+ resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
+ dev: true
+
+ /@types/node@12.20.55:
+ resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ dev: true
+
+ /@types/node@18.7.23:
+ resolution: {integrity: sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==}
+ dev: false
+
+ /@types/node@20.11.2:
+ resolution: {integrity: sha512-cZShBaVa+UO1LjWWBPmWRR4+/eY/JR/UIEcDlVsw3okjWEu+rB7/mH6X3B/L+qJVHDLjk9QW/y2upp9wp1yDXA==}
+ dependencies:
+ undici-types: 5.26.5
+ dev: false
+
+ /@types/normalize-package-data@2.4.4:
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+ dev: true
+
+ /@types/pad-left@2.1.1:
+ resolution: {integrity: sha512-Xd22WCRBydkGSApl5Bw0PhAOHKSVjNL3E3AwzKaps96IMraPqy5BvZIsBVK6JLwdybUzjHnuWVwpDd0JjTfHXA==}
+ dev: false
+
+ /@types/qs@6.9.11:
+ resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==}
+ dev: false
+
+ /@types/range-parser@1.2.7:
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
+ dev: false
+
+ /@types/semver@7.5.6:
+ resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
+ dev: true
+
+ /@types/send@0.17.4:
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
+ dependencies:
+ '@types/mime': 1.3.5
+ '@types/node': 20.11.2
+ dev: false
+
+ /@types/serve-static@1.15.5:
+ resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
+ dependencies:
+ '@types/http-errors': 2.0.4
+ '@types/mime': 3.0.4
+ '@types/node': 20.11.2
+ dev: false
+
+ /@types/tough-cookie@4.0.5:
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+ dev: false
+
+ /@types/unist@2.0.10:
+ resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
+ dev: false
+
+ /@typescript-eslint/types@6.18.1:
+ resolution: {integrity: sha512-4TuMAe+tc5oA7wwfqMtB0Y5OrREPF1GeJBAjqwgZh1lEMH5PJQgWgHGfYufVB51LtjD+peZylmeyxUXPfENLCw==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dev: false
+
+ /@typescript-eslint/typescript-estree@6.18.1(typescript@5.3.3):
+ resolution: {integrity: sha512-fv9B94UAhywPRhUeeV/v+3SBDvcPiLxRZJw/xZeeGgRLQZ6rLMG+8krrJUyIf6s1ecWTzlsbp0rlw7n9sjufHA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 6.18.1
+ '@typescript-eslint/visitor-keys': 6.18.1
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.3
+ semver: 7.5.4
+ ts-api-utils: 1.0.3(typescript@5.3.3)
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@typescript-eslint/visitor-keys@6.18.1:
+ resolution: {integrity: sha512-/kvt0C5lRqGoCfsbmm7/CwMqoSkY3zzHLIjdhHZQW3VFrnz7ATecOHR7nb7V+xn4286MBxfnQfQhAmCI0u+bJA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.18.1
+ eslint-visitor-keys: 3.4.3
+ dev: false
+
+ /@ungap/structured-clone@1.2.0:
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ dev: false
+
+ /@uwdata/mosaic-sql@0.4.0:
+ resolution: {integrity: sha512-QpjG6jrKJ4bH0eud4h719IaCgUOCYX6acyd5/HalFbDdjGHmFIPfcm8SYEnzvg+Jxz1jBfuH/2tpgOHahOK8xA==}
+ dev: false
+
+ /@vitest/coverage-v8@1.2.0(vitest@1.2.0):
+ resolution: {integrity: sha512-YvX8ULTUm1+zkvkl14IqXYGxE1h13OXKPoDsxazARKlp4YLrP28hHEBdplaU7ZTN/Yn6zy6Z3JadWNRJwcmyrQ==}
+ peerDependencies:
+ vitest: ^1.0.0
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@bcoe/v8-coverage': 0.2.3
+ debug: 4.3.4
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.1.6
+ magic-string: 0.30.5
+ magicast: 0.3.3
+ picocolors: 1.0.0
+ std-env: 3.7.0
+ test-exclude: 6.0.0
+ v8-to-istanbul: 9.2.0
+ vitest: 1.2.0(@types/node@20.11.2)(jsdom@23.2.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@vitest/expect@1.2.0:
+ resolution: {integrity: sha512-H+2bHzhyvgp32o7Pgj2h9RTHN0pgYaoi26Oo3mE+dCi1PAqV31kIIVfTbqMO3Bvshd5mIrJLc73EwSRrbol9Lw==}
+ dependencies:
+ '@vitest/spy': 1.2.0
+ '@vitest/utils': 1.2.0
+ chai: 4.4.1
+ dev: false
+
+ /@vitest/runner@1.2.0:
+ resolution: {integrity: sha512-vaJkDoQaNUTroT70OhM0NPznP7H3WyRwt4LvGwCVYs/llLaqhoSLnlIhUClZpbF5RgAee29KRcNz0FEhYcgxqA==}
+ dependencies:
+ '@vitest/utils': 1.2.0
+ p-limit: 5.0.0
+ pathe: 1.1.2
+ dev: false
+
+ /@vitest/snapshot@1.2.0:
+ resolution: {integrity: sha512-P33EE7TrVgB3HDLllrjK/GG6WSnmUtWohbwcQqmm7TAk9AVHpdgf7M3F3qRHKm6vhr7x3eGIln7VH052Smo6Kw==}
+ dependencies:
+ magic-string: 0.30.5
+ pathe: 1.1.2
+ pretty-format: 29.7.0
+ dev: false
+
+ /@vitest/spy@1.2.0:
+ resolution: {integrity: sha512-MNxSAfxUaCeowqyyGwC293yZgk7cECZU9wGb8N1pYQ0yOn/SIr8t0l9XnGRdQZvNV/ZHBYu6GO/W3tj5K3VN1Q==}
+ dependencies:
+ tinyspy: 2.2.0
+ dev: false
+
+ /@vitest/utils@1.2.0:
+ resolution: {integrity: sha512-FyD5bpugsXlwVpTcGLDf3wSPYy8g541fQt14qtzo8mJ4LdEpDKZ9mQy2+qdJm2TZRpjY5JLXihXCgIxiRJgi5g==}
+ dependencies:
+ diff-sequences: 29.6.3
+ estree-walker: 3.0.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
+ dev: false
+
+ /abbrev@1.1.1:
+ resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
+ dev: false
+
+ /accepts@1.3.8:
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-types: 2.1.35
+ negotiator: 0.6.3
+ dev: false
+
+ /acorn-jsx@5.3.2(acorn@8.11.3):
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 8.11.3
+ dev: false
+
+ /acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
+ /acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ /agent-base@6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /agent-base@7.1.0:
+ resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
+ engines: {node: '>= 14'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /agentkeepalive@4.5.0:
+ resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ humanize-ms: 1.2.1
+ dev: false
+
+ /aggregate-error@3.1.0:
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+ dev: false
+
+ /ajv@6.12.6:
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: false
+
+ /ansi-colors@4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /ansi-regex@5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+
+ /ansi-regex@6.0.1:
+ resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /ansi-styles@3.2.1:
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
+ dependencies:
+ color-convert: 1.9.3
+
+ /ansi-styles@4.3.0:
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
+ dependencies:
+ color-convert: 2.0.1
+
+ /ansi-styles@5.2.0:
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+ dev: false
+
+ /apache-arrow@11.0.0:
+ resolution: {integrity: sha512-M8J4y+DimIyS44w2KOmVfzNHbTroR1oDpBKK6BYnlu8xVB41lxTz0yLmapo8/WJVAt5XcinAxMm14M771dm/rA==}
+ hasBin: true
+ dependencies:
+ '@types/command-line-args': 5.2.0
+ '@types/command-line-usage': 5.0.2
+ '@types/flatbuffers': 1.10.3
+ '@types/node': 18.7.23
+ '@types/pad-left': 2.1.1
+ command-line-args: 5.2.1
+ command-line-usage: 6.1.3
+ flatbuffers: 2.0.4
+ json-bignum: 0.0.3
+ pad-left: 2.1.0
+ tslib: 2.6.2
+ dev: false
+
+ /aproba@2.0.0:
+ resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
+ dev: false
+
+ /are-we-there-yet@2.0.0:
+ resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
+ engines: {node: '>=10'}
+ dependencies:
+ delegates: 1.0.0
+ readable-stream: 3.6.2
+ dev: false
+
+ /are-we-there-yet@3.0.1:
+ resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ delegates: 1.0.0
+ readable-stream: 3.6.2
+ dev: false
+
+ /arg@5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
+ dev: true
+
+ /argparse@1.0.10:
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: true
+
+ /argparse@2.0.1:
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ dev: false
+
+ /aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ dependencies:
+ dequal: 2.0.3
+
+ /array-back@3.1.0:
+ resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /array-back@4.0.2:
+ resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /array-buffer-byte-length@1.0.0:
+ resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
+ dependencies:
+ call-bind: 1.0.5
+ is-array-buffer: 3.0.2
+ dev: true
+
+ /array-flatten@1.1.1:
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
+ dev: false
+
+ /array-union@2.1.0:
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
+
+ /array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-shim-unscopables: 1.0.2
+ dev: true
+
+ /arraybuffer.prototype.slice@1.0.2:
+ resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ is-array-buffer: 3.0.2
+ is-shared-array-buffer: 1.0.2
+ dev: true
+
+ /arrify@1.0.1:
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /assert@2.1.0:
+ resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
+ dependencies:
+ call-bind: 1.0.5
+ is-nan: 1.3.2
+ object-is: 1.1.5
+ object.assign: 4.1.5
+ util: 0.12.5
+ dev: false
+
+ /assertion-error@1.1.0:
+ resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ dev: false
+
+ /ast-types@0.16.1:
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.6.2
+ dev: false
+
+ /asynckit@0.4.0:
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+ dev: false
+
+ /available-typed-arrays@1.0.5:
+ resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ engines: {node: '>= 0.4'}
+
+ /axobject-query@3.2.1:
+ resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
+ dependencies:
+ dequal: 2.0.3
+
+ /balanced-match@1.0.2:
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ dev: false
+
+ /better-path-resolve@1.0.0:
+ resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
+ engines: {node: '>=4'}
+ dependencies:
+ is-windows: 1.0.2
+ dev: true
+
+ /bidi-js@1.0.3:
+ resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
+ dependencies:
+ require-from-string: 2.0.2
+ dev: false
+
+ /binary-extensions@2.2.0:
+ resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /body-parser@1.20.1:
+ resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.1
+ type-is: 1.6.18
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /brace-expansion@1.1.11:
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+ dev: false
+
+ /brace-expansion@2.0.1:
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ dependencies:
+ balanced-match: 1.0.2
+ dev: false
+
+ /braces@3.0.2:
+ resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ engines: {node: '>=8'}
+ dependencies:
+ fill-range: 7.0.1
+
+ /breakword@1.0.6:
+ resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==}
+ dependencies:
+ wcwidth: 1.0.1
+ dev: true
+
+ /bytes@3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /cac@6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /cacache@16.1.3:
+ resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ '@npmcli/fs': 2.1.2
+ '@npmcli/move-file': 2.0.1
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ glob: 8.1.0
+ infer-owner: 1.0.4
+ lru-cache: 7.18.3
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ mkdirp: 1.0.4
+ p-map: 4.0.0
+ promise-inflight: 1.0.1
+ rimraf: 3.0.2
+ ssri: 9.0.1
+ tar: 6.2.0
+ unique-filename: 2.0.1
+ transitivePeerDependencies:
+ - bluebird
+ dev: false
+
+ /call-bind@1.0.5:
+ resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ dependencies:
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ set-function-length: 1.2.0
+
+ /callsites@3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /camelcase-keys@6.2.2:
+ resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
+ engines: {node: '>=8'}
+ dependencies:
+ camelcase: 5.3.1
+ map-obj: 4.3.0
+ quick-lru: 4.0.1
+ dev: true
+
+ /camelcase@5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /chai@4.4.1:
+ resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
+ engines: {node: '>=4'}
+ dependencies:
+ assertion-error: 1.1.0
+ check-error: 1.0.3
+ deep-eql: 4.1.3
+ get-func-name: 2.0.2
+ loupe: 2.3.7
+ pathval: 1.1.1
+ type-detect: 4.0.8
+ dev: false
+
+ /chalk@2.4.2:
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+
+ /chalk@4.1.2:
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+
+ /chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: false
+
+ /chardet@0.7.0:
+ resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ dev: true
+
+ /check-error@1.0.3:
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ dependencies:
+ get-func-name: 2.0.2
+ dev: false
+
+ /chokidar@3.5.3:
+ resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: false
+
+ /chownr@2.0.0:
+ resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /ci-info@3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /clean-stack@2.2.0:
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /cli-cursor@4.0.0:
+ resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ restore-cursor: 4.0.0
+ dev: false
+
+ /cli-progress@3.12.0:
+ resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
+ engines: {node: '>=4'}
+ dependencies:
+ string-width: 4.2.3
+ dev: false
+
+ /cli-spinners@2.9.2:
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /cliui@6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: true
+
+ /cliui@8.0.1:
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
+ dev: true
+
+ /clone@1.0.4:
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
+ dev: true
+
+ /code-red@1.0.4:
+ resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@types/estree': 1.0.5
+ acorn: 8.11.3
+ estree-walker: 3.0.3
+ periscopic: 3.1.0
+
+ /color-convert@1.9.3:
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+ dependencies:
+ color-name: 1.1.3
+
+ /color-convert@2.0.1:
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
+ dependencies:
+ color-name: 1.1.4
+
+ /color-name@1.1.3:
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+
+ /color-name@1.1.4:
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+
+ /color-support@1.1.3:
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
+ hasBin: true
+ dev: false
+
+ /combined-stream@1.0.8:
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ delayed-stream: 1.0.0
+ dev: false
+
+ /command-line-args@5.2.1:
+ resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ array-back: 3.1.0
+ find-replace: 3.0.0
+ lodash.camelcase: 4.3.0
+ typical: 4.0.0
+ dev: false
+
+ /command-line-usage@6.1.3:
+ resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ array-back: 4.0.2
+ chalk: 2.4.2
+ table-layout: 1.0.2
+ typical: 5.2.0
+ dev: false
+
+ /concat-map@0.0.1:
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ dev: false
+
+ /consola@3.2.3:
+ resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dev: false
+
+ /console-control-strings@1.1.0:
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+ dev: false
+
+ /content-disposition@0.5.4:
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+ dev: false
+
+ /cookie-signature@1.0.6:
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
+ dev: false
+
+ /cookie@0.5.0:
+ resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /cross-spawn@5.1.0:
+ resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
+ dependencies:
+ lru-cache: 4.1.5
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+
+ /cross-spawn@7.0.3:
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ engines: {node: '>= 8'}
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: false
+
+ /css-tree@2.3.1:
+ resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ dependencies:
+ mdn-data: 2.0.30
+ source-map-js: 1.0.2
+
+ /cssesc@3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /cssstyle@4.0.1:
+ resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ rrweb-cssom: 0.6.0
+ dev: false
+
+ /csv-generate@3.4.3:
+ resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==}
+ dev: true
+
+ /csv-parse@4.16.3:
+ resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==}
+ dev: true
+
+ /csv-stringify@5.6.5:
+ resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==}
+ dev: true
+
+ /csv@5.5.3:
+ resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==}
+ engines: {node: '>= 0.1.90'}
+ dependencies:
+ csv-generate: 3.4.3
+ csv-parse: 4.16.3
+ csv-stringify: 5.6.5
+ stream-transform: 2.1.3
+ dev: true
+
+ /data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
+ dependencies:
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
+ dev: false
+
+ /debug@2.6.9:
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.0.0
+ dev: false
+
+ /debug@4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ dev: false
+
+ /decamelize-keys@1.1.1:
+ resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ decamelize: 1.2.0
+ map-obj: 1.0.1
+ dev: true
+
+ /decamelize@1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ dev: false
+
+ /deep-eql@4.1.3:
+ resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ engines: {node: '>=6'}
+ dependencies:
+ type-detect: 4.0.8
+ dev: false
+
+ /deep-extend@0.6.0:
+ resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
+ engines: {node: '>=4.0.0'}
+ dev: false
+
+ /deep-is@0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ dev: false
+
+ /deepmerge@4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /defaults@1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+ dependencies:
+ clone: 1.0.4
+ dev: true
+
+ /define-data-property@1.1.1:
+ resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+
+ /define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ has-property-descriptors: 1.0.1
+ object-keys: 1.1.1
+
+ /delayed-stream@1.0.0:
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
+ /delegates@1.0.0:
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+ dev: false
+
+ /depd@2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
+ /destroy@1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dev: false
+
+ /detect-indent@6.1.0:
+ resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /detect-libc@2.0.2:
+ resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /devalue@4.3.2:
+ resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==}
+ dev: false
+
+ /diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dev: false
+
+ /dir-glob@3.0.1:
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+ engines: {node: '>=8'}
+ dependencies:
+ path-type: 4.0.0
+
+ /doctrine@3.0.0:
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: false
+
+ /duckdb@0.9.2:
+ resolution: {integrity: sha512-POZ37Vf5cHVmk4W8z0PsdGi67VeQsr9HRrBbmivDt9AQ8C1XLESVE79facydbroNiqm7+n7fx6jqjyxyrBFYlQ==}
+ requiresBuild: true
+ dependencies:
+ '@mapbox/node-pre-gyp': 1.0.11
+ node-addon-api: 7.0.0
+ node-gyp: 9.4.1
+ transitivePeerDependencies:
+ - bluebird
+ - encoding
+ - supports-color
+ dev: false
+
+ /ee-first@1.1.1:
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+ dev: false
+
+ /emoji-regex@10.3.0:
+ resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
+ dev: false
+
+ /emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+
+ /encodeurl@1.0.2:
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /encoding@0.1.13:
+ resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+ requiresBuild: true
+ dependencies:
+ iconv-lite: 0.6.3
+ dev: false
+ optional: true
+
+ /enquirer@2.4.1:
+ resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
+ engines: {node: '>=8.6'}
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+ dev: true
+
+ /entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
+ dev: false
+
+ /env-paths@2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /err-code@2.0.3:
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+ dev: false
+
+ /error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: true
+
+ /es-abstract@1.22.3:
+ resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ arraybuffer.prototype.slice: 1.0.2
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
+ es-set-tostringtag: 2.0.2
+ es-to-primitive: 1.2.1
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.2
+ get-symbol-description: 1.0.0
+ globalthis: 1.0.3
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ hasown: 2.0.0
+ internal-slot: 1.0.6
+ is-array-buffer: 3.0.2
+ is-callable: 1.2.7
+ is-negative-zero: 2.0.2
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ is-string: 1.0.7
+ is-typed-array: 1.1.12
+ is-weakref: 1.0.2
+ object-inspect: 1.13.1
+ object-keys: 1.1.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.1
+ safe-array-concat: 1.1.0
+ safe-regex-test: 1.0.2
+ string.prototype.trim: 1.2.8
+ string.prototype.trimend: 1.0.7
+ string.prototype.trimstart: 1.0.7
+ typed-array-buffer: 1.0.0
+ typed-array-byte-length: 1.0.0
+ typed-array-byte-offset: 1.0.0
+ typed-array-length: 1.0.4
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.13
+ dev: true
+
+ /es-set-tostringtag@2.0.2:
+ resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.2
+ has-tostringtag: 1.0.0
+ hasown: 2.0.0
+ dev: true
+
+ /es-shim-unscopables@1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ dependencies:
+ hasown: 2.0.0
+ dev: true
+
+ /es-to-primitive@1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
+ dev: true
+
+ /esbuild@0.19.11:
+ resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.19.11
+ '@esbuild/android-arm': 0.19.11
+ '@esbuild/android-arm64': 0.19.11
+ '@esbuild/android-x64': 0.19.11
+ '@esbuild/darwin-arm64': 0.19.11
+ '@esbuild/darwin-x64': 0.19.11
+ '@esbuild/freebsd-arm64': 0.19.11
+ '@esbuild/freebsd-x64': 0.19.11
+ '@esbuild/linux-arm': 0.19.11
+ '@esbuild/linux-arm64': 0.19.11
+ '@esbuild/linux-ia32': 0.19.11
+ '@esbuild/linux-loong64': 0.19.11
+ '@esbuild/linux-mips64el': 0.19.11
+ '@esbuild/linux-ppc64': 0.19.11
+ '@esbuild/linux-riscv64': 0.19.11
+ '@esbuild/linux-s390x': 0.19.11
+ '@esbuild/linux-x64': 0.19.11
+ '@esbuild/netbsd-x64': 0.19.11
+ '@esbuild/openbsd-x64': 0.19.11
+ '@esbuild/sunos-x64': 0.19.11
+ '@esbuild/win32-arm64': 0.19.11
+ '@esbuild/win32-ia32': 0.19.11
+ '@esbuild/win32-x64': 0.19.11
+ dev: false
+
+ /escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+ dev: false
+
+ /escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
+
+ /escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /eslint-compat-utils@0.1.2(eslint@8.56.0):
+ resolution: {integrity: sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ eslint: 8.56.0
+ dev: false
+
+ /eslint-config-prettier@9.1.0(eslint@8.56.0):
+ resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: 8.56.0
+ dev: false
+
+ /eslint-plugin-svelte@2.35.1(eslint@8.56.0)(svelte@4.2.8):
+ resolution: {integrity: sha512-IF8TpLnROSGy98Z3NrsKXWDSCbNY2ReHDcrYTuXZMbfX7VmESISR78TWgO9zdg4Dht1X8coub5jKwHzP0ExRug==}
+ engines: {node: ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0-0
+ svelte: ^3.37.0 || ^4.0.0
+ peerDependenciesMeta:
+ svelte:
+ optional: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@jridgewell/sourcemap-codec': 1.4.15
+ debug: 4.3.4
+ eslint: 8.56.0
+ eslint-compat-utils: 0.1.2(eslint@8.56.0)
+ esutils: 2.0.3
+ known-css-properties: 0.29.0
+ postcss: 8.4.33
+ postcss-load-config: 3.1.4(postcss@8.4.33)
+ postcss-safe-parser: 6.0.0(postcss@8.4.33)
+ postcss-selector-parser: 6.0.15
+ semver: 7.5.4
+ svelte: 4.2.8
+ svelte-eslint-parser: 0.33.1(svelte@4.2.8)
+ transitivePeerDependencies:
+ - supports-color
+ - ts-node
+ dev: false
+
+ /eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: false
+
+ /eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: false
+
+ /eslint@8.56.0:
+ resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@eslint-community/regexpp': 4.10.0
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.56.0
+ '@humanwhocodes/config-array': 0.11.14
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.2.0
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ debug: 4.3.4
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.24.0
+ graphemer: 1.4.0
+ ignore: 5.3.0
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-yaml: 4.1.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.3
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /esm-env@1.0.0:
+ resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
+ dev: false
+
+ /espree@9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ acorn: 8.11.3
+ acorn-jsx: 5.3.2(acorn@8.11.3)
+ eslint-visitor-keys: 3.4.3
+ dev: false
+
+ /esprima@4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ /esquery@1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: false
+
+ /esrecurse@4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: false
+
+ /estraverse@5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+ dev: false
+
+ /estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ dev: false
+
+ /estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ dependencies:
+ '@types/estree': 1.0.5
+
+ /esutils@2.0.3:
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /etag@1.8.1:
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /execa@8.0.1:
+ resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+ engines: {node: '>=16.17'}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 8.0.1
+ human-signals: 5.0.0
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.2.0
+ onetime: 6.0.0
+ signal-exit: 4.1.0
+ strip-final-newline: 3.0.0
+ dev: false
+
+ /exponential-backoff@3.1.1:
+ resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
+ dev: false
+
+ /express@4.18.2:
+ resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ engines: {node: '>= 0.10.0'}
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.1
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.5.0
+ cookie-signature: 1.0.6
+ debug: 2.6.9
+ depd: 2.0.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.2.0
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ merge-descriptors: 1.0.1
+ methods: 1.1.2
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.7
+ proxy-addr: 2.0.7
+ qs: 6.11.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.18.0
+ serve-static: 1.15.0
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /extendable-error@0.1.7:
+ resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
+ dev: true
+
+ /external-editor@3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: true
+
+ /fast-deep-equal@3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+ dev: false
+
+ /fast-diff@1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+ dev: true
+
+ /fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ engines: {node: '>=8.6.0'}
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.5
+
+ /fast-json-stable-stringify@2.1.0:
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+ dev: false
+
+ /fast-levenshtein@2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ dev: false
+
+ /fastq@1.16.0:
+ resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
+ dependencies:
+ reusify: 1.0.4
+
+ /file-entry-cache@6.0.1:
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ flat-cache: 3.2.0
+ dev: false
+
+ /fill-range@7.0.1:
+ resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ to-regex-range: 5.0.1
+
+ /finalhandler@1.2.0:
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /find-replace@3.0.0:
+ resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ array-back: 3.1.0
+ dev: false
+
+ /find-up@4.1.0:
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
+
+ /find-up@5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+
+ /find-yarn-workspace-root2@1.2.16:
+ resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
+ dependencies:
+ micromatch: 4.0.5
+ pkg-dir: 4.2.0
+ dev: true
+
+ /flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ flatted: 3.2.9
+ keyv: 4.5.4
+ rimraf: 3.0.2
+ dev: false
+
+ /flatbuffers@2.0.4:
+ resolution: {integrity: sha512-4rUFVDPjSoP0tOII34oQf+72NKU7E088U5oX7kwICahft0UB2kOQ9wUzzCp+OHxByERIfxRDCgX5mP8Pjkfl0g==}
+ dev: false
+
+ /flatted@3.2.9:
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ dev: false
+
+ /for-each@0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ dependencies:
+ is-callable: 1.2.7
+
+ /form-data@4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: false
+
+ /forwarded@0.2.0:
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /fresh@0.5.2:
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /fs-extra@7.0.1:
+ resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+
+ /fs-extra@8.1.0:
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+
+ /fs-minipass@2.1.0:
+ resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /fs.realpath@1.0.0:
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ dev: false
+
+ /fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+
+ /function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ functions-have-names: 1.2.3
+ dev: true
+
+ /functions-have-names@1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ dev: true
+
+ /gauge@3.0.2:
+ resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
+ engines: {node: '>=10'}
+ dependencies:
+ aproba: 2.0.0
+ color-support: 1.1.3
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ object-assign: 4.1.1
+ signal-exit: 3.0.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wide-align: 1.1.5
+ dev: false
+
+ /gauge@4.0.4:
+ resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ aproba: 2.0.0
+ color-support: 1.1.3
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ signal-exit: 3.0.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wide-align: 1.1.5
+ dev: false
+
+ /get-caller-file@2.0.5:
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ dev: true
+
+ /get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /get-func-name@2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
+ dev: false
+
+ /get-intrinsic@1.2.2:
+ resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ dependencies:
+ function-bind: 1.1.2
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ hasown: 2.0.0
+
+ /get-stream@8.0.1:
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
+ dev: false
+
+ /get-symbol-description@1.0.0:
+ resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /glob-parent@5.1.2:
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
+ dependencies:
+ is-glob: 4.0.3
+
+ /glob-parent@6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ is-glob: 4.0.3
+ dev: false
+
+ /glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: false
+
+ /glob@8.1.0:
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 5.1.6
+ once: 1.4.0
+ dev: false
+
+ /globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.20.2
+ dev: false
+
+ /globalthis@1.0.3:
+ resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-properties: 1.2.1
+ dev: true
+
+ /globalyzer@0.1.0:
+ resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
+ dev: false
+
+ /globby@11.1.0:
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ ignore: 5.3.0
+ merge2: 1.4.1
+ slash: 3.0.0
+
+ /globrex@0.1.2:
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+ dev: false
+
+ /gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.2.2
+
+ /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==}
+ dev: true
+
+ /graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ dev: false
+
+ /hard-rejection@2.1.0:
+ resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /has-bigints@1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ dev: true
+
+ /has-flag@3.0.0:
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
+
+ /has-flag@4.0.0:
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+
+ /has-property-descriptors@1.0.1:
+ resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ dependencies:
+ get-intrinsic: 1.2.2
+
+ /has-proto@1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ engines: {node: '>= 0.4'}
+
+ /has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
+
+ /has-tostringtag@1.0.0:
+ resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.0.3
+
+ /has-unicode@2.0.1:
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
+ dev: false
+
+ /hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ function-bind: 1.1.2
+
+ /highlight.js@11.9.0:
+ resolution: {integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==}
+ engines: {node: '>=12.0.0'}
+ dev: false
+
+ /hosted-git-info@2.8.9:
+ resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+ dev: true
+
+ /html-encoding-sniffer@4.0.0:
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ whatwg-encoding: 3.1.1
+ dev: false
+
+ /html-escaper@2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+ dev: false
+
+ /http-cache-semantics@4.1.1:
+ resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+ dev: false
+
+ /http-errors@2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
+ dev: false
+
+ /http-proxy-agent@5.0.0:
+ resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@tootallnate/once': 2.0.0
+ agent-base: 6.0.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /http-proxy-agent@7.0.0:
+ resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /https-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /human-id@1.0.2:
+ resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
+ dev: true
+
+ /human-signals@5.0.0:
+ resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+ engines: {node: '>=16.17.0'}
+ dev: false
+
+ /humanize-ms@1.2.1:
+ resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
+ dependencies:
+ ms: 2.1.3
+ dev: false
+
+ /hyperdyperid@1.2.0:
+ resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
+ engines: {node: '>=10.18'}
+ dev: true
+
+ /iconv-lite@0.4.24:
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
+
+ /iconv-lite@0.6.3:
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: false
+
+ /ignore@5.3.0:
+ resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
+ engines: {node: '>= 4'}
+
+ /import-fresh@3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: false
+
+ /imurmurhash@0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+ dev: false
+
+ /indent-string@4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+
+ /infer-owner@1.0.4:
+ resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
+ dev: false
+
+ /inflight@1.0.6:
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ dev: false
+
+ /inherits@2.0.4:
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ dev: false
+
+ /internal-slot@1.0.6:
+ resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.2
+ hasown: 2.0.0
+ side-channel: 1.0.4
+ dev: true
+
+ /ip@2.0.0:
+ resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
+ dev: false
+
+ /ipaddr.js@1.9.1:
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+ engines: {node: '>= 0.10'}
+ dev: false
+
+ /is-arguments@1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
+ dev: false
+
+ /is-array-buffer@3.0.2:
+ resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ is-typed-array: 1.1.12
+ dev: true
+
+ /is-arrayish@0.2.1:
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ dev: true
+
+ /is-bigint@1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ dependencies:
+ has-bigints: 1.0.2
+ dev: true
+
+ /is-binary-path@2.1.0:
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
+ dependencies:
+ binary-extensions: 2.2.0
+ dev: false
+
+ /is-boolean-object@1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-callable@1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
+
+ /is-core-module@2.13.1:
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ dependencies:
+ hasown: 2.0.0
+ dev: true
+
+ /is-date-object@1.0.5:
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-extglob@2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+
+ /is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+
+ /is-generator-function@1.0.10:
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: false
+
+ /is-glob@4.0.3:
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+
+ /is-interactive@2.0.0:
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /is-lambda@1.0.1:
+ resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
+ dev: false
+
+ /is-nan@1.3.2:
+ resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ dev: false
+
+ /is-negative-zero@2.0.2:
+ resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-number@7.0.0:
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
+
+ /is-path-inside@3.0.3:
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /is-plain-obj@1.1.0:
+ resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ dev: false
+
+ /is-reference@3.0.2:
+ resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
+ dependencies:
+ '@types/estree': 1.0.5
+
+ /is-regex@1.1.4:
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-shared-array-buffer@1.0.2:
+ resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ dependencies:
+ call-bind: 1.0.5
+ dev: true
+
+ /is-stream@3.0.0:
+ resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: false
+
+ /is-string@1.0.7:
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-subdir@1.2.0:
+ resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
+ engines: {node: '>=4'}
+ dependencies:
+ better-path-resolve: 1.0.0
+ dev: true
+
+ /is-symbol@1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+
+ /is-typed-array@1.1.12:
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ which-typed-array: 1.1.13
+
+ /is-unicode-supported@1.3.0:
+ resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /is-unicode-supported@2.0.0:
+ resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /is-weakref@1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ dependencies:
+ call-bind: 1.0.5
+ dev: true
+
+ /is-windows@1.0.2:
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /isarray@2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+ dev: true
+
+ /isexe@2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+ /istanbul-lib-coverage@3.2.2:
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /istanbul-lib-report@3.0.1:
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
+ dependencies:
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
+ supports-color: 7.2.0
+ dev: false
+
+ /istanbul-lib-source-maps@4.0.1:
+ resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ engines: {node: '>=10'}
+ dependencies:
+ debug: 4.3.4
+ istanbul-lib-coverage: 3.2.2
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /istanbul-reports@3.1.6:
+ resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==}
+ engines: {node: '>=8'}
+ dependencies:
+ html-escaper: 2.0.2
+ istanbul-lib-report: 3.0.1
+ dev: false
+
+ /js-tokens@4.0.0:
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ dev: true
+
+ /js-yaml@3.14.1:
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ hasBin: true
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: true
+
+ /js-yaml@4.1.0:
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ dev: false
+
+ /jsdom@23.2.0:
+ resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^2.11.2
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ dependencies:
+ '@asamuzakjp/dom-selector': 2.0.2
+ cssstyle: 4.0.1
+ data-urls: 5.0.0
+ decimal.js: 10.4.3
+ form-data: 4.0.0
+ html-encoding-sniffer: 4.0.0
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.2
+ is-potential-custom-element-name: 1.0.1
+ parse5: 7.1.2
+ rrweb-cssom: 0.6.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.3
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
+ ws: 8.16.0
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /json-bignum@0.0.3:
+ resolution: {integrity: sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==}
+ engines: {node: '>=0.8'}
+ dev: false
+
+ /json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+ dev: false
+
+ /json-joy@9.9.1(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-/d7th2nbQRBQ/nqTkBe6KjjvDciSwn9UICmndwk3Ed/Bk9AqkTRm4PnLVfXG4DKbT0rEY0nKnwE7NqZlqKE6kg==}
+ engines: {node: '>=10.0'}
+ hasBin: true
+ peerDependencies:
+ quill-delta: ^5
+ rxjs: '7'
+ tslib: '2'
+ dependencies:
+ arg: 5.0.2
+ hyperdyperid: 1.2.0
+ quill-delta: 5.1.0
+ rxjs: 7.8.1
+ tslib: 2.6.2
+ dev: true
+
+ /json-parse-even-better-errors@2.3.1:
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+ dev: true
+
+ /json-schema-traverse@0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ dev: false
+
+ /json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ dev: false
+
+ /jsonc-parser@3.2.0:
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+ dev: false
+
+ /jsonfile@4.0.0:
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ dev: true
+
+ /keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ dependencies:
+ json-buffer: 3.0.1
+ dev: false
+
+ /kind-of@6.0.3:
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /kleur@4.1.5:
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
+ engines: {node: '>=6'}
+
+ /known-css-properties@0.29.0:
+ resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==}
+ dev: false
+
+ /levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: false
+
+ /lilconfig@2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /lines-and-columns@1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ dev: true
+
+ /load-yaml-file@0.2.0:
+ resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
+ engines: {node: '>=6'}
+ dependencies:
+ graceful-fs: 4.2.11
+ js-yaml: 3.14.1
+ pify: 4.0.1
+ strip-bom: 3.0.0
+ dev: true
+
+ /local-pkg@0.5.0:
+ resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ engines: {node: '>=14'}
+ dependencies:
+ mlly: 1.5.0
+ pkg-types: 1.0.3
+ dev: false
+
+ /locate-character@3.0.0:
+ resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
+
+ /locate-path@5.0.0:
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
+
+ /locate-path@6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+ dependencies:
+ p-locate: 5.0.0
+
+ /lodash.camelcase@4.3.0:
+ resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
+ dev: false
+
+ /lodash.chunk@4.2.0:
+ resolution: {integrity: sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==}
+ dev: false
+
+ /lodash.clonedeep@4.5.0:
+ resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
+ dev: true
+
+ /lodash.isequal@4.5.0:
+ resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+ dev: true
+
+ /lodash.merge@4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ dev: false
+
+ /lodash.startcase@4.4.0:
+ resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
+ dev: true
+
+ /log-symbols@6.0.0:
+ resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ engines: {node: '>=18'}
+ dependencies:
+ chalk: 5.3.0
+ is-unicode-supported: 1.3.0
+ dev: false
+
+ /loupe@2.3.7:
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ dependencies:
+ get-func-name: 2.0.2
+ dev: false
+
+ /lru-cache@4.1.5:
+ resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
+ dependencies:
+ pseudomap: 1.0.2
+ yallist: 2.1.2
+ dev: true
+
+ /lru-cache@6.0.0:
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
+ dependencies:
+ yallist: 4.0.0
+
+ /lru-cache@7.18.3:
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /magic-string@0.26.7:
+ resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
+ engines: {node: '>=12'}
+ dependencies:
+ sourcemap-codec: 1.4.8
+ dev: false
+
+ /magic-string@0.30.5:
+ resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
+
+ /magic-string@0.30.7:
+ resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
+ dev: false
+
+ /magicast@0.3.3:
+ resolution: {integrity: sha512-ZbrP1Qxnpoes8sz47AM0z08U+jW6TyRgZzcWy3Ma3vDhJttwMwAFDMMQFobwdBxByBD46JYmxRzeF7w2+wJEuw==}
+ dependencies:
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
+ source-map-js: 1.0.2
+ dev: false
+
+ /make-dir@3.1.0:
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+ engines: {node: '>=8'}
+ dependencies:
+ semver: 6.3.1
+ dev: false
+
+ /make-dir@4.0.0:
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
+ dependencies:
+ semver: 7.5.4
+ dev: false
+
+ /make-fetch-happen@10.2.1:
+ resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ agentkeepalive: 4.5.0
+ cacache: 16.1.3
+ http-cache-semantics: 4.1.1
+ http-proxy-agent: 5.0.0
+ https-proxy-agent: 5.0.1
+ is-lambda: 1.0.1
+ lru-cache: 7.18.3
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-fetch: 2.1.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ negotiator: 0.6.3
+ promise-retry: 2.0.1
+ socks-proxy-agent: 7.0.0
+ ssri: 9.0.1
+ transitivePeerDependencies:
+ - bluebird
+ - supports-color
+ dev: false
+
+ /map-obj@1.0.1:
+ resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /map-obj@4.3.0:
+ resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /mdn-data@2.0.30:
+ resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+
+ /mdsvex@0.11.0(svelte@4.2.8):
+ resolution: {integrity: sha512-gJF1s0N2nCmdxcKn8HDn0LKrN8poStqAicp6bBcsKFd/zkUBGLP5e7vnxu+g0pjBbDFOscUyI1mtHz+YK2TCDw==}
+ peerDependencies:
+ svelte: '>=3 <5'
+ dependencies:
+ '@types/unist': 2.0.10
+ prism-svelte: 0.4.7
+ prismjs: 1.29.0
+ svelte: 4.2.8
+ vfile-message: 2.0.4
+ dev: false
+
+ /media-typer@0.3.0:
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /memfs@4.6.0(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-I6mhA1//KEZfKRQT9LujyW6lRbX7RkC24xKododIDO3AGShcaFAMKElv1yFGWX8fD4UaSiwasr3NeQ5TdtHY1A==}
+ engines: {node: '>= 4.0.0'}
+ peerDependencies:
+ tslib: '2'
+ dependencies:
+ json-joy: 9.9.1(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)
+ thingies: 1.16.0(tslib@2.6.2)
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - quill-delta
+ - rxjs
+ dev: true
+
+ /meow@6.1.1:
+ resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/minimist': 1.2.5
+ camelcase-keys: 6.2.2
+ decamelize-keys: 1.1.1
+ hard-rejection: 2.1.0
+ minimist-options: 4.1.0
+ normalize-package-data: 2.5.0
+ read-pkg-up: 7.0.1
+ redent: 3.0.0
+ trim-newlines: 3.0.1
+ type-fest: 0.13.1
+ yargs-parser: 18.1.3
+ dev: true
+
+ /merge-descriptors@1.0.1:
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ dev: false
+
+ /merge-stream@2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ dev: false
+
+ /merge2@1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ /methods@1.1.2:
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /micromatch@4.0.5:
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ engines: {node: '>=8.6'}
+ dependencies:
+ braces: 3.0.2
+ picomatch: 2.3.1
+
+ /mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
+ dev: false
+
+ /mime@1.6.0:
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /mimic-fn@2.1.0:
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /mimic-fn@4.0.0:
+ resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /min-indent@1.0.1:
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /minimatch@3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: false
+
+ /minimatch@5.1.6:
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: false
+
+ /minimatch@9.0.3:
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: false
+
+ /minimist-options@4.1.0:
+ resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
+ engines: {node: '>= 6'}
+ dependencies:
+ arrify: 1.0.1
+ is-plain-obj: 1.1.0
+ kind-of: 6.0.3
+ dev: true
+
+ /minipass-collect@1.0.2:
+ resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass-fetch@2.1.2:
+ resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ minipass: 3.3.6
+ minipass-sized: 1.0.3
+ minizlib: 2.1.2
+ optionalDependencies:
+ encoding: 0.1.13
+ dev: false
+
+ /minipass-flush@1.0.5:
+ resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass-pipeline@1.2.4:
+ resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass-sized@1.0.3:
+ resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+ engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
+ dev: false
+
+ /minipass@5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /minizlib@2.1.2:
+ resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ yallist: 4.0.0
+ dev: false
+
+ /mixme@0.5.10:
+ resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==}
+ engines: {node: '>= 8.0.0'}
+ dev: true
+
+ /mkdirp@1.0.4:
+ resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dev: false
+
+ /mlly@1.5.0:
+ resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==}
+ dependencies:
+ acorn: 8.11.3
+ pathe: 1.1.2
+ pkg-types: 1.0.3
+ ufo: 1.3.2
+ dev: false
+
+ /mri@1.2.0:
+ resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /mrmime@1.0.1:
+ resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /ms@2.0.0:
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
+ dev: false
+
+ /ms@2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+ dev: false
+
+ /ms@2.1.3:
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ dev: false
+
+ /nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+ dev: false
+
+ /nanoid@5.0.4:
+ resolution: {integrity: sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==}
+ engines: {node: ^18 || >=20}
+ hasBin: true
+ dev: false
+
+ /natural-compare@1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ dev: false
+
+ /negotiator@0.6.3:
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /node-addon-api@7.0.0:
+ resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
+ dev: false
+
+ /node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+ dev: false
+
+ /node-gyp@9.4.1:
+ resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==}
+ engines: {node: ^12.13 || ^14.13 || >=16}
+ hasBin: true
+ dependencies:
+ env-paths: 2.2.1
+ exponential-backoff: 3.1.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ make-fetch-happen: 10.2.1
+ nopt: 6.0.0
+ npmlog: 6.0.2
+ rimraf: 3.0.2
+ semver: 7.5.4
+ tar: 6.2.0
+ which: 2.0.2
+ transitivePeerDependencies:
+ - bluebird
+ - supports-color
+ dev: false
+
+ /nopt@5.0.0:
+ resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ abbrev: 1.1.1
+ dev: false
+
+ /nopt@6.0.0:
+ resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ abbrev: 1.1.1
+ dev: false
+
+ /normalize-package-data@2.5.0:
+ resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+ dependencies:
+ hosted-git-info: 2.8.9
+ resolve: 1.22.8
+ semver: 5.7.2
+ validate-npm-package-license: 3.0.4
+ dev: true
+
+ /normalize-path@3.0.0:
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /npm-run-path@5.2.0:
+ resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ path-key: 4.0.0
+ dev: false
+
+ /npmlog@5.0.1:
+ resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
+ dependencies:
+ are-we-there-yet: 2.0.0
+ console-control-strings: 1.1.0
+ gauge: 3.0.2
+ set-blocking: 2.0.0
+ dev: false
+
+ /npmlog@6.0.2:
+ resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ are-we-there-yet: 3.0.1
+ console-control-strings: 1.1.0
+ gauge: 4.0.4
+ set-blocking: 2.0.0
+ dev: false
+
+ /object-assign@4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /object-inspect@1.13.1:
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+
+ /object-is@1.1.5:
+ resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ dev: false
+
+ /object-keys@1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+
+ /object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+
+ /on-finished@2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ ee-first: 1.1.1
+ dev: false
+
+ /once@1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+ dependencies:
+ wrappy: 1.0.2
+ dev: false
+
+ /onetime@5.1.2:
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
+ dependencies:
+ mimic-fn: 2.1.0
+ dev: false
+
+ /onetime@6.0.0:
+ resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ mimic-fn: 4.0.0
+ dev: false
+
+ /optionator@0.9.3:
+ resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ '@aashutoshrathi/word-wrap': 1.2.6
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.4.1
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: false
+
+ /ora@8.0.1:
+ resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ chalk: 5.3.0
+ cli-cursor: 4.0.0
+ cli-spinners: 2.9.2
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.0.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.0.0
+ strip-ansi: 7.1.0
+ dev: false
+
+ /os-tmpdir@1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /outdent@0.5.0:
+ resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
+ dev: true
+
+ /p-filter@2.1.0:
+ resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-map: 2.1.0
+ dev: true
+
+ /p-limit@2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-try: 2.2.0
+ dev: true
+
+ /p-limit@3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ yocto-queue: 0.1.0
+
+ /p-limit@5.0.0:
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ yocto-queue: 1.0.0
+ dev: false
+
+ /p-locate@4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+
+ /p-locate@5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+ dependencies:
+ p-limit: 3.1.0
+
+ /p-map@2.1.0:
+ resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /p-map@4.0.0:
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ aggregate-error: 3.1.0
+ dev: false
+
+ /p-try@2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pad-left@2.1.0:
+ resolution: {integrity: sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ repeat-string: 1.6.1
+ dev: false
+
+ /parent-module@1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+ dependencies:
+ callsites: 3.1.0
+ dev: false
+
+ /parquet-wasm@0.5.0:
+ resolution: {integrity: sha512-XN3EW+3xf915QgpxCvfCdVYsxDLXz+BckKLDlMo41cbipSYD8x+F/3lGcrWtxdY6uJgAmtb+SX3tS+9PPsplQA==}
+ dev: false
+
+ /parse-json@5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+ dev: true
+
+ /parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ dependencies:
+ entities: 4.5.0
+ dev: false
+
+ /parseurl@1.3.3:
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /path-exists@4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+
+ /path-is-absolute@1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /path-key@3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /path-key@4.0.0:
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /path-parse@1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ dev: true
+
+ /path-to-regexp@0.1.7:
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ dev: false
+
+ /path-type@4.0.0:
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
+
+ /pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+ dev: false
+
+ /pathval@1.1.1:
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ dev: false
+
+ /perfect-debounce@1.0.0:
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+ dev: false
+
+ /periscopic@3.1.0:
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 3.0.3
+ is-reference: 3.0.2
+
+ /picocolors@1.0.0:
+ resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ dev: false
+
+ /picomatch@2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
+
+ /pify@4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pkg-dir@4.2.0:
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 4.1.0
+ dev: true
+
+ /pkg-types@1.0.3:
+ resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+ dependencies:
+ jsonc-parser: 3.2.0
+ mlly: 1.5.0
+ pathe: 1.1.2
+ dev: false
+
+ /postcss-load-config@3.1.4(postcss@8.4.33):
+ resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
+ engines: {node: '>= 10'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
+ dependencies:
+ lilconfig: 2.1.0
+ postcss: 8.4.33
+ yaml: 1.10.2
+ dev: false
+
+ /postcss-safe-parser@6.0.0(postcss@8.4.33):
+ resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.3.3
+ dependencies:
+ postcss: 8.4.33
+ dev: false
+
+ /postcss-scss@4.0.9(postcss@8.4.33):
+ resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.4.29
+ dependencies:
+ postcss: 8.4.33
+ dev: false
+
+ /postcss-selector-parser@6.0.15:
+ resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+ dev: false
+
+ /postcss@8.4.33:
+ resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: false
+
+ /preferred-pm@3.1.2:
+ resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==}
+ engines: {node: '>=10'}
+ dependencies:
+ find-up: 5.0.0
+ find-yarn-workspace-root2: 1.2.16
+ path-exists: 4.0.0
+ which-pm: 2.0.0
+ dev: true
+
+ /prelude-ls@1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+ dev: false
+
+ /prettier-plugin-svelte@3.1.2(prettier@3.2.2)(svelte@4.2.8):
+ resolution: {integrity: sha512-7xfMZtwgAWHMT0iZc8jN4o65zgbAQ3+O32V6W7pXrqNvKnHnkoyQCGCbKeUyXKZLbYE0YhFRnamfxfkEGxm8qA==}
+ peerDependencies:
+ prettier: ^3.0.0
+ svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
+ dependencies:
+ prettier: 3.2.2
+ svelte: 4.2.8
+ dev: false
+
+ /prettier-plugin-tailwindcss@0.5.11(prettier-plugin-svelte@3.1.2)(prettier@3.2.2):
+ resolution: {integrity: sha512-AvI/DNyMctyyxGOjyePgi/gqj5hJYClZ1avtQvLlqMT3uDZkRbi4HhGUpok3DRzv9z7Lti85Kdj3s3/1CeNI0w==}
+ engines: {node: '>=14.21.3'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ prettier: ^3.0
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-marko: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ prettier-plugin-twig-melody: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-marko:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+ prettier-plugin-twig-melody:
+ optional: true
+ dependencies:
+ prettier: 3.2.2
+ prettier-plugin-svelte: 3.1.2(prettier@3.2.2)(svelte@4.2.8)
+ dev: false
+
+ /prettier@2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dev: true
+
+ /prettier@3.2.2:
+ resolution: {integrity: sha512-HTByuKZzw7utPiDO523Tt2pLtEyK7OibUD9suEJQrPUCYQqrHr74GGX6VidMrovbf/I50mPqr8j/II6oBAuc5A==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dev: false
+
+ /pretty-format@29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@jest/schemas': 29.6.3
+ ansi-styles: 5.2.0
+ react-is: 18.2.0
+ dev: false
+
+ /prism-svelte@0.4.7:
+ resolution: {integrity: sha512-yABh19CYbM24V7aS7TuPYRNMqthxwbvx6FF/Rw920YbyBWO3tnyPIqRMgHuSVsLmuHkkBS1Akyof463FVdkeDQ==}
+ dev: false
+
+ /prismjs@1.29.0:
+ resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /promise-inflight@1.0.1:
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
+ peerDependencies:
+ bluebird: '*'
+ peerDependenciesMeta:
+ bluebird:
+ optional: true
+ dev: false
+
+ /promise-retry@2.0.1:
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
+ dependencies:
+ err-code: 2.0.3
+ retry: 0.12.0
+ dev: false
+
+ /proxy-addr@2.0.7:
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+ dev: false
+
+ /pseudomap@1.0.2:
+ resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
+ dev: true
+
+ /psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ dev: false
+
+ /punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /qs@6.11.0:
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
+ dev: false
+
+ /querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+ dev: false
+
+ /queue-microtask@1.2.3:
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
+ /quick-lru@4.0.1:
+ resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /quill-delta@5.1.0:
+ resolution: {integrity: sha512-X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA==}
+ engines: {node: '>= 12.0.0'}
+ dependencies:
+ fast-diff: 1.3.0
+ lodash.clonedeep: 4.5.0
+ lodash.isequal: 4.5.0
+ dev: true
+
+ /range-parser@1.2.1:
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /raw-body@2.5.1:
+ resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ dev: false
+
+ /react-is@18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ dev: false
+
+ /read-pkg-up@7.0.1:
+ resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 4.1.0
+ read-pkg: 5.2.0
+ type-fest: 0.8.1
+ dev: true
+
+ /read-pkg@5.2.0:
+ resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/normalize-package-data': 2.4.4
+ normalize-package-data: 2.5.0
+ parse-json: 5.2.0
+ type-fest: 0.6.0
+ dev: true
+
+ /read-yaml-file@1.1.0:
+ resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
+ engines: {node: '>=6'}
+ dependencies:
+ graceful-fs: 4.2.11
+ js-yaml: 3.14.1
+ pify: 4.0.1
+ strip-bom: 3.0.0
+ dev: true
+
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+ dev: false
+
+ /readdirp@3.6.0:
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
+ dependencies:
+ picomatch: 2.3.1
+ dev: false
+
+ /recast@0.23.4:
+ resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==}
+ engines: {node: '>= 4'}
+ dependencies:
+ assert: 2.1.0
+ ast-types: 0.16.1
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.6.2
+ dev: false
+
+ /redent@3.0.0:
+ resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+ engines: {node: '>=8'}
+ dependencies:
+ indent-string: 4.0.0
+ strip-indent: 3.0.0
+ dev: true
+
+ /reduce-flatten@2.0.0:
+ resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+ dev: true
+
+ /regexp.prototype.flags@1.5.1:
+ resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ set-function-name: 2.0.1
+ dev: true
+
+ /repeat-string@1.6.1:
+ resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
+ engines: {node: '>=0.10'}
+ dev: false
+
+ /require-directory@2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /require-from-string@2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /require-main-filename@2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+ dev: true
+
+ /requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ dev: false
+
+ /resolve-from@4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /resolve-from@5.0.0:
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ hasBin: true
+ dependencies:
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+ dev: true
+
+ /restore-cursor@4.0.0:
+ resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: false
+
+ /retry@0.12.0:
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
+ dev: false
+
+ /reusify@1.0.4:
+ resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ /rimraf@3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: false
+
+ /rollup@4.9.5:
+ resolution: {integrity: sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+ dependencies:
+ '@types/estree': 1.0.5
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.9.5
+ '@rollup/rollup-android-arm64': 4.9.5
+ '@rollup/rollup-darwin-arm64': 4.9.5
+ '@rollup/rollup-darwin-x64': 4.9.5
+ '@rollup/rollup-linux-arm-gnueabihf': 4.9.5
+ '@rollup/rollup-linux-arm64-gnu': 4.9.5
+ '@rollup/rollup-linux-arm64-musl': 4.9.5
+ '@rollup/rollup-linux-riscv64-gnu': 4.9.5
+ '@rollup/rollup-linux-x64-gnu': 4.9.5
+ '@rollup/rollup-linux-x64-musl': 4.9.5
+ '@rollup/rollup-win32-arm64-msvc': 4.9.5
+ '@rollup/rollup-win32-ia32-msvc': 4.9.5
+ '@rollup/rollup-win32-x64-msvc': 4.9.5
+ fsevents: 2.3.3
+ dev: false
+
+ /rrweb-cssom@0.6.0:
+ resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+ dev: false
+
+ /run-parallel@1.2.0:
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ dependencies:
+ queue-microtask: 1.2.3
+
+ /rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /sade@1.8.1:
+ resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
+ engines: {node: '>=6'}
+ dependencies:
+ mri: 1.2.0
+ dev: false
+
+ /safe-array-concat@1.1.0:
+ resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+ dev: true
+
+ /safe-buffer@5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ dev: false
+
+ /safe-regex-test@1.0.2:
+ resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ is-regex: 1.1.4
+ dev: true
+
+ /safer-buffer@2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+ /saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+ dependencies:
+ xmlchars: 2.2.0
+ dev: false
+
+ /semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
+ dev: true
+
+ /semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+ dev: false
+
+ /semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ lru-cache: 6.0.0
+
+ /send@0.18.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /serve-static@1.15.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 0.18.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /set-blocking@2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+
+ /set-cookie-parser@2.6.0:
+ resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
+ dev: false
+
+ /set-function-length@1.2.0:
+ resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+
+ /set-function-name@2.0.1:
+ resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.1
+ dev: true
+
+ /setprototypeof@1.2.0:
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
+ dev: false
+
+ /shebang-command@1.2.0:
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: true
+
+ /shebang-command@2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
+ dependencies:
+ shebang-regex: 3.0.0
+ dev: false
+
+ /shebang-regex@1.0.0:
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /shebang-regex@3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /side-channel@1.0.4:
+ resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ object-inspect: 1.13.1
+
+ /siginfo@2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+ dev: false
+
+ /signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+
+ /signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+ dev: false
+
+ /sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@polka/url': 1.0.0-next.24
+ mrmime: 2.0.0
+ totalist: 3.0.1
+ dev: false
+
+ /sisteransi@1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
+ dev: false
+
+ /slash@3.0.0:
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
+
+ /smart-buffer@4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+ dev: false
+
+ /smartwrap@2.0.2:
+ resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ array.prototype.flat: 1.3.2
+ breakword: 1.0.6
+ grapheme-splitter: 1.0.4
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ yargs: 15.4.1
+ dev: true
+
+ /socks-proxy-agent@7.0.0:
+ resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==}
+ engines: {node: '>= 10'}
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.4
+ socks: 2.7.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /socks@2.7.1:
+ resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
+ engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
+ dependencies:
+ ip: 2.0.0
+ smart-buffer: 4.2.0
+ dev: false
+
+ /source-map-js@1.0.2:
+ resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
+ engines: {node: '>=0.10.0'}
+
+ /source-map@0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /sourcemap-codec@1.4.8:
+ resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
+ deprecated: Please use @jridgewell/sourcemap-codec instead
+ dev: false
+
+ /spawndamnit@2.0.0:
+ resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
+ dependencies:
+ cross-spawn: 5.1.0
+ signal-exit: 3.0.7
+ dev: true
+
+ /spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+ dependencies:
+ spdx-expression-parse: 3.0.1
+ spdx-license-ids: 3.0.16
+ dev: true
+
+ /spdx-exceptions@2.3.0:
+ resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ dev: true
+
+ /spdx-expression-parse@3.0.1:
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+ dependencies:
+ spdx-exceptions: 2.3.0
+ spdx-license-ids: 3.0.16
+ dev: true
+
+ /spdx-license-ids@3.0.16:
+ resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ dev: true
+
+ /sprintf-js@1.0.3:
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ dev: true
+
+ /ssri@9.0.1:
+ resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /stackback@0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ dev: false
+
+ /statuses@2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /std-env@3.7.0:
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ dev: false
+
+ /stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /stream-transform@2.1.3:
+ resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==}
+ dependencies:
+ mixme: 0.5.10
+ dev: true
+
+ /string-width@4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+
+ /string-width@7.0.0:
+ resolution: {integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==}
+ engines: {node: '>=18'}
+ dependencies:
+ emoji-regex: 10.3.0
+ get-east-asian-width: 1.2.0
+ strip-ansi: 7.1.0
+ dev: false
+
+ /string.prototype.trim@1.2.8:
+ resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /string.prototype.trimend@1.0.7:
+ resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /string.prototype.trimstart@1.0.7:
+ resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /string_decoder@1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /strip-ansi@6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.1
+
+ /strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ ansi-regex: 6.0.1
+ dev: false
+
+ /strip-bom@3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /strip-final-newline@3.0.0:
+ resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /strip-indent@3.0.0:
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ min-indent: 1.0.1
+ dev: true
+
+ /strip-json-comments@3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /strip-literal@1.3.0:
+ resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
+ dependencies:
+ acorn: 8.11.3
+ dev: false
+
+ /supports-color@5.5.0:
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
+ dependencies:
+ has-flag: 3.0.0
+
+ /supports-color@7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
+ dependencies:
+ has-flag: 4.0.0
+
+ /supports-preserve-symlinks-flag@1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /svelte-eslint-parser@0.33.1(svelte@4.2.8):
+ resolution: {integrity: sha512-vo7xPGTlKBGdLH8T5L64FipvTrqv3OQRx9d2z5X05KKZDlF4rQk8KViZO4flKERY+5BiVdOh7zZ7JGJWo5P0uA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ svelte: ^3.37.0 || ^4.0.0
+ peerDependenciesMeta:
+ svelte:
+ optional: true
+ dependencies:
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ postcss: 8.4.33
+ postcss-scss: 4.0.9(postcss@8.4.33)
+ svelte: 4.2.8
+ dev: false
+
+ /svelte-hmr@0.15.3(svelte@4.2.8):
+ resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==}
+ engines: {node: ^12.20 || ^14.13.1 || >= 16}
+ peerDependencies:
+ svelte: ^3.19.0 || ^4.0.0
+ dependencies:
+ svelte: 4.2.8
+ dev: false
+
+ /svelte-sequential-preprocessor@2.0.1:
+ resolution: {integrity: sha512-N5JqlBni6BzElxmuFrOPxOJnjsxh1cFDACLEVKs8OHBcx8ZNRO1p5SxuQex1m3qbLzAC8G99EHeWcxGkjyKjLQ==}
+ engines: {node: '>=16'}
+ dependencies:
+ svelte: 4.2.8
+ tslib: 2.6.2
+ dev: false
+
+ /svelte@4.2.8:
+ resolution: {integrity: sha512-hU6dh1MPl8gh6klQZwK/n73GiAHiR95IkFsesLPbMeEZi36ydaXL/ZAb4g9sayT0MXzpxyZjR28yderJHxcmYA==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.21
+ acorn: 8.11.3
+ aria-query: 5.3.0
+ axobject-query: 3.2.1
+ code-red: 1.0.4
+ css-tree: 2.3.1
+ estree-walker: 3.0.3
+ is-reference: 3.0.2
+ locate-character: 3.0.0
+ magic-string: 0.30.5
+ periscopic: 3.1.0
+
+ /sveltekit-autoimport@1.7.1(@sveltejs/kit@1.30.3):
+ resolution: {integrity: sha512-cW0nVpyTxXIIvvCfe1HjKgOeoqO2vDR6GGkv1jIYRVTuKtOLipqVYOQ+FAZp2+Ydl0YKNogAeZBVN+twj7rNAQ==}
+ peerDependencies:
+ '@sveltejs/kit': ^1.0.0-next.0
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ '@sveltejs/kit': 1.30.3(svelte@4.2.8)(vite@5.0.12)
+ estree-walker: 2.0.2
+ magic-string: 0.26.7
+ dev: false
+
+ /symbol-tree@3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+ dev: false
+
+ /table-layout@1.0.2:
+ resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ array-back: 4.0.2
+ deep-extend: 0.6.0
+ typical: 5.2.0
+ wordwrapjs: 4.0.1
+ dev: false
+
+ /tar@6.2.0:
+ resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ minipass: 5.0.0
+ minizlib: 2.1.2
+ mkdirp: 1.0.4
+ yallist: 4.0.0
+ dev: false
+
+ /term-size@2.2.1:
+ resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /test-exclude@6.0.0:
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@istanbuljs/schema': 0.1.3
+ glob: 7.2.3
+ minimatch: 3.1.2
+ dev: false
+
+ /text-table@0.2.0:
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+ dev: false
+
+ /thingies@1.16.0(tslib@2.6.2):
+ resolution: {integrity: sha512-J23AVs11hSQxuJxvfQyMIaS9z1QpDxOCvMkL3ZxZl8/jmkgmnNGWrlyNxVz6Jbh0U6DuGmHqq6f7zUROfg/ncg==}
+ engines: {node: '>=10.18'}
+ peerDependencies:
+ tslib: ^2
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /tiny-glob@0.2.9:
+ resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
+ dependencies:
+ globalyzer: 0.1.0
+ globrex: 0.1.2
+ dev: false
+
+ /tinybench@2.5.1:
+ resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
+ dev: false
+
+ /tinypool@0.8.1:
+ resolution: {integrity: sha512-zBTCK0cCgRROxvs9c0CGK838sPkeokNGdQVUUwHAbynHFlmyJYj825f/oRs528HaIJ97lo0pLIlDUzwN+IorWg==}
+ engines: {node: '>=14.0.0'}
+ dev: false
+
+ /tinyspy@2.2.0:
+ resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
+ engines: {node: '>=14.0.0'}
+ dev: false
+
+ /tmp@0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ os-tmpdir: 1.0.2
+ dev: true
+
+ /to-fast-properties@2.0.0:
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /to-regex-range@5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
+ dependencies:
+ is-number: 7.0.0
+
+ /toidentifier@1.0.1:
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
+ dev: false
+
+ /totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /tough-cookie@4.1.3:
+ resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
+ engines: {node: '>=6'}
+ dependencies:
+ psl: 1.9.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
+ dev: false
+
+ /tr46@0.0.3:
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ dev: false
+
+ /tr46@5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
+ dependencies:
+ punycode: 2.3.1
+ dev: false
+
+ /trim-newlines@3.0.1:
+ resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /ts-api-utils@1.0.3(typescript@5.3.3):
+ resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
+ engines: {node: '>=16.13.0'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+ dependencies:
+ typescript: 5.3.3
+ dev: false
+
+ /tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+
+ /tty-table@4.2.3:
+ resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==}
+ engines: {node: '>=8.0.0'}
+ hasBin: true
+ dependencies:
+ chalk: 4.1.2
+ csv: 5.5.3
+ kleur: 4.1.5
+ smartwrap: 2.0.2
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ yargs: 17.7.2
+ dev: true
+
+ /type-check@0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
+ dev: false
+
+ /type-detect@4.0.8:
+ resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /type-fest@0.13.1:
+ resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /type-fest@0.20.2:
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /type-fest@0.6.0:
+ resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /type-fest@0.8.1:
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /type-is@1.6.18:
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: 2.1.35
+ dev: false
+
+ /typed-array-buffer@1.0.0:
+ resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ is-typed-array: 1.1.12
+ dev: true
+
+ /typed-array-byte-length@1.0.0:
+ resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
+ dev: true
+
+ /typed-array-byte-offset@1.0.0:
+ resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
+ dev: true
+
+ /typed-array-length@1.0.4:
+ resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ dependencies:
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ is-typed-array: 1.1.12
+ dev: true
+
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ /typical@4.0.0:
+ resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /typical@5.2.0:
+ resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /ufo@1.3.2:
+ resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
+ dev: false
+
+ /unbox-primitive@1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ dependencies:
+ call-bind: 1.0.5
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
+ dev: true
+
+ /undici-types@5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ dev: false
+
+ /undici@5.26.5:
+ resolution: {integrity: sha512-cSb4bPFd5qgR7qr2jYAi0hlX9n5YKK2ONKkLFkxl+v/9BvC0sOpZjBHDBSXc5lWAf5ty9oZdRXytBIHzgUcerw==}
+ engines: {node: '>=14.0'}
+ dependencies:
+ '@fastify/busboy': 2.1.0
+ dev: false
+
+ /unique-filename@2.0.1:
+ resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ unique-slug: 3.0.0
+ dev: false
+
+ /unique-slug@3.0.0:
+ resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: false
+
+ /unist-util-stringify-position@2.0.3:
+ resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
+ dependencies:
+ '@types/unist': 2.0.10
+ dev: false
+
+ /universalify@0.1.2:
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
+ dev: true
+
+ /universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+ dev: false
+
+ /unpipe@1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /uri-js@4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ dependencies:
+ punycode: 2.3.1
+ dev: false
+
+ /url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: false
+
+ /util-deprecate@1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ dev: false
+
+ /util@0.12.5:
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+ dependencies:
+ inherits: 2.0.4
+ is-arguments: 1.1.1
+ is-generator-function: 1.0.10
+ is-typed-array: 1.1.12
+ which-typed-array: 1.1.13
+ dev: false
+
+ /utils-merge@1.0.1:
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+ engines: {node: '>= 0.4.0'}
+ dev: false
+
+ /v8-to-istanbul@9.2.0:
+ resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
+ engines: {node: '>=10.12.0'}
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.21
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 2.0.0
+ dev: false
+
+ /validate-npm-package-license@3.0.4:
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+ dependencies:
+ spdx-correct: 3.2.0
+ spdx-expression-parse: 3.0.1
+ dev: true
+
+ /vary@1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /vfile-message@2.0.4:
+ resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
+ dependencies:
+ '@types/unist': 2.0.10
+ unist-util-stringify-position: 2.0.3
+ dev: false
+
+ /vite-node@1.2.0(@types/node@20.11.2):
+ resolution: {integrity: sha512-ETnQTHeAbbOxl7/pyBck9oAPZZZo+kYnFt1uQDD+hPReOc+wCjXw4r4jHriBRuVDB5isHmPXxrfc1yJnfBERqg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ dependencies:
+ cac: 6.7.14
+ debug: 4.3.4
+ pathe: 1.1.2
+ picocolors: 1.0.0
+ vite: 5.0.12(@types/node@20.11.2)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: false
+
+ /vite@5.0.12(@types/node@20.11.2):
+ resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 20.11.2
+ esbuild: 0.19.11
+ postcss: 8.4.33
+ rollup: 4.9.5
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: false
+
+ /vitefu@0.2.5(vite@5.0.12):
+ resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ vite: 5.0.12(@types/node@20.11.2)
+ dev: false
+
+ /vitest@1.2.0(@types/node@20.11.2)(jsdom@23.2.0):
+ resolution: {integrity: sha512-Ixs5m7BjqvLHXcibkzKRQUvD/XLw0E3rvqaCMlrm/0LMsA0309ZqYvTlPzkhh81VlEyVZXFlwWnkhb6/UMtcaQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': ^1.0.0
+ '@vitest/ui': ^1.0.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ dependencies:
+ '@types/node': 20.11.2
+ '@vitest/expect': 1.2.0
+ '@vitest/runner': 1.2.0
+ '@vitest/snapshot': 1.2.0
+ '@vitest/spy': 1.2.0
+ '@vitest/utils': 1.2.0
+ acorn-walk: 8.3.2
+ cac: 6.7.14
+ chai: 4.4.1
+ debug: 4.3.4
+ execa: 8.0.1
+ jsdom: 23.2.0
+ local-pkg: 0.5.0
+ magic-string: 0.30.5
+ pathe: 1.1.2
+ picocolors: 1.0.0
+ std-env: 3.7.0
+ strip-literal: 1.3.0
+ tinybench: 2.5.1
+ tinypool: 0.8.1
+ vite: 5.0.12(@types/node@20.11.2)
+ vite-node: 1.2.0(@types/node@20.11.2)
+ why-is-node-running: 2.2.2
+ transitivePeerDependencies:
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: false
+
+ /w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
+ dependencies:
+ xml-name-validator: 5.0.0
+ dev: false
+
+ /wcwidth@1.0.1:
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ dependencies:
+ defaults: 1.0.4
+ dev: true
+
+ /web-worker@1.3.0:
+ resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==}
+ dev: false
+
+ /webidl-conversions@3.0.1:
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ dev: false
+
+ /webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ iconv-lite: 0.6.3
+ dev: false
+
+ /whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /whatwg-url@14.0.0:
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ engines: {node: '>=18'}
+ dependencies:
+ tr46: 5.0.0
+ webidl-conversions: 7.0.0
+ dev: false
+
+ /whatwg-url@5.0.0:
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+ dependencies:
+ tr46: 0.0.3
+ webidl-conversions: 3.0.1
+ dev: false
+
+ /which-boxed-primitive@1.0.2:
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ dependencies:
+ is-bigint: 1.0.4
+ is-boolean-object: 1.1.2
+ is-number-object: 1.0.7
+ is-string: 1.0.7
+ is-symbol: 1.0.4
+ dev: true
+
+ /which-module@2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
+ dev: true
+
+ /which-pm@2.0.0:
+ resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==}
+ engines: {node: '>=8.15'}
+ dependencies:
+ load-yaml-file: 0.2.0
+ path-exists: 4.0.0
+ dev: true
+
+ /which-typed-array@1.1.13:
+ resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+
+ /which@1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+
+ /which@2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: false
+
+ /why-is-node-running@2.2.2:
+ resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dependencies:
+ siginfo: 2.0.0
+ stackback: 0.0.2
+ dev: false
+
+ /wide-align@1.1.5:
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+ dependencies:
+ string-width: 4.2.3
+ dev: false
+
+ /wordwrapjs@4.0.1:
+ resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ reduce-flatten: 2.0.0
+ typical: 5.2.0
+ dev: false
+
+ /wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+
+ /wrap-ansi@7.0.0:
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+
+ /wrappy@1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ dev: false
+
+ /ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dev: false
+
+ /xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+ dev: false
+
+ /y18n@4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: true
+
+ /y18n@5.0.8:
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /yallist@2.1.2:
+ resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
+ dev: true
+
+ /yallist@4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+
+ /yaml@1.10.2:
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /yaml@2.3.4:
+ resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
+ engines: {node: '>= 14'}
+ dev: false
+
+ /yargs-parser@18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+
+ /yargs-parser@21.1.1:
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /yargs@15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: true
+
+ /yargs@17.7.2:
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
+ dependencies:
+ cliui: 8.0.1
+ escalade: 3.1.1
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ string-width: 4.2.3
+ y18n: 5.0.8
+ yargs-parser: 21.1.1
+ dev: true
+
+ /yocto-queue@0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+
+ /yocto-queue@1.0.0:
+ resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ engines: {node: '>=12.20'}
+ dev: false
+
+ /zod@3.22.4:
+ resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
+ dev: false
diff --git a/packages/lib/sdk/result.xml b/packages/lib/sdk/result.xml
new file mode 100644
index 0000000000..59f8a1cd85
--- /dev/null
+++ b/packages/lib/sdk/result.xml
@@ -0,0 +1,168 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+Ignoring source type "ddb" from test-package-2, already overriden by test-package
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[33m[!] fake-dir is not a valid source (no connection.yaml); skipping[39m
+ENOENT: no such file or directory, open 'fake-dir/connection.yaml'
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/lib/sdk/src/build-dev/cli/add.js b/packages/lib/sdk/src/build-dev/cli/add.js
new file mode 100644
index 0000000000..fd3db06c66
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add.js
@@ -0,0 +1,95 @@
+import * as prompt from '@clack/prompts';
+import { updateSvelteConfig } from './add/updateSvelteConfig.js';
+import { updatePackageJson } from './add/updatePackageJson.js';
+import { updateViteConfig } from './add/updateViteConfig.js';
+import { createEvidenceConfig } from '../../configuration/createEvidenceConfig.js';
+import { updateGitIgnore } from './add/updateGitIgnore.js';
+import { addTypeRef } from './add/addTypeRef.js';
+
+import fs from 'fs/promises';
+import path from 'path';
+import { installPluginPrompt } from '../../plugins/cli/install.prompt.js';
+
+import chalk from 'chalk';
+import { projectRoot } from '../../lib/projectRoot.js';
+import { addServerHook } from './add/addServerHook.js';
+import { EvidenceError } from '../../lib/EvidenceError.js';
+
+/** @type {import("@brianmd/citty").CommandDef} */
+export const add = {
+ meta: {
+ name: 'add',
+ description: 'Add evidence to your Svelte project'
+ },
+ async run() {
+ prompt.intro('Installing Evidence SDK in your project');
+ await updateGitIgnore();
+ prompt.log.step('Updated .gitignore');
+ await updatePackageJson();
+ prompt.log.step('Updated package.json');
+ await updateSvelteConfig();
+ prompt.log.step('Updated svelte configuration');
+ await updateViteConfig();
+ prompt.log.step('Updated vite configuration');
+ await addTypeRef();
+ prompt.log.step('Added type reference');
+
+ // TODO: Detect if we are in a sveltekit project
+ await addServerHook();
+ prompt.log.step('Server hook configured');
+ await createEvidenceConfig()
+ .then(() => {
+ prompt.log.step('Created evidence.config.yaml');
+ })
+ .catch((e) => {
+ if (e instanceof EvidenceError && e.message.includes('Configuration file already exists')) {
+ console.debug(chalk.dim('Did not create evidence.config.yaml, already exists'));
+ } else {
+ throw e;
+ }
+ });
+
+ await fs.mkdir(path.resolve(projectRoot, 'sources'), { recursive: true });
+
+ prompt.log.step('Created sources directory');
+
+ const installSources = await prompt.confirm({
+ message: 'Would you like to install a datasource?'
+ });
+ if (installSources === true) {
+ const result = await installPluginPrompt(true, 'datasource', true);
+ if (result) {
+ prompt.log.info(
+ `Plugin installed! Run ${chalk.bold('npm i')} to install it and ${chalk.bold(
+ 'npx evidence-sdk connections edit'
+ )} to set up a connection.`
+ );
+ } else {
+ prompt.log.warn(
+ `You did not install any plugins; install one manually, or use ${chalk.bold(
+ 'npx evidence-sdk plugins install'
+ )} for an interactive helper.`
+ );
+ }
+ } else {
+ prompt.log.warn(
+ `You did not install any plugins; install one manually, or use ${chalk.bold(
+ 'npx evidence-sdk plugins install'
+ )} for an interactive helper.`
+ );
+ }
+
+ prompt.log.info(
+ [
+ chalk.bold('Thanks for trying out the Evidence SDK Preview!'),
+ 'Please note that the interfaces in the preview are unstable, and bugs are to be expected',
+ 'We do not consider this ready for production yet.',
+ 'If you encounter issues, you can report them on GitHub:' +
+ chalk.bold('https://github.com/evidence-dev/sdk/issues/new'),
+ chalk.green("Happy SQL'ing! 🎉")
+ ].join('\n')
+ );
+
+ prompt.outro('Evidence SDK Installed!');
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/add/addServerHook.js b/packages/lib/sdk/src/build-dev/cli/add/addServerHook.js
new file mode 100644
index 0000000000..b2df56a515
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add/addServerHook.js
@@ -0,0 +1,30 @@
+import { findFile } from 'pkg-types';
+import fs from 'fs/promises';
+import { log } from '@clack/prompts';
+
+const defaultContent = `
+import { ssrHook } from '$evidence/ssrHook.svelte.js';
+
+/** @type {import('@sveltejs/kit').Handle} */
+export async function handle({ event, resolve }) {
+ /** @type {{ name: string, queryString: string}[]} */
+ const presentQueries = []
+ const response = await resolve(event, {
+ transformPageChunk: ssrHook(presentQueries)
+ });
+ return response;
+}
+`;
+
+export const addServerHook = async () => {
+ const hooks = await findFile('./src/hooks.server.js')
+ .catch(() => findFile('./src/hooks.server.ts'))
+ .catch(() => false);
+ if (hooks) {
+ log.warn(
+ 'Server hooks file already exists. Please see the wiki for information on configuring SSR. https://github.com/evidence-dev/sdk/wiki/Configuring-SSR'
+ );
+ } else {
+ await fs.writeFile('./src/hooks.server.js', defaultContent);
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/add/addTypeRef.js b/packages/lib/sdk/src/build-dev/cli/add/addTypeRef.js
new file mode 100644
index 0000000000..a95834bc9f
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add/addTypeRef.js
@@ -0,0 +1,19 @@
+import { findFile } from 'pkg-types';
+import fs from 'fs/promises';
+import { log } from '@clack/prompts';
+
+export const addTypeRef = async () => {
+ const appDTs = await findFile('src/app.d.ts').catch(() => {
+ log.warn('Could not find app.d.ts file; types will not be installed');
+ return;
+ });
+ if (!appDTs) return;
+
+ const appDTsContent = await fs.readFile(appDTs, 'utf-8');
+ const lines = appDTsContent.split('\n');
+ const refLine = `/// `;
+ if (!lines.includes(refLine)) {
+ lines.splice(0, 0, refLine); // Insert at beginning of file
+ await fs.writeFile(appDTs, lines.join('\n'));
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/add/updateGitIgnore.js b/packages/lib/sdk/src/build-dev/cli/add/updateGitIgnore.js
new file mode 100644
index 0000000000..214eced236
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add/updateGitIgnore.js
@@ -0,0 +1,33 @@
+import { findFile } from 'pkg-types';
+import fs from 'fs/promises';
+import path from 'path';
+
+export const updateGitIgnore = async () => {
+ const gitIgnorePath = await findFile('.gitignore').catch(() =>
+ path.join(process.cwd(), '.gitignore')
+ );
+
+ const gitIgnoreContent = await fs.readFile(gitIgnorePath, 'utf-8').catch(() => '');
+ const gitIgnoreLines = gitIgnoreContent.split('\n');
+ const initialLines = gitIgnoreLines.length;
+
+ const evidenceIgnorePatterns = [
+ '.evidence', // internal directory
+ 'connection.options.yaml' // can contain credentials
+ ];
+
+ for (const pattern of evidenceIgnorePatterns) {
+ // This matches case sensitive and exact matches intentionally
+
+ if (!gitIgnoreLines.some((line) => line.trim() === pattern.trim()))
+ gitIgnoreLines.push(
+ `# Automatically ignored by Evidence, this should not be source controlled`,
+ `${pattern}`
+ );
+ }
+
+ if (gitIgnoreLines.length > initialLines) {
+ // added lines, rewrite file
+ await fs.writeFile(gitIgnorePath, gitIgnoreLines.join('\n'));
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/add/updatePackageJson.js b/packages/lib/sdk/src/build-dev/cli/add/updatePackageJson.js
new file mode 100644
index 0000000000..7c9dfb5f9d
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add/updatePackageJson.js
@@ -0,0 +1,26 @@
+import { resolvePackageJSON, readPackageJSON, writePackageJSON } from 'pkg-types';
+import { EvidenceError } from '../../../lib/EvidenceError.js';
+import chalk from 'chalk';
+
+export const updatePackageJson = async () => {
+ const packageJson = await readPackageJSON().catch(() => {
+ throw new EvidenceError(
+ 'Could not find an package.json file',
+ 'Are you running this in a valid javascript package?'
+ );
+ });
+ if (!packageJson.dependencies) packageJson.dependencies = {};
+
+ // Install needed dependencies
+ // TODO: How do we determine variables? (Can we literally steal from the SDK's package.json?)
+ if (
+ '@evidence-dev/sdk' in packageJson.dependencies ||
+ '@evidence-dev/sdk' in (packageJson.devDependencies ?? {})
+ ) {
+ console.debug(chalk.dim('Did not update @evidence-dev/sdk dependency, it already exists!'));
+ } else {
+ packageJson.dependencies['@evidence-dev/sdk'] = 'preview';
+ }
+ const packagePath = await resolvePackageJSON();
+ await writePackageJSON(packagePath, packageJson);
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/add/updateSvelteConfig.js b/packages/lib/sdk/src/build-dev/cli/add/updateSvelteConfig.js
new file mode 100644
index 0000000000..bf8790be5b
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add/updateSvelteConfig.js
@@ -0,0 +1,199 @@
+// TODO: Kit
+
+import { findFile } from 'pkg-types';
+import { parse, prettyPrint, visit } from 'recast';
+import fs from 'fs/promises';
+import { EvidenceError } from '../../../lib/EvidenceError.js';
+
+/**
+ *
+ * @param {import("estree").Property} node
+ * @param {string} importName
+ */
+const insertPreprocessor = (node, importName) => {
+ /** @type {import("estree").ArrayExpression} */
+ let arrayValue;
+
+ if (node.value.type !== 'ArrayExpression') {
+ arrayValue = {
+ type: 'ArrayExpression',
+ elements: []
+ };
+
+ if (node.value.type === 'CallExpression') {
+ arrayValue.elements.push(/** @type {import("estree").Expression} */ (node.value));
+ }
+
+ if (node.value.type === 'Identifier') arrayValue.elements.push(node.value);
+ } else {
+ arrayValue = /** @type {import("estree").ArrayExpression} */ (node.value);
+ }
+
+ if (
+ !arrayValue.elements.some(
+ (el) =>
+ el && // not null
+ el.type === 'CallExpression' && // is function call
+ el.callee.type == 'Identifier' && // has name
+ el.callee.name === importName // name is correct import
+ )
+ ) {
+ // Add the call
+ arrayValue.elements.push({
+ type: 'CallExpression',
+ callee: {
+ type: 'Identifier',
+ name: importName
+ },
+ arguments: [],
+ optional: false
+ });
+ }
+
+ node.value = arrayValue;
+};
+
+export const updateSvelteConfig = async () => {
+ const svelteConfig = await findFile('svelte.config.ts')
+ .catch(() => findFile('svelte.config.js'))
+ .catch(() => {
+ throw new Error(
+ 'Could not find a valid svelte configuration file (svelte.config.js, svelte.config.ts)'
+ );
+ });
+ const svelteConfigContent = await fs.readFile(svelteConfig, 'utf-8');
+ /** @type {{program: import("estree").Program}} */
+ const { program: svelteConfigAst } = await parse(svelteConfigContent);
+
+ let foundImport = false;
+ let importName = 'evidenceSvelte';
+
+ let foundPreprocess = false;
+
+ visit(svelteConfigAst, {
+ visitImportDeclaration({ node }) {
+ if (node.source.value !== '@evidence-dev/sdk')
+ // TODO: Update this package title
+ return false;
+
+ const importValue = node.specifiers?.find(
+ (spec) => spec.type === 'ImportSpecifier' && spec.imported.name === 'evidenceSvelte'
+ );
+ if (importValue && importValue.type === 'ImportSpecifier') {
+ foundImport = true;
+
+ if (importValue.local) {
+ let v = importValue.local.name;
+ while (typeof v !== 'string') v = v.name;
+ importName = v;
+ } else {
+ let v = importValue.imported.name;
+ while (typeof v !== 'string') v = v.name;
+ importName = v;
+ }
+
+ return false;
+ } else if (importValue) {
+ throw new EvidenceError('Failed to add needed imports to svelte configuration');
+ }
+ return false;
+ },
+ visitProperty({ node }) {
+ if (
+ node.type === 'Property' &&
+ node.key.type === 'Identifier' &&
+ node.key.name === 'preprocess'
+ ) {
+ foundPreprocess = true;
+ insertPreprocessor(/** @type {import("estree").Property} */ (node), importName);
+ }
+ return false;
+ }
+ });
+
+ if (!foundImport) {
+ svelteConfigAst.body = [
+ {
+ type: 'ImportDeclaration',
+ specifiers: [
+ {
+ type: 'ImportSpecifier',
+ imported: { type: 'Identifier', name: importName },
+ local: { type: 'Identifier', name: importName }
+ }
+ ],
+ source: {
+ type: 'Literal',
+ value: '@evidence-dev/sdk'
+ }
+ },
+ ...svelteConfigAst.body
+ ];
+ }
+ if (!foundPreprocess) {
+ let updatedPreprocess = false;
+ visit(svelteConfigAst, {
+ visitVariableDeclaration({ node }) {
+ const config =
+ /** @type {import("estree").VariableDeclarator | undefined} */
+ (
+ node.declarations.find(
+ (dec) =>
+ dec.type === 'VariableDeclarator' && // declaring a variable
+ dec.id.type === 'Identifier' && // id is an id I guess
+ dec.id.name === 'config' // variable is named config
+ )
+ );
+ if (!config) return false;
+ if (!config.init) return false;
+ if (config.init.type !== 'ObjectExpression') return false; // TODO: How to handle this case?
+
+ const cfgObj = config.init;
+ if (
+ cfgObj.properties.some(
+ (prop) =>
+ prop.type === 'Property' &&
+ prop.key.type === 'Identifier' &&
+ prop.key.name === 'preprocess'
+ )
+ ) {
+ // Something weird is happening in this case, preprocess shouldn't exist right now
+ return false;
+ }
+ cfgObj.properties.push({
+ kind: 'init',
+ method: false,
+ shorthand: false,
+ computed: false,
+
+ type: 'Property',
+ key: {
+ type: 'Identifier',
+ name: 'preprocess'
+ },
+ value: {
+ type: 'ArrayExpression',
+ elements: [
+ {
+ type: 'CallExpression',
+ callee: {
+ type: 'Identifier',
+ name: importName
+ },
+ optional: false,
+ arguments: []
+ }
+ ]
+ }
+ });
+ updatedPreprocess = true;
+
+ return false;
+ }
+ });
+ if (!updatedPreprocess)
+ throw new EvidenceError('Failed to insert preprocessor to svelte configuration');
+ }
+
+ await fs.writeFile(svelteConfig, prettyPrint(svelteConfigAst).code);
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/add/updateViteConfig.js b/packages/lib/sdk/src/build-dev/cli/add/updateViteConfig.js
new file mode 100644
index 0000000000..b01dae90d7
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/add/updateViteConfig.js
@@ -0,0 +1,152 @@
+import { findFile } from 'pkg-types';
+import { parse, prettyPrint, visit } from 'recast';
+import fs from 'fs/promises';
+import { EvidenceError } from '../../../lib/EvidenceError.js';
+
+export const updateViteConfig = async () => {
+ const viteConfig = await findFile('vite.config.ts')
+ .catch(() => findFile('vite.config.js'))
+ .catch(() => {
+ throw new EvidenceError(
+ 'Could not find a valid vite configuration file (vite.config.js, vite.config.ts)'
+ );
+ });
+ const viteConfigContent = await fs.readFile(viteConfig, 'utf-8');
+ /** @type {{program: import("estree").Program}} */
+ const { program: viteConfigAst } = await parse(viteConfigContent);
+
+ let foundImport = false;
+ let importName = 'evidenceVite';
+
+ visit(viteConfigAst, {
+ visitImportDeclaration({ node }) {
+ if (node.source.value !== '@evidence-dev/sdk')
+ // TODO: Update this package title
+ return false;
+
+ const importValue = node.specifiers?.find(
+ (spec) => spec.type === 'ImportSpecifier' && spec.imported.name === 'evidenceVite'
+ );
+ if (importValue && importValue.type === 'ImportSpecifier') {
+ foundImport = true;
+
+ if (importValue.local) {
+ let v = importValue.local.name;
+ while (typeof v !== 'string') v = v.name;
+ importName = v;
+ } else {
+ let v = importValue.imported.name;
+ while (typeof v !== 'string') v = v.name;
+ importName = v;
+ }
+
+ return false;
+ } else if (importValue) {
+ throw new EvidenceError(
+ 'Failed to add needed imports to vite configuration',
+ 'You may need to install Evidence manually'
+ ); // TODO: Docs page
+ }
+ return false;
+ },
+ visitCallExpression({ node }) {
+ // TODO: Is there any sense in tracking down a plugin that is declared outside the defineConfig?
+ // I think not, if they are at that point they can set it up themselves
+ if (node.callee.type !== 'Identifier') return false;
+ if (node.callee.name !== 'defineConfig') return false;
+
+ /** @type {import("estree").ObjectExpression} */
+ let opts;
+ if (node.arguments.length === 0)
+ node.arguments.push({
+ type: 'ObjectExpression',
+ properties: []
+ });
+ if (node.arguments[0].type !== 'ObjectExpression') {
+ throw new EvidenceError(
+ 'Cannot update vite.config.js, unexpected argument found in defineConfig',
+ 'You may need to install Evidence manually'
+ ); // TODO: Docs page
+ }
+ opts = /** @type {import("estree").ObjectExpression} */ (node.arguments[0]);
+ if (
+ !opts.properties.some(
+ (prop) =>
+ prop.type === 'Property' && prop.key.type === 'Identifier' && prop.key.name == 'plugins'
+ )
+ ) {
+ // Add plugins key
+ opts.properties.push({
+ type: 'Property',
+ kind: 'init',
+ method: false,
+ shorthand: false,
+ computed: false,
+ key: {
+ type: 'Identifier',
+ name: 'plugins'
+ },
+ value: {
+ type: 'ArrayExpression',
+ elements: []
+ }
+ });
+ }
+
+ const pluginArray = /** @type {import("estree").ArrayExpression} */ (
+ /** @type {import("estree").Property} */ (
+ opts.properties.find(
+ (prop) =>
+ prop.type === 'Property' &&
+ prop.key.type === 'Identifier' &&
+ prop.key.name === 'plugins' &&
+ prop.value.type === 'ArrayExpression'
+ )
+ )?.value
+ );
+
+ const hasCall = pluginArray.elements.some(
+ (el) =>
+ el &&
+ el.type === 'CallExpression' &&
+ el.callee.type === 'Identifier' &&
+ el.callee.name === importName
+ );
+ if (!hasCall) {
+ pluginArray.elements.push({
+ type: 'CallExpression',
+ callee: {
+ type: 'Identifier',
+ name: importName
+ },
+ arguments: [],
+ optional: false
+ });
+ }
+
+ return false;
+ }
+ });
+
+ if (!foundImport) {
+ viteConfigAst.body = [
+ {
+ type: 'ImportDeclaration',
+ specifiers: [
+ {
+ type: 'ImportSpecifier',
+ imported: { type: 'Identifier', name: importName },
+ local: { type: 'Identifier', name: importName }
+ }
+ ],
+ source: {
+ type: 'Literal',
+ value: '@evidence-dev/sdk'
+ }
+ },
+ ...viteConfigAst.body
+ ];
+ }
+
+ await fs.writeFile(viteConfig, prettyPrint(viteConfigAst).code);
+};
diff --git a/packages/lib/sdk/src/build-dev/cli/build.js b/packages/lib/sdk/src/build-dev/cli/build.js
new file mode 100644
index 0000000000..d088e4ddb1
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/build.js
@@ -0,0 +1,30 @@
+import { loadEnv } from 'vite';
+import { evidenceProjectOnlyNotice } from '../../lib/cli/notices.js';
+import path from 'path';
+import { projectRoot } from '../../lib/projectRoot.js';
+import { copyToLayout } from '../../plugins/layouts/copyToLayout.js';
+import { build as viteBuild } from 'vite';
+
+/** @type {Promise} */
+export const build = evidenceProjectOnlyNotice('build', {
+ meta: {
+ name: 'build',
+ description: 'Build your evidence project'
+ },
+ async run() {
+ const loadedEnv = loadEnv('', '.', ['VITE_', 'EVIDENCE_']);
+ Object.assign(process.env, loadedEnv);
+
+ await copyToLayout();
+ let templateRoot = path.join(projectRoot, '.evidence', 'template');
+
+ process.chdir(templateRoot);
+
+ await viteBuild({
+ build: {
+ emptyOutDir: true,
+ outDir: '../../build'
+ }
+ });
+ }
+});
diff --git a/packages/lib/sdk/src/build-dev/cli/dev.js b/packages/lib/sdk/src/build-dev/cli/dev.js
new file mode 100644
index 0000000000..a2d35ae7b7
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/dev.js
@@ -0,0 +1,49 @@
+import { evidenceProjectOnlyNotice } from '../../lib/cli/notices.js';
+import { createServer, loadEnv } from 'vite';
+import chalk from 'chalk';
+import { copyToLayout } from '../../plugins/layouts/copyToLayout.js';
+import path from 'path';
+import { projectRoot } from '../../lib/projectRoot.js';
+
+/** @type {Promise} */
+export const dev = evidenceProjectOnlyNotice('dev', {
+ meta: {
+ name: 'dev',
+ description: 'Run the evidence dev server'
+ },
+ async run({ rawArgs }) {
+ // TODO: Should we use vite's built in loadEnv function?
+
+ const loadedEnv = loadEnv('', '.', ['VITE_', 'EVIDENCE_']);
+ Object.assign(process.env, loadedEnv);
+
+ console.clear();
+ await copyToLayout();
+
+ let templateRoot = path.join(projectRoot, '.evidence', 'template');
+
+ process.chdir(templateRoot);
+
+ /** @type {import("vite").InlineConfig} */
+ const viteConfig = {
+ server: {
+ host: rawArgs.includes('--host')
+ }
+ };
+
+ const server = await createServer(viteConfig);
+
+ await server.listen(3000);
+
+ console.log(chalk.dim(`Running in ${process.cwd()}`));
+
+ console.log(chalk.bold(' Your Evidence project has started!'));
+ console.log('');
+ console.log(' You can access it at the following URLs:');
+
+ server.printUrls();
+
+ // TODO: We could add a keyboard shortcut here for running sources; might be cute
+ server.bindCLIShortcuts({ print: true });
+ }
+});
diff --git a/packages/lib/sdk/src/build-dev/cli/index.js b/packages/lib/sdk/src/build-dev/cli/index.js
new file mode 100644
index 0000000000..68afe0d423
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/cli/index.js
@@ -0,0 +1,12 @@
+import { add } from './add.js';
+import { build } from './build.js';
+import { dev } from './dev.js';
+
+/**
+ * @type {import("@brianmd/citty").SubCommandsDef}
+ */
+export const buildDevCli = {
+ add,
+ build,
+ dev
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/index.js b/packages/lib/sdk/src/build-dev/svelte/index.js
new file mode 100644
index 0000000000..4b9850dfc3
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/index.js
@@ -0,0 +1,40 @@
+import seqPreprocessor from 'svelte-sequential-preprocessor';
+
+import { addScriptTags } from './processors/addScriptTags.js';
+import { convertToHtml } from './processors/convertToHtml/convertToHtml.js';
+import { extractQueries } from './processors/extractQueries/extractQueries.js';
+import { initUniversalSql } from './processors/initializeUniversalSql.js';
+import { injectHighlightStyles } from './processors/injectHighlightStyles.js';
+import { injectQueries } from './processors/injectQueries/injectQueries.js';
+import { obfuscateCode } from './processors/obfuscateCode/obfuscateCode.js';
+import { transformQueries } from './processors/transformQueries/transformQueries.js';
+import { highlight } from './processors/highlight/highlight.js';
+import { injectComponents } from './processors/injectComponents/injectComponents.js';
+
+/**
+ * @typedef {Object} EvidencePreprocessOptions
+ * @property {boolean} [escapeCode = true] If false, disables the b64 escaping of codeblock content
+ * @property {boolean} [highlight = true] If false, disables the auto highlight of code blocks
+ */
+
+/**
+ * @param {EvidencePreprocessOptions} opts
+ * @returns {import("svelte/types/compiler/preprocess").PreprocessorGroup}
+ */
+export const svelte = (opts = {}) => {
+ /** @type {Array} */
+ const processors = [];
+ processors.push(convertToHtml);
+ processors.push(addScriptTags);
+ processors.push(extractQueries);
+ if (opts.highlight !== false) processors.push(highlight);
+ if (opts.escapeCode !== false) processors.push(obfuscateCode);
+ processors.push(transformQueries);
+ processors.push(injectHighlightStyles);
+ processors.push(injectQueries);
+ processors.push(initUniversalSql);
+ processors.push(injectComponents());
+
+ // @ts-expect-error Typescript is upset about this for some reason
+ return seqPreprocessor(processors);
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/lib/isTargetFile.js b/packages/lib/sdk/src/build-dev/svelte/lib/isTargetFile.js
new file mode 100644
index 0000000000..e4f27fbb01
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/lib/isTargetFile.js
@@ -0,0 +1,6 @@
+/**
+ *
+ * @param {string | undefined} filename
+ * @returns
+ */
+export const isTargetFile = (filename) => filename?.split('/').at(-1)?.startsWith('+');
diff --git a/packages/lib/sdk/src/build-dev/svelte/metadatas.js b/packages/lib/sdk/src/build-dev/svelte/metadatas.js
new file mode 100644
index 0000000000..c78356648e
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/metadatas.js
@@ -0,0 +1,39 @@
+/** @typedef {import("../../types/index.js").FileMetadata} FileMetadata */
+
+/** @type {Map} */
+const metadatas = new Map();
+
+/**
+ * @param {string} filename
+ * @returns {FileMetadata | undefined}
+ */
+export const getFileMetadata = (filename) => metadatas.get(filename);
+
+/**
+ * @param {string} filename
+ * @param {FileMetadata} metadata
+ * @returns {void}
+ */
+export const addFileMetadata = (filename, metadata) => {
+ metadatas.set(filename, Object.assign(metadatas.get(filename) ?? {}, metadata));
+};
+
+/**
+ * @param {string} filename
+ * @param {FileMetadata} metadata
+ * @returns {void}
+ */
+export const setFileMetadata = (filename, metadata) => {
+ metadatas.set(filename, metadata);
+};
+
+/**
+ * @returns {void}
+ */
+export const clearFileMetadatas = () => {
+ if (process.env.NODE_ENV !== 'test')
+ console.warn('clearFileMetadatas is only intended to be used during testing');
+ metadatas.clear();
+};
+
+export const getAllFileMetadatas = () => Object.fromEntries(metadatas.entries());
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/addScriptTags.js b/packages/lib/sdk/src/build-dev/svelte/processors/addScriptTags.js
new file mode 100644
index 0000000000..b40ab4baf5
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/addScriptTags.js
@@ -0,0 +1,17 @@
+/**
+ * @type {import("svelte/types/compiler/preprocess").PreprocessorGroup}
+ */
+export const addScriptTags = {
+ markup({ content }) {
+ // Make sure that we have script tags; without this we won't be able to preprocess them
+ if (!content.match(/' + '' + content };
+ }
+ if (!content.match(/' + content };
+ }
+ if (!content.match(/' + content };
+ }
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/convertToHtml.js b/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/convertToHtml.js
new file mode 100644
index 0000000000..af219c4af1
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/convertToHtml.js
@@ -0,0 +1,19 @@
+import { processMarkdown } from './processMarkdown.js';
+
+/**
+ * @type {import("svelte/types/compiler/preprocess").PreprocessorGroup}
+ */
+export const convertToHtml = {
+ markup: async ({ filename, content }) => {
+ /** @type {string} */
+ let htmlContent = content;
+
+ if (filename?.endsWith('.md')) {
+ htmlContent = await processMarkdown(content, filename);
+ }
+
+ // TODO: Other languages?
+
+ return { code: htmlContent };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/convertToHtml.spec.js b/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/convertToHtml.spec.js
new file mode 100644
index 0000000000..8672368f9a
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/convertToHtml.spec.js
@@ -0,0 +1,123 @@
+import { describe, it, expect } from 'vitest';
+import { convertToHtml } from './convertToHtml.js';
+
+describe('convertToHtml', () => {
+ describe('Basic Elements', () => {
+ it.each([
+ { label: 'h1', html: '%copy
', markdown: '# %copy' },
+ { label: 'h2', html: '%copy
', markdown: '## %copy' },
+ { label: 'h3', html: '%copy
', markdown: '### %copy' },
+ { label: 'h4', html: '%copy
', markdown: '#### %copy' },
+ { label: 'h5', html: '%copy
', markdown: '##### %copy' },
+ { label: 'h6', html: '%copy
', markdown: '###### %copy' },
+ { label: 'italics as ', html: '%copy
', markdown: '_%copy_' },
+ { label: 'italics as ', html: '%copy
', markdown: '*%copy*' },
+ {
+ label: 'inline italics',
+ html: '%copy %copy %copy
',
+ markdown: '%copy _%copy_ %copy'
+ },
+ {
+ label: 'inline italics',
+ html: '%copy %copy %copy
',
+ markdown: '%copy *%copy* %copy'
+ },
+ // prettier-ignore
+ { label: 'bold as ', html: '%copy
', markdown: '__%copy__' },
+ /* TODO: Inline Bold */
+ // prettier-ignore
+ { label: 'bold as ', html: '%copy
', markdown: '**%copy**' },
+ // prettier-ignore
+ { label: 'blockquote', html: '\n%copy
\n
', markdown: '> %copy' },
+ // prettier-ignore
+ { label: 'links', html: ``, markdown: "[%copy](%link)"},
+ // prettier-ignore
+ { label: 'images', html: ``, markdown: "![%copy](%link)"},
+ { label: 'paragraphs', html: '%copy
', markdown: '%copy' },
+ { label: 'ul', html: `\n- Input
\n
`, markdown: '- %copy' },
+ { label: 'ol', html: `\n- Input
\n
`, markdown: '1. %copy' },
+ { label: 'hr', html: '
', markdown: '---' },
+ { label: 'hr', html: '
', markdown: '***' }
+ /* TODO: Nested Lists */
+ /* TODO: Tables */
+ /* TODO: Code - this is very very important */
+ ])('Creates $label with $markdown', async (opts) => {
+ const transform = (s) =>
+ s.replaceAll('%copy', 'Input').replaceAll('%link', 'https://example.com');
+
+ const result = await convertToHtml.markup({
+ filename: '+page.md',
+ content: transform(opts.markdown)
+ });
+ expect(result.code).toEqual(transform(opts.html));
+ });
+ });
+
+ describe('Svelte', () => {
+ describe('html', () => {
+ it('Should leave Svelte Components untouched', async () => {
+ const r = await convertToHtml.markup({
+ filename: '+page.svelte',
+ content: `SELECT 1 `
+ });
+ expect(r.code).toEqual(`SELECT 1 `);
+ });
+ it('Should leave {#if} untouched (html)', async () => {
+ const r = await convertToHtml.markup({
+ filename: '+page.svelte',
+ content: `{#if true} Hi
{/if}`
+ });
+ expect(r.code).toEqual(`{#if true} Hi
{/if}`);
+ });
+ it('Should not break with on: directives', async () => {
+ const r = await convertToHtml.markup({
+ filename: '+page.svelte',
+ content: ``
+ });
+ expect(r.code).toEqual(``);
+ });
+ });
+ describe('markdown', () => {
+ it('Should leave Svelte Components untouched', async () => {
+ const r = await convertToHtml.markup({
+ filename: '+page.md',
+ content: `SELECT 1 `
+ });
+ expect(r.code).toEqual(`SELECT 1 `);
+ });
+
+ it('Should leave {#if} untouched', async () => {
+ const r = await convertToHtml.markup({
+ filename: '+page.md',
+ content: `
+{#if true}
+Hi
+{/if}`
+ });
+ expect(r.code).toEqual(`{#if true}\nHi\n{/if}
`);
+ });
+ });
+ });
+
+ describe('Query Conversion', () => {
+ it('Should convert queries to html', async () => {
+ const r = await convertToHtml.markup({
+ filename: '+page.md',
+ content: `\`\`\`sql query_name
+SELECT * FROM users
+\`\`\`
+`
+ });
+ expect(r.code).toBe(
+ `SELECT * FROM users
`
+ );
+ });
+ });
+
+ describe('Tables', () => {
+ it('Should handle them properly', () => {});
+ });
+ describe('Frontmatter', () => {
+ it('Should not include frontmatter in output HTML', async () => {});
+ });
+});
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/processMarkdown.js b/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/processMarkdown.js
new file mode 100644
index 0000000000..2ae8ed4844
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/convertToHtml/processMarkdown.js
@@ -0,0 +1,59 @@
+import { JSDOM } from 'jsdom';
+import chalk from 'chalk';
+import * as mdx from 'mdsvex';
+
+/**
+ *
+ * @param {string} filename
+ * @returns {Exclude["highlighter"]}
+ */
+const highlighter =
+ (filename) =>
+ /**
+ *
+ * @param {string} code
+ * @param {string} [lang]
+ * @param {string} [meta]
+ * @returns {string}
+ */
+
+ (code, lang, meta) => {
+ const fragment = JSDOM.fragment('
');
+ const preEl = fragment.querySelector('pre');
+ const codeEl = fragment.querySelector('code');
+ if (!preEl) throw new Error(' Element not found (internal error)');
+ if (!codeEl) throw new Error('
Element not found (internal error)');
+
+ if (lang) {
+ codeEl.classList.add(`language-${lang}`);
+ }
+ if (lang !== 'sql' || (lang === 'sql' && !meta)) {
+ if (lang) codeEl.setAttribute('lang', lang);
+ if (meta) codeEl.setAttribute('data-meta', meta);
+ } else {
+ if (!meta) {
+ // TODO: This never actually fires because the behavior for bare sql needs to be defined
+ console.log(chalk.red.bold(`[!] Query with no name detected in ${filename}!`));
+ console.log(chalk.red(`\t${code.split('\n')[0]}`));
+ }
+ codeEl.setAttribute('lang', lang);
+ if (meta) codeEl.setAttribute('evidence-query-name', meta);
+ }
+ codeEl.textContent = code;
+ return preEl.outerHTML;
+ };
+
+/**
+ * @param {string} content
+ * @param {string} filename
+ * @returns {Promise}
+ */
+export const processMarkdown = async (content, filename) => {
+ const mdxResult = await mdx.compile(content, {
+ smartypants: false,
+ highlight: { highlighter: highlighter(filename) }
+ });
+
+ if (!mdxResult) throw new Error(`${filename} | Failed to convert markdown to html`);
+ return mdxResult.code.trim();
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/extractQueries/extractQueries.js b/packages/lib/sdk/src/build-dev/svelte/processors/extractQueries/extractQueries.js
new file mode 100644
index 0000000000..965f3beba7
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/extractQueries/extractQueries.js
@@ -0,0 +1,49 @@
+import { setFileMetadata } from '../../metadatas.js';
+import * as jsdom from 'jsdom';
+
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const extractQueries = {
+ markup: ({ filename, content }) => {
+ if (!filename) return;
+ const dom = new jsdom.JSDOM(content, { contentType: 'text/html' });
+ const codeElements = dom.window.document.querySelectorAll('code');
+ /** @type {import('../../metadatas.js').FileMetadata} */
+ const data = { queries: {} };
+ // TODO: Is this actually needed?
+ // const body = dom.window.document.documentElement.querySelector('body');
+ // if (!body) throw new Error('Body is undefined');
+ // dom.window.document.head.querySelectorAll('script').forEach((el) => body.prepend(el));
+ let r = content;
+
+ codeElements.forEach((el) => {
+ if (el.getAttribute('evidence-query-name') && !el.getAttribute('lang'))
+ el.setAttribute('lang', 'sql');
+ const lang =
+ el.attributes.getNamedItem('lang')?.value ??
+ el.attributes.getNamedItem('data-lang')?.value ??
+ Array.from(el.classList.values())
+ .find((cn) => cn.startsWith('language-'))
+ ?.split('language-')[1];
+
+ const content = el.textContent ?? '';
+ const queryName = el.attributes.getNamedItem('evidence-query-name')?.value;
+ if (queryName) {
+ switch (lang) {
+ case 'sql':
+ data.queries[queryName] = content.trim();
+ break;
+ case 'malloy':
+ // TODO: Convert malloy to sql
+ break;
+ case 'prql':
+ // TODO: Convert prql to sql
+ break;
+ }
+ }
+ });
+
+ setFileMetadata(filename, data);
+
+ return { code: r.trim() };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/extractQueries/extractQueries.spec.js b/packages/lib/sdk/src/build-dev/svelte/processors/extractQueries/extractQueries.spec.js
new file mode 100644
index 0000000000..c3853d50a1
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/extractQueries/extractQueries.spec.js
@@ -0,0 +1,54 @@
+import { describe, it, expect, beforeEach } from 'vitest';
+import { extractQueries } from './extractQueries.js';
+import { clearFileMetadatas, getFileMetadata } from '../../metadatas.js';
+
+describe('extractQueries', () => {
+ beforeEach(() => {
+ clearFileMetadatas();
+ });
+ it('Should extract a single query', () => {
+ const queryContent = `SELECT * FROM users`;
+ const filename = `+page.svelte`;
+ const content = `${queryContent}
`;
+
+ extractQueries.markup({ filename, content });
+ expect(getFileMetadata(filename).queries).toHaveProperty('simple_query');
+ expect(getFileMetadata(filename).queries.simple_query).toEqual(queryContent);
+ });
+ it('Should infer sql lang when query name is present', () => {
+ const queryContent = `SELECT * FROM users`;
+ const filename = `+page.svelte`;
+ const content = `${queryContent}
`;
+
+ extractQueries.markup({ filename, content });
+ expect(getFileMetadata(filename).queries).toHaveProperty('simple_query');
+ expect(getFileMetadata(filename).queries.simple_query).toEqual(queryContent);
+ });
+ it('Should extract multiple queries', () => {
+ const queryContent = [`SELECT * FROM users`, `SELECT * FROM posts`];
+ const filename = `+page.svelte`;
+ const content = queryContent
+ .map(
+ (q, i) => `
+ ${q}
+ `
+ )
+ .join('\n');
+
+ extractQueries.markup({ filename, content });
+ let i = 0;
+ for (const query of queryContent) {
+ expect(getFileMetadata(filename).queries).toHaveProperty(`simple_query_${i}`);
+ expect(getFileMetadata(filename).queries[`simple_query_${i}`]).toEqual(query);
+ i++;
+ }
+ });
+ it('Should ignore code blocks without a query name', () => {
+ const queryContent = `SELECT * FROM users`;
+ const filename = `+page.svelte`;
+ const content = `${queryContent}
`;
+
+ extractQueries.markup({ filename, content });
+ expect(getFileMetadata(filename).queries).not.toHaveProperty('simple_query');
+ });
+});
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/highlight/highlight.js b/packages/lib/sdk/src/build-dev/svelte/processors/highlight/highlight.js
new file mode 100644
index 0000000000..80e0943ca9
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/highlight/highlight.js
@@ -0,0 +1,52 @@
+import * as jsdom from 'jsdom';
+import hljs from 'highlight.js';
+
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const highlight = {
+ markup: ({ content }) => {
+ const dom = new jsdom.JSDOM(content, { contentType: 'text/html' });
+ const codeElements = dom.window.document.querySelectorAll('code');
+ let r = content;
+
+ codeElements.forEach((el) => {
+ const originalContent = el.outerHTML;
+ if (el.getAttribute('evidence-query-name') && !el.getAttribute('lang'))
+ el.setAttribute('lang', 'sql');
+
+ const lang =
+ el.attributes.getNamedItem('lang')?.value ??
+ el.attributes.getNamedItem('data-lang')?.value ??
+ Array.from(el.classList.values())
+ .find((cn) => cn.startsWith('language-'))
+ ?.split('language-')[1];
+
+ if (!lang) return;
+ const elContent = el.textContent ?? '';
+
+ const highlighted =
+ lang && hljs.listLanguages().includes(lang.toLowerCase())
+ ? hljs.highlight(elContent, { language: lang.toLowerCase() })
+ : elContent;
+ if (lang) el.classList.add(`language-${lang}`);
+ if (['javascript', 'js'].includes(lang)) el.removeAttribute('lang');
+
+ if (typeof highlighted === 'string') el.innerHTML = highlighted;
+ else el.innerHTML = highlighted.value;
+
+ const doc = el.ownerDocument;
+ let target = el;
+
+ if (el.parentElement && el.parentElement.tagName.toLowerCase() !== 'pre') {
+ const pre = doc.createElement('pre');
+ el.parentElement.insertBefore(pre, el);
+ el.remove();
+ pre.appendChild(el);
+ target = pre;
+ }
+
+ r = r.replace(originalContent, target.outerHTML);
+ });
+
+ return { code: r };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/highlight/highlight.spec.js b/packages/lib/sdk/src/build-dev/svelte/processors/highlight/highlight.spec.js
new file mode 100644
index 0000000000..1070e3a130
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/highlight/highlight.spec.js
@@ -0,0 +1,31 @@
+import { describe, it, expect } from 'vitest';
+import { highlight } from './highlight.js';
+
+describe('highlight', () => {
+ it('Should highlight javascript', () => {
+ const c = highlight.markup({
+ content: 'console.log(`Hello World!`)
'
+ });
+ expect(c.code).toEqual(
+ `console.log(\`Hello World!\`)
`
+ );
+ });
+ it('Should highlight SQL', () => {
+ const c = highlight.markup({ content: 'SELECT * FROM world
' });
+ expect(c.code).toEqual(
+ `SELECT * FROM world
`
+ );
+ });
+ it('Should not add a pre to a code block already wrapped in pre', () => {
+ const c = highlight.markup({
+ content: 'SELECT * FROM world
'
+ });
+ expect(c.code).toEqual(
+ `SELECT * FROM world
`
+ );
+ });
+ it('Should not highlight code blocks without a language', () => {
+ const c = highlight.markup({ content: 'SELECT * FROM world
' });
+ expect(c.code).toEqual(`SELECT * FROM world
`);
+ });
+});
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/initializeUniversalSql.js b/packages/lib/sdk/src/build-dev/svelte/processors/initializeUniversalSql.js
new file mode 100644
index 0000000000..86e6a36806
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/initializeUniversalSql.js
@@ -0,0 +1,15 @@
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const initUniversalSql = {
+ script: ({ filename, content, attributes }) => {
+ // TODO: How does this map with non-sveltekit projects?
+ if (filename?.endsWith('.svelte-kit/generated/root.svelte') && !attributes.context) {
+ return {
+ code: `
+import "$evidence/initUsql"
+import bootstrapContexts from "$evidence/bootstrapContexts.svelte.js"
+bootstrapContexts()
+${content}`
+ };
+ }
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/injectComponents/injectComponents.js b/packages/lib/sdk/src/build-dev/svelte/processors/injectComponents/injectComponents.js
new file mode 100644
index 0000000000..5dcec4dee7
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/injectComponents/injectComponents.js
@@ -0,0 +1,56 @@
+import chalk from 'chalk';
+import { getAllComponents } from '../../../../plugins/components/getAllComponents.js';
+import autoImport from 'sveltekit-autoimport';
+
+/**
+ * @type {() => import("svelte/types/compiler/preprocess").PreprocessorGroup}
+ */
+export const injectComponents = () => {
+ const componentPlugins = getAllComponents();
+
+ const packages = componentPlugins
+ .then((components) => {
+ /** @type {Record} */
+ const packs = {};
+ for (const [component, data] of Object.entries(components)) {
+ if (!packs[data.name]) packs[data.name] = [];
+ const import_name = data.aliasOf ? `${data.aliasOf} as ${component}` : component;
+ packs[data.name].push(import_name);
+ }
+ return packs;
+ })
+ .catch((e) => {
+ console.warn(chalk.yellow('Failed to load component plugins'), e);
+ return {};
+ });
+
+ const autoImporter = packages.then((packages) =>
+ autoImport({
+ include: ['**/*.(svelte|md)'],
+ module: packages,
+ components: [{ directory: '../../components', flat: true }]
+ })
+ );
+
+ return {
+ /** @type {import("svelte/types/compiler/preprocess").MarkupPreprocessor}} */
+ markup: async ({ content, filename }) => {
+ if (filename?.endsWith('.svelte')) return; /* Don't autoimport into svelte files */
+ const components = await componentPlugins.catch((e) => {
+ console.debug(e);
+ return false;
+ });
+ if (!components) {
+ return;
+ }
+
+ const { markup: autoimport_process_markup } = await autoImporter;
+
+ return autoimport_process_markup({ content, filename });
+ },
+ /** @type {import("svelte/types/compiler/preprocess").Preprocessor}} */
+ style: async () => {},
+ /** @type {import("svelte/types/compiler/preprocess").Preprocessor}} */
+ script: async () => {}
+ };
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/injectHighlightStyles.js b/packages/lib/sdk/src/build-dev/svelte/processors/injectHighlightStyles.js
new file mode 100644
index 0000000000..57e5054403
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/injectHighlightStyles.js
@@ -0,0 +1,14 @@
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const injectHighlightStyles = {
+ script: ({ filename, content, attributes }) => {
+ // TODO: How does this map with non-sveltekit projects?
+ // Maybe we need a component
+ // Could we do this with Vite?
+ if (filename?.endsWith('.svelte-kit/generated/root.svelte') && !attributes.context)
+ return {
+ code: `
+import 'highlight.js/styles/hybrid.css';
+${content}`
+ };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/injectQueries/injectQueries.js b/packages/lib/sdk/src/build-dev/svelte/processors/injectQueries/injectQueries.js
new file mode 100644
index 0000000000..518f96df8a
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/injectQueries/injectQueries.js
@@ -0,0 +1,77 @@
+import { checkImport } from '../../../../lib/check-import.js';
+import { getFileMetadata } from '../../metadatas.js';
+
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const injectQueries = {
+ script: ({ filename, content, attributes }) => {
+ if (!filename) return;
+ if (attributes.context === 'module') return;
+ /** @type {import('../../metadatas.js').FileMetadata} */
+ const meta = getFileMetadata(filename) ?? { queries: {} };
+
+ const fileQueries = meta?.queries ?? {};
+ const queryNames = Object.keys(fileQueries);
+ // There are no queries on this page; so we don't need to do anything.
+ if (!queryNames.length) return;
+
+ // TODO: Consider using https://unjs.io/packages/knitwork
+
+ const initialDeclarations = queryNames
+ .map((queryName) => `let __evidence_query_text_${queryName} = ''`)
+ .join('\n');
+
+ const queryTextAssignments = Object.entries(fileQueries).map(
+ ([queryName, queryText]) => `__evidence_query_text_${queryName} = \`${queryText}\``
+ );
+
+ const queryEffects = queryTextAssignments.map((a) => `$: ${a}`).join('\n');
+ const queryMountFn = `onMount(() => {${queryTextAssignments.join(';')}})`;
+
+ // TODO: Do we need to move imports to the top of the file wrt user content?
+ const queryDeclarations = `
+ ${
+ checkImport('getQueries', '$evidence/queries', content)
+ ? ''
+ : `import {getQueries} from "$evidence/queries"`
+ }
+ const queries = getQueries()
+ let {${queryNames.map((k) => `${k}: __evidence_query_${k}`).join(',')}} = $queries
+ $: ({${queryNames.map((k) => `${k}: __evidence_query_${k}`).join(',')}} = $queries)
+
+ ${queryNames.map((k) => `let ${k} = $__evidence_query_${k}`).join('\n')}
+ ${queryNames.map((k) => `$: ${k} = $__evidence_query_${k}`).join('\n')}
+
+ // Layout queries cannot be accessed directly; and must use query.
+ // We unwrap these to the value to make sure that proxied values are used
+ let query = Object.fromEntries(Object.entries($queries).map(([k,v]) => [k, v.value]))
+ $: query = Object.fromEntries(Object.entries($queries).map(([k,v]) => [k, v.value]))
+ `;
+
+ const adjusted = `
+/******** Preprocessed Code ********/
+${
+ checkImport('updateQueryContext', '$evidence/updateQueryContext.svelte.js', content)
+ ? ''
+ : `import updateQueryContext from "$evidence/updateQueryContext.svelte.js"`
+}
+${checkImport('onMount', 'svelte', content) ? '' : `import {onMount} from "svelte"`}
+${queryMountFn}
+${initialDeclarations}
+
+$: __evidence_page_query_texts = {${queryNames
+ .map((queryName) => `${queryName}: __evidence_query_text_${queryName}`)
+ .join(', ')}}
+
+const updateContext = updateQueryContext()
+$: updateContext(__evidence_page_query_texts)
+${filename?.endsWith('.md') ? queryDeclarations : ''}
+
+/******** User / Component Code ********/
+${content}
+
+/******** Preprocessed Code ********/
+${queryEffects}
+`;
+ return { code: adjusted };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/markRootLayoutPrerenderable.js b/packages/lib/sdk/src/build-dev/svelte/processors/markRootLayoutPrerenderable.js
new file mode 100644
index 0000000000..94846fcfa7
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/markRootLayoutPrerenderable.js
@@ -0,0 +1,56 @@
+import fs from 'fs';
+import path from 'path';
+
+/**
+ * @param {string} filename
+ * @returns {boolean}
+ */
+const hasPrerenderExport = (filename) => {
+ const content = fs.readFileSync(filename, 'utf-8');
+ return content.includes('export const prerender');
+};
+
+/**
+ * @type {() => void}
+ */
+export const markRootLayoutPrerenderable = () => {
+ const src = fs.readdirSync('src');
+
+ if (src.includes('routes')) {
+ // SvelteKit app
+ const routes = fs.readdirSync(path.join('src', 'routes'));
+ let layoutPath;
+ // in order of preference
+ const layoutPaths = ['+layout.js', '+layout.server.js', '+layout.ts', '+layout.server.ts'];
+ for (const layout of layoutPaths) {
+ if (routes.includes(layout)) {
+ // Check for a prerender output
+ if (hasPrerenderExport(path.join('src', 'routes', layout))) {
+ // The user has already added a prerender export; we shouldn't override it.
+ return;
+ } else {
+ layoutPath = layout;
+ }
+ }
+ }
+ // If we reach this point; then a prerender statement does not exist
+ if (layoutPath) {
+ const p = path.join('src', 'routes', layoutPath);
+ // The most preferred layout path exists
+ const layoutContent = fs.readFileSync(p, 'utf-8');
+ fs.writeFileSync(p, `${layoutContent}\nexport const prerender = true`);
+ } else {
+ // We need to create the layout
+ const p = path.join('src', 'routes', layoutPaths[0]);
+ fs.writeFileSync(p, `export const prerender = true`);
+ }
+ }
+
+ // script({ content, filename, attributes }) {
+ // if (filename?.endsWith("/routes/+layout.svelte") && attributes.context === "module") {
+ // return {
+ // code: `export const prerender = true;\n${content}`
+ // }
+ // }
+ // }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/obfuscateCode/obfuscateCode.js b/packages/lib/sdk/src/build-dev/svelte/processors/obfuscateCode/obfuscateCode.js
new file mode 100644
index 0000000000..cb9bee1bc6
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/obfuscateCode/obfuscateCode.js
@@ -0,0 +1,17 @@
+import * as jsdom from 'jsdom';
+
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const obfuscateCode = {
+ markup: ({ content }) => {
+ const dom = new jsdom.JSDOM(content, { contentType: 'text/html' });
+ const codeElements = dom.window.document.querySelectorAll('code');
+ let r = content;
+ codeElements.forEach((el) => {
+ const originalContent = el.innerHTML;
+ el.innerHTML = `{@html atob(\`${btoa(el.innerHTML.trim() ?? '')}\`)}`;
+ r = r.replace(originalContent, el.innerHTML);
+ });
+
+ return { code: r.trim() };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/obfuscateCode/obfuscateCode.spec.js b/packages/lib/sdk/src/build-dev/svelte/processors/obfuscateCode/obfuscateCode.spec.js
new file mode 100644
index 0000000000..89aeb63a57
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/obfuscateCode/obfuscateCode.spec.js
@@ -0,0 +1,21 @@
+import { describe, it, expect } from 'vitest';
+import { obfuscateCode } from './obfuscateCode.js';
+
+describe('obfusctateCode', () => {
+ it('Should b64 encode basic javascript', () => {
+ const r = obfuscateCode.markup({
+ content: `
+console.log()
+
`
+ });
+ expect(r.code).toEqual(`{@html atob(\`Y29uc29sZS5sb2coKQ==\`)}
`);
+ });
+ it('Should b64 encode basic SQL', () => {
+ const r = obfuscateCode.markup({
+ content: `
+ SELECT * FROM 5
+
`
+ });
+ expect(r.code).toEqual(`{@html atob(\`U0VMRUNUICogRlJPTSA1\`)}
`);
+ });
+});
diff --git a/packages/lib/sdk/src/build-dev/svelte/processors/transformQueries/transformQueries.js b/packages/lib/sdk/src/build-dev/svelte/processors/transformQueries/transformQueries.js
new file mode 100644
index 0000000000..915583b74b
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/svelte/processors/transformQueries/transformQueries.js
@@ -0,0 +1,58 @@
+import * as jsdom from 'jsdom';
+import { checkImport } from '../../../../lib/check-import.js';
+
+/**
+ * @type {Record}
+ */
+const fileHasQueries = {};
+
+/** @type {import("svelte/types/compiler/preprocess").PreprocessorGroup} */
+export const transformQueries = {
+ script: ({ filename, content, attributes }) => {
+ if (attributes.context) return;
+ if (!filename) return;
+ if (!fileHasQueries[filename]) return;
+ if (checkImport('QuerySSR', '$evidence/QuerySSR.svelte', content)) return { code: content };
+ else {
+ return { code: `import QuerySSR from "$evidence/QuerySSR.svelte";\n` + content };
+ }
+ },
+ markup: ({ filename, content }) => {
+ if (!filename) return;
+ const dom = new jsdom.JSDOM(content, { contentType: 'text/html' });
+ const codeElements = dom.window.document.querySelectorAll('code[evidence-query-name]');
+ if (codeElements.length) {
+ fileHasQueries[filename] = true;
+ }
+ let r = content;
+ for (const el of codeElements) {
+ let target = el;
+ if (el.parentElement?.tagName.toLowerCase() === 'pre') {
+ target = el.parentElement;
+ }
+ const originalHtml = target.outerHTML;
+
+ target.classList.add('text-xs');
+ target.classList.add('leading-tight');
+ target.classList.add('bg-gray-200');
+ target.classList.add('p-2');
+ target.classList.add('w-fit');
+ target.classList.add('min-w-[60ch]');
+ el.textContent = `{__evidence_query_text_${el.getAttribute('evidence-query-name')}}`;
+
+ // TODO: Figure this out
+ const replaceTarget = originalHtml.replaceAll('<', '<').replaceAll('>', '>');
+
+ r = r.replace(replaceTarget, '');
+ r =
+ r +
+ `\n `;
+ }
+
+ return { code: r };
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/file-watcher.js b/packages/lib/sdk/src/build-dev/vite/file-watcher.js
new file mode 100644
index 0000000000..5b08a7cdbc
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/file-watcher.js
@@ -0,0 +1,71 @@
+import chokidar from 'chokidar';
+import { loadLayoutPlugin } from '../../plugins/layouts/loadLayoutPlugin.js';
+import path from 'path';
+import { projectRoot } from '../../lib/projectRoot.js';
+import { copyMethods } from '../../plugins/layouts/copyMethods/index.js';
+import fs from 'fs/promises';
+import { EvidenceError } from '../../lib/EvidenceError.js';
+import chalk from 'chalk';
+
+export const fileWatcher = async () => {
+ const plugin = await loadLayoutPlugin();
+ if (!plugin) return false;
+
+ const routesDestination = plugin.evidence.layout.routes.destination.split(/[/\\]/);
+ const templateRoot = path.join(projectRoot, '.evidence', 'template');
+ const rootTargetDir = path.join(templateRoot, ...routesDestination);
+ const rootSourceDir = path.join(projectRoot, 'pages');
+
+ const method = copyMethods[plugin.evidence.layout.routes.style];
+ const pageWatcher = chokidar.watch(rootSourceDir, { alwaysStat: true });
+
+ /**
+ * @param {string} filepath
+ */
+ const copyToLayout = async (filepath) => {
+ const parsedPath = path.parse(filepath);
+ const dirEntries = await fs.readdir(parsedPath.dir, { withFileTypes: true });
+ const dirEnt = dirEntries.find((ent) => ent.name === parsedPath.base);
+ if (!dirEnt)
+ throw new EvidenceError('Error Copying page to layout', [
+ 'dirEnt could not be found, this should not happen.'
+ ]);
+ method.copyFile(rootSourceDir, rootTargetDir, dirEnt);
+ };
+
+ // TODO: Handle moved files, deleted files, etc
+ pageWatcher.on('add', copyToLayout);
+ pageWatcher.on('change', copyToLayout);
+
+ const componentsDestination = plugin.evidence.layout.components.destination.split(/[/\\]/);
+ const componentsSource = path.join(projectRoot, 'components');
+ const componentWatcher = chokidar.watch(componentsSource);
+ /**
+
+ * @param {string} filepath
+ */
+ const copyComponent = async (filepath) => {
+ const relPath = path.relative(componentsSource, filepath);
+ const destination = path.join(templateRoot, ...componentsDestination, relPath);
+ console.debug(chalk.dim(`Copied ${filepath} -> ${destination}`));
+ await fs.cp(filepath, destination);
+ };
+ componentWatcher.on('add', copyComponent);
+ componentWatcher.on('change', copyComponent);
+
+ const staticDestination = plugin.evidence.layout.static.destination.split(/[/\\]/);
+ const staticSource = path.join(projectRoot, 'static');
+ const staticWatcher = chokidar.watch(staticSource);
+ /**
+
+ * @param {string} filepath
+ */
+ const copyStatic = async (filepath) => {
+ const relPath = path.relative(staticSource, filepath);
+ const destination = path.join(templateRoot, ...staticDestination, relPath);
+ console.debug(chalk.dim(`Copied ${filepath} -> ${destination}`));
+ await fs.cp(filepath, destination);
+ };
+ staticWatcher.on('add', copyStatic);
+ staticWatcher.on('change', copyStatic);
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/index.js b/packages/lib/sdk/src/build-dev/vite/index.js
new file mode 100644
index 0000000000..b3158665cf
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/index.js
@@ -0,0 +1,214 @@
+import * as path from 'path';
+import fs from 'fs/promises';
+import chalk from 'chalk';
+import { applySidecarConfig, getSidecarApp } from './sidecar-app.js';
+
+import { dirname } from 'path';
+import { fileURLToPath } from 'url';
+import { getManifest } from './virtuals/node/static-assets.js';
+import { fileWatcher } from './file-watcher.js';
+import { dataDirectory, evidenceDirectory } from './virtuals/node/projectPaths.js';
+/** @type {Record string>} */
+import * as dynamicVirtuals from './virtuals-dynamic.js';
+
+const __dirname = dirname(fileURLToPath(import.meta.url));
+
+const PREFIX = `$evidence/`;
+
+/**
+ * @type {() => Promise}
+ */
+export const evidencePlugin = async () => {
+ const sidecar = getSidecarApp();
+
+ // TODO: Find a way to make this get a list of queries that should be available on the page
+ return {
+ name: 'evidence',
+
+ buildStart: async function () {
+ if (this.meta.watchMode) {
+ await fileWatcher();
+ } else {
+ this.emitFile({
+ type: 'asset',
+ name: path.join('_evidence', 'manifest.json'),
+ source: getManifest(),
+ fileName: path.join('_evidence', 'manifest.json'),
+ needsCodeReference: false
+ });
+ const dataDirExists = await fs
+ .stat(dataDirectory)
+ .then((r) => r.isDirectory())
+ .catch(() => false);
+ if (!dataDirExists) {
+ console.warn(
+ chalk.yellow(
+ 'Evidence data directory not found, if you use source queries in this project, you probably need to run sources'
+ )
+ );
+ return;
+ }
+
+ const queries = await fs.readdir(dataDirectory, { recursive: true, withFileTypes: true });
+
+ for (const query of queries) {
+ if (query.isFile() && query.name.endsWith('.parquet')) {
+ const relPath = path.join(path.relative(dataDirectory, query.path), query.name);
+
+ this.emitFile({
+ type: 'asset',
+ name: path.join('_evidence', relPath),
+ source: await fs.readFile(path.join(query.path, query.name)),
+ fileName: path.join('_evidence', relPath),
+ needsCodeReference: false
+ });
+ }
+ }
+ }
+ },
+
+ async configureServer(vite) {
+ vite.middlewares.use(sidecar);
+ },
+
+ async configurePreviewServer(vite) {
+ vite.middlewares.use(sidecar);
+ },
+
+ async config(cfg) {
+ if (!cfg.optimizeDeps) cfg.optimizeDeps = {};
+ if (!cfg.optimizeDeps.exclude) cfg.optimizeDeps.exclude = [];
+ if (!cfg.optimizeDeps.exclude.includes('@evidence-dev/universal-sql/client-duckdb'))
+ cfg.optimizeDeps.exclude.push('@evidence-dev/universal-sql/client-duckdb');
+
+ if (!cfg.optimizeDeps.include) cfg.optimizeDeps.include = [];
+ // TODO: This has something to do with the import management crap
+ // if (!cfg.ssr) cfg.ssr = {}
+ // if (!cfg.ssr.noExternal) cfg.ssr.noExternal = []
+ // if (typeof cfg.ssr.noExternal !== "boolean" && !Array.isArray(cfg.ssr.noExternal)) cfg.ssr.noExternal = [cfg.ssr.noExternal]
+ // if (typeof cfg.ssr.noExternal !== "boolean") {
+ // cfg.ssr.noExternal.push(/@evidence-dev\/.+/)
+ // cfg.ssr.noExternal.push(/@steeze-ui\/.+/)
+ // }
+
+ if (!cfg.server) cfg.server = {};
+ if (!cfg.server.fs) cfg.server.fs = {};
+ if (!cfg.server.fs.allow) cfg.server.fs.allow = [];
+
+ cfg.server.fs.allow.push(evidenceDirectory);
+
+ // // Lifted from SvelteKit
+ // const allow = new Set([
+ // path.resolve('src'), // TODO this isn't correct if user changed all his files to sth else than src (like in test/options)
+ // path.resolve('node_modules'),
+ // // path.resolve(vite.searchForWorkspaceRoot(cwd), 'node_modules')
+ // ]);
+
+ for (const allowDir of ['.', 'node_modules', '../node_modules', '../../node_modules']) {
+ if (!cfg.server.fs.allow.includes(allowDir)) cfg.server.fs.allow.push(allowDir);
+ }
+
+ // This lets us serve from node_modules regardless of where it is linked.
+ // Vite considers the "real" path, not the link path when serving.
+
+ /** @type {string} */
+ let resolvingPath = path.resolve('node_modules');
+ // eslint-disable-next-line no-constant-condition
+ while (true) {
+ /** @type {string | false} */
+ const nextPath = await fs
+ .readlink(resolvingPath)
+ .catch(() => fs.readlink(path.resolve(resolvingPath, '..')))
+ .catch(() => false);
+ if (!nextPath) {
+ // /home/brian/code/evidence/sdk/examples/example-layout-plugin/node_modules/@sveltejs/kit/src/runtime/client/entry.js
+ // /home/brian/code/evidence/sdk/test-project/examples/example-layout-plugin
+ cfg.server.fs.allow.push(resolvingPath);
+ break;
+ } else {
+ if (nextPath.startsWith('.')) resolvingPath = path.relative(resolvingPath, nextPath);
+ else resolvingPath = nextPath;
+ }
+ }
+
+ cfg = applySidecarConfig(cfg);
+
+ return cfg;
+ },
+
+ resolveId(id) {
+ if (id.startsWith(PREFIX)) {
+ return id;
+ }
+
+ return null;
+ },
+
+ async load(id, opts) {
+ if (id.startsWith(PREFIX)) {
+ const virtuals = await fs.readdir(path.join(__dirname, 'virtuals'), { recursive: true });
+ const idNoPrefix = id.slice(PREFIX.length);
+ const idNoExtension = idNoPrefix.split('.').at(0);
+ if (!idNoExtension) return null;
+
+ if (idNoExtension in dynamicVirtuals) {
+ const dynFunction = /** @type {() => string | Promise} */ (
+ // @ts-expect-error
+ dynamicVirtuals[idNoExtension]
+ );
+ return await dynFunction();
+ }
+
+ const matches = virtuals.filter((filepath) => {
+ if (filepath.endsWith('.d.ts')) return false;
+ if (filepath.split('.').at(-2) === 'spec') return false;
+ if (!filepath.split('/').at(-1)?.split('.').includes(idNoExtension)) return false;
+ return true;
+ });
+
+ let targetFile;
+
+ if (matches.length === 1) {
+ // Only one possible match
+ targetFile = matches[0];
+ } else if (matches.length > 1) {
+ // There are choices to be made here
+ const environmentOptions = matches.filter((m) =>
+ m.startsWith(opts?.ssr ? 'node/' : 'browser/')
+ );
+
+ if (environmentOptions.length >= 1) {
+ if (environmentOptions.length > 1) {
+ console.warn(
+ chalk.yellow(
+ `[!] Multiple Import Files found for $evidence/${idNoPrefix}, this is ambigious and should be corrected. ${environmentOptions.join(
+ ', '
+ )}`
+ )
+ );
+ }
+ targetFile = environmentOptions[0];
+ } else {
+ // There are no specifics
+ console.warn(
+ chalk.yellow(
+ `[!] Multiple Import Files found for $evidence/${idNoPrefix}, this is ambigious and should be corrected. ${matches.join(
+ ', '
+ )}`
+ )
+ );
+ targetFile = matches[0];
+ }
+ } else {
+ console.warn(chalk.yellow(`[!] No Import Files found for $evidence/${idNoPrefix}`));
+ return null;
+ }
+
+ this.addWatchFile(path.join(__dirname, 'virtuals', targetFile));
+ return await fs.readFile(path.join(__dirname, 'virtuals', targetFile), 'utf-8');
+ }
+
+ return null;
+ }
+ };
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/sidecar-app.js b/packages/lib/sdk/src/build-dev/vite/sidecar-app.js
new file mode 100644
index 0000000000..f9463c639c
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/sidecar-app.js
@@ -0,0 +1,79 @@
+import express from 'express';
+import { getManifest } from './virtuals/node/static-assets.js';
+import fs from 'fs/promises';
+import path from 'path';
+import { dataDirectory } from './virtuals/node/projectPaths.js';
+
+/**
+ * Creates an express application that handles Evidence-specific functionality
+ * e.g. Fetching parquet files,
+ *
+ * @returns {import("vite").Connect.HandleFunction}
+ */
+export const getSidecarApp = () => {
+ const app = express();
+
+ // Handle custom URLs
+ app.get('/_evidence/manifest.json', (req, res) => {
+ res.send(getManifest('browser')).end();
+ });
+
+ app.get('/_evidence/:route_hash/:additional_hash/all-queries.json', (req, res) => {
+ res
+ .send(
+ JSON.stringify({
+ params: req.params
+ })
+ )
+ .end();
+ });
+ app.get('/_evidence/prerendered-queries/:query_hash.arrow', (req, res) => {
+ return res.send('Arrow file here!').end();
+ });
+ app.get('/_evidence/query/:schema/:filename.parquet', async (req, res) => {
+ // TODO: Check if the file really exists
+ const filepath = path.join(
+ dataDirectory,
+ req.params.schema,
+ req.params.filename,
+ req.params.filename + '.parquet'
+ );
+
+ if (
+ await fs
+ .stat(filepath)
+ .then(() => true)
+ .catch(() => false)
+ ) {
+ res.sendFile(filepath, {
+ acceptRanges: true /* Important to allow predicate pushdown */
+ });
+ } else {
+ res.sendStatus(404);
+ }
+ });
+
+ app.get('/_evidence/*', (req, res) => res.sendStatus(404).end());
+ app.post('/_evidence/*', (req, res) => res.sendStatus(405).end());
+ app.patch('/_evidence/*', (req, res) => res.sendStatus(405).end());
+ app.put('/_evidence/*', (req, res) => res.sendStatus(405).end());
+ app.delete('/_evidence/*', (req, res) => res.sendStatus(405).end());
+
+ return app;
+};
+
+/**
+ *
+ * @param {import("vite").UserConfig} cfg
+ */
+export const applySidecarConfig = (cfg) => {
+ if (!cfg.server) cfg.server = {};
+ if (!cfg.server.proxy) cfg.server.proxy = {};
+ cfg.server.proxy['/_evidence'] = {};
+
+ if (!cfg.preview) cfg.preview = {};
+ if (!cfg.preview.proxy) cfg.preview.proxy = {};
+ cfg.preview.proxy['/_evidence'] = {};
+
+ return cfg;
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals-dynamic.js b/packages/lib/sdk/src/build-dev/vite/virtuals-dynamic.js
new file mode 100644
index 0000000000..7cbf0c573d
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals-dynamic.js
@@ -0,0 +1,12 @@
+import { nanoid } from 'nanoid';
+import { getEvidenceConfig } from '../../index.js';
+
+export const build = () => `
+export const BUILD_ID = import.meta.env.MODE === "development" ? "DEV" : "${nanoid(8)}";
+export const BUILD_DATE = new Date(${new Date().getTime()});
+`;
+
+export const config = async () => {
+ const cfg = await getEvidenceConfig();
+ return `export default ${JSON.stringify(cfg)}`;
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/QuerySSR.svelte b/packages/lib/sdk/src/build-dev/vite/virtuals/QuerySSR.svelte
new file mode 100644
index 0000000000..597df4bf49
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/QuerySSR.svelte
@@ -0,0 +1,13 @@
+
+
+
+ {#each queries as query}
+
+ {/each}
+
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/__tests/proxyStack.spec.js b/packages/lib/sdk/src/build-dev/vite/virtuals/__tests/proxyStack.spec.js
new file mode 100644
index 0000000000..25ad5dccb5
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/__tests/proxyStack.spec.js
@@ -0,0 +1,52 @@
+import { describe, it, expect } from 'vitest';
+import { ProxyStack } from '../proxyStack.js';
+
+/**
+ * @param {import("svelte/store").Readable<*> s}
+ */
+const getValue = (s) => {
+ let out;
+ s.subscribe((v) => (out = v))();
+ return out;
+};
+
+describe('ProxyStack', () => {
+ it('Should return a bare object when nothing has been added', () => {
+ const { value } = ProxyStack();
+ const content = getValue(value);
+ expect(content).toEqual({});
+ });
+ it('Should return a matching object when one object has been added', () => {
+ const { value, push } = ProxyStack();
+ const entry = { x: 1 };
+ push(entry);
+ const content = getValue(value);
+ expect(content.x).toEqual(1);
+ });
+ it('Should return the most recent value for a prop', () => {
+ const { value, push } = ProxyStack();
+
+ push({ x: 1 });
+ push({ x: 2 });
+ push({ x: 3 });
+ const content = getValue(value);
+ expect(content.x).toEqual(3);
+ });
+ it('Should return the most recent value for a prop, unless it has been deleted', () => {
+ const stack = ProxyStack();
+
+ stack.push({ x: 1 });
+ stack.push({ x: 2 });
+ const id = stack.push({ x: 3 });
+ stack.rm(id);
+ const content = getValue(stack.value);
+ expect(content.x).toEqual(2);
+ });
+ it('Should JSON.stringify properly', () => {
+ const stack = ProxyStack();
+ const entry = { x: 1 };
+ stack.push(entry);
+ const content = getValue(stack.value);
+ expect(content).toEqual(entry);
+ });
+});
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/bootstrapContexts.svelte.js b/packages/lib/sdk/src/build-dev/vite/virtuals/bootstrapContexts.svelte.js
new file mode 100644
index 0000000000..ac7b1236bb
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/bootstrapContexts.svelte.js
@@ -0,0 +1,27 @@
+import { setContext } from 'svelte';
+import {
+ QUERIES_CONTEXT_KEY,
+ ALL_QUERIES_CONTEXT_KEY,
+ ALL_QUERIES_MUTS_CONTEXT_KEY
+} from '$evidence/contextKeys';
+import { ProxyStack } from '$evidence/proxyStack';
+import { readable } from 'svelte/store';
+
+export default () => {
+ const queryContext = readable({}); // TODO: Stores
+ const allQueries = ProxyStack();
+
+ setContext(QUERIES_CONTEXT_KEY, queryContext);
+ setContext(ALL_QUERIES_CONTEXT_KEY, allQueries.value);
+ setContext(ALL_QUERIES_MUTS_CONTEXT_KEY, { push: allQueries.push, rm: allQueries.rm });
+};
+
+export const asObj = () => {
+ const queryContext = readable({}); // TODO: Stores
+ const allQueries = ProxyStack();
+ return {
+ [QUERIES_CONTEXT_KEY]: queryContext,
+ [ALL_QUERIES_CONTEXT_KEY]: allQueries.value,
+ [ALL_QUERIES_MUTS_CONTEXT_KEY]: { push: allQueries.push, rm: allQueries.rm }
+ };
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/browser/static-assets.js b/packages/lib/sdk/src/build-dev/vite/virtuals/browser/static-assets.js
new file mode 100644
index 0000000000..4936e233a4
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/browser/static-assets.js
@@ -0,0 +1,3 @@
+export const getManifest = () => {
+ return fetch('/_evidence/manifest.json').then((r) => r.text());
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/contextKeys.js b/packages/lib/sdk/src/build-dev/vite/virtuals/contextKeys.js
new file mode 100644
index 0000000000..ae51a22502
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/contextKeys.js
@@ -0,0 +1,3 @@
+export const QUERIES_CONTEXT_KEY = '__EVIDENCE_CONTEXTUAL_QUERIES';
+export const ALL_QUERIES_CONTEXT_KEY = '__EVIDENCE_ALL_QUERIES';
+export const ALL_QUERIES_MUTS_CONTEXT_KEY = '__EVIDENCE_ALL_QUERIES_MUTS';
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/initUsql.js b/packages/lib/sdk/src/build-dev/vite/virtuals/initUsql.js
new file mode 100644
index 0000000000..dabd7b84b6
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/initUsql.js
@@ -0,0 +1,23 @@
+import {
+ initDB,
+ setParquetURLs,
+ updateSearchPath,
+ query
+} from '@evidence-dev/universal-sql/client-duckdb';
+
+import { getManifest } from '$evidence/static-assets';
+
+export default (async () => {
+ await initDB();
+ let res;
+ // TODO: Optionally take in a filepath and/or URL for the manifest
+ res = await getManifest();
+ res = JSON.parse(res);
+
+ await setParquetURLs(res.renderedFiles ?? {});
+ await updateSearchPath(Object.keys(res.renderedFiles ?? {}));
+ if (!res.renderedFiles) console.error('No fixture data available!');
+ // Test Query
+ await query('SELECT * FROM information_schema.tables');
+ console.log('Universal SQL has been initialized successfully');
+})();
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/node/projectPaths.js b/packages/lib/sdk/src/build-dev/vite/virtuals/node/projectPaths.js
new file mode 100644
index 0000000000..bd0bf41711
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/node/projectPaths.js
@@ -0,0 +1,13 @@
+import path from 'path';
+
+export const URL_PREFIX = '_evidence';
+
+export const inTemplate = process.cwd().includes(path.join('.evidence', 'template'));
+
+export const evidenceDirectory = inTemplate ? '..' : '.evidence';
+
+export const dataDirectory = path.resolve(evidenceDirectory, 'data');
+
+export const metaDirectory = path.resolve(evidenceDirectory, 'meta');
+
+export const sourcesDirectory = path.resolve(...(inTemplate ? ['..', '..'] : []), 'sources');
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/node/static-assets.js b/packages/lib/sdk/src/build-dev/vite/virtuals/node/static-assets.js
new file mode 100644
index 0000000000..2e5aa4e278
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/node/static-assets.js
@@ -0,0 +1,56 @@
+import fs from 'fs';
+import path from 'path';
+
+const inTemplate = process.cwd().includes(path.join('.evidence', 'template'));
+const evidenceDirectory = inTemplate ? '..' : '.evidence';
+const dataDirectory = path.resolve(evidenceDirectory, 'data');
+
+/**
+ * @param {"browser" | "node"} [dest = "node"]
+ */
+export const getManifest = (dest = 'node') => {
+ // TODO: Does this need to be sync? Would simplify types if not
+ try {
+ const manifestContent = fs.readFileSync(path.join(dataDirectory, 'manifest.json'), 'utf-8');
+ /** @type {import('../../../../plugins/datasources/types.js').Manifest} */
+ const manifest = JSON.parse(manifestContent);
+
+ if (!manifest.renderedFiles) throw new Error('Malformed Manifest');
+
+ if (dest === 'node') {
+ const renderedFiles = Object.fromEntries(
+ Object.entries(manifest.renderedFiles).map(([schema, queries]) => {
+ return [
+ schema,
+ queries.map((queryPath) => {
+ // Don't modify external paths
+ if (queryPath.startsWith('http')) return queryPath;
+ // Adjust prefix
+ queryPath = queryPath.replace(
+ '_evidence/query',
+ path.join(evidenceDirectory, 'data')
+ );
+ const filename = queryPath.match(/(.+\/)(.+).parquet/);
+ if (filename?.length !== 3) {
+ // TODO: Debug log?
+ return queryPath;
+ } else {
+ return `${queryPath.startsWith('/') ? '.' : './'}${filename[1]}${filename[2]}/${
+ filename[2]
+ }.parquet`;
+ }
+ })
+ ];
+ })
+ );
+ manifest.renderedFiles = renderedFiles;
+ }
+
+ return JSON.stringify(manifest);
+ } catch (e) {
+ console.warn('Failed to load manifest file || ', e instanceof Error ? e.message : e);
+ return JSON.stringify({
+ renderedFiles: {}
+ });
+ }
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/proxyStack.js b/packages/lib/sdk/src/build-dev/vite/virtuals/proxyStack.js
new file mode 100644
index 0000000000..61d29e8722
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/proxyStack.js
@@ -0,0 +1,37 @@
+import { nanoid } from 'nanoid';
+import { derived, writable } from 'svelte/store';
+
+/**
+ * @returns {{ value: Object, push: (v: Object) => string, rm: (id: string) => void }}
+ */
+export const ProxyStack = () => {
+ /**
+ * @type {Array<[string, Object]>}
+ */
+ let stack = [];
+ /** @type {import("svelte/store").Writable>} */
+ const write = writable({});
+
+ const flush = () => {
+ write.update((v) => {
+ for (const k of Object.keys(v)) delete v[k];
+ return Object.assign({}, v, ...stack.map((s) => s[1]));
+ });
+ };
+
+ /** @param {Object} value */
+ const push = (value) => {
+ const id = nanoid();
+ stack.push([id, value]);
+ flush();
+ return id;
+ };
+
+ /** @param {string} id */
+ const rm = (id) => {
+ stack = stack.filter(([itemId]) => itemId !== id);
+ flush();
+ };
+
+ return { value: derived([write], ([$write]) => $write), push, rm };
+};
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/queries.svelte.js b/packages/lib/sdk/src/build-dev/vite/virtuals/queries.svelte.js
new file mode 100644
index 0000000000..ef722a5538
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/queries.svelte.js
@@ -0,0 +1,148 @@
+import { getContext } from 'svelte';
+import { ALL_QUERIES_CONTEXT_KEY, QUERIES_CONTEXT_KEY } from '$evidence/contextKeys';
+import { Query } from '@evidence-dev/sdk/query-store';
+import { query } from '@evidence-dev/universal-sql/client-duckdb';
+import { derived } from 'svelte/store';
+
+let ssrHookInstalled = false;
+/**
+ *
+ * @param {boolean} isInstalled
+ * @returns
+ */
+export const setSsrHookState = (isInstalled) => {
+ ssrHookInstalled = isInstalled;
+};
+
+/**
+ *
+ * @param {string} sql
+ * @param {string} id
+ * @returns
+ */
+const runner = (sql, id) => query(sql, { query_name: id, prerendering: true, route_hash: '500' });
+
+/**
+ * @param {string} name
+ * @param {string} sql
+ * @param {import('@evidence-dev/sdk/query-store').QueryOpts} [opts]
+ */
+export const runQuery = (name, sql, opts) => {
+ let initialData = undefined;
+ let initialError = undefined;
+
+ try {
+ if (typeof window === 'undefined') {
+ // SSR
+ if (ssrHookInstalled) initialData = query(sql);
+ } else {
+ const ssrKey = btoa(sql);
+ if (
+ window.__evidence_ssr &&
+ name in window.__evidence_ssr &&
+ sql === window.__evidence_ssr[ssrKey].initialQuery
+ ) {
+ initialData = window.__evidence_ssr[ssrKey].data;
+ Object.defineProperty(initialData, '_evidenceColumnTypes', {
+ enumerable: false,
+ value: window.__evidence_ssr[ssrKey].columns
+ });
+ }
+ }
+ } catch (e) {
+ initialError = new Error(`Error encountered while running query ${name}`, { cause: e });
+ }
+
+ return Query.create(sql, runner, { ...opts, initialData, initialError, id: name });
+};
+
+/**
+ * @returns {import("svelte/store").Readable>}
+ */
+export const getQueries = () => {
+ /** @type {import("svelte/store").Readable>} */
+ const context = getContext(QUERIES_CONTEXT_KEY);
+
+ /** @type {Record>} */
+ const queries = {};
+ const proxy = new Proxy(queries, {
+ /**
+ * @param {Record} t
+ * @param {*} p
+ * @returns
+ */
+ get(t, p) {
+ if (p in t) return t[p];
+ return Query.create(p, runner, {
+ id: p,
+ initialError: new Error(`Query ${p} is not available in this context`),
+ disableCache: true
+ });
+ }
+ });
+
+ return derived(
+ context,
+ (
+ /** @type {Record} */ availableQueries,
+ /** @type {(x: Record) => void} */ set
+ ) => {
+ /** @type {Array | unknown>} */
+ const updates = [];
+ Object.entries(availableQueries).forEach(([k, v]) => {
+ // Don't use $app/environment as that creates a hard dep on SvelteKit
+ // We want this to be portable to plain svelte projects
+ let initialData = undefined;
+ if (!(k in queries)) {
+ if (typeof window === 'undefined') {
+ // SSR
+ if (ssrHookInstalled) initialData = query(v);
+ } else {
+ const ssrKey = btoa(v);
+
+ if (
+ window.__evidence_ssr &&
+ ssrKey in window.__evidence_ssr &&
+ v === window.__evidence_ssr[ssrKey].initialQuery
+ ) {
+ initialData = window.__evidence_ssr[ssrKey].data;
+ Object.defineProperty(initialData, '_evidenceColumnTypes', {
+ enumerable: false,
+ value: window.__evidence_ssr[ssrKey].columns
+ });
+ }
+ }
+ }
+
+ const newStore = Query.create(v, runner, {
+ initialData,
+ id: k
+ });
+
+ if (queries[k]?.hash !== newStore.hash) {
+ updates.push(
+ // Loading states appear after 500ms
+ Promise.race([
+ newStore.fetch(),
+ new Promise((r) => {
+ setTimeout(r, 500);
+ })
+ ]).then(() => (queries[k] = newStore))
+ );
+ // Has updated
+ queries[k] = newStore;
+ }
+ });
+
+ Promise.all(updates).then(() => set(proxy));
+ return proxy;
+ },
+ proxy
+ );
+};
+
+export const getAllQueries = () => getContext(ALL_QUERIES_CONTEXT_KEY);
+
+/** @deprecated Use Query instead of QueryStore */
+const QueryStore = Query;
+export { QueryStore };
diff --git a/packages/lib/sdk/src/build-dev/vite/virtuals/ssrHook.svelte.js b/packages/lib/sdk/src/build-dev/vite/virtuals/ssrHook.svelte.js
new file mode 100644
index 0000000000..9e04bec00e
--- /dev/null
+++ b/packages/lib/sdk/src/build-dev/vite/virtuals/ssrHook.svelte.js
@@ -0,0 +1,60 @@
+import initUsqlPromise from '$evidence/initUsql';
+import { runQuery, setSsrHookState } from '$evidence/queries';
+
+setSsrHookState(true);
+
+/**
+ * SvelteKit server hook to enable SSR
+ * @param {Array<{name: string, queryString: string}>} presentQueries
+ * @returns {(chunk: {html: string, done:boolean}) => Promise}
+ */
+export const ssrHook =
+ (presentQueries) =>
+ async ({ html, done }) => {
+ const regex = //g;
+ let queryMatch;
+
+ while ((queryMatch = regex.exec(html) ?? []).length) {
+ if (queryMatch)
+ presentQueries.push({
+ name: queryMatch[1],
+ queryString: queryMatch[2].replaceAll('"', '"')
+ });
+ }
+
+ const loadDetectedQueries = async () => {
+ await initUsqlPromise;
+ const results = await Promise.all(
+ presentQueries.map(async ({ name, queryString }) => {
+ const result = runQuery(`${name}-ssr`, `--ssr\n${queryString}`, {
+ disableCache: true
+ });
+
+ await result.fetch();
+ if ((result.length && result[0] === null) || result[0] === undefined)
+ throw new Error(`Failed to render queries via SSR`);
+ if (result.error) throw result.error;
+ return [
+ name,
+ {
+ data: Array.from(result),
+ columns: result.columns,
+ initialQuery: queryString
+ }
+ ];
+ })
+ );
+
+ return Object.fromEntries(results);
+ };
+
+ if (done) {
+ const r = await loadDetectedQueries();
+ html = html.replace(
+ '
+ *
+ * @param {import("estree").Node} currentNode
+ * @returns {boolean}
+ */
+const nodeIsEvidenceDeclaration = (currentNode) => {
+ // If this isn't the right kind of declaration, ignore it
+ if (currentNode.type !== 'ExportNamedDeclaration') return false;
+
+ const rootDeclaration = currentNode.declaration;
+
+ if (rootDeclaration?.type !== 'VariableDeclaration') return false;
+
+ // const only, this is somewhat inline with sveltekit's patterns
+ if (rootDeclaration.kind !== 'const') return false;
+
+ // This shouldn't be hit, but type safety
+ if (!rootDeclaration?.declarations) return false;
+
+ // Iterate through sub-declarations, I've only ever seen 1 here
+ for (const declaration of rootDeclaration.declarations) {
+ const { id, init } = declaration;
+ // Check to see if this is a declaration for evidenceInclude
+ if (id.type !== 'Identifier') continue;
+ if (id.name !== 'evidenceInclude') continue;
+ // Check to see if the value it is declared with is a true constant
+ // We could shorten this; but this reads better
+ if (init?.type !== 'Literal') continue;
+ if (init.value !== true) continue;
+ // We found what we want!
+ return true;
+ }
+ // We never found the right declaration; continue the reduction
+ return false;
+};
+
+/**
+ * Generates an AST and searches it for the special declaration
+ * @param {string} fileContent
+ */
+export const isLibraryComponent = async (fileContent) => {
+ let result = false;
+
+ // remove style tags, postcss can screw this up
+ fileContent = fileContent.replace(/(.|[\s])*<\/style>/g, '');
+ // First parse the passed in file
+ const parseResult = svelteParse(fileContent);
+ // If there is a
+
+
+
+
diff --git a/packages/ui/core-components/src/lib/atoms/fullscreen/index.js b/packages/ui/core-components/src/lib/atoms/fullscreen/index.js
new file mode 100644
index 0000000000..f8271ec095
--- /dev/null
+++ b/packages/ui/core-components/src/lib/atoms/fullscreen/index.js
@@ -0,0 +1 @@
+export { default as Fullscreen } from './Fullscreen.svelte';
diff --git a/packages/core-components/src/lib/atoms/grid/Grid.stories.svelte b/packages/ui/core-components/src/lib/atoms/grid/Grid.stories.svelte
similarity index 100%
rename from packages/core-components/src/lib/atoms/grid/Grid.stories.svelte
rename to packages/ui/core-components/src/lib/atoms/grid/Grid.stories.svelte
diff --git a/packages/core-components/src/lib/atoms/grid/Grid.svelte b/packages/ui/core-components/src/lib/atoms/grid/Grid.svelte
similarity index 100%
rename from packages/core-components/src/lib/atoms/grid/Grid.svelte
rename to packages/ui/core-components/src/lib/atoms/grid/Grid.svelte
diff --git a/packages/core-components/src/lib/atoms/grid/index.js b/packages/ui/core-components/src/lib/atoms/grid/index.js
similarity index 100%
rename from packages/core-components/src/lib/atoms/grid/index.js
rename to packages/ui/core-components/src/lib/atoms/grid/index.js
diff --git a/packages/core-components/src/lib/atoms/hint/Hint.svelte b/packages/ui/core-components/src/lib/atoms/hint/Hint.svelte
similarity index 90%
rename from packages/core-components/src/lib/atoms/hint/Hint.svelte
rename to packages/ui/core-components/src/lib/atoms/hint/Hint.svelte
index a06de4f484..a785b6761a 100644
--- a/packages/core-components/src/lib/atoms/hint/Hint.svelte
+++ b/packages/ui/core-components/src/lib/atoms/hint/Hint.svelte
@@ -7,7 +7,7 @@
import { Icon } from '@steeze-ui/svelte-icon';
import { InfoCircle } from '@steeze-ui/tabler-icons';
- /** @type {import("@steeze-ui/svelte-icon").IconSource} */
+ /** @type {import('@steeze-ui/svelte-icon').IconSource} */
export let icon = InfoCircle;
let visible = false;
@@ -22,6 +22,7 @@
on:mouseenter={showMessage}
on:mouseleave={hideMessage}
class="additional-info-icon"
+ role="tooltip"
>
@@ -32,7 +33,7 @@
{/if}
-
diff --git a/packages/core-components/src/lib/unsorted/viz/table/_DataTable.svelte b/packages/ui/core-components/src/lib/unsorted/viz/table/_DataTable.svelte
similarity index 92%
rename from packages/core-components/src/lib/unsorted/viz/table/_DataTable.svelte
rename to packages/ui/core-components/src/lib/unsorted/viz/table/_DataTable.svelte
index e5d75a98df..1a9b2a1934 100644
--- a/packages/core-components/src/lib/unsorted/viz/table/_DataTable.svelte
+++ b/packages/ui/core-components/src/lib/unsorted/viz/table/_DataTable.svelte
@@ -20,6 +20,10 @@
import { ChevronsLeft, ChevronsRight, ChevronLeft, ChevronRight } from '@steeze-ui/tabler-icons';
import { Icon } from '@steeze-ui/svelte-icon';
import CodeBlock from '../../ui/CodeBlock.svelte';
+ import EnterFullScreen from './EnterFullScreen.svelte';
+ import Fullscreen from '../../../atoms/fullscreen/Fullscreen.svelte';
+ import { browser } from '$app/environment';
+ import Column from './Column.svelte';
// Set up props store
let props = writable({});
@@ -58,6 +62,8 @@
export let totalRow = false;
+ export let isFullPage = false;
+
// Row Links:
export let link = undefined;
@@ -112,13 +118,12 @@
// PROCESS DATES
// Filter for columns with type of "date"
- let dateCols = columnSummary.filter((d) => d.type === 'date');
- dateCols = dateCols.map((d) => d.id);
+ const dateCols = columnSummary
+ .filter((d) => d.type === 'date' && !(data[0]?.[d.id] instanceof Date))
+ .map((d) => d.id);
- if (dateCols.length > 0) {
- for (let i = 0; i < dateCols.length; i++) {
- data = convertColumnToDate(data, dateCols[i]);
- }
+ for (let i = 0; i < dateCols.length; i++) {
+ data = convertColumnToDate(data, dateCols[i]);
}
// Hide link column if columns have not been explicitly selected:
@@ -171,11 +176,8 @@
});
}
- // Initially set up Fuse with the current data
- updateFuse();
-
// Reactively update Fuse when `data` or `columnSummary` changes
- $: {
+ $: if (browser) {
updateFuse();
if (searchValue !== '') {
runSearch(searchValue);
@@ -224,9 +226,9 @@
(forceTopOfAscending(a[column]) && !forceTopOfAscending(b[column])) || a[column] < b[column]
? -1 * sortModifier
: (forceTopOfAscending(b[column]) && !forceTopOfAscending(a[column])) ||
- a[column] > b[column]
- ? 1 * sortModifier
- : 0;
+ a[column] > b[column]
+ ? 1 * sortModifier
+ : 0;
data.sort(sort);
filteredData = filteredData.sort(sort);
@@ -311,7 +313,7 @@
? dataSubset(
data,
$props.columns.map((d) => d.id)
- )
+ )
: data;
const weightedMean = (data, valueCol, weightCol) => {
@@ -327,8 +329,33 @@
return totalWeight > 0 ? totalWeightedValue / totalWeight : 0;
};
+
+ let fullscreen = false;
+ /** @type {number} */
+ let innerHeight;
+
+
+{#if !isFullPage}
+
+
+ {@const ROW_HEIGHT = 23}
+ {@const Y_AXIS_PADDING = 45 + 234}
+
+
+ {#each $props.columns as column}
+
+ {/each}
+
+
+
+{/if}
+
{#if error === undefined}
@@ -340,6 +367,7 @@
{/each}
{/if}
@@ -435,10 +463,10 @@
? column.customColor
? `color-mix(in srgb, ${column.customColor} ${
Math.max(0, Math.min(1, percentage)) * 100
- }%, transparent)`
+ }%, transparent)`
: `${column.useColor} ${Math.max(0, Math.min(1, percentage))})`
: // closing bracket needed to close unclosed color string from Column component
- ''}
+ ''}
>
{#if column.contentType === 'image' && row[column.id] !== undefined}
1}
-
+
+ Page goToPage(currentPage)}
- >
+
+
+
+
{#if downloadable}
+
+
+
{/if}
+ {#if !isFullPage}
+ (fullscreen = true)} display={hovering} />
+ {/if}
{:else}
{/if}
@@ -733,21 +771,26 @@
height: var(--scrollbar-size);
width: var(--scrollbar-size);
}
+
.container::-webkit-scrollbar-track {
background-color: var(--scrollbar-track-color);
}
+
.container::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-color);
border-radius: 7px;
background-clip: padding-box;
}
+
.container::-webkit-scrollbar-thumb:hover {
background-color: var(--scrollbar-active-color);
}
+
.container::-webkit-scrollbar-thumb:vertical {
min-height: var(--scrollbar-minlength);
border: 3px solid transparent;
}
+
.container::-webkit-scrollbar-thumb:horizontal {
min-width: var(--scrollbar-minlength);
border: 3px solid transparent;
@@ -771,6 +814,7 @@
td:first-child {
padding-left: 4px;
}
+
th {
border-bottom: 1px solid var(--grey-600);
}
@@ -828,7 +872,7 @@
font-size: 12px;
display: flex;
align-items: center;
- justify-content: space-between;
+ justify-content: flex-end;
height: 2em;
font-family: var(--ui-font-family);
color: var(--grey-500);
@@ -995,6 +1039,7 @@
height: 1.2em;
width: 1.2em;
}
+
.page-icon {
height: 1.2em;
width: 1.2em;
diff --git a/packages/core-components/src/lib/unsorted/viz/venn/VennDiagram.svelte b/packages/ui/core-components/src/lib/unsorted/viz/venn/VennDiagram.svelte
similarity index 100%
rename from packages/core-components/src/lib/unsorted/viz/venn/VennDiagram.svelte
rename to packages/ui/core-components/src/lib/unsorted/viz/venn/VennDiagram.svelte
diff --git a/packages/core-components/src/lib/utils.ts b/packages/ui/core-components/src/lib/utils.ts
similarity index 100%
rename from packages/core-components/src/lib/utils.ts
rename to packages/ui/core-components/src/lib/utils.ts
diff --git a/packages/core-components/src/routes/+layout.svelte b/packages/ui/core-components/src/routes/+layout.svelte
similarity index 100%
rename from packages/core-components/src/routes/+layout.svelte
rename to packages/ui/core-components/src/routes/+layout.svelte
diff --git a/packages/core-components/svelte.config.js b/packages/ui/core-components/svelte.config.js
similarity index 100%
rename from packages/core-components/svelte.config.js
rename to packages/ui/core-components/svelte.config.js
diff --git a/packages/core-components/tailwind.config.cjs b/packages/ui/core-components/tailwind.config.cjs
similarity index 100%
rename from packages/core-components/tailwind.config.cjs
rename to packages/ui/core-components/tailwind.config.cjs
diff --git a/packages/core-components/vite.config.js b/packages/ui/core-components/vite.config.js
similarity index 100%
rename from packages/core-components/vite.config.js
rename to packages/ui/core-components/vite.config.js
diff --git a/packages/tailwind/CHANGELOG.md b/packages/ui/tailwind/CHANGELOG.md
similarity index 100%
rename from packages/tailwind/CHANGELOG.md
rename to packages/ui/tailwind/CHANGELOG.md
diff --git a/packages/tailwind/fonts.css b/packages/ui/tailwind/fonts.css
similarity index 70%
rename from packages/tailwind/fonts.css
rename to packages/ui/tailwind/fonts.css
index 908ae2bfee..691056a010 100644
--- a/packages/tailwind/fonts.css
+++ b/packages/ui/tailwind/fonts.css
@@ -3,7 +3,8 @@
font-style: normal;
font-weight: 100;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Thin.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Thin.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Thin.woff?v=3.19') format('woff');
}
@font-face {
@@ -11,7 +12,8 @@
font-style: italic;
font-weight: 100;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff?v=3.19') format('woff');
}
@@ -20,7 +22,8 @@
font-style: normal;
font-weight: 200;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff?v=3.19') format('woff');
}
@font-face {
@@ -28,7 +31,8 @@
font-style: italic;
font-weight: 200;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff2?v=3.19')
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff2?v=3.19')
format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff?v=3.19') format('woff');
}
@@ -38,7 +42,8 @@
font-style: normal;
font-weight: 300;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Light.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Light.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Light.woff?v=3.19') format('woff');
}
@font-face {
@@ -46,7 +51,8 @@
font-style: italic;
font-weight: 300;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff?v=3.19') format('woff');
}
@@ -55,7 +61,8 @@
font-style: normal;
font-weight: 400;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Regular.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Regular.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Regular.woff?v=3.19') format('woff');
}
@font-face {
@@ -63,7 +70,8 @@
font-style: italic;
font-weight: 400;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Italic.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Italic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Italic.woff?v=3.19') format('woff');
}
@@ -72,7 +80,8 @@
font-style: normal;
font-weight: 500;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Medium.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Medium.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Medium.woff?v=3.19') format('woff');
}
@font-face {
@@ -80,8 +89,8 @@
font-style: italic;
font-weight: 500;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff2?v=3.19')
- format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff?v=3.19') format('woff');
}
@@ -90,7 +99,8 @@
font-style: normal;
font-weight: 600;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff?v=3.19') format('woff');
}
@font-face {
@@ -98,8 +108,8 @@
font-style: italic;
font-weight: 600;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff2?v=3.19')
- format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff?v=3.19') format('woff');
}
@@ -108,7 +118,8 @@
font-style: normal;
font-weight: 700;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Bold.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Bold.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Bold.woff?v=3.19') format('woff');
}
@font-face {
@@ -116,7 +127,8 @@
font-style: italic;
font-weight: 700;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff?v=3.19') format('woff');
}
@@ -125,7 +137,8 @@
font-style: normal;
font-weight: 800;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff?v=3.19') format('woff');
}
@font-face {
@@ -133,7 +146,8 @@
font-style: italic;
font-weight: 800;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff2?v=3.19')
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff2?v=3.19')
format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff?v=3.19') format('woff');
}
@@ -143,7 +157,8 @@
font-style: normal;
font-weight: 900;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Black.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Black.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-Black.woff?v=3.19') format('woff');
}
@font-face {
@@ -151,7 +166,8 @@
font-style: italic;
font-weight: 900;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff2?v=3.19') format('woff2'),
url('@evidence-dev/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff?v=3.19') format('woff');
}
@@ -160,7 +176,8 @@
font-style: normal;
font-weight: 100;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Light.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Light.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Light.woff') format('woff');
}
@font-face {
@@ -168,7 +185,8 @@
font-style: italic;
font-weight: 100;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-LightItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-LightItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-LightItalic.woff') format('woff');
}
@@ -177,7 +195,8 @@
font-style: normal;
font-weight: 200;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraLight.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraLight.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraLight.woff') format('woff');
}
@font-face {
@@ -185,7 +204,8 @@
font-style: italic;
font-weight: 200;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff') format('woff');
}
@@ -194,7 +214,8 @@
font-style: normal;
font-weight: 300;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Light.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Light.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Light.woff') format('woff');
}
@font-face {
@@ -202,7 +223,8 @@
font-style: italic;
font-weight: 300;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-LightItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-LightItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-LightItalic.woff') format('woff');
}
@@ -211,7 +233,8 @@
font-style: normal;
font-weight: 400;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Regular.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Regular.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Regular.woff') format('woff');
}
@font-face {
@@ -219,7 +242,8 @@
font-style: italic;
font-weight: 400;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Italic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Italic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Italic.woff') format('woff');
}
@@ -228,7 +252,8 @@
font-style: normal;
font-weight: 500;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Medium.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Medium.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Medium.woff') format('woff');
}
@font-face {
@@ -236,7 +261,8 @@
font-style: italic;
font-weight: 500;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-MediumItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-MediumItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-MediumItalic.woff') format('woff');
}
@@ -245,7 +271,8 @@
font-style: normal;
font-weight: 600;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-SemiBold.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-SemiBold.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-SemiBold.woff') format('woff');
}
@font-face {
@@ -253,7 +280,8 @@
font-style: italic;
font-weight: 600;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff') format('woff');
}
@@ -262,7 +290,8 @@
font-style: normal;
font-weight: 700;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Bold.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Bold.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-Bold.woff') format('woff');
}
@font-face {
@@ -270,7 +299,8 @@
font-style: italic;
font-weight: 700;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-BoldItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-BoldItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-BoldItalic.woff') format('woff');
}
@@ -279,7 +309,8 @@
font-style: normal;
font-weight: 800;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraBold.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraBold.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraBold.woff') format('woff');
}
@font-face {
@@ -287,6 +318,7 @@
font-style: italic;
font-weight: 800;
font-display: block;
- src: url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff2') format('woff2'),
+ src:
+ url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff2') format('woff2'),
url('@evidence-dev/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff') format('woff');
}
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Black.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Black.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Black.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Black.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Black.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Black.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Black.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Black.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-BlackItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Bold.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Bold.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Bold.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Bold.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Bold.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Bold.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Bold.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Bold.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-BoldItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBold.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraBoldItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLight.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ExtraLightItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Italic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Italic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Italic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Italic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Italic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Italic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Italic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Italic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Light.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Light.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Light.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Light.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Light.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Light.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Light.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Light.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-LightItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Medium.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Medium.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Medium.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Medium.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Medium.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Medium.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Medium.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Medium.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-MediumItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Regular.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Regular.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Regular.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Regular.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Regular.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Regular.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Regular.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Regular.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBold.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-SemiBoldItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Thin.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Thin.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Thin.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Thin.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-Thin.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-Thin.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-Thin.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-Thin.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-ThinItalic.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-italic.var.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-italic.var.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-italic.var.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-italic.var.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter-roman.var.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter-roman.var.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter-roman.var.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter-roman.var.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/Inter.var.woff2 b/packages/ui/tailwind/fonts/Inter-3.19/Inter.var.woff2
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/Inter.var.woff2
rename to packages/ui/tailwind/fonts/Inter-3.19/Inter.var.woff2
diff --git a/packages/tailwind/fonts/Inter-3.19/LICENSE.txt b/packages/ui/tailwind/fonts/Inter-3.19/LICENSE.txt
similarity index 100%
rename from packages/tailwind/fonts/Inter-3.19/LICENSE.txt
rename to packages/ui/tailwind/fonts/Inter-3.19/LICENSE.txt
diff --git a/packages/tailwind/fonts/Inter-3.19/inter.css b/packages/ui/tailwind/fonts/Inter-3.19/inter.css
similarity index 68%
rename from packages/tailwind/fonts/Inter-3.19/inter.css
rename to packages/ui/tailwind/fonts/Inter-3.19/inter.css
index 741337f27a..0c197958ab 100644
--- a/packages/tailwind/fonts/Inter-3.19/inter.css
+++ b/packages/ui/tailwind/fonts/Inter-3.19/inter.css
@@ -3,14 +3,17 @@
font-style: normal;
font-weight: 100;
font-display: swap;
- src: url('Inter-Thin.woff2?v=3.19') format('woff2'), url('Inter-Thin.woff?v=3.19') format('woff');
+ src:
+ url('Inter-Thin.woff2?v=3.19') format('woff2'),
+ url('Inter-Thin.woff?v=3.19') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
- src: url('Inter-ThinItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-ThinItalic.woff2?v=3.19') format('woff2'),
url('Inter-ThinItalic.woff?v=3.19') format('woff');
}
@@ -19,7 +22,8 @@
font-style: normal;
font-weight: 200;
font-display: swap;
- src: url('Inter-ExtraLight.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-ExtraLight.woff2?v=3.19') format('woff2'),
url('Inter-ExtraLight.woff?v=3.19') format('woff');
}
@font-face {
@@ -27,7 +31,8 @@
font-style: italic;
font-weight: 200;
font-display: swap;
- src: url('Inter-ExtraLightItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-ExtraLightItalic.woff2?v=3.19') format('woff2'),
url('Inter-ExtraLightItalic.woff?v=3.19') format('woff');
}
@@ -36,7 +41,8 @@
font-style: normal;
font-weight: 300;
font-display: swap;
- src: url('Inter-Light.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-Light.woff2?v=3.19') format('woff2'),
url('Inter-Light.woff?v=3.19') format('woff');
}
@font-face {
@@ -44,7 +50,8 @@
font-style: italic;
font-weight: 300;
font-display: swap;
- src: url('Inter-LightItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-LightItalic.woff2?v=3.19') format('woff2'),
url('Inter-LightItalic.woff?v=3.19') format('woff');
}
@@ -53,7 +60,8 @@
font-style: normal;
font-weight: 400;
font-display: swap;
- src: url('Inter-Regular.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-Regular.woff2?v=3.19') format('woff2'),
url('Inter-Regular.woff?v=3.19') format('woff');
}
@font-face {
@@ -61,7 +69,8 @@
font-style: italic;
font-weight: 400;
font-display: swap;
- src: url('Inter-Italic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-Italic.woff2?v=3.19') format('woff2'),
url('Inter-Italic.woff?v=3.19') format('woff');
}
@@ -70,7 +79,8 @@
font-style: normal;
font-weight: 500;
font-display: swap;
- src: url('Inter-Medium.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-Medium.woff2?v=3.19') format('woff2'),
url('Inter-Medium.woff?v=3.19') format('woff');
}
@font-face {
@@ -78,7 +88,8 @@
font-style: italic;
font-weight: 500;
font-display: swap;
- src: url('Inter-MediumItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-MediumItalic.woff2?v=3.19') format('woff2'),
url('Inter-MediumItalic.woff?v=3.19') format('woff');
}
@@ -87,7 +98,8 @@
font-style: normal;
font-weight: 600;
font-display: swap;
- src: url('Inter-SemiBold.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-SemiBold.woff2?v=3.19') format('woff2'),
url('Inter-SemiBold.woff?v=3.19') format('woff');
}
@font-face {
@@ -95,7 +107,8 @@
font-style: italic;
font-weight: 600;
font-display: swap;
- src: url('Inter-SemiBoldItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-SemiBoldItalic.woff2?v=3.19') format('woff2'),
url('Inter-SemiBoldItalic.woff?v=3.19') format('woff');
}
@@ -104,14 +117,17 @@
font-style: normal;
font-weight: 700;
font-display: swap;
- src: url('Inter-Bold.woff2?v=3.19') format('woff2'), url('Inter-Bold.woff?v=3.19') format('woff');
+ src:
+ url('Inter-Bold.woff2?v=3.19') format('woff2'),
+ url('Inter-Bold.woff?v=3.19') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
- src: url('Inter-BoldItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-BoldItalic.woff2?v=3.19') format('woff2'),
url('Inter-BoldItalic.woff?v=3.19') format('woff');
}
@@ -120,7 +136,8 @@
font-style: normal;
font-weight: 800;
font-display: swap;
- src: url('Inter-ExtraBold.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-ExtraBold.woff2?v=3.19') format('woff2'),
url('Inter-ExtraBold.woff?v=3.19') format('woff');
}
@font-face {
@@ -128,7 +145,8 @@
font-style: italic;
font-weight: 800;
font-display: swap;
- src: url('Inter-ExtraBoldItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-ExtraBoldItalic.woff2?v=3.19') format('woff2'),
url('Inter-ExtraBoldItalic.woff?v=3.19') format('woff');
}
@@ -137,7 +155,8 @@
font-style: normal;
font-weight: 900;
font-display: swap;
- src: url('Inter-Black.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-Black.woff2?v=3.19') format('woff2'),
url('Inter-Black.woff?v=3.19') format('woff');
}
@font-face {
@@ -145,6 +164,7 @@
font-style: italic;
font-weight: 900;
font-display: swap;
- src: url('Inter-BlackItalic.woff2?v=3.19') format('woff2'),
+ src:
+ url('Inter-BlackItalic.woff2?v=3.19') format('woff2'),
url('Inter-BlackItalic.woff?v=3.19') format('woff');
}
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Bold.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-Bold.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Bold.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Bold.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Bold.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-Bold.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Bold.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Bold.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-BoldItalic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-BoldItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-BoldItalic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-BoldItalic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-BoldItalic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-BoldItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-BoldItalic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-BoldItalic.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraBold.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBold.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraBold.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBold.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraBold.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBold.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraBold.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBold.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraBoldItalic.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraLight.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLight.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraLight.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLight.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraLight.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLight.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraLight.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLight.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-ExtraLightItalic.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Italic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-Italic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Italic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Italic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Italic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-Italic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Italic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Italic.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Light.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-Light.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Light.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Light.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Light.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-Light.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Light.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Light.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-LightItalic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-LightItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-LightItalic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-LightItalic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-LightItalic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-LightItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-LightItalic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-LightItalic.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Medium.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-Medium.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Medium.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Medium.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Medium.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-Medium.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Medium.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Medium.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-MediumItalic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-MediumItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-MediumItalic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-MediumItalic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-MediumItalic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-MediumItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-MediumItalic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-MediumItalic.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Regular.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-Regular.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Regular.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Regular.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-Regular.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-Regular.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-Regular.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-Regular.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-SemiBold.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-SemiBold.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-SemiBold.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-SemiBold.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-SemiBold.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-SemiBold.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-SemiBold.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-SemiBold.woff2
diff --git a/packages/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff b/packages/ui/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff
rename to packages/ui/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff
diff --git a/packages/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff2 b/packages/ui/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff2
similarity index 100%
rename from packages/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff2
rename to packages/ui/tailwind/fonts/Spectral/Spectral-SemiBoldItalic.woff2
diff --git a/packages/tailwind/index.js b/packages/ui/tailwind/index.js
similarity index 100%
rename from packages/tailwind/index.js
rename to packages/ui/tailwind/index.js
diff --git a/packages/tailwind/package.json b/packages/ui/tailwind/package.json
similarity index 95%
rename from packages/tailwind/package.json
rename to packages/ui/tailwind/package.json
index b378d10553..710391effd 100644
--- a/packages/tailwind/package.json
+++ b/packages/ui/tailwind/package.json
@@ -7,7 +7,7 @@
"license": "MIT",
"devDependencies": {
"parcel": "^2.8.3",
- "typescript": "^5.0.4"
+ "typescript": "5.4.2"
},
"dependencies": {
"tailwindcss": "^3.3.1"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 74b55c9e00..934c9c3791 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -24,47 +24,50 @@ importers:
specifier: 1.28.0
version: 1.28.0
'@evidence-dev/component-utilities':
- specifier: link:packages/component-utilities
- version: link:packages/component-utilities
+ specifier: link:packages/lib/component-utilities
+ version: link:packages/lib/component-utilities
'@evidence-dev/core-components':
- specifier: link:packages/core-components
- version: link:packages/core-components
+ specifier: link:packages/ui/core-components
+ version: link:packages/ui/core-components
'@evidence-dev/db-orchestrator':
- specifier: link:packages/db-orchestrator
- version: link:packages/db-orchestrator
+ specifier: link:packages/lib/db-orchestrator
+ version: link:packages/lib/db-orchestrator
'@evidence-dev/evidence':
specifier: link:packages/evidence
version: link:packages/evidence
'@evidence-dev/plugin-connector':
- specifier: link:packages/plugin-connector
- version: link:packages/plugin-connector
+ specifier: link:packages/lib/plugin-connector
+ version: link:packages/lib/plugin-connector
'@evidence-dev/preprocess':
- specifier: link:packages/preprocess
- version: link:packages/preprocess
+ specifier: link:packages/lib/preprocess
+ version: link:packages/lib/preprocess
'@evidence-dev/query-store':
- specifier: link:packages/query-store
- version: link:packages/query-store
+ specifier: link:packages/lib/query-store
+ version: link:packages/lib/query-store
'@evidence-dev/tailwind':
- specifier: link:packages/tailwind
- version: link:packages/tailwind
+ specifier: link:packages/ui/tailwind
+ version: link:packages/ui/tailwind
'@evidence-dev/telemetry':
- specifier: link:packages/telemetry
- version: link:packages/telemetry
+ specifier: link:packages/lib/telemetry
+ version: link:packages/lib/telemetry
'@evidence-dev/universal-sql':
- specifier: link:packages/universal-sql
- version: link:packages/universal-sql
+ specifier: link:packages/lib/universal-sql
+ version: link:packages/lib/universal-sql
'@parcel/packager-ts':
specifier: 2.12.0
version: 2.12.0(@parcel/core@2.12.0)
'@parcel/transformer-typescript-types':
specifier: 2.9.3
- version: 2.9.3(@parcel/core@2.12.0)(typescript@4.9.5)
+ version: 2.9.3(@parcel/core@2.12.0)(typescript@5.4.2)
'@sveltejs/adapter-static':
- specifier: 2.0.2
- version: 2.0.2(@sveltejs/kit@1.22.3)
+ specifier: 3.0.1
+ version: 3.0.1(@sveltejs/kit@2.5.4)
'@sveltejs/kit':
- specifier: 1.22.3
- version: 1.22.3(svelte@3.59.2)(vite@4.3.9)
+ specifier: 2.5.4
+ version: 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
+ '@sveltejs/vite-plugin-svelte':
+ specifier: 3.0.2
+ version: 3.0.2(svelte@4.2.12)(vite@5.1.6)
'@tidyjs/tidy':
specifier: 2.5.2
version: 2.5.2
@@ -98,21 +101,21 @@ importers:
eslint-config-prettier:
specifier: ^8.10.0
version: 8.10.0(eslint@8.45.0)
- eslint-plugin-svelte3:
- specifier: ^4.0.0
- version: 4.0.0(eslint@8.45.0)(svelte@3.59.2)
+ eslint-plugin-svelte:
+ specifier: 2.35.1
+ version: 2.35.1(eslint@8.45.0)(svelte@4.2.12)
export-to-csv:
specifier: 0.2.1
version: 0.2.1
express:
specifier: ^4.18.3
- version: 4.18.3
+ version: 4.19.1
fs-extra:
specifier: 11.2.0
version: 11.2.0
get-port:
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.1.0
git-remote-origin-url:
specifier: 4.0.0
version: 4.0.0
@@ -121,7 +124,7 @@ importers:
version: 1.18.1
node-fetch:
specifier: ^3.3.1
- version: 3.3.1
+ version: 3.3.2
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
@@ -132,11 +135,11 @@ importers:
specifier: ^7.0.1
version: 7.0.1
prettier:
- specifier: ^2.8.8
- version: 2.8.8
+ specifier: ^3.1.0
+ version: 3.2.5
prettier-plugin-svelte:
- specifier: ^2.10.1
- version: 2.10.1(prettier@2.8.8)(svelte@3.59.2)
+ specifier: ^3.1.2
+ version: 3.2.2(prettier@3.2.5)(svelte@4.2.12)
prismjs:
specifier: 1.29.0
version: 1.29.0
@@ -147,20 +150,20 @@ importers:
specifier: ^0.11.2
version: 0.11.2
svelte:
- specifier: 3.59.2
- version: 3.59.2
+ specifier: 4.2.12
+ version: 4.2.12
svelte-icons:
specifier: 2.1.0
version: 2.1.0
svelte-preprocess:
specifier: 5.1.3
- version: 5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@4.9.5)
+ version: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
svelte2tsx:
- specifier: 0.6.0
- version: 0.6.0(svelte@3.59.2)(typescript@4.9.5)
+ specifier: 0.7.4
+ version: 0.7.4(svelte@4.2.12)(typescript@5.4.2)
typescript:
- specifier: 4.9.5
- version: 4.9.5
+ specifier: 5.4.2
+ version: 5.4.2
unified:
specifier: 9.1.0
version: 9.1.0
@@ -171,14 +174,14 @@ importers:
specifier: 0.5.2
version: 0.5.2
vite:
- specifier: 4.3.9
- version: 4.3.9
+ specifier: 5.1.6
+ version: 5.1.6(@types/node@20.11.28)
- packages/bigquery:
+ packages/datasources/bigquery:
dependencies:
'@evidence-dev/db-commons':
specifier: workspace:*
- version: link:../db-commons
+ version: link:../../lib/db-commons
'@google-cloud/bigquery':
specifier: 6.2.0
version: 6.2.0
@@ -187,32 +190,306 @@ importers:
version: 11.2.0
google-auth-library:
specifier: ^9.6.3
- version: 9.6.3
+ version: 9.7.0
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/csv:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ '@evidence-dev/duckdb':
+ specifier: workspace:*
+ version: link:../duckdb
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/databricks:
+ dependencies:
+ '@databricks/sql':
+ specifier: ^1.5.0
+ version: 1.8.2
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/duckdb:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ duckdb-async:
+ specifier: 0.10.0
+ version: 0.10.0
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/faker:
+ dependencies:
+ '@faker-js/faker':
+ specifier: ^8.3.1
+ version: 8.4.1
+ '@types/cli-progress':
+ specifier: ^3.11.0
+ version: 3.11.5
+ '@types/lodash.clonedeep':
+ specifier: ^4.5.9
+ version: 4.5.9
+ '@types/lodash.merge':
+ specifier: ^4.6.8
+ version: 4.6.9
+ '@types/seedrandom':
+ specifier: ^3.0.8
+ version: 3.0.8
+ chalk:
+ specifier: ^5.3.0
+ version: 5.3.0
+ cli-progress:
+ specifier: ^3.12.0
+ version: 3.12.0
+ lodash.clonedeep:
+ specifier: ^4.5.0
+ version: 4.5.0
+ lodash.merge:
+ specifier: ^4.6.2
+ version: 4.6.2
+ seedrandom:
+ specifier: ^3.0.5
+ version: 3.0.5
+ yaml:
+ specifier: ^2.3.1
+ version: 2.4.1
+ zod:
+ specifier: ^3.21.4
+ version: 3.22.4
+ devDependencies:
+ typescript:
+ specifier: 5.4.2
+ version: 5.4.2
+
+ packages/datasources/mssql:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ '@types/mssql':
+ specifier: ^8.1.2
+ version: 8.1.2
+ mssql:
+ specifier: ^9.1.1
+ version: 9.3.2
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/mysql:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ mysql2:
+ specifier: ^3.8.0
+ version: 3.9.2
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/postgres:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ pg:
+ specifier: ^8.11.3
+ version: 8.11.3
+ pg-cursor:
+ specifier: ^2.10.3
+ version: 2.10.3(pg@8.11.3)
+ devDependencies:
+ '@types/pg':
+ specifier: ^8.10.9
+ version: 8.11.4
+
+ packages/datasources/redshift:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ '@evidence-dev/postgres':
+ specifier: workspace:*
+ version: link:../postgres
+
+ packages/datasources/snowflake:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ '@types/snowflake-sdk':
+ specifier: ^1.6.13
+ version: 1.6.20
+ asn1.js:
+ specifier: ^5.0.0
+ version: 5.4.1
+ fs-extra:
+ specifier: ^11.2.0
+ version: 11.2.0
+ node-fetch:
+ specifier: ^3.3.1
+ version: 3.3.2
+ open:
+ specifier: ^9.1.0
+ version: 9.1.0
+ snowflake-sdk:
+ specifier: 1.9.0
+ version: 1.9.0(asn1.js@5.4.1)
+ devDependencies:
+ dotenv:
+ specifier: ^16.0.1
+ version: 16.4.5
+
+ packages/datasources/sqlite:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ sqlite:
+ specifier: 4.2.1
+ version: 4.2.1
+ sqlite3:
+ specifier: 5.1.6
+ version: 5.1.6
devDependencies:
dotenv:
specifier: ^16.0.1
- version: 16.0.1
+ version: 16.4.5
+
+ packages/datasources/trino:
+ dependencies:
+ '@evidence-dev/db-commons':
+ specifier: workspace:*
+ version: link:../../lib/db-commons
+ presto-client:
+ specifier: ^0.13.0
+ version: 0.13.0
+
+ packages/evidence:
+ dependencies:
+ '@evidence-dev/plugin-connector':
+ specifier: workspace:*
+ version: link:../lib/plugin-connector
+ '@evidence-dev/preprocess':
+ specifier: workspace:*
+ version: link:../lib/preprocess
+ '@evidence-dev/query-store':
+ specifier: workspace:*
+ version: link:../lib/query-store
+ '@evidence-dev/telemetry':
+ specifier: workspace:*
+ version: link:../lib/telemetry
+ '@evidence-dev/universal-sql':
+ specifier: workspace:*
+ version: link:../lib/universal-sql
+ '@sveltejs/adapter-static':
+ specifier: 3.0.1
+ version: 3.0.1(@sveltejs/kit@2.5.4)
+ autoprefixer:
+ specifier: ^10.4.7
+ version: 10.4.19(postcss@8.4.38)
+ chalk:
+ specifier: ^5.3.0
+ version: 5.3.0
+ chokidar:
+ specifier: 3.6.0
+ version: 3.6.0
+ debounce:
+ specifier: ^1.2.1
+ version: 1.2.1
+ fs-extra:
+ specifier: 11.2.0
+ version: 11.2.0
+ git-remote-origin-url:
+ specifier: 4.0.0
+ version: 4.0.0
+ postcss:
+ specifier: ^8.4.14
+ version: 8.4.38
+ postcss-load-config:
+ specifier: ^4.0.1
+ version: 4.0.2(postcss@8.4.38)
+ sade:
+ specifier: ^1.8.1
+ version: 1.8.1
+ svelte-preprocess:
+ specifier: 5.1.3
+ version: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
+ svelte2tsx:
+ specifier: 0.7.4
+ version: 0.7.4(svelte@4.2.12)(typescript@5.4.2)
+ tailwindcss:
+ specifier: ^3.3.1
+ version: 3.4.1
+ typescript:
+ specifier: 5.4.2
+ version: 5.4.2
+ unist-util-visit:
+ specifier: 4.1.2
+ version: 4.1.2
+ devDependencies:
+ '@evidence-dev/component-utilities':
+ specifier: workspace:*
+ version: link:../lib/component-utilities
+ '@evidence-dev/core-components':
+ specifier: workspace:*
+ version: link:../ui/core-components
+ '@evidence-dev/db-orchestrator':
+ specifier: workspace:*
+ version: link:../lib/db-orchestrator
+ '@evidence-dev/tailwind':
+ specifier: workspace:*
+ version: link:../ui/tailwind
+ '@sveltejs/kit':
+ specifier: 2.5.4
+ version: 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
+ svelte:
+ specifier: 4.2.12
+ version: 4.2.12
+ vite:
+ specifier: 5.1.6
+ version: 5.1.6(@types/node@20.11.28)
- packages/component-utilities:
+ packages/lib/component-utilities:
dependencies:
'@evidence-dev/query-store':
specifier: workspace:*
version: link:../query-store
'@steeze-ui/simple-icons':
- specifier: ^1.5.0
+ specifier: ^1.7.1
version: 1.7.1
'@steeze-ui/svelte-icon':
- specifier: ^1.4.1
- version: 1.4.1(svelte@3.55.0)
+ specifier: 1.5.0
+ version: 1.5.0(svelte@4.2.12)
'@steeze-ui/tabler-icons':
- specifier: ^2.1.0
- version: 2.1.0(svelte@3.55.0)
+ specifier: 2.1.1
+ version: 2.1.1
'@tidyjs/tidy':
specifier: 2.5.2
version: 2.5.2
'@uwdata/mosaic-sql':
specifier: ^0.3.2
- version: 0.3.2
+ version: 0.3.5
debounce:
specifier: ^1.2.1
version: 1.2.1
@@ -226,328 +503,70 @@ importers:
specifier: ^0.11.2
version: 0.11.2
svelte:
- specifier: 3.55.0
- version: 3.55.0
+ specifier: 4.2.12
+ version: 4.2.12
devDependencies:
'@faker-js/faker':
specifier: ^8.0.2
- version: 8.3.1
+ version: 8.4.1
vitest:
specifier: ^0.34.1
- version: 0.34.2
+ version: 0.34.6
- packages/core-components:
+ packages/lib/db-commons:
dependencies:
- '@astronautlabs/jsonpath':
- specifier: ^1.1.2
- version: 1.1.2
- '@codemirror/autocomplete':
- specifier: ^6.12.0
- version: 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.1)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
- '@codemirror/commands':
- specifier: ^6.3.3
- version: 6.3.3
- '@codemirror/lang-sql':
- specifier: ^6.5.5
- version: 6.5.5(@codemirror/view@6.23.0)
- '@codemirror/language':
- specifier: ^6.10.0
- version: 6.10.0
- '@codemirror/lint':
- specifier: ^6.4.2
- version: 6.4.2
- '@codemirror/search':
- specifier: ^6.5.5
- version: 6.5.5
- '@codemirror/view':
- specifier: ^6.23.0
- version: 6.23.0
- '@docsearch/css':
- specifier: ^3.5.2
- version: 3.5.2
- '@docsearch/js':
- specifier: ^3.5.2
- version: 3.5.2(@algolia/client-search@4.15.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)
- '@evidence-dev/component-utilities':
+ fs-extra:
+ specifier: 11.2.0
+ version: 11.2.0
+ devDependencies:
+ '@jest/globals':
+ specifier: ^29.5.0
+ version: 29.7.0
+ jest:
+ specifier: ^28.1.3
+ version: 28.1.3
+
+ packages/lib/db-orchestrator:
+ dependencies:
+ '@evidence-dev/bigquery':
specifier: workspace:*
- version: link:../component-utilities
- '@evidence-dev/query-store':
+ version: link:../../datasources/bigquery
+ '@evidence-dev/csv':
specifier: workspace:*
- version: link:../query-store
- '@evidence-dev/tailwind':
- specifier: workspace:*
- version: link:../tailwind
- '@internationalized/date':
- specifier: ^3.5.1
- version: 3.5.1
- '@steeze-ui/radix-icons':
- specifier: ^1.1.2
- version: 1.1.2
- '@steeze-ui/simple-icons':
- specifier: ^1.7.1
- version: 1.7.1
- '@steeze-ui/svelte-icon':
- specifier: ^1.4.1
- version: 1.4.1(svelte@3.59.2)
- '@steeze-ui/tabler-icons':
- specifier: ^2.1.0
- version: 2.1.0(svelte@3.59.2)
- '@types/lodash.debounce':
- specifier: ^4.0.9
- version: 4.0.9
- '@types/mermaid':
- specifier: ^9.2.0
- version: 9.2.0
- bits-ui:
- specifier: ^0.11.8
- version: 0.11.8(svelte@3.59.2)
- chroma-js:
- specifier: ^2.4.2
- version: 2.4.2
- clsx:
- specifier: ^2.0.0
- version: 2.0.0
- cmdk-sv:
- specifier: ^0.0.12
- version: 0.0.12(svelte@3.59.2)
- codemirror:
- specifier: ^6.0.1
- version: 6.0.1(@lezer/common@1.2.1)
- echarts:
- specifier: 5.4.3
- version: 5.4.3
- echarts-stat:
- specifier: 1.2.0
- version: 1.2.0
- export-to-csv:
- specifier: 0.2.1
- version: 0.2.1
- fuse.js:
- specifier: ^7.0.0
- version: 7.0.0
- lodash.debounce:
- specifier: ^4.0.8
- version: 4.0.8
- mermaid:
- specifier: ^10.6.1
- version: 10.6.1
- prismjs:
- specifier: 1.29.0
- version: 1.29.0
- ssf:
- specifier: 0.11.2
- version: 0.11.2
- tailwind-merge:
- specifier: ^2.2.0
- version: 2.2.0
- tailwind-variants:
- specifier: ^0.1.19
- version: 0.1.19(tailwindcss@3.3.1)
- thememirror:
- specifier: ^2.0.1
- version: 2.0.1(@codemirror/language@6.10.0)(@codemirror/state@6.4.1)(@codemirror/view@6.23.0)
- tua-body-scroll-lock:
- specifier: ^1.4.0
- version: 1.4.0
- yaml:
- specifier: ^2.3.4
- version: 2.3.4
- zod:
- specifier: ^3.22.4
- version: 3.22.4
- devDependencies:
- '@evidence-dev/faker-datasource':
- specifier: workspace:*
- version: link:../faker-datasource
- '@evidence-dev/plugin-connector':
- specifier: workspace:*
- version: link:../plugin-connector
- '@evidence-dev/universal-sql':
- specifier: workspace:*
- version: link:../universal-sql
- '@storybook/addon-essentials':
- specifier: ^7.6.12
- version: 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/addon-interactions':
- specifier: ^7.6.6
- version: 7.6.6
- '@storybook/addon-links':
- specifier: ^7.6.6
- version: 7.6.6(react@17.0.1)
- '@storybook/addon-svelte-csf':
- specifier: ^4.0.13
- version: 4.0.13(@storybook/svelte@7.6.6)(@storybook/theming@7.6.6)(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@4.3.9)
- '@storybook/blocks':
- specifier: ^7.6.6
- version: 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@storybook/svelte':
- specifier: ^7.6.6
- version: 7.6.6(svelte@3.59.2)
- '@storybook/sveltekit':
- specifier: ^7.6.13
- version: 7.6.13(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2)(vite@4.3.9)
- '@storybook/testing-library':
- specifier: ^0.2.2
- version: 0.2.2
- '@storybook/theming':
- specifier: ^7.6.6
- version: 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@sveltejs/adapter-auto':
- specifier: ^2.0.0
- version: 2.0.0(@sveltejs/kit@1.22.3)
- '@sveltejs/kit':
- specifier: 1.22.3
- version: 1.22.3(svelte@3.59.2)(vite@4.3.9)
- '@sveltejs/package':
- specifier: ^2.2.7
- version: 2.2.7(svelte@3.59.2)(typescript@5.2.2)
- autoprefixer:
- specifier: ^10.4.14
- version: 10.4.14(postcss@8.4.23)
- chromatic:
- specifier: ^6.17.4
- version: 6.17.4
- eslint:
- specifier: 8.45.0
- version: 8.45.0
- eslint-config-prettier:
- specifier: ^8.5.0
- version: 8.10.0(eslint@8.45.0)
- eslint-plugin-storybook:
- specifier: ^0.6.15
- version: 0.6.15(eslint@8.45.0)(typescript@5.2.2)
- eslint-plugin-svelte:
- specifier: ^2.26.0
- version: 2.26.0(eslint@8.45.0)(svelte@3.59.2)
- postcss:
- specifier: ^8.4.23
- version: 8.4.23
- postcss-load-config:
- specifier: ^4.0.1
- version: 4.0.1(postcss@8.4.23)
- prettier:
- specifier: ^2.8.0
- version: 2.8.8
- prettier-plugin-svelte:
- specifier: ^2.8.1
- version: 2.10.1(prettier@2.8.8)(svelte@3.59.2)
- publint:
- specifier: ^0.1.9
- version: 0.1.9
- react:
- specifier: ^17.0.1
- version: 17.0.1
- react-dom:
- specifier: ^17.0.1
- version: 17.0.1(react@17.0.1)
- storybook:
- specifier: ^7.6.6
- version: 7.6.6
- svelte:
- specifier: ^3.59.2
- version: 3.59.2
- svelte-check:
- specifier: ^3.0.1
- version: 3.0.1(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)
- svelte-preprocess:
- specifier: ^5.1.3
- version: 5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2)
- tailwindcss:
- specifier: ^3.3.1
- version: 3.3.1(postcss@8.4.23)
- tslib:
- specifier: ^2.4.1
- version: 2.4.1
- typescript:
- specifier: ^5.0.0
- version: 5.2.2
- vite:
- specifier: 4.3.9
- version: 4.3.9
- vitest:
- specifier: ^0.34.1
- version: 0.34.2
-
- packages/csv:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- '@evidence-dev/duckdb':
- specifier: workspace:*
- version: link:../duckdb
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/databricks:
- dependencies:
- '@databricks/sql':
- specifier: ^1.5.0
- version: 1.5.0
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/db-commons:
- dependencies:
- fs-extra:
- specifier: 11.2.0
- version: 11.2.0
- devDependencies:
- '@jest/globals':
- specifier: ^29.5.0
- version: 29.5.0
- jest:
- specifier: ^28.1.3
- version: 28.1.3
-
- packages/db-orchestrator:
- dependencies:
- '@evidence-dev/bigquery':
- specifier: workspace:*
- version: link:../bigquery
- '@evidence-dev/csv':
- specifier: workspace:*
- version: link:../csv
+ version: link:../../datasources/csv
'@evidence-dev/databricks':
specifier: workspace:*
- version: link:../databricks
+ version: link:../../datasources/databricks
'@evidence-dev/db-commons':
specifier: workspace:*
version: link:../db-commons
'@evidence-dev/duckdb':
specifier: workspace:*
- version: link:../duckdb
+ version: link:../../datasources/duckdb
'@evidence-dev/mssql':
specifier: workspace:*
- version: link:../mssql
+ version: link:../../datasources/mssql
'@evidence-dev/mysql':
specifier: workspace:*
- version: link:../mysql
+ version: link:../../datasources/mysql
'@evidence-dev/postgres':
specifier: workspace:*
- version: link:../postgres
+ version: link:../../datasources/postgres
'@evidence-dev/redshift':
specifier: workspace:*
- version: link:../redshift
+ version: link:../../datasources/redshift
'@evidence-dev/snowflake':
specifier: workspace:*
- version: link:../snowflake
+ version: link:../../datasources/snowflake
'@evidence-dev/sqlite':
specifier: workspace:*
- version: link:../sqlite
+ version: link:../../datasources/sqlite
'@evidence-dev/telemetry':
specifier: workspace:*
version: link:../telemetry
'@evidence-dev/trino':
specifier: workspace:*
- version: link:../trino
+ version: link:../../datasources/trino
blueimp-md5:
specifier: 2.18.0
version: 2.18.0
@@ -558,287 +577,104 @@ importers:
specifier: 11.2.0
version: 11.2.0
- packages/duckdb:
+ packages/lib/plugin-connector:
dependencies:
'@evidence-dev/db-commons':
specifier: workspace:*
version: link:../db-commons
- duckdb-async:
- specifier: 0.10.0
- version: 0.10.0
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/evidence:
- dependencies:
- '@evidence-dev/plugin-connector':
- specifier: workspace:*
- version: link:../plugin-connector
- '@evidence-dev/preprocess':
- specifier: workspace:*
- version: link:../preprocess
- '@evidence-dev/query-store':
- specifier: workspace:*
- version: link:../query-store
'@evidence-dev/telemetry':
specifier: workspace:*
version: link:../telemetry
'@evidence-dev/universal-sql':
specifier: workspace:*
version: link:../universal-sql
- '@sveltejs/adapter-static':
- specifier: 2.0.2
- version: 2.0.2(@sveltejs/kit@1.22.3)
- autoprefixer:
- specifier: ^10.4.7
- version: 10.4.14(postcss@8.4.23)
+ '@types/estree':
+ specifier: ^1.0.1
+ version: 1.0.5
+ '@types/lodash.debounce':
+ specifier: ^4.0.9
+ version: 4.0.9
+ '@types/lodash.merge':
+ specifier: ^4.6.8
+ version: 4.6.9
chalk:
- specifier: ^5.3.0
+ specifier: ^5.2.0
version: 5.3.0
chokidar:
- specifier: 3.5.3
- version: 3.5.3
- debounce:
- specifier: ^1.2.1
- version: 1.2.1
- fs-extra:
- specifier: 11.2.0
- version: 11.2.0
- git-remote-origin-url:
- specifier: 4.0.0
- version: 4.0.0
- postcss:
- specifier: ^8.4.14
- version: 8.4.23
- postcss-load-config:
- specifier: ^4.0.1
- version: 4.0.1(postcss@8.4.23)
- sade:
- specifier: ^1.8.1
- version: 1.8.1
+ specifier: 3.6.0
+ version: 3.6.0
+ listr2:
+ specifier: ^7.0.2
+ version: 7.0.2
+ lodash.debounce:
+ specifier: ^4.0.8
+ version: 4.0.8
+ lodash.merge:
+ specifier: ^4.6.2
+ version: 4.6.2
+ ora:
+ specifier: ^7.0.1
+ version: 7.0.1
+ svelte:
+ specifier: 4.2.12
+ version: 4.2.12
svelte-preprocess:
- specifier: 5.1.3
- version: 5.1.3(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.55.0)(typescript@4.9.5)
- svelte2tsx:
- specifier: 0.6.0
- version: 0.6.0(svelte@3.55.0)(typescript@4.9.5)
- tailwindcss:
- specifier: ^3.3.1
- version: 3.3.1(postcss@8.4.23)
- typescript:
- specifier: 4.9.5
- version: 4.9.5
- unist-util-visit:
- specifier: 4.1.2
- version: 4.1.2
- devDependencies:
- '@evidence-dev/component-utilities':
- specifier: workspace:*
- version: link:../component-utilities
- '@evidence-dev/core-components':
- specifier: workspace:*
- version: link:../core-components
- '@evidence-dev/db-orchestrator':
- specifier: workspace:*
- version: link:../db-orchestrator
- '@evidence-dev/tailwind':
- specifier: workspace:*
- version: link:../tailwind
- '@sveltejs/kit':
- specifier: 1.22.3
- version: 1.22.3(svelte@3.55.0)(vite@4.3.9)
- svelte:
- specifier: 3.55.0
- version: 3.55.0
- vite:
- specifier: 4.3.9
- version: 4.3.9
-
- packages/faker-datasource:
- dependencies:
- '@faker-js/faker':
- specifier: ^8.3.1
- version: 8.3.1
- '@types/cli-progress':
- specifier: ^3.11.0
- version: 3.11.0
- '@types/lodash.clonedeep':
- specifier: ^4.5.9
- version: 4.5.9
- '@types/lodash.merge':
- specifier: ^4.6.8
- version: 4.6.8
- '@types/seedrandom':
- specifier: ^3.0.8
- version: 3.0.8
- chalk:
- specifier: ^5.3.0
- version: 5.3.0
- cli-progress:
- specifier: ^3.12.0
- version: 3.12.0
- lodash.clonedeep:
- specifier: ^4.5.0
- version: 4.5.0
- lodash.merge:
- specifier: ^4.6.2
- version: 4.6.2
- seedrandom:
- specifier: ^3.0.5
- version: 3.0.5
- yaml:
- specifier: ^2.3.1
- version: 2.3.4
- zod:
- specifier: ^3.21.4
- version: 3.22.4
- devDependencies:
- typescript:
- specifier: 4.9.5
- version: 4.9.5
-
- packages/mssql:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- '@types/mssql':
- specifier: ^8.1.2
- version: 8.1.2
- mssql:
- specifier: ^9.1.1
- version: 9.1.1
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/mysql:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- mysql2:
- specifier: ^3.8.0
- version: 3.8.0
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/plugin-connector:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- '@evidence-dev/telemetry':
- specifier: workspace:*
- version: link:../telemetry
- '@evidence-dev/universal-sql':
- specifier: workspace:*
- version: link:../universal-sql
- '@types/estree':
- specifier: ^1.0.1
- version: 1.0.1
- '@types/lodash.debounce':
- specifier: ^4.0.9
- version: 4.0.9
- '@types/lodash.merge':
- specifier: ^4.6.8
- version: 4.6.8
- chalk:
- specifier: ^5.2.0
- version: 5.3.0
- chokidar:
- specifier: ^3.5.3
- version: 3.5.3
- listr2:
- specifier: ^7.0.2
- version: 7.0.2
- lodash.debounce:
- specifier: ^4.0.8
- version: 4.0.8
- lodash.merge:
- specifier: ^4.6.2
- version: 4.6.2
- ora:
- specifier: ^7.0.1
- version: 7.0.1
- svelte:
- specifier: 3.55.0
- version: 3.55.0
- svelte-preprocess:
- specifier: ^5.1.3
- version: 5.1.3(svelte@3.55.0)(typescript@5.2.2)
- sveltekit-autoimport:
- specifier: ^1.7.0
- version: 1.7.0
- vite:
- specifier: 4.3.9
- version: 4.3.9(@types/node@20.8.5)
- yaml:
- specifier: ^2.3.4
- version: 2.3.4
- zod:
- specifier: ^3.21.4
- version: 3.22.4
+ specifier: ^5.1.3
+ version: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
+ sveltekit-autoimport:
+ specifier: 1.8.0
+ version: 1.8.0(@sveltejs/kit@2.5.4)
+ vite:
+ specifier: 5.1.6
+ version: 5.1.6(@types/node@20.11.28)
+ yaml:
+ specifier: ^2.3.4
+ version: 2.4.1
+ zod:
+ specifier: ^3.21.4
+ version: 3.22.4
devDependencies:
'@evidence-dev/component-utilities':
specifier: workspace:*
version: link:../component-utilities
'@parcel/core':
- specifier: ^2.8.3
- version: 2.8.3
+ specifier: 2.12.0
+ version: 2.12.0
'@parcel/packager-ts':
- specifier: ^2.12.0
- version: 2.12.0(@parcel/core@2.8.3)
+ specifier: 2.12.0
+ version: 2.12.0(@parcel/core@2.12.0)
'@parcel/transformer-inline-string':
- specifier: ^2.8.3
- version: 2.8.3(@parcel/core@2.8.3)
+ specifier: 2.12.0
+ version: 2.12.0(@parcel/core@2.12.0)
'@parcel/transformer-typescript-types':
- specifier: ^2.8.3
- version: 2.9.3(@parcel/core@2.8.3)(typescript@5.2.2)
+ specifier: 2.12.0
+ version: 2.12.0(@parcel/core@2.12.0)(typescript@5.4.2)
'@types/mock-fs':
specifier: ^4.13.1
- version: 4.13.1
+ version: 4.13.4
'@types/node':
- specifier: 20.8.5
- version: 20.8.5
+ specifier: 20.11.28
+ version: 20.11.28
commander:
specifier: ^11.0.0
- version: 11.0.0
+ version: 11.1.0
mock-fs:
specifier: ^5.2.0
version: 5.2.0
parcel:
- specifier: ^2.8.3
- version: 2.8.3(postcss@8.4.35)(typescript@5.2.2)
+ specifier: 2.12.0
+ version: 2.12.0(postcss@8.4.38)(typescript@5.4.2)
+ rollup:
+ specifier: ^4.13.0
+ version: 4.13.0
typescript:
- specifier: ^5.0.4
- version: 5.2.2
+ specifier: 5.4.2
+ version: 5.4.2
vitest:
specifier: ^0.34.1
- version: 0.34.2
-
- packages/postgres:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- pg:
- specifier: ^8.11.3
- version: 8.11.3
- pg-cursor:
- specifier: ^2.10.3
- version: 2.10.3(pg@8.11.3)
- devDependencies:
- '@types/pg':
- specifier: ^8.10.9
- version: 8.10.9
+ version: 0.34.6
- packages/preprocess:
+ packages/lib/preprocess:
dependencies:
blueimp-md5:
specifier: ^2.19.0
@@ -853,8 +689,8 @@ importers:
specifier: ^5.0.5
version: 5.0.5
mdsvex:
- specifier: ^0.10.6
- version: 0.10.6(svelte@3.55.0)
+ specifier: 0.11.0
+ version: 0.11.0(svelte@4.2.12)
prismjs:
specifier: ^1.29.0
version: 1.29.0
@@ -862,11 +698,11 @@ importers:
specifier: 8.0.2
version: 8.0.2
svelte:
- specifier: 3.55.0
- version: 3.55.0
+ specifier: 4.2.12
+ version: 4.2.12
svelte-preprocess:
specifier: 5.1.3
- version: 5.1.3(svelte@3.55.0)(typescript@5.2.2)
+ version: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
unified:
specifier: ^9.1.0
version: 9.1.0
@@ -875,28 +711,28 @@ importers:
version: 2.0.3
yaml:
specifier: ^2.2.1
- version: 2.3.4
+ version: 2.4.1
devDependencies:
'@faker-js/faker':
specifier: ^7.6.0
version: 7.6.0
'@types/mock-fs':
specifier: ^4.13.1
- version: 4.13.1
+ version: 4.13.4
mock-fs:
specifier: ^5.2.0
version: 5.2.0
parcel:
specifier: ^2.8.3
- version: 2.8.3(postcss@8.4.35)(typescript@5.2.2)
+ version: 2.12.0(postcss@8.4.38)(typescript@5.4.2)
typescript:
- specifier: ^5.1.6
- version: 5.2.2
+ specifier: 5.4.2
+ version: 5.4.2
vitest:
specifier: ^0.34.2
- version: 0.34.2
+ version: 0.34.6
- packages/query-store:
+ packages/lib/query-store:
dependencies:
'@evidence-dev/universal-sql':
specifier: workspace:*
@@ -906,82 +742,143 @@ importers:
version: 1.2.5
'@uwdata/mosaic-sql':
specifier: ^0.3.2
- version: 0.3.2
+ version: 0.3.5
devDependencies:
typescript:
- specifier: ^5.2.2
- version: 5.2.2
+ specifier: 5.4.2
+ version: 5.4.2
vitest:
specifier: ^0.34.1
- version: 0.34.2
-
- packages/redshift:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- '@evidence-dev/postgres':
- specifier: workspace:*
- version: link:../postgres
+ version: 0.34.6
- packages/snowflake:
+ packages/lib/sdk:
dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- '@types/snowflake-sdk':
- specifier: ^1.6.13
- version: 1.6.13
- asn1.js:
- specifier: ^5.0.0
- version: 5.0.0
- fs-extra:
- specifier: ^11.2.0
- version: 11.2.0
- node-fetch:
- specifier: ^3.3.1
- version: 3.3.1
- open:
+ '@brianmd/citty':
+ specifier: ^0.0.1
+ version: 0.0.1
+ '@clack/prompts':
+ specifier: ^0.7.0
+ version: 0.7.0
+ '@evidence-dev/universal-sql':
+ specifier: ^2.0.3
+ version: link:../universal-sql
+ '@steeze-ui/simple-icons':
+ specifier: ^1.7.1
+ version: 1.7.1
+ '@steeze-ui/tabler-icons':
+ specifier: ^2.1.1
+ version: 2.1.1
+ '@types/estree':
+ specifier: ^1.0.5
+ version: 1.0.5
+ '@types/express':
+ specifier: ^4.17.21
+ version: 4.17.21
+ '@types/jsdom':
+ specifier: ^21.1.6
+ version: 21.1.6
+ '@types/lodash.merge':
+ specifier: ^4.6.9
+ version: 4.6.9
+ '@types/node':
+ specifier: ^20.11.0
+ version: 20.11.28
+ '@typescript-eslint/typescript-estree':
+ specifier: ^6.18.1
+ version: 6.21.0(typescript@5.4.2)
+ '@uwdata/mosaic-sql':
+ specifier: ^0.4.0
+ version: 0.4.0
+ '@vitest/coverage-v8':
+ specifier: ^1.2.0
+ version: 1.4.0(vitest@1.4.0)
+ chalk:
+ specifier: ^5.3.0
+ version: 5.3.0
+ chokidar:
+ specifier: ^3.5.3
+ version: 3.6.0
+ eslint:
+ specifier: ^8.56.0
+ version: 8.57.0
+ eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0
- snowflake-sdk:
- specifier: 1.9.0
- version: 1.9.0(asn1.js@5.0.0)
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/sqlite:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- sqlite:
- specifier: 4.2.1
- version: 4.2.1
- sqlite3:
- specifier: 5.1.6
- version: 5.1.6
- devDependencies:
- dotenv:
- specifier: ^16.0.1
- version: 16.0.1
-
- packages/tailwind:
- dependencies:
- tailwindcss:
- specifier: ^3.3.1
- version: 3.3.1(postcss@8.4.35)
+ version: 9.1.0(eslint@8.57.0)
+ eslint-plugin-svelte:
+ specifier: ^2.35.1
+ version: 2.35.1(eslint@8.57.0)(svelte@4.2.12)
+ estree-walker:
+ specifier: ^3.0.3
+ version: 3.0.3
+ express:
+ specifier: ^4.18.2
+ version: 4.19.1
+ highlight.js:
+ specifier: ^11.9.0
+ version: 11.9.0
+ jsdom:
+ specifier: ^23.2.0
+ version: 23.2.0
+ lodash.merge:
+ specifier: ^4.6.2
+ version: 4.6.2
+ mdsvex:
+ specifier: ^0.11.0
+ version: 0.11.0(svelte@4.2.12)
+ nanoid:
+ specifier: ^5.0.4
+ version: 5.0.6
+ ora:
+ specifier: ^8.0.1
+ version: 8.0.1
+ perfect-debounce:
+ specifier: ^1.0.0
+ version: 1.0.0
+ pkg-types:
+ specifier: ^1.0.3
+ version: 1.0.3
+ prettier:
+ specifier: ^3.1.1
+ version: 3.2.5
+ prettier-plugin-svelte:
+ specifier: ^3.1.2
+ version: 3.2.2(prettier@3.2.5)(svelte@4.2.12)
+ recast:
+ specifier: ^0.23.4
+ version: 0.23.6
+ svelte-sequential-preprocessor:
+ specifier: ^2.0.1
+ version: 2.0.1
+ sveltekit-autoimport:
+ specifier: ^1.7.1
+ version: 1.8.0(@sveltejs/kit@2.5.4)
+ vite:
+ specifier: ^5.0.11
+ version: 5.1.6(@types/node@20.11.28)
+ vitest:
+ specifier: ^1.1.3
+ version: 1.4.0(@types/node@20.11.28)(jsdom@23.2.0)
+ yaml:
+ specifier: ^2.3.4
+ version: 2.4.1
+ zod:
+ specifier: ^3.22.4
+ version: 3.22.4
devDependencies:
- parcel:
- specifier: ^2.8.3
- version: 2.8.3(postcss@8.4.35)(typescript@5.2.2)
+ '@changesets/cli':
+ specifier: ^2.27.1
+ version: 2.27.1
+ memfs:
+ specifier: ^4.6.0
+ version: 4.8.0
+ svelte:
+ specifier: ^4.2.8
+ version: 4.2.12
typescript:
- specifier: ^5.0.4
- version: 5.2.2
+ specifier: ^5.3.3
+ version: 5.4.2
- packages/telemetry:
+ packages/lib/telemetry:
dependencies:
'@lukeed/uuid':
specifier: 2.0.0
@@ -1006,26 +903,17 @@ importers:
specifier: 11.0.4
version: 11.0.4
- packages/trino:
- dependencies:
- '@evidence-dev/db-commons':
- specifier: workspace:*
- version: link:../db-commons
- presto-client:
- specifier: ^0.13.0
- version: 0.13.0
-
- packages/universal-sql:
+ packages/lib/universal-sql:
dependencies:
'@duckdb/duckdb-wasm':
specifier: 1.28.0
version: 1.28.0
'@types/lodash.chunk':
specifier: ^4.2.7
- version: 4.2.7
+ version: 4.2.9
'@types/node':
- specifier: ^20.8.4
- version: 20.8.5
+ specifier: 20.11.28
+ version: 20.11.28
apache-arrow:
specifier: ^13.0.0
version: 13.0.0
@@ -1046,141 +934,392 @@ importers:
version: 0.5.0
web-worker:
specifier: ^1.2.0
- version: 1.2.0
+ version: 1.3.0
devDependencies:
'@types/mock-fs':
specifier: ^4.13.1
- version: 4.13.1
+ version: 4.13.4
mock-fs:
specifier: ^5.2.0
version: 5.2.0
vitest:
specifier: ^0.34.1
- version: 0.34.2
+ version: 0.34.6
- sites/docs:
+ packages/ui/core-components:
dependencies:
- '@algolia/client-search':
- specifier: 4.15.0
- version: 4.15.0
- '@docusaurus/core':
- specifier: ^2.1.0
- version: 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/preset-classic':
- specifier: ^2.1.0
- version: 2.1.0(@algolia/client-search@4.15.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)(typescript@4.9.5)
- '@docusaurus/theme-classic':
- specifier: ^2.1.0
- version: 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-common':
- specifier: ^2.1.0
- version: 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@mdx-js/react':
- specifier: ^1.6.21
- version: 1.6.21(react@17.0.1)
- '@svgr/webpack':
- specifier: ^5.5.0
+ '@astronautlabs/jsonpath':
+ specifier: ^1.1.2
+ version: 1.1.2
+ '@codemirror/autocomplete':
+ specifier: ^6.12.0
+ version: 6.15.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.0)(@lezer/common@1.2.1)
+ '@codemirror/commands':
+ specifier: ^6.3.3
+ version: 6.3.3
+ '@codemirror/lang-sql':
+ specifier: ^6.5.5
+ version: 6.6.1(@codemirror/view@6.26.0)
+ '@codemirror/language':
+ specifier: ^6.10.0
+ version: 6.10.1
+ '@codemirror/lint':
+ specifier: ^6.4.2
+ version: 6.5.0
+ '@codemirror/search':
+ specifier: ^6.5.5
+ version: 6.5.6
+ '@codemirror/view':
+ specifier: ^6.23.0
+ version: 6.26.0
+ '@docsearch/css':
+ specifier: ^3.5.2
+ version: 3.6.0
+ '@docsearch/js':
+ specifier: ^3.5.2
+ version: 3.6.0(@algolia/client-search@4.15.0)(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)
+ '@evidence-dev/component-utilities':
+ specifier: workspace:*
+ version: link:../../lib/component-utilities
+ '@evidence-dev/query-store':
+ specifier: workspace:*
+ version: link:../../lib/query-store
+ '@evidence-dev/tailwind':
+ specifier: workspace:*
+ version: link:../tailwind
+ '@internationalized/date':
+ specifier: ^3.5.1
+ version: 3.5.2
+ '@steeze-ui/radix-icons':
+ specifier: ^1.1.2
+ version: 1.1.2
+ '@steeze-ui/simple-icons':
+ specifier: ^1.7.1
+ version: 1.7.1
+ '@steeze-ui/svelte-icon':
+ specifier: 1.5.0
+ version: 1.5.0(svelte@4.2.12)
+ '@steeze-ui/tabler-icons':
+ specifier: 2.1.1
+ version: 2.1.1
+ '@types/lodash.debounce':
+ specifier: ^4.0.9
+ version: 4.0.9
+ '@types/mermaid':
+ specifier: ^9.2.0
+ version: 9.2.0
+ bits-ui:
+ specifier: ^0.11.8
+ version: 0.11.8(svelte@4.2.12)
+ chroma-js:
+ specifier: ^2.4.2
+ version: 2.4.2
+ clsx:
+ specifier: ^2.0.0
+ version: 2.1.0
+ cmdk-sv:
+ specifier: ^0.0.12
+ version: 0.0.12(svelte@4.2.12)
+ codemirror:
+ specifier: ^6.0.1
+ version: 6.0.1(@lezer/common@1.2.1)
+ echarts:
+ specifier: 5.4.3
+ version: 5.4.3
+ echarts-stat:
+ specifier: 1.2.0
+ version: 1.2.0
+ export-to-csv:
+ specifier: 0.2.1
+ version: 0.2.1
+ fuse.js:
+ specifier: ^7.0.0
+ version: 7.0.0
+ lodash.debounce:
+ specifier: ^4.0.8
+ version: 4.0.8
+ mermaid:
+ specifier: ^10.6.1
+ version: 10.9.0
+ prismjs:
+ specifier: 1.29.0
+ version: 1.29.0
+ ssf:
+ specifier: 0.11.2
+ version: 0.11.2
+ tailwind-merge:
+ specifier: ^2.2.0
+ version: 2.2.2
+ tailwind-variants:
+ specifier: ^0.1.19
+ version: 0.1.20(tailwindcss@3.4.1)
+ thememirror:
+ specifier: ^2.0.1
+ version: 2.0.1(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.0)
+ tua-body-scroll-lock:
+ specifier: ^1.4.0
+ version: 1.4.1
+ yaml:
+ specifier: ^2.3.4
+ version: 2.4.1
+ zod:
+ specifier: ^3.22.4
+ version: 3.22.4
+ devDependencies:
+ '@evidence-dev/faker-datasource':
+ specifier: workspace:*
+ version: link:../../datasources/faker
+ '@evidence-dev/plugin-connector':
+ specifier: workspace:*
+ version: link:../../lib/plugin-connector
+ '@evidence-dev/universal-sql':
+ specifier: workspace:*
+ version: link:../../lib/universal-sql
+ '@storybook/addon-essentials':
+ specifier: ^8.0.0
+ version: 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/addon-interactions':
+ specifier: ^8.0.0
+ version: 8.0.4(vitest@0.34.6)
+ '@storybook/addon-links':
+ specifier: ^8.0.0
+ version: 8.0.4(react@17.0.2)
+ '@storybook/addon-svelte-csf':
+ specifier: ^4.1.2
+ version: 4.1.2(@storybook/svelte@8.0.4)(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
+ '@storybook/blocks':
+ specifier: ^8.0.0
+ version: 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/svelte':
+ specifier: ^8.0.0
+ version: 8.0.4(svelte@4.2.12)
+ '@storybook/sveltekit':
+ specifier: ^8.0.0
+ version: 8.0.4(@babel/core@7.24.3)(@sveltejs/vite-plugin-svelte@3.0.2)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)(vite@5.1.6)
+ '@storybook/testing-library':
+ specifier: ^0.2.2
+ version: 0.2.2
+ '@storybook/theming':
+ specifier: ^8.0.0
+ version: 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@sveltejs/adapter-auto':
+ specifier: 3.1.1
+ version: 3.1.1(@sveltejs/kit@2.5.4)
+ '@sveltejs/kit':
+ specifier: 2.5.4
+ version: 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
+ '@sveltejs/package':
+ specifier: ^2.2.7
+ version: 2.2.7(svelte@4.2.12)(typescript@5.4.2)
+ '@sveltejs/vite-plugin-svelte':
+ specifier: 3.0.2
+ version: 3.0.2(svelte@4.2.12)(vite@5.1.6)
+ autoprefixer:
+ specifier: ^10.4.14
+ version: 10.4.19(postcss@8.4.38)
+ chromatic:
+ specifier: ^6.17.4
+ version: 6.24.1
+ eslint:
+ specifier: 8.45.0
+ version: 8.45.0
+ eslint-config-prettier:
+ specifier: ^8.5.0
+ version: 8.10.0(eslint@8.45.0)
+ eslint-plugin-storybook:
+ specifier: ^0.8.0
+ version: 0.8.0(eslint@8.45.0)(typescript@5.4.2)
+ eslint-plugin-svelte:
+ specifier: 2.35.1
+ version: 2.35.1(eslint@8.45.0)(svelte@4.2.12)
+ postcss:
+ specifier: ^8.4.23
+ version: 8.4.38
+ postcss-load-config:
+ specifier: ^4.0.1
+ version: 4.0.2(postcss@8.4.38)
+ prettier:
+ specifier: ^2.8.0
+ version: 2.8.8
+ prettier-plugin-svelte:
+ specifier: ^2.8.1
+ version: 2.10.1(prettier@2.8.8)(svelte@4.2.12)
+ publint:
+ specifier: ^0.1.9
+ version: 0.1.16
+ react:
+ specifier: ^17.0.1
+ version: 17.0.2
+ react-dom:
+ specifier: ^17.0.1
+ version: 17.0.2(react@17.0.2)
+ storybook:
+ specifier: ^8.0.0
+ version: 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ svelte:
+ specifier: 4.2.12
+ version: 4.2.12
+ svelte-check:
+ specifier: 3.6.7
+ version: 3.6.7(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)
+ svelte-preprocess:
+ specifier: 5.1.3
+ version: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
+ tailwindcss:
+ specifier: ^3.3.1
+ version: 3.4.1
+ tslib:
+ specifier: ^2.4.1
+ version: 2.6.2
+ typescript:
+ specifier: 5.4.2
+ version: 5.4.2
+ vite:
+ specifier: 5.1.6
+ version: 5.1.6(@types/node@20.11.28)
+ vitest:
+ specifier: ^0.34.1
+ version: 0.34.6
+
+ packages/ui/tailwind:
+ dependencies:
+ tailwindcss:
+ specifier: ^3.3.1
+ version: 3.4.1
+ devDependencies:
+ parcel:
+ specifier: ^2.8.3
+ version: 2.12.0(postcss@8.4.38)(typescript@5.4.2)
+ typescript:
+ specifier: 5.4.2
+ version: 5.4.2
+
+ sites/docs:
+ dependencies:
+ '@algolia/client-search':
+ specifier: 4.15.0
+ version: 4.15.0
+ '@docusaurus/core':
+ specifier: ^2.1.0
+ version: 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/preset-classic':
+ specifier: ^2.1.0
+ version: 2.4.3(@algolia/client-search@4.15.0)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)(typescript@5.4.2)
+ '@docusaurus/theme-classic':
+ specifier: ^2.1.0
+ version: 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-common':
+ specifier: ^2.1.0
+ version: 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@mdx-js/react':
+ specifier: ^1.6.21
+ version: 1.6.22(react@17.0.2)
+ '@svgr/webpack':
+ specifier: ^5.5.0
version: 5.5.0
clsx:
specifier: ^1.1.1
- version: 1.1.1
+ version: 1.2.1
file-loader:
specifier: ^6.2.0
- version: 6.2.0(webpack@5.76.1)
+ version: 6.2.0(webpack@5.91.0)
hast-util-is-element:
specifier: 1.1.0
version: 1.1.0
prism-react-renderer:
specifier: ^1.3.5
- version: 1.3.5(react@17.0.1)
+ version: 1.3.5(react@17.0.2)
react:
specifier: ^17.0.1
- version: 17.0.1
+ version: 17.0.2
react-dom:
specifier: ^17.0.1
- version: 17.0.1(react@17.0.1)
+ version: 17.0.2(react@17.0.2)
rehype-katex:
specifier: '5'
version: 5.0.0
remark-math:
specifier: '3'
- version: 3.0.0
+ version: 3.0.1
url-loader:
specifier: ^4.1.1
- version: 4.1.1(file-loader@6.2.0)(webpack@5.76.1)
+ version: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
devDependencies:
typescript:
- specifier: 4.9.5
- version: 4.9.5
+ specifier: 5.4.2
+ version: 5.4.2
webpack:
specifier: ^5.76.1
- version: 5.76.1
+ version: 5.91.0
sites/example-project:
dependencies:
'@evidence-dev/bigquery':
specifier: workspace:*
- version: link:../../packages/bigquery
+ version: link:../../packages/datasources/bigquery
'@evidence-dev/component-utilities':
specifier: workspace:*
- version: link:../../packages/component-utilities
+ version: link:../../packages/lib/component-utilities
'@evidence-dev/core-components':
specifier: workspace:*
- version: link:../../packages/core-components
+ version: link:../../packages/ui/core-components
'@evidence-dev/csv':
specifier: workspace:*
- version: link:../../packages/csv
+ version: link:../../packages/datasources/csv
'@evidence-dev/databricks':
specifier: workspace:*
- version: link:../../packages/databricks
+ version: link:../../packages/datasources/databricks
'@evidence-dev/duckdb':
specifier: workspace:*
- version: link:../../packages/duckdb
+ version: link:../../packages/datasources/duckdb
'@evidence-dev/mssql':
specifier: workspace:*
- version: link:../../packages/mssql
+ version: link:../../packages/datasources/mssql
'@evidence-dev/mysql':
specifier: workspace:*
- version: link:../../packages/mysql
+ version: link:../../packages/datasources/mysql
'@evidence-dev/plugin-connector':
specifier: workspace:*
- version: link:../../packages/plugin-connector
+ version: link:../../packages/lib/plugin-connector
'@evidence-dev/postgres':
specifier: workspace:*
- version: link:../../packages/postgres
+ version: link:../../packages/datasources/postgres
+ '@evidence-dev/preprocess':
+ specifier: workspace:*
+ version: link:../../packages/lib/preprocess
'@evidence-dev/query-store':
specifier: workspace:*
- version: link:../../packages/query-store
+ version: link:../../packages/lib/query-store
'@evidence-dev/snowflake':
specifier: workspace:*
- version: link:../../packages/snowflake
+ version: link:../../packages/datasources/snowflake
'@evidence-dev/sqlite':
specifier: workspace:*
- version: link:../../packages/sqlite
+ version: link:../../packages/datasources/sqlite
'@evidence-dev/telemetry':
specifier: workspace:*
- version: link:../../packages/telemetry
+ version: link:../../packages/lib/telemetry
'@evidence-dev/trino':
specifier: workspace:*
- version: link:../../packages/trino
+ version: link:../../packages/datasources/trino
'@evidence-dev/universal-sql':
specifier: workspace:*
- version: link:../../packages/universal-sql
+ version: link:../../packages/lib/universal-sql
'@fontsource/spectral':
specifier: ^5.0.3
- version: 5.0.3
+ version: 5.0.12
'@steeze-ui/simple-icons':
- specifier: ^1.5.0
+ specifier: ^1.7.1
version: 1.7.1
'@steeze-ui/svelte-icon':
- specifier: ^1.4.1
- version: 1.4.1(svelte@3.59.2)
+ specifier: 1.5.0
+ version: 1.5.0(svelte@4.2.12)
'@steeze-ui/tabler-icons':
- specifier: ^2.1.0
- version: 2.1.0(svelte@3.59.2)
+ specifier: 2.1.1
+ version: 2.1.1
'@sveltejs/kit':
- specifier: 1.22.3
- version: 1.22.3(svelte@3.59.2)(vite@4.3.9)
+ specifier: 2.5.4
+ version: 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
'@tidyjs/tidy':
specifier: 2.5.2
version: 2.5.2
@@ -1227,14 +1366,14 @@ importers:
specifier: ^0.11.2
version: 0.11.2
svelte:
- specifier: 3.59.2
- version: 3.59.2
+ specifier: 4.2.12
+ version: 4.2.12
svelte-icons:
specifier: 2.1.0
version: 2.1.0
typescript:
- specifier: 4.9.5
- version: 4.9.5
+ specifier: 5.4.2
+ version: 5.4.2
unified:
specifier: 9.1.0
version: 9.1.0
@@ -1244,61 +1383,61 @@ importers:
devDependencies:
'@sveltejs/package':
specifier: 2.2.7
- version: 2.2.7(svelte@3.59.2)(typescript@4.9.5)
+ version: 2.2.7(svelte@4.2.12)(typescript@5.4.2)
'@sveltejs/vite-plugin-svelte':
- specifier: ^2.0.3
- version: 2.0.3(svelte@3.59.2)(vite@4.3.9)
+ specifier: 3.0.2
+ version: 3.0.2(svelte@4.2.12)(vite@5.1.6)
'@types/esm':
specifier: ^3.2.0
- version: 3.2.0
+ version: 3.2.2
autoprefixer:
specifier: ^10.4.7
- version: 10.4.14(postcss@8.4.23)
+ version: 10.4.19(postcss@8.4.38)
postcss:
specifier: ^8.4.14
- version: 8.4.23
+ version: 8.4.38
postcss-load-config:
specifier: ^4.0.1
- version: 4.0.1(postcss@8.4.23)
+ version: 4.0.2(postcss@8.4.38)
svelte-preprocess:
specifier: ^5.1.3
- version: 5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@4.9.5)
+ version: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
tailwindcss:
specifier: ^3.3.1
- version: 3.3.1(postcss@8.4.23)
+ version: 3.4.1
vite:
- specifier: 4.3.9
- version: 4.3.9
+ specifier: 5.1.6
+ version: 5.1.6(@types/node@20.11.28)
sites/test-env:
dependencies:
'@evidence-dev/component-utilities':
specifier: workspace:*
- version: link:../../packages/component-utilities
+ version: link:../../packages/lib/component-utilities
'@evidence-dev/core-components':
specifier: workspace:*
- version: link:../../packages/core-components
+ version: link:../../packages/ui/core-components
'@evidence-dev/csv':
specifier: workspace:*
- version: link:../../packages/csv
+ version: link:../../packages/datasources/csv
'@evidence-dev/duckdb':
specifier: workspace:*
- version: link:../../packages/duckdb
+ version: link:../../packages/datasources/duckdb
'@evidence-dev/evidence':
specifier: workspace:*
version: link:../../packages/evidence
'@evidence-dev/faker-datasource':
specifier: workspace:*
- version: link:../../packages/faker-datasource
+ version: link:../../packages/datasources/faker
'@evidence-dev/postgres':
specifier: workspace:*
- version: link:../../packages/postgres
+ version: link:../../packages/datasources/postgres
'@evidence-dev/snowflake':
specifier: workspace:*
- version: link:../../packages/snowflake
+ version: link:../../packages/datasources/snowflake
'@evidence-dev/sqlite':
specifier: workspace:*
- version: link:../../packages/sqlite
+ version: link:../../packages/datasources/sqlite
devDependencies:
cross-env:
specifier: ^7.0.3
@@ -1308,10 +1447,10 @@ importers:
devDependencies:
'@playwright/test':
specifier: ^1.30.0
- version: 1.30.0
+ version: 1.42.1
dotenv:
specifier: ^16.0.1
- version: 16.0.1
+ version: 16.4.5
packages:
@@ -1326,6 +1465,10 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
+ /@adobe/css-tools@4.3.3:
+ resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
+ dev: true
+
/@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.15.0)(algoliasearch@4.22.1)(search-insights@2.13.0):
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
dependencies:
@@ -1499,6 +1642,10 @@ packages:
'@algolia/requester-common': 4.22.1
dev: false
+ /@alloc/quick-lru@5.2.0:
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
+ engines: {node: '>=10'}
+
/@ampproject/remapping@2.3.0:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -1506,11 +1653,13 @@ packages:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- /@arcanis/slice-ansi@1.1.1:
- resolution: {integrity: sha512-xguP2WR2Dv0gQ7Ykbdb7BNCnPnIPB94uTi0Z2NvkRBEnhbwjOQ7QyQKJXrVQg4qDpiD9hA5l5cCwy/z2OXgc3w==}
+ /@asamuzakjp/dom-selector@2.0.2:
+ resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==}
dependencies:
- grapheme-splitter: 1.0.4
- dev: true
+ bidi-js: 1.0.3
+ css-tree: 2.3.1
+ is-potential-custom-element-name: 1.0.1
+ dev: false
/@astronautlabs/jsonpath@1.1.2:
resolution: {integrity: sha512-FqL/muoreH7iltYC1EB5Tvox5E8NSOOPGkgns4G+qxRKl6k5dxEVljUjB5NcKESzkqwnUqWjSZkL61XGYOuV+A==}
@@ -1529,7 +1678,7 @@ packages:
resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.523.0
+ '@aws-sdk/types': 3.535.0
tslib: 1.14.1
dev: false
@@ -1537,7 +1686,7 @@ packages:
resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==}
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.523.0
+ '@aws-sdk/types': 3.535.0
tslib: 1.14.1
dev: false
@@ -1553,8 +1702,8 @@ packages:
'@aws-crypto/ie11-detection': 3.0.0
'@aws-crypto/supports-web-crypto': 3.0.0
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-locate-window': 3.495.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-locate-window': 3.535.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
@@ -1566,8 +1715,8 @@ packages:
'@aws-crypto/sha256-js': 3.0.0
'@aws-crypto/supports-web-crypto': 3.0.0
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-locate-window': 3.495.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-locate-window': 3.535.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
@@ -1576,7 +1725,7 @@ packages:
resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.523.0
+ '@aws-sdk/types': 3.535.0
tslib: 1.14.1
dev: false
@@ -1589,545 +1738,545 @@ packages:
/@aws-crypto/util@3.0.0:
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
dependencies:
- '@aws-sdk/types': 3.523.0
+ '@aws-sdk/types': 3.535.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
- /@aws-sdk/client-s3@3.529.1:
- resolution: {integrity: sha512-ZpvyO4w3XWo/OjXLd3fm7CLcKUUYcyady9qzTnKKSnp8a2NqO7UvU/1zhYdm+yyy8TR/9t7sDy+q6AYd4Nsr8g==}
+ /@aws-sdk/client-s3@3.537.0:
+ resolution: {integrity: sha512-EMPN2toHz1QtSiDeLKS1zrazh+8J0g1Y5t5lCq25iTXqCSV9vB2jCKwG5+OB6L5tAKkwyl1uZofeWLmdFkztEg==}
engines: {node: '>=14.0.0'}
dependencies:
'@aws-crypto/sha1-browser': 3.0.0
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/core': 3.529.1
- '@aws-sdk/credential-provider-node': 3.529.1
- '@aws-sdk/middleware-bucket-endpoint': 3.525.0
- '@aws-sdk/middleware-expect-continue': 3.523.0
- '@aws-sdk/middleware-flexible-checksums': 3.523.0
- '@aws-sdk/middleware-host-header': 3.523.0
- '@aws-sdk/middleware-location-constraint': 3.523.0
- '@aws-sdk/middleware-logger': 3.523.0
- '@aws-sdk/middleware-recursion-detection': 3.523.0
- '@aws-sdk/middleware-sdk-s3': 3.525.0
- '@aws-sdk/middleware-signing': 3.523.0
- '@aws-sdk/middleware-ssec': 3.523.0
- '@aws-sdk/middleware-user-agent': 3.525.0
- '@aws-sdk/region-config-resolver': 3.525.0
- '@aws-sdk/signature-v4-multi-region': 3.525.0
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-endpoints': 3.525.0
- '@aws-sdk/util-user-agent-browser': 3.523.0
- '@aws-sdk/util-user-agent-node': 3.525.0
- '@aws-sdk/xml-builder': 3.523.0
- '@smithy/config-resolver': 2.1.5
- '@smithy/core': 1.3.8
- '@smithy/eventstream-serde-browser': 2.1.4
- '@smithy/eventstream-serde-config-resolver': 2.1.4
- '@smithy/eventstream-serde-node': 2.1.4
- '@smithy/fetch-http-handler': 2.4.5
- '@smithy/hash-blob-browser': 2.1.5
- '@smithy/hash-node': 2.1.4
- '@smithy/hash-stream-node': 2.1.4
- '@smithy/invalid-dependency': 2.1.4
- '@smithy/md5-js': 2.1.4
- '@smithy/middleware-content-length': 2.1.4
- '@smithy/middleware-endpoint': 2.4.6
- '@smithy/middleware-retry': 2.1.7
- '@smithy/middleware-serde': 2.2.1
- '@smithy/middleware-stack': 2.1.4
- '@smithy/node-config-provider': 2.2.5
- '@smithy/node-http-handler': 2.4.3
- '@smithy/protocol-http': 3.2.2
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/url-parser': 2.1.4
- '@smithy/util-base64': 2.2.1
- '@smithy/util-body-length-browser': 2.1.1
- '@smithy/util-body-length-node': 2.2.2
- '@smithy/util-defaults-mode-browser': 2.1.7
- '@smithy/util-defaults-mode-node': 2.2.7
- '@smithy/util-endpoints': 1.1.5
- '@smithy/util-retry': 2.1.4
- '@smithy/util-stream': 2.1.5
- '@smithy/util-utf8': 2.2.0
- '@smithy/util-waiter': 2.1.4
+ '@aws-sdk/client-sts': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/core': 3.535.0
+ '@aws-sdk/credential-provider-node': 3.535.0
+ '@aws-sdk/middleware-bucket-endpoint': 3.535.0
+ '@aws-sdk/middleware-expect-continue': 3.535.0
+ '@aws-sdk/middleware-flexible-checksums': 3.535.0
+ '@aws-sdk/middleware-host-header': 3.535.0
+ '@aws-sdk/middleware-location-constraint': 3.535.0
+ '@aws-sdk/middleware-logger': 3.535.0
+ '@aws-sdk/middleware-recursion-detection': 3.535.0
+ '@aws-sdk/middleware-sdk-s3': 3.535.0
+ '@aws-sdk/middleware-signing': 3.535.0
+ '@aws-sdk/middleware-ssec': 3.537.0
+ '@aws-sdk/middleware-user-agent': 3.535.0
+ '@aws-sdk/region-config-resolver': 3.535.0
+ '@aws-sdk/signature-v4-multi-region': 3.535.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-endpoints': 3.535.0
+ '@aws-sdk/util-user-agent-browser': 3.535.0
+ '@aws-sdk/util-user-agent-node': 3.535.0
+ '@aws-sdk/xml-builder': 3.535.0
+ '@smithy/config-resolver': 2.2.0
+ '@smithy/core': 1.4.0
+ '@smithy/eventstream-serde-browser': 2.2.0
+ '@smithy/eventstream-serde-config-resolver': 2.2.0
+ '@smithy/eventstream-serde-node': 2.2.0
+ '@smithy/fetch-http-handler': 2.5.0
+ '@smithy/hash-blob-browser': 2.2.0
+ '@smithy/hash-node': 2.2.0
+ '@smithy/hash-stream-node': 2.2.0
+ '@smithy/invalid-dependency': 2.2.0
+ '@smithy/md5-js': 2.2.0
+ '@smithy/middleware-content-length': 2.2.0
+ '@smithy/middleware-endpoint': 2.5.0
+ '@smithy/middleware-retry': 2.2.0
+ '@smithy/middleware-serde': 2.3.0
+ '@smithy/middleware-stack': 2.2.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/node-http-handler': 2.5.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/url-parser': 2.2.0
+ '@smithy/util-base64': 2.3.0
+ '@smithy/util-body-length-browser': 2.2.0
+ '@smithy/util-body-length-node': 2.3.0
+ '@smithy/util-defaults-mode-browser': 2.2.0
+ '@smithy/util-defaults-mode-node': 2.3.0
+ '@smithy/util-endpoints': 1.2.0
+ '@smithy/util-retry': 2.2.0
+ '@smithy/util-stream': 2.2.0
+ '@smithy/util-utf8': 2.3.0
+ '@smithy/util-waiter': 2.2.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/client-sso-oidc@3.529.1(@aws-sdk/credential-provider-node@3.529.1):
- resolution: {integrity: sha512-bimxCWAvRnVcluWEQeadXvHyzWlBWsuGVligsaVZaGF0TLSn0eLpzpN9B1EhHzTf7m0Kh/wGtPSH1JxO6PpB+A==}
+ /@aws-sdk/client-sso-oidc@3.535.0(@aws-sdk/credential-provider-node@3.535.0):
+ resolution: {integrity: sha512-M2cG4EQXDpAJQyq33ORIr6abmdX9p9zX0ssVy8XwFNB7lrgoIKxuVoGL+fX+XMgecl24x7ELz6b4QlILOevbCw==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@aws-sdk/credential-provider-node': ^3.529.1
+ '@aws-sdk/credential-provider-node': ^3.535.0
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/core': 3.529.1
- '@aws-sdk/credential-provider-node': 3.529.1
- '@aws-sdk/middleware-host-header': 3.523.0
- '@aws-sdk/middleware-logger': 3.523.0
- '@aws-sdk/middleware-recursion-detection': 3.523.0
- '@aws-sdk/middleware-user-agent': 3.525.0
- '@aws-sdk/region-config-resolver': 3.525.0
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-endpoints': 3.525.0
- '@aws-sdk/util-user-agent-browser': 3.523.0
- '@aws-sdk/util-user-agent-node': 3.525.0
- '@smithy/config-resolver': 2.1.5
- '@smithy/core': 1.3.8
- '@smithy/fetch-http-handler': 2.4.5
- '@smithy/hash-node': 2.1.4
- '@smithy/invalid-dependency': 2.1.4
- '@smithy/middleware-content-length': 2.1.4
- '@smithy/middleware-endpoint': 2.4.6
- '@smithy/middleware-retry': 2.1.7
- '@smithy/middleware-serde': 2.2.1
- '@smithy/middleware-stack': 2.1.4
- '@smithy/node-config-provider': 2.2.5
- '@smithy/node-http-handler': 2.4.3
- '@smithy/protocol-http': 3.2.2
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/url-parser': 2.1.4
- '@smithy/util-base64': 2.2.1
- '@smithy/util-body-length-browser': 2.1.1
- '@smithy/util-body-length-node': 2.2.2
- '@smithy/util-defaults-mode-browser': 2.1.7
- '@smithy/util-defaults-mode-node': 2.2.7
- '@smithy/util-endpoints': 1.1.5
- '@smithy/util-middleware': 2.1.4
- '@smithy/util-retry': 2.1.4
- '@smithy/util-utf8': 2.2.0
+ '@aws-sdk/client-sts': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/core': 3.535.0
+ '@aws-sdk/credential-provider-node': 3.535.0
+ '@aws-sdk/middleware-host-header': 3.535.0
+ '@aws-sdk/middleware-logger': 3.535.0
+ '@aws-sdk/middleware-recursion-detection': 3.535.0
+ '@aws-sdk/middleware-user-agent': 3.535.0
+ '@aws-sdk/region-config-resolver': 3.535.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-endpoints': 3.535.0
+ '@aws-sdk/util-user-agent-browser': 3.535.0
+ '@aws-sdk/util-user-agent-node': 3.535.0
+ '@smithy/config-resolver': 2.2.0
+ '@smithy/core': 1.4.0
+ '@smithy/fetch-http-handler': 2.5.0
+ '@smithy/hash-node': 2.2.0
+ '@smithy/invalid-dependency': 2.2.0
+ '@smithy/middleware-content-length': 2.2.0
+ '@smithy/middleware-endpoint': 2.5.0
+ '@smithy/middleware-retry': 2.2.0
+ '@smithy/middleware-serde': 2.3.0
+ '@smithy/middleware-stack': 2.2.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/node-http-handler': 2.5.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/url-parser': 2.2.0
+ '@smithy/util-base64': 2.3.0
+ '@smithy/util-body-length-browser': 2.2.0
+ '@smithy/util-body-length-node': 2.3.0
+ '@smithy/util-defaults-mode-browser': 2.2.0
+ '@smithy/util-defaults-mode-node': 2.3.0
+ '@smithy/util-endpoints': 1.2.0
+ '@smithy/util-middleware': 2.2.0
+ '@smithy/util-retry': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/client-sso@3.529.1:
- resolution: {integrity: sha512-KT1U/ZNjDhVv2ZgjzaeAn9VM7l667yeSguMrRYC8qk5h91/61MbjZypi6eOuKuVM+0fsQvzKScTQz0Lio0eYag==}
+ /@aws-sdk/client-sso@3.535.0:
+ resolution: {integrity: sha512-h9eQRdFnjDRVBnPJIKXuX7D+isSAioIfZPC4PQwsL5BscTRlk4c90DX0R0uk64YUtp7LZu8TNtrosFZ/1HtTrQ==}
engines: {node: '>=14.0.0'}
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.529.1
- '@aws-sdk/middleware-host-header': 3.523.0
- '@aws-sdk/middleware-logger': 3.523.0
- '@aws-sdk/middleware-recursion-detection': 3.523.0
- '@aws-sdk/middleware-user-agent': 3.525.0
- '@aws-sdk/region-config-resolver': 3.525.0
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-endpoints': 3.525.0
- '@aws-sdk/util-user-agent-browser': 3.523.0
- '@aws-sdk/util-user-agent-node': 3.525.0
- '@smithy/config-resolver': 2.1.5
- '@smithy/core': 1.3.8
- '@smithy/fetch-http-handler': 2.4.5
- '@smithy/hash-node': 2.1.4
- '@smithy/invalid-dependency': 2.1.4
- '@smithy/middleware-content-length': 2.1.4
- '@smithy/middleware-endpoint': 2.4.6
- '@smithy/middleware-retry': 2.1.7
- '@smithy/middleware-serde': 2.2.1
- '@smithy/middleware-stack': 2.1.4
- '@smithy/node-config-provider': 2.2.5
- '@smithy/node-http-handler': 2.4.3
- '@smithy/protocol-http': 3.2.2
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/url-parser': 2.1.4
- '@smithy/util-base64': 2.2.1
- '@smithy/util-body-length-browser': 2.1.1
- '@smithy/util-body-length-node': 2.2.2
- '@smithy/util-defaults-mode-browser': 2.1.7
- '@smithy/util-defaults-mode-node': 2.2.7
- '@smithy/util-endpoints': 1.1.5
- '@smithy/util-middleware': 2.1.4
- '@smithy/util-retry': 2.1.4
- '@smithy/util-utf8': 2.2.0
+ '@aws-sdk/core': 3.535.0
+ '@aws-sdk/middleware-host-header': 3.535.0
+ '@aws-sdk/middleware-logger': 3.535.0
+ '@aws-sdk/middleware-recursion-detection': 3.535.0
+ '@aws-sdk/middleware-user-agent': 3.535.0
+ '@aws-sdk/region-config-resolver': 3.535.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-endpoints': 3.535.0
+ '@aws-sdk/util-user-agent-browser': 3.535.0
+ '@aws-sdk/util-user-agent-node': 3.535.0
+ '@smithy/config-resolver': 2.2.0
+ '@smithy/core': 1.4.0
+ '@smithy/fetch-http-handler': 2.5.0
+ '@smithy/hash-node': 2.2.0
+ '@smithy/invalid-dependency': 2.2.0
+ '@smithy/middleware-content-length': 2.2.0
+ '@smithy/middleware-endpoint': 2.5.0
+ '@smithy/middleware-retry': 2.2.0
+ '@smithy/middleware-serde': 2.3.0
+ '@smithy/middleware-stack': 2.2.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/node-http-handler': 2.5.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/url-parser': 2.2.0
+ '@smithy/util-base64': 2.3.0
+ '@smithy/util-body-length-browser': 2.2.0
+ '@smithy/util-body-length-node': 2.3.0
+ '@smithy/util-defaults-mode-browser': 2.2.0
+ '@smithy/util-defaults-mode-node': 2.3.0
+ '@smithy/util-endpoints': 1.2.0
+ '@smithy/util-middleware': 2.2.0
+ '@smithy/util-retry': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/client-sts@3.529.1(@aws-sdk/credential-provider-node@3.529.1):
- resolution: {integrity: sha512-Rvk2Sr3MACQTOtngUU+omlf4E17k47dRVXR7OFRD6Ow5iGgC9tkN2q/ExDPW/ktPOmM0lSgzWyQ6/PC/Zq3HUg==}
+ /@aws-sdk/client-sts@3.535.0(@aws-sdk/credential-provider-node@3.535.0):
+ resolution: {integrity: sha512-ii9OOm3TJwP3JmO1IVJXKWIShVKPl0VtdlgROc/SkDglO/kuAw9eDdlROgc+qbFl+gm6bBTguOVTUXt3tS3flw==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@aws-sdk/credential-provider-node': ^3.529.1
+ '@aws-sdk/credential-provider-node': ^3.535.0
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.529.1
- '@aws-sdk/credential-provider-node': 3.529.1
- '@aws-sdk/middleware-host-header': 3.523.0
- '@aws-sdk/middleware-logger': 3.523.0
- '@aws-sdk/middleware-recursion-detection': 3.523.0
- '@aws-sdk/middleware-user-agent': 3.525.0
- '@aws-sdk/region-config-resolver': 3.525.0
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-endpoints': 3.525.0
- '@aws-sdk/util-user-agent-browser': 3.523.0
- '@aws-sdk/util-user-agent-node': 3.525.0
- '@smithy/config-resolver': 2.1.5
- '@smithy/core': 1.3.8
- '@smithy/fetch-http-handler': 2.4.5
- '@smithy/hash-node': 2.1.4
- '@smithy/invalid-dependency': 2.1.4
- '@smithy/middleware-content-length': 2.1.4
- '@smithy/middleware-endpoint': 2.4.6
- '@smithy/middleware-retry': 2.1.7
- '@smithy/middleware-serde': 2.2.1
- '@smithy/middleware-stack': 2.1.4
- '@smithy/node-config-provider': 2.2.5
- '@smithy/node-http-handler': 2.4.3
- '@smithy/protocol-http': 3.2.2
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/url-parser': 2.1.4
- '@smithy/util-base64': 2.2.1
- '@smithy/util-body-length-browser': 2.1.1
- '@smithy/util-body-length-node': 2.2.2
- '@smithy/util-defaults-mode-browser': 2.1.7
- '@smithy/util-defaults-mode-node': 2.2.7
- '@smithy/util-endpoints': 1.1.5
- '@smithy/util-middleware': 2.1.4
- '@smithy/util-retry': 2.1.4
- '@smithy/util-utf8': 2.2.0
+ '@aws-sdk/core': 3.535.0
+ '@aws-sdk/credential-provider-node': 3.535.0
+ '@aws-sdk/middleware-host-header': 3.535.0
+ '@aws-sdk/middleware-logger': 3.535.0
+ '@aws-sdk/middleware-recursion-detection': 3.535.0
+ '@aws-sdk/middleware-user-agent': 3.535.0
+ '@aws-sdk/region-config-resolver': 3.535.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-endpoints': 3.535.0
+ '@aws-sdk/util-user-agent-browser': 3.535.0
+ '@aws-sdk/util-user-agent-node': 3.535.0
+ '@smithy/config-resolver': 2.2.0
+ '@smithy/core': 1.4.0
+ '@smithy/fetch-http-handler': 2.5.0
+ '@smithy/hash-node': 2.2.0
+ '@smithy/invalid-dependency': 2.2.0
+ '@smithy/middleware-content-length': 2.2.0
+ '@smithy/middleware-endpoint': 2.5.0
+ '@smithy/middleware-retry': 2.2.0
+ '@smithy/middleware-serde': 2.3.0
+ '@smithy/middleware-stack': 2.2.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/node-http-handler': 2.5.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/url-parser': 2.2.0
+ '@smithy/util-base64': 2.3.0
+ '@smithy/util-body-length-browser': 2.2.0
+ '@smithy/util-body-length-node': 2.3.0
+ '@smithy/util-defaults-mode-browser': 2.2.0
+ '@smithy/util-defaults-mode-node': 2.3.0
+ '@smithy/util-endpoints': 1.2.0
+ '@smithy/util-middleware': 2.2.0
+ '@smithy/util-retry': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/core@3.529.1:
- resolution: {integrity: sha512-Sj42sYPfaL9PHvvciMICxhyrDZjqnnvFbPKDmQL5aFKyXy122qx7RdVqUOQERDmMQfvJh6+0W1zQlLnre89q4Q==}
+ /@aws-sdk/core@3.535.0:
+ resolution: {integrity: sha512-+Yusa9HziuaEDta1UaLEtMAtmgvxdxhPn7jgfRY6PplqAqgsfa5FR83sxy5qr2q7xjQTwHtV4MjQVuOjG9JsLw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/core': 1.3.8
- '@smithy/protocol-http': 3.2.2
- '@smithy/signature-v4': 2.1.4
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
+ '@smithy/core': 1.4.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/signature-v4': 2.2.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
fast-xml-parser: 4.2.5
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-env@3.523.0:
- resolution: {integrity: sha512-Y6DWdH6/OuMDoNKVzZlNeBc6f1Yjk1lYMjANKpIhMbkRCvLJw/PYZKOZa8WpXbTYdgg9XLjKybnLIb3ww3uuzA==}
+ /@aws-sdk/credential-provider-env@3.535.0:
+ resolution: {integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/property-provider': 2.1.4
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-http@3.525.0:
- resolution: {integrity: sha512-RNWQGuSBQZhl3iqklOslUEfQ4br1V3DCPboMpeqFtddUWJV3m2u2extFur9/4Uy+1EHVF120IwZUKtd8dF+ibw==}
+ /@aws-sdk/credential-provider-http@3.535.0:
+ resolution: {integrity: sha512-kdj1wCmOMZ29jSlUskRqN04S6fJ4dvt0Nq9Z32SA6wO7UG8ht6Ot9h/au/eTWJM3E1somZ7D771oK7dQt9b8yw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/fetch-http-handler': 2.4.5
- '@smithy/node-http-handler': 2.4.3
- '@smithy/property-provider': 2.1.4
- '@smithy/protocol-http': 3.2.2
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/util-stream': 2.1.5
+ '@aws-sdk/types': 3.535.0
+ '@smithy/fetch-http-handler': 2.5.0
+ '@smithy/node-http-handler': 2.5.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-stream': 2.2.0
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-ini@3.529.1(@aws-sdk/credential-provider-node@3.529.1):
- resolution: {integrity: sha512-RjHsuTvHIwXG7a/3ERexemiD3c9riKMCZQzY2/b0Gg0ButEVbBcMfERtUzWmQ0V4ufe/PEZjP68MH1gupcoF9A==}
+ /@aws-sdk/credential-provider-ini@3.535.0(@aws-sdk/credential-provider-node@3.535.0):
+ resolution: {integrity: sha512-bm3XOYlyCjtAb8eeHXLrxqRxYVRw2Iqv9IufdJb4gM13TbNSYniUT1WKaHxGIZ5p+FuNlXVhvk1OpHFM13+gXA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-sts': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/credential-provider-env': 3.523.0
- '@aws-sdk/credential-provider-process': 3.523.0
- '@aws-sdk/credential-provider-sso': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/credential-provider-web-identity': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/types': 3.523.0
- '@smithy/credential-provider-imds': 2.2.6
- '@smithy/property-provider': 2.1.4
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
+ '@aws-sdk/client-sts': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/credential-provider-env': 3.535.0
+ '@aws-sdk/credential-provider-process': 3.535.0
+ '@aws-sdk/credential-provider-sso': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/credential-provider-web-identity': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/types': 3.535.0
+ '@smithy/credential-provider-imds': 2.3.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
transitivePeerDependencies:
- '@aws-sdk/credential-provider-node'
- aws-crt
dev: false
- /@aws-sdk/credential-provider-node@3.529.1:
- resolution: {integrity: sha512-mvY7F3dMmk/0dZOCfl5sUI1bG0osureBjxhELGCF0KkJqhWI0hIzh8UnPkYytSg3vdc97CMv7pTcozxrdA3b0g==}
+ /@aws-sdk/credential-provider-node@3.535.0:
+ resolution: {integrity: sha512-6JXp/EuL6euUkH5k4d+lQFF6gBwukrcCOWfNHCmq14mNJf/cqT3HAX1VMtWFRSK20am0IxfYQGccb0/nZykdKg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/credential-provider-env': 3.523.0
- '@aws-sdk/credential-provider-http': 3.525.0
- '@aws-sdk/credential-provider-ini': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/credential-provider-process': 3.523.0
- '@aws-sdk/credential-provider-sso': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/credential-provider-web-identity': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/types': 3.523.0
- '@smithy/credential-provider-imds': 2.2.6
- '@smithy/property-provider': 2.1.4
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
+ '@aws-sdk/credential-provider-env': 3.535.0
+ '@aws-sdk/credential-provider-http': 3.535.0
+ '@aws-sdk/credential-provider-ini': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/credential-provider-process': 3.535.0
+ '@aws-sdk/credential-provider-sso': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/credential-provider-web-identity': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/types': 3.535.0
+ '@smithy/credential-provider-imds': 2.3.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/credential-provider-process@3.523.0:
- resolution: {integrity: sha512-f0LP9KlFmMvPWdKeUKYlZ6FkQAECUeZMmISsv6NKtvPCI9e4O4cLTeR09telwDK8P0HrgcRuZfXM7E30m8re0Q==}
+ /@aws-sdk/credential-provider-process@3.535.0:
+ resolution: {integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/property-provider': 2.1.4
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-sso@3.529.1(@aws-sdk/credential-provider-node@3.529.1):
- resolution: {integrity: sha512-KFMKkaoTGDgSJG+o9Ii7AglWG5JQeF6IFw9cXLMwDdIrp3KUmRcUIqe0cjOoCqeQEDGy0VHsimHmKKJ3894i/A==}
+ /@aws-sdk/credential-provider-sso@3.535.0(@aws-sdk/credential-provider-node@3.535.0):
+ resolution: {integrity: sha512-2Dw0YIr8ETdFpq65CC4zK8ZIEbX78rXoNRZXUGNQW3oSKfL0tj8O8ErY6kg1IdEnYbGnEQ35q6luZ5GGNKLgDg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-sso': 3.529.1
- '@aws-sdk/token-providers': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/types': 3.523.0
- '@smithy/property-provider': 2.1.4
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
+ '@aws-sdk/client-sso': 3.535.0
+ '@aws-sdk/token-providers': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/types': 3.535.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
transitivePeerDependencies:
- '@aws-sdk/credential-provider-node'
- aws-crt
dev: false
- /@aws-sdk/credential-provider-web-identity@3.529.1(@aws-sdk/credential-provider-node@3.529.1):
- resolution: {integrity: sha512-AGuZDOKN+AttjwTjrF47WLqzeEut2YynyxjkXZhxZF/xn8i5Y51kUAUdXsXw1bgR25pAeXQIdhsrQlRa1Pm5kw==}
+ /@aws-sdk/credential-provider-web-identity@3.535.0(@aws-sdk/credential-provider-node@3.535.0):
+ resolution: {integrity: sha512-t2/JWrKY0H66A7JW7CqX06/DG2YkJddikt5ymdQvx/Q7dRMJ3d+o/vgjoKr7RvEx/pNruCeyM1599HCvwrVMrg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-sts': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/types': 3.523.0
- '@smithy/property-provider': 2.1.4
- '@smithy/types': 2.11.0
+ '@aws-sdk/client-sts': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/types': 3.535.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
transitivePeerDependencies:
- '@aws-sdk/credential-provider-node'
- aws-crt
dev: false
- /@aws-sdk/middleware-bucket-endpoint@3.525.0:
- resolution: {integrity: sha512-nYfQ2Xspfef7j8mZO7varUWLPH6HQlXateH7tBVtBNUAazyQE4UJEvC0fbQ+Y01e+FKlirim/m2umkdMXqAlTg==}
+ /@aws-sdk/middleware-bucket-endpoint@3.535.0:
+ resolution: {integrity: sha512-7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-arn-parser': 3.495.0
- '@smithy/node-config-provider': 2.2.5
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
- '@smithy/util-config-provider': 2.2.1
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-arn-parser': 3.535.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-config-provider': 2.3.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-expect-continue@3.523.0:
- resolution: {integrity: sha512-E5DyRAHU39VHaAlQLqXYS/IKpgk3vsryuU6kkOcIIK8Dgw0a2tjoh5AOCaNa8pD+KgAGrFp35JIMSX1zui5diA==}
+ /@aws-sdk/middleware-expect-continue@3.535.0:
+ resolution: {integrity: sha512-hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-flexible-checksums@3.523.0:
- resolution: {integrity: sha512-lIa1TdWY9q4zsDFarfSnYcdrwPR+nypaU4n6hb95i620/1F5M5s6H8P0hYtwTNNvx+slrR8F3VBML9pjBtzAHw==}
+ /@aws-sdk/middleware-flexible-checksums@3.535.0:
+ resolution: {integrity: sha512-rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA==}
engines: {node: '>=14.0.0'}
dependencies:
'@aws-crypto/crc32': 3.0.0
'@aws-crypto/crc32c': 3.0.0
- '@aws-sdk/types': 3.523.0
- '@smithy/is-array-buffer': 2.1.1
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
- '@smithy/util-utf8': 2.2.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/is-array-buffer': 2.2.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-host-header@3.523.0:
- resolution: {integrity: sha512-4g3q7Ta9sdD9TMUuohBAkbx/e3I/juTqfKi7TPgP+8jxcYX72MOsgemAMHuP6CX27eyj4dpvjH+w4SIVDiDSmg==}
+ /@aws-sdk/middleware-host-header@3.535.0:
+ resolution: {integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-location-constraint@3.523.0:
- resolution: {integrity: sha512-1QAUXX3U0jkARnU0yyjk81EO4Uw5dCeQOtvUY5s3bUOHatR3ThosQeIr6y9BCsbXHzNnDe1ytCjqAPyo8r/bYw==}
+ /@aws-sdk/middleware-location-constraint@3.535.0:
+ resolution: {integrity: sha512-SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-logger@3.523.0:
- resolution: {integrity: sha512-PeDNJNhfiaZx54LBaLTXzUaJ9LXFwDFFIksipjqjvxMafnoVcQwKbkoPUWLe5ytT4nnL1LogD3s55mERFUsnwg==}
+ /@aws-sdk/middleware-logger@3.535.0:
+ resolution: {integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-recursion-detection@3.523.0:
- resolution: {integrity: sha512-nZ3Vt7ehfSDYnrcg/aAfjjvpdE+61B3Zk68i6/hSUIegT3IH9H1vSW67NDKVp+50hcEfzWwM2HMPXxlzuyFyrw==}
+ /@aws-sdk/middleware-recursion-detection@3.535.0:
+ resolution: {integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-sdk-s3@3.525.0:
- resolution: {integrity: sha512-ewFyyFM6wdFTOqCiId5GQNi7owDdLEonQhB4h8tF6r3HV52bRlDvZA4aDos+ft6N/XY2J6L0qlFTFq+/oiurXw==}
+ /@aws-sdk/middleware-sdk-s3@3.535.0:
+ resolution: {integrity: sha512-/dLG/E3af6ohxkQ5GBHT8tZfuPIg6eItKxCXuulvYj0Tqgf3Mb+xTsvSkxQsJF06RS4sH7Qsg/PnB8ZfrJrXpg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-arn-parser': 3.495.0
- '@smithy/node-config-provider': 2.2.5
- '@smithy/protocol-http': 3.2.2
- '@smithy/signature-v4': 2.1.4
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/util-config-provider': 2.2.1
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-arn-parser': 3.535.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/signature-v4': 2.2.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-config-provider': 2.3.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-signing@3.523.0:
- resolution: {integrity: sha512-pFXV4don6qcmew/OvEjLUr2foVjzoJ8o5k57Oz9yAHz8INx3RHK8MP/K4mVhHo6n0SquRcWrm4kY/Tw+89gkEA==}
+ /@aws-sdk/middleware-signing@3.535.0:
+ resolution: {integrity: sha512-Rb4sfus1Gc5paRl9JJgymJGsb/i3gJKK/rTuFZICdd1PBBE5osIOHP5CpzWYBtc5LlyZE1a2QoxPMCyG+QUGPw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/property-provider': 2.1.4
- '@smithy/protocol-http': 3.2.2
- '@smithy/signature-v4': 2.1.4
- '@smithy/types': 2.11.0
- '@smithy/util-middleware': 2.1.4
+ '@aws-sdk/types': 3.535.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/signature-v4': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-middleware': 2.2.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-ssec@3.523.0:
- resolution: {integrity: sha512-FaqAZQeF5cQzZLOIboIJRaWVOQ2F2pJZAXGF5D7nJsxYNFChotA0O0iWimBRxU35RNn7yirVxz35zQzs20ddIw==}
+ /@aws-sdk/middleware-ssec@3.537.0:
+ resolution: {integrity: sha512-2QWMrbwd5eBy5KCYn9a15JEWBgrK2qFEKQN2lqb/6z0bhtevIOxIRfC99tzvRuPt6nixFQ+ynKuBjcfT4ZFrdQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-user-agent@3.525.0:
- resolution: {integrity: sha512-4al/6uO+t/QIYXK2OgqzDKQzzLAYJza1vWFS+S0lJ3jLNGyLB5BMU5KqWjDzevYZ4eCnz2Nn7z0FveUTNz8YdQ==}
+ /@aws-sdk/middleware-user-agent@3.535.0:
+ resolution: {integrity: sha512-Uvb2WJ+zdHdCOtsWVPI/M0BcfNrjOYsicDZWtaljucRJKLclY5gNWwD+RwIC+8b5TvfnVOlH+N5jhvpi5Impog==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@aws-sdk/util-endpoints': 3.525.0
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@aws-sdk/util-endpoints': 3.535.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/region-config-resolver@3.525.0:
- resolution: {integrity: sha512-8kFqXk6UyKgTMi7N7QlhA6qM4pGPWbiUXqEY2RgUWngtxqNFGeM9JTexZeuavQI+qLLe09VPShPNX71fEDcM6w==}
+ /@aws-sdk/region-config-resolver@3.535.0:
+ resolution: {integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/node-config-provider': 2.2.5
- '@smithy/types': 2.11.0
- '@smithy/util-config-provider': 2.2.1
- '@smithy/util-middleware': 2.1.4
+ '@aws-sdk/types': 3.535.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-config-provider': 2.3.0
+ '@smithy/util-middleware': 2.2.0
tslib: 2.6.2
dev: false
- /@aws-sdk/signature-v4-multi-region@3.525.0:
- resolution: {integrity: sha512-j8gkdfiokaherRgokfZBl2azYBMHlegT7pOnR/3Y79TSz6G+bJeIkuNk8aUbJArr6R8nvAM1j4dt1rBM+efolQ==}
+ /@aws-sdk/signature-v4-multi-region@3.535.0:
+ resolution: {integrity: sha512-tqCsEsEj8icW0SAh3NvyhRUq54Gz2pu4NM2tOSrFp7SO55heUUaRLSzYteNZCTOupH//AAaZvbN/UUTO/DrOog==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.525.0
- '@aws-sdk/types': 3.523.0
- '@smithy/protocol-http': 3.2.2
- '@smithy/signature-v4': 2.1.4
- '@smithy/types': 2.11.0
+ '@aws-sdk/middleware-sdk-s3': 3.535.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/signature-v4': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/token-providers@3.529.1(@aws-sdk/credential-provider-node@3.529.1):
- resolution: {integrity: sha512-NpgMjsfpqiugbxrYGXtta914N43Mx/H0niidqv8wKMTgWQEtsJvYtOni+kuLXB+LmpjaMFNlpadooFU/bK4buA==}
+ /@aws-sdk/token-providers@3.535.0(@aws-sdk/credential-provider-node@3.535.0):
+ resolution: {integrity: sha512-4g+l/B9h1H/SiDtFRosW3pMwc+3PTXljZit+5NUBcET2XqcdUyHmgj3lBdu+CJ9CHdIMggRalYMAFXnRFe3Psg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-sso-oidc': 3.529.1(@aws-sdk/credential-provider-node@3.529.1)
- '@aws-sdk/types': 3.523.0
- '@smithy/property-provider': 2.1.4
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
+ '@aws-sdk/client-sso-oidc': 3.535.0(@aws-sdk/credential-provider-node@3.535.0)
+ '@aws-sdk/types': 3.535.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
transitivePeerDependencies:
- '@aws-sdk/credential-provider-node'
- aws-crt
dev: false
- /@aws-sdk/types@3.523.0:
- resolution: {integrity: sha512-AqGIu4u+SxPiUuNBp2acCVcq80KDUFjxe6e3cMTvKWTzCbrVk1AXv0dAaJnCmdkWIha6zJDWxpIk/aL4EGhZ9A==}
+ /@aws-sdk/types@3.535.0:
+ resolution: {integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@aws-sdk/util-arn-parser@3.495.0:
- resolution: {integrity: sha512-hwdA3XAippSEUxs7jpznwD63YYFR+LtQvlEcebPTgWR9oQgG9TfS+39PUfbnEeje1ICuOrN3lrFqFbmP9uzbMg==}
+ /@aws-sdk/util-arn-parser@3.535.0:
+ resolution: {integrity: sha512-smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@aws-sdk/util-endpoints@3.525.0:
- resolution: {integrity: sha512-DIW7WWU5tIGkeeKX6NJUyrEIdWMiqjLQG3XBzaUj+ufIENwNjdAHhlD8l2vX7Yr3JZRT6yN/84wBCj7Tw1xd1g==}
+ /@aws-sdk/util-endpoints@3.535.0:
+ resolution: {integrity: sha512-c8TlaQsiPchOOmTTR6qvHCO2O7L7NJwlKWAoQJ2GqWDZuC5es/fyuF2rp1h+ZRrUVraUomS0YdGkAmaDC7hJQg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/types': 2.11.0
- '@smithy/util-endpoints': 1.1.5
+ '@aws-sdk/types': 3.535.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-endpoints': 1.2.0
tslib: 2.6.2
dev: false
- /@aws-sdk/util-locate-window@3.495.0:
- resolution: {integrity: sha512-MfaPXT0kLX2tQaR90saBT9fWQq2DHqSSJRzW+MZWsmF+y5LGCOhO22ac/2o6TKSQm7h0HRc2GaADqYYYor62yg==}
+ /@aws-sdk/util-locate-window@3.535.0:
+ resolution: {integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@aws-sdk/util-user-agent-browser@3.523.0:
- resolution: {integrity: sha512-6ZRNdGHX6+HQFqTbIA5+i8RWzxFyxsZv8D3soRfpdyWIKkzhSz8IyRKXRciwKBJDaC7OX2jzGE90wxRQft27nA==}
+ /@aws-sdk/util-user-agent-browser@3.535.0:
+ resolution: {integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==}
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/types': 2.12.0
bowser: 2.11.0
tslib: 2.6.2
dev: false
- /@aws-sdk/util-user-agent-node@3.525.0:
- resolution: {integrity: sha512-88Wjt4efyUSBGcyIuh1dvoMqY1k15jpJc5A/3yi67clBQEFsu9QCodQCQPqmRjV3VRcMtBOk+jeCTiUzTY5dRQ==}
+ /@aws-sdk/util-user-agent-node@3.535.0:
+ resolution: {integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -2135,9 +2284,9 @@ packages:
aws-crt:
optional: true
dependencies:
- '@aws-sdk/types': 3.523.0
- '@smithy/node-config-provider': 2.2.5
- '@smithy/types': 2.11.0
+ '@aws-sdk/types': 3.535.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
@@ -2147,11 +2296,11 @@ packages:
tslib: 2.6.2
dev: false
- /@aws-sdk/xml-builder@3.523.0:
- resolution: {integrity: sha512-wfvyVymj2TUw7SuDor9IuFcAzJZvWRBZotvY/wQJOlYa3UP3Oezzecy64N4FWfBJEsZdrTN+HOZFl+IzTWWnUA==}
+ /@aws-sdk/xml-builder@3.535.0:
+ resolution: {integrity: sha512-VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
@@ -2162,44 +2311,44 @@ packages:
tslib: 2.6.2
dev: false
- /@azure/abort-controller@2.0.0:
- resolution: {integrity: sha512-RP/mR/WJchR+g+nQFJGOec+nzeN/VvjlwbinccoqfhTsTHbb8X5+mLDp48kHT0ueyum0BNSwGm0kX0UZuIqTGg==}
+ /@azure/abort-controller@2.1.1:
+ resolution: {integrity: sha512-NhzeNm5zu2fPlwGXPUjzsRCRuPx5demaZyNcyNYJDqpa/Sbxzvo/RYt9IwUaAOnDW5+r7J9UOE6f22TQnb9nhQ==}
engines: {node: '>=18.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@azure/core-auth@1.6.0:
- resolution: {integrity: sha512-3X9wzaaGgRaBCwhLQZDtFp5uLIXCPrGbwJNWPPugvL4xbIGgScv77YzzxToKGLAKvG9amDoofMoP+9hsH1vs1w==}
+ /@azure/core-auth@1.7.1:
+ resolution: {integrity: sha512-dyeQwvgthqs/SlPVQbZQetpslXceHd4i5a7M/7z/lGEAVwnSluabnQOjF2/dk/hhWgMISusv1Ytp4mQ8JNy62A==}
engines: {node: '>=18.0.0'}
dependencies:
- '@azure/abort-controller': 2.0.0
- '@azure/core-util': 1.7.0
+ '@azure/abort-controller': 2.1.1
+ '@azure/core-util': 1.8.1
tslib: 2.6.2
dev: false
- /@azure/core-client@1.8.0:
- resolution: {integrity: sha512-+gHS3gEzPlhyQBMoqVPOTeNH031R5DM/xpCvz72y38C09rg4Hui/1sJS/ujoisDZbbSHyuRLVWdFlwL0pIFwbg==}
+ /@azure/core-client@1.9.1:
+ resolution: {integrity: sha512-hHYFx9lz0ZpbO5W+iotU9tmIX1jPcoIjYUEUaWGuMi1628LCQ/z05TUR4P+NRtMgyoHQuyVYyGQiD3PC47kaIA==}
engines: {node: '>=18.0.0'}
dependencies:
- '@azure/abort-controller': 2.0.0
- '@azure/core-auth': 1.6.0
- '@azure/core-rest-pipeline': 1.14.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.7.0
- '@azure/logger': 1.0.4
+ '@azure/abort-controller': 2.1.1
+ '@azure/core-auth': 1.7.1
+ '@azure/core-rest-pipeline': 1.15.1
+ '@azure/core-tracing': 1.1.1
+ '@azure/core-util': 1.8.1
+ '@azure/logger': 1.1.1
tslib: 2.6.2
transitivePeerDependencies:
- supports-color
dev: false
- /@azure/core-http-compat@2.0.1:
- resolution: {integrity: sha512-xpQZz/q7E0jSW4rckrTo2mDFDQgo6I69hBU4voMQi7REi6JRW5a+KfVkbJCFCWnkFmP6cAJ0IbuudTdf/MEBOQ==}
- engines: {node: '>=14.0.0'}
+ /@azure/core-http-compat@2.1.1:
+ resolution: {integrity: sha512-QGSDBkKpDbVOmbqlVPdlPE1JalHWmJjLyZhL+9zZN9gj4X1pTksEbDR77P+qWCJ5NGaSWyKvAW+3Q6hNX8/W+Q==}
+ engines: {node: '>=18.0.0'}
dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-client': 1.8.0
- '@azure/core-rest-pipeline': 1.14.0
+ '@azure/abort-controller': 2.1.1
+ '@azure/core-client': 1.9.1
+ '@azure/core-rest-pipeline': 1.15.1
transitivePeerDependencies:
- supports-color
dev: false
@@ -2209,10 +2358,10 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
'@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.6.0
+ '@azure/core-auth': 1.7.1
'@azure/core-tracing': 1.0.0-preview.13
- '@azure/core-util': 1.7.0
- '@azure/logger': 1.0.4
+ '@azure/core-util': 1.8.1
+ '@azure/logger': 1.1.1
'@types/node-fetch': 2.6.11
'@types/tunnel': 0.0.3
form-data: 4.0.0
@@ -2226,34 +2375,34 @@ packages:
- encoding
dev: false
- /@azure/core-lro@2.6.0:
- resolution: {integrity: sha512-PyRNcaIOfMgoUC01/24NoG+k8O81VrKxYARnDlo+Q2xji0/0/j2nIt8BwQh294pb1c5QnXTDPbNR4KzoDKXEoQ==}
+ /@azure/core-lro@2.7.1:
+ resolution: {integrity: sha512-kXSlrNHOCTVZMxpXNRqzgh9/j4cnNXU5Hf2YjMyjddRhCXFiFRzmNaqwN+XO9rGTsCOIaaG7M67zZdyliXZG9g==}
engines: {node: '>=18.0.0'}
dependencies:
- '@azure/abort-controller': 2.0.0
- '@azure/core-util': 1.7.0
- '@azure/logger': 1.0.4
+ '@azure/abort-controller': 2.1.1
+ '@azure/core-util': 1.8.1
+ '@azure/logger': 1.1.1
tslib: 2.6.2
dev: false
- /@azure/core-paging@1.5.0:
- resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==}
- engines: {node: '>=14.0.0'}
+ /@azure/core-paging@1.6.1:
+ resolution: {integrity: sha512-3tKIQXSU3mlN+ITz0m2pXLnKK3oQ6/EVcW8ud011Iq+M0rx6Wnm7NUEpoMeOAEedeKlPtemrQzO6YWoDR71O5w==}
+ engines: {node: '>=18.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@azure/core-rest-pipeline@1.14.0:
- resolution: {integrity: sha512-Tp4M6NsjCmn9L5p7HsW98eSOS7A0ibl3e5ntZglozT0XuD/0y6i36iW829ZbBq0qihlGgfaeFpkLjZ418KDm1Q==}
+ /@azure/core-rest-pipeline@1.15.1:
+ resolution: {integrity: sha512-ZxS6i3eHxh86u+1eWZJiYywoN2vxvsSoAUx60Mny8cZ4nTwvt7UzVVBJO+m2PW2KIJfNiXMt59xBa59htOWL4g==}
engines: {node: '>=18.0.0'}
dependencies:
- '@azure/abort-controller': 2.0.0
- '@azure/core-auth': 1.6.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.7.0
- '@azure/logger': 1.0.4
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
+ '@azure/abort-controller': 2.1.1
+ '@azure/core-auth': 1.7.1
+ '@azure/core-tracing': 1.1.1
+ '@azure/core-util': 1.8.1
+ '@azure/logger': 1.1.1
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
tslib: 2.6.2
transitivePeerDependencies:
- supports-color
@@ -2267,18 +2416,18 @@ packages:
tslib: 2.6.2
dev: false
- /@azure/core-tracing@1.0.1:
- resolution: {integrity: sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==}
- engines: {node: '>=12.0.0'}
+ /@azure/core-tracing@1.1.1:
+ resolution: {integrity: sha512-qPbYhN1pE5XQ2jPKIHP33x8l3oBu1UqIWnYqZZ3OYnYjzY0xqIHjn49C+ptsPD9yC7uyWI9Zm7iZUZLs2R4DhQ==}
+ engines: {node: '>=18.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@azure/core-util@1.7.0:
- resolution: {integrity: sha512-Zq2i3QO6k9DA8vnm29mYM4G8IE9u1mhF1GUabVEqPNX8Lj833gdxQ2NAFxt2BZsfAL+e9cT8SyVN7dFVJ/Hf0g==}
+ /@azure/core-util@1.8.1:
+ resolution: {integrity: sha512-L3voj0StUdJ+YKomvwnTv7gHzguJO+a6h30pmmZdRprJCM+RJlGMPxzuh4R7lhQu1jNmEtaHX5wvTgWLDAmbGQ==}
engines: {node: '>=18.0.0'}
dependencies:
- '@azure/abort-controller': 2.0.0
+ '@azure/abort-controller': 2.1.1
tslib: 2.6.2
dev: false
@@ -2287,12 +2436,12 @@ packages:
engines: {node: '>=12.0.0'}
dependencies:
'@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.6.0
- '@azure/core-client': 1.8.0
- '@azure/core-rest-pipeline': 1.14.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.7.0
- '@azure/logger': 1.0.4
+ '@azure/core-auth': 1.7.1
+ '@azure/core-client': 1.9.1
+ '@azure/core-rest-pipeline': 1.15.1
+ '@azure/core-tracing': 1.1.1
+ '@azure/core-util': 1.8.1
+ '@azure/logger': 1.1.1
'@azure/msal-browser': 2.38.3
'@azure/msal-common': 7.6.0
'@azure/msal-node': 1.18.4
@@ -2311,23 +2460,23 @@ packages:
engines: {node: '>=18.0.0'}
dependencies:
'@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.6.0
- '@azure/core-client': 1.8.0
- '@azure/core-http-compat': 2.0.1
- '@azure/core-lro': 2.6.0
- '@azure/core-paging': 1.5.0
- '@azure/core-rest-pipeline': 1.14.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.7.0
- '@azure/logger': 1.0.4
+ '@azure/core-auth': 1.7.1
+ '@azure/core-client': 1.9.1
+ '@azure/core-http-compat': 2.1.1
+ '@azure/core-lro': 2.7.1
+ '@azure/core-paging': 1.6.1
+ '@azure/core-rest-pipeline': 1.15.1
+ '@azure/core-tracing': 1.1.1
+ '@azure/core-util': 1.8.1
+ '@azure/logger': 1.1.1
tslib: 2.6.2
transitivePeerDependencies:
- supports-color
dev: false
- /@azure/logger@1.0.4:
- resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==}
- engines: {node: '>=14.0.0'}
+ /@azure/logger@1.1.1:
+ resolution: {integrity: sha512-/+4TtokaGgC+MnThdf6HyIH9Wrjp+CnCn3Nx3ggevN7FFjjNyjqg0yLlc2i9S+Z2uAzI8GYOo35Nzb1MhQ89MA==}
+ engines: {node: '>=18.0.0'}
dependencies:
tslib: 2.6.2
dev: false
@@ -2366,38 +2515,38 @@ packages:
dependencies:
'@azure/abort-controller': 1.1.0
'@azure/core-http': 3.0.4
- '@azure/core-lro': 2.6.0
- '@azure/core-paging': 1.5.0
+ '@azure/core-lro': 2.7.1
+ '@azure/core-paging': 1.6.1
'@azure/core-tracing': 1.0.0-preview.13
- '@azure/logger': 1.0.4
+ '@azure/logger': 1.1.1
events: 3.3.0
tslib: 2.6.2
transitivePeerDependencies:
- encoding
dev: false
- /@babel/code-frame@7.23.5:
- resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
+ /@babel/code-frame@7.24.2:
+ resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.23.4
- chalk: 2.4.2
+ '@babel/highlight': 7.24.2
+ picocolors: 1.0.0
- /@babel/compat-data@7.23.5:
- resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
+ /@babel/compat-data@7.24.1:
+ resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==}
engines: {node: '>=6.9.0'}
/@babel/core@7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.12.9)
- '@babel/helpers': 7.24.0
- '@babel/parser': 7.24.0
+ '@babel/helpers': 7.24.1
+ '@babel/parser': 7.24.1
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.0
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
convert-source-map: 1.9.0
debug: 4.3.4
@@ -2411,19 +2560,19 @@ packages:
- supports-color
dev: false
- /@babel/core@7.24.0:
- resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
+ /@babel/core@7.24.3:
+ resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
- '@babel/helpers': 7.24.0
- '@babel/parser': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helpers': 7.24.1
+ '@babel/parser': 7.24.1
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.0
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
convert-source-map: 2.0.0
debug: 4.3.4
@@ -2433,8 +2582,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.23.6:
- resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
+ /@babel/generator@7.24.1:
+ resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
@@ -2458,60 +2607,46 @@ packages:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.23.5
+ '@babel/compat-data': 7.24.1
'@babel/helper-validator-option': 7.23.5
browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g==}
+ /@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.0):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
- /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.0):
+ /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3):
resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
debug: 4.3.4
@@ -2543,8 +2678,8 @@ packages:
dependencies:
'@babel/types': 7.24.0
- /@babel/helper-module-imports@7.22.15:
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
+ /@babel/helper-module-imports@7.24.3:
+ resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
@@ -2557,21 +2692,21 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-module-imports': 7.24.3
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
dev: false
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-module-imports': 7.24.3
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
@@ -2590,24 +2725,24 @@ packages:
resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.0):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.24.0):
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -2630,8 +2765,8 @@ packages:
dependencies:
'@babel/types': 7.24.0
- /@babel/helper-string-parser@7.23.4:
- resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ /@babel/helper-string-parser@7.24.1:
+ resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-identifier@7.22.20:
@@ -2650,58 +2785,59 @@ packages:
'@babel/template': 7.24.0
'@babel/types': 7.24.0
- /@babel/helpers@7.24.0:
- resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
+ /@babel/helpers@7.24.1:
+ resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.0
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
transitivePeerDependencies:
- supports-color
- /@babel/highlight@7.23.4:
- resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ /@babel/highlight@7.24.2:
+ resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
+ picocolors: 1.0.0
- /@babel/parser@7.24.0:
- resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==}
+ /@babel/parser@7.24.1:
+ resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.24.0
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.0):
- resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.24.0
@@ -2714,109 +2850,109 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.12.9)
dev: false
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
+ /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
+ /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
+ /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
/@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
@@ -2828,37 +2964,37 @@ packages:
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
@@ -2870,420 +3006,419 @@ packages:
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.0):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.0):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
+ /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0):
- resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
+ /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
+ /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-module-imports': 7.22.15
+ '@babel/core': 7.24.3
+ '@babel/helper-module-imports': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3)
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
+ /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
+ /@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
+ /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
+ /@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3)
- /@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.0):
- resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
+ /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
+ /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/template': 7.24.0
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
+ /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
+ /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
+ /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
+ /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
+ /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
+ /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
- /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
+ /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3)
dev: true
- /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.0):
- resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
+ /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
+ /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
+ /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
+ /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
+ /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
+ /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
+ /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.0):
- resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
+ /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-identifier': 7.22.20
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
+ /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.0):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
+ /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
- /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
+ /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
- /@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w==}
+ /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.5
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3)
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
+ /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
- /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
+ /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
- /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
+ /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.12.9):
- resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
+ /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.12.9):
+ resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3292,381 +3427,381 @@ packages:
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
+ /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
+ /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.0):
- resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
+ /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
+ /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==}
+ /@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
+ /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.0):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
dev: false
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.0):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-module-imports': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
'@babel/types': 7.24.0
dev: false
- /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
+ /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
+ /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
regenerator-transform: 0.15.2
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
+ /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-runtime@7.24.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA==}
+ /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3):
+ resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-module-imports': 7.22.15
+ '@babel/core': 7.24.3
+ '@babel/helper-module-imports': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.0)
- babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0)
- babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.0)
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3)
+ babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
+ /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
+ /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
+ /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
+ /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
+ /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.24.0):
- resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
+ /@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3)
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
+ /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
+ /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
+ /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
+ /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.24.0
- /@babel/preset-env@7.24.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA==}
+ /@babel/preset-env@7.24.3(@babel/core@7.24.3):
+ resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.5
- '@babel/core': 7.24.0
+ '@babel/compat-data': 7.24.1
+ '@babel/core': 7.24.3
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.0)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.0)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.0)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.0)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.0)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.0)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.0)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.0)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.24.0)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.0)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.0)
- babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0)
- babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.0)
- core-js-compat: 3.36.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3)
+ '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3)
+ '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3)
+ babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3)
+ core-js-compat: 3.36.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/preset-flow@7.24.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-cum/nSi82cDaSJ21I4PgLTVlj0OXovFk6GRguJYe/IKg6y6JHLTbJhybtX4k35WT9wdeJfEVjycTixMhBHd0Dg==}
+ /@babel/preset-flow@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3)
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/types': 7.24.0
esutils: 2.0.3
- /@babel/preset-react@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
+ /@babel/preset-react@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.0)
- '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.3)
dev: false
- /@babel/preset-typescript@7.23.3(@babel/core@7.24.0):
- resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
+ /@babel/preset-typescript@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.24.0)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3)
- /@babel/register@7.23.7(@babel/core@7.24.0):
+ /@babel/register@7.23.7(@babel/core@7.24.3):
resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -3677,16 +3812,16 @@ packages:
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime-corejs3@7.24.0:
- resolution: {integrity: sha512-HxiRMOncx3ly6f3fcZ1GVKf+/EROcI9qwPgmij8Czqy6Okm/0T37T4y2ZIlLUuEUFjtM7NRsfdCO8Y3tAiJZew==}
+ /@babel/runtime-corejs3@7.24.1:
+ resolution: {integrity: sha512-T9ko/35G+Bkl+win48GduaPlhSlOjjE5s1TeiEcD+QpxlLQnoEfb/nO/T+TQqkm+ipFwORn+rB8w14iJ/uD0bg==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.36.0
+ core-js-pure: 3.36.1
regenerator-runtime: 0.14.1
dev: false
- /@babel/runtime@7.24.0:
- resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
+ /@babel/runtime@7.24.1:
+ resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
@@ -3695,21 +3830,21 @@ packages:
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/parser': 7.24.0
+ '@babel/code-frame': 7.24.2
+ '@babel/parser': 7.24.1
'@babel/types': 7.24.0
- /@babel/traverse@7.24.0:
- resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==}
+ /@babel/traverse@7.24.1:
+ resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.0
+ '@babel/parser': 7.24.1
'@babel/types': 7.24.0
debug: 4.3.4
globals: 11.12.0
@@ -3720,22 +3855,27 @@ packages:
resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-string-parser': 7.24.1
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- dev: true
/@braintree/sanitize-url@6.0.4:
resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==}
dev: false
+ /@brianmd/citty@0.0.1:
+ resolution: {integrity: sha512-GIw4FjBrNMqXVACK6UAIr2zDiRdxm+t2k9IpR04e2OGZ8zHy1HPVEGoofqoaHCfqeJtn3tRR5uQM6DgGuKZHmw==}
+ dependencies:
+ consola: 3.2.3
+ dev: false
+
/@changesets/apply-release-plan@5.0.5:
resolution: {integrity: sha512-CxL9dkhzjHiVmXCyHgsLCQj7i/coFTMv/Yy0v6BC5cIWZkQml+lf7zvQqAcFXwY7b54HxRWZPku02XFB53Q0Uw==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/config': 1.7.0
'@changesets/get-version-range-type': 0.3.2
'@changesets/git': 1.5.0
@@ -3750,10 +3890,28 @@ packages:
semver: 5.7.2
dev: true
+ /@changesets/apply-release-plan@7.0.0:
+ resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/config': 3.0.0
+ '@changesets/get-version-range-type': 0.4.0
+ '@changesets/git': 3.0.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ detect-indent: 6.1.0
+ fs-extra: 7.0.1
+ lodash.startcase: 4.4.0
+ outdent: 0.5.0
+ prettier: 2.8.8
+ resolve-from: 5.0.0
+ semver: 7.6.0
+ dev: true
+
/@changesets/assemble-release-plan@5.2.4:
resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.6
'@changesets/types': 5.2.1
@@ -3761,17 +3919,34 @@ packages:
semver: 7.6.0
dev: true
+ /@changesets/assemble-release-plan@6.0.0:
+ resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ semver: 7.6.0
+ dev: true
+
/@changesets/changelog-git@0.1.14:
resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==}
dependencies:
'@changesets/types': 5.2.1
dev: true
+ /@changesets/changelog-git@0.2.0:
+ resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
+ dependencies:
+ '@changesets/types': 6.0.0
+ dev: true
+
/@changesets/cli@2.21.0:
resolution: {integrity: sha512-cJXRg28MmF9VbQrlwSjpY4AJA2xZUbXFCpQ3kFmX0IeppO7wknZ2QfocAhIqwM828t8d3R4Zpi5xnvJ/crIcQw==}
hasBin: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/apply-release-plan': 5.0.5
'@changesets/assemble-release-plan': 5.2.4
'@changesets/changelog-git': 0.1.14
@@ -3804,11 +3979,49 @@ packages:
tty-table: 2.8.13
dev: true
- /@changesets/config@1.7.0:
- resolution: {integrity: sha512-Ctk6ZO5Ay6oZ95bbKXyA2a1QG0jQUePaGCY6BKkZtUG4PgysesfmiQOPgOY5OsRMt8exJeo6l+DJ75YiKmh0rQ==}
+ /@changesets/cli@2.27.1:
+ resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==}
+ hasBin: true
dependencies:
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.6
+ '@babel/runtime': 7.24.1
+ '@changesets/apply-release-plan': 7.0.0
+ '@changesets/assemble-release-plan': 6.0.0
+ '@changesets/changelog-git': 0.2.0
+ '@changesets/config': 3.0.0
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/get-release-plan': 4.0.0
+ '@changesets/git': 3.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/pre': 2.0.0
+ '@changesets/read': 0.6.0
+ '@changesets/types': 6.0.0
+ '@changesets/write': 0.3.0
+ '@manypkg/get-packages': 1.1.3
+ '@types/semver': 7.5.8
+ ansi-colors: 4.1.3
+ chalk: 2.4.2
+ ci-info: 3.9.0
+ enquirer: 2.4.1
+ external-editor: 3.1.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ meow: 6.1.1
+ outdent: 0.5.0
+ p-limit: 2.3.0
+ preferred-pm: 3.1.3
+ resolve-from: 5.0.0
+ semver: 7.6.0
+ spawndamnit: 2.0.0
+ term-size: 2.2.1
+ tty-table: 4.2.3
+ dev: true
+
+ /@changesets/config@1.7.0:
+ resolution: {integrity: sha512-Ctk6ZO5Ay6oZ95bbKXyA2a1QG0jQUePaGCY6BKkZtUG4PgysesfmiQOPgOY5OsRMt8exJeo6l+DJ75YiKmh0rQ==}
+ dependencies:
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.6
'@changesets/logger': 0.0.5
'@changesets/types': 4.1.0
'@manypkg/get-packages': 1.1.3
@@ -3828,12 +4041,30 @@ packages:
micromatch: 4.0.5
dev: true
+ /@changesets/config@3.0.0:
+ resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==}
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ micromatch: 4.0.5
+ dev: true
+
/@changesets/errors@0.1.4:
resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==}
dependencies:
extendable-error: 0.1.7
dev: true
+ /@changesets/errors@0.2.0:
+ resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
+ dependencies:
+ extendable-error: 0.1.7
+ dev: true
+
/@changesets/get-dependents-graph@1.3.6:
resolution: {integrity: sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==}
dependencies:
@@ -3844,10 +4075,20 @@ packages:
semver: 7.6.0
dev: true
+ /@changesets/get-dependents-graph@2.0.0:
+ resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==}
+ dependencies:
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ chalk: 2.4.2
+ fs-extra: 7.0.1
+ semver: 7.6.0
+ dev: true
+
/@changesets/get-release-plan@3.0.17:
resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/assemble-release-plan': 5.2.4
'@changesets/config': 2.3.1
'@changesets/pre': 1.0.14
@@ -3856,14 +4097,30 @@ packages:
'@manypkg/get-packages': 1.1.3
dev: true
+ /@changesets/get-release-plan@4.0.0:
+ resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/assemble-release-plan': 6.0.0
+ '@changesets/config': 3.0.0
+ '@changesets/pre': 2.0.0
+ '@changesets/read': 0.6.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ dev: true
+
/@changesets/get-version-range-type@0.3.2:
resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
dev: true
+ /@changesets/get-version-range-type@0.4.0:
+ resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
+ dev: true
+
/@changesets/git@1.5.0:
resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -3874,7 +4131,7 @@ packages:
/@changesets/git@2.0.0:
resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -3883,12 +4140,30 @@ packages:
spawndamnit: 2.0.0
dev: true
+ /@changesets/git@3.0.0:
+ resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ is-subdir: 1.2.0
+ micromatch: 4.0.5
+ spawndamnit: 2.0.0
+ dev: true
+
/@changesets/logger@0.0.5:
resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==}
dependencies:
chalk: 2.4.2
dev: true
+ /@changesets/logger@0.1.0:
+ resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==}
+ dependencies:
+ chalk: 2.4.2
+ dev: true
+
/@changesets/parse@0.3.16:
resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==}
dependencies:
@@ -3896,20 +4171,37 @@ packages:
js-yaml: 3.14.1
dev: true
+ /@changesets/parse@0.4.0:
+ resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
+ dependencies:
+ '@changesets/types': 6.0.0
+ js-yaml: 3.14.1
+ dev: true
+
/@changesets/pre@1.0.14:
resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
dev: true
+ /@changesets/pre@2.0.0:
+ resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ dev: true
+
/@changesets/read@0.5.9:
resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/git': 2.0.0
'@changesets/logger': 0.0.5
'@changesets/parse': 0.3.16
@@ -3919,6 +4211,19 @@ packages:
p-filter: 2.1.0
dev: true
+ /@changesets/read@0.6.0:
+ resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/git': 3.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/parse': 0.4.0
+ '@changesets/types': 6.0.0
+ chalk: 2.4.2
+ fs-extra: 7.0.1
+ p-filter: 2.1.0
+ dev: true
+
/@changesets/types@4.1.0:
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
dev: true
@@ -3927,44 +4232,75 @@ packages:
resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
dev: true
+ /@changesets/types@6.0.0:
+ resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
+ dev: true
+
/@changesets/write@0.1.9:
resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/types': 5.2.1
fs-extra: 7.0.1
human-id: 1.0.2
prettier: 1.19.1
dev: true
- /@codemirror/autocomplete@6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.1)(@codemirror/view@6.23.0)(@lezer/common@1.2.1):
- resolution: {integrity: sha512-r4IjdYFthwbCQyvqnSlx0WBHRHi8nBvU+WjJxFUij81qsBfhNudf/XKKmmC2j3m0LaOYUQTf3qiEK1J8lO1sdg==}
+ /@changesets/write@0.3.0:
+ resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==}
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@changesets/types': 6.0.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ prettier: 2.8.8
+ dev: true
+
+ /@clack/core@0.3.4:
+ resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==}
+ dependencies:
+ picocolors: 1.0.0
+ sisteransi: 1.0.5
+ dev: false
+
+ /@clack/prompts@0.7.0:
+ resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==}
+ dependencies:
+ '@clack/core': 0.3.4
+ picocolors: 1.0.0
+ sisteransi: 1.0.5
+ dev: false
+ bundledDependencies:
+ - is-unicode-supported
+
+ /@codemirror/autocomplete@6.15.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.0)(@lezer/common@1.2.1):
+ resolution: {integrity: sha512-G2Zm0mXznxz97JhaaOdoEG2cVupn4JjPaS4AcNvZzhOsnnG9YVN68VzfoUw6dYTsIxT6a/cmoFEN47KAWhXaOg==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
dependencies:
- '@codemirror/language': 6.10.0
+ '@codemirror/language': 6.10.1
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
'@lezer/common': 1.2.1
dev: false
/@codemirror/commands@6.3.3:
resolution: {integrity: sha512-dO4hcF0fGT9tu1Pj1D2PvGvxjeGkbC6RGcZw6Qs74TH+Ed1gw98jmUgd2axWvIZEqTeTuFrg1lEB1KV6cK9h1A==}
dependencies:
- '@codemirror/language': 6.10.0
+ '@codemirror/language': 6.10.1
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
'@lezer/common': 1.2.1
dev: false
- /@codemirror/lang-sql@6.5.5(@codemirror/view@6.23.0):
- resolution: {integrity: sha512-DvOaP2RXLb2xlxJxxydTFfwyYw5YDqEFea6aAfgh9UH0kUD6J1KFZ0xPgPpw1eo/5s2w3L6uh5PVR7GM23GxkQ==}
+ /@codemirror/lang-sql@6.6.1(@codemirror/view@6.26.0):
+ resolution: {integrity: sha512-tRHMLymUbL1yY8dzdrGdHVg+nMlfacOU54tjN5+VF45Syw5L3APxsFFhgdWIs4yg7OTt929Z9Ffw5qyV++kbWQ==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.1)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
- '@codemirror/language': 6.10.0
+ '@codemirror/autocomplete': 6.15.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.0)(@lezer/common@1.2.1)
+ '@codemirror/language': 6.10.1
'@codemirror/state': 6.4.1
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
@@ -3973,30 +4309,30 @@ packages:
- '@codemirror/view'
dev: false
- /@codemirror/language@6.10.0:
- resolution: {integrity: sha512-2vaNn9aPGCRFKWcHPFksctzJ8yS5p7YoaT+jHpc0UGKzNuAIx4qy6R5wiqbP+heEEdyaABA582mNqSHzSoYdmg==}
+ /@codemirror/language@6.10.1:
+ resolution: {integrity: sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ==}
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
'@lezer/lr': 1.4.0
style-mod: 4.1.2
dev: false
- /@codemirror/lint@6.4.2:
- resolution: {integrity: sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==}
+ /@codemirror/lint@6.5.0:
+ resolution: {integrity: sha512-+5YyicIaaAZKU8K43IQi8TBy6mF6giGeWAH7N96Z5LC30Wm5JMjqxOYIE9mxwMG1NbhT2mA3l9hA4uuKUM3E5g==}
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
crelt: 1.0.6
dev: false
- /@codemirror/search@6.5.5:
- resolution: {integrity: sha512-PIEN3Ke1buPod2EHbJsoQwlbpkz30qGZKcnmH1eihq9+bPQx8gelauUwLYaY4vBOuBAuEhmpDLii4rj/uO0yMA==}
+ /@codemirror/search@6.5.6:
+ resolution: {integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==}
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
crelt: 1.0.6
dev: false
@@ -4004,8 +4340,8 @@ packages:
resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==}
dev: false
- /@codemirror/view@6.23.0:
- resolution: {integrity: sha512-/51px9N4uW8NpuWkyUX+iam5+PM6io2fm+QmRnzwqBy5v/pwGg9T0kILFtYeum8hjuvENtgsGNKluOfqIICmeQ==}
+ /@codemirror/view@6.26.0:
+ resolution: {integrity: sha512-nSSmzONpqsNzshPOxiKhK203R6BvABepugAe34QfQDbNDslyjkqBuKgrK5ZBvqNXpfxz5iLrlGTmEfhbQyH46A==}
dependencies:
'@codemirror/state': 6.4.1
style-mod: 4.1.2
@@ -4031,24 +4367,25 @@ packages:
kuler: 2.0.0
dev: false
- /@databricks/sql@1.5.0:
- resolution: {integrity: sha512-ck3NMJyWprbaoW5OOxdr6vPEPzTvtirpoxrL5AfwEh5p3WbCqARZeqgXiuNjHK44IYtAAvoaMMIZNucxGRXCsA==}
+ /@databricks/sql@1.8.2:
+ resolution: {integrity: sha512-Ry8VUuzkALAoanzVLswbXZCxwmL7I0W3WPMclTCzvh7emVnGqEcpI8vheKddoiumJQOAVgyCKqoQF63nQnXZtg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
apache-arrow: 13.0.0
commander: 9.5.0
+ lz4: 0.6.5
node-fetch: 2.7.0
node-int64: 0.4.0
open: 8.4.2
openid-client: 5.6.5
- patch-package: 7.0.2
+ proxy-agent: 6.4.0
thrift: 0.16.0
uuid: 9.0.1
winston: 3.12.0
transitivePeerDependencies:
- bufferutil
- encoding
+ - supports-color
- utf-8-validate
dev: false
@@ -4056,19 +4393,15 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- /@docsearch/css@3.5.2:
- resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
- dev: false
-
/@docsearch/css@3.6.0:
resolution: {integrity: sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==}
dev: false
- /@docsearch/js@3.5.2(@algolia/client-search@4.15.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0):
- resolution: {integrity: sha512-p1YFTCDflk8ieHgFJYfmyHBki1D61+U9idwrLh+GQQMrBSP3DLGKpy0XUJtPjAOPltcVbqsTjiPFfH7JImjUNg==}
+ /@docsearch/js@3.6.0(@algolia/client-search@4.15.0)(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0):
+ resolution: {integrity: sha512-QujhqINEElrkIfKwyyyTfbsfMAYCkylInLYMRqHy7PHc8xTBQCow73tlo/Kc7oIwBrCLf0P3YhjlOeV4v8hevQ==}
dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.15.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)
- preact: 10.19.6
+ '@docsearch/react': 3.6.0(@algolia/client-search@4.15.0)(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)
+ preact: 10.20.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -4077,35 +4410,7 @@ packages:
- search-insights
dev: false
- /@docsearch/react@3.5.2(@algolia/client-search@4.15.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0):
- resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
- peerDependencies:
- '@types/react': '>= 16.8.0 < 19.0.0'
- react: '>= 16.8.0 < 19.0.0'
- react-dom: '>= 16.8.0 < 19.0.0'
- search-insights: '>= 1 < 3'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- search-insights:
- optional: true
- dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.15.0)(algoliasearch@4.22.1)(search-insights@2.13.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.15.0)(algoliasearch@4.22.1)
- '@docsearch/css': 3.5.2
- algoliasearch: 4.22.1
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- search-insights: 2.13.0
- transitivePeerDependencies:
- - '@algolia/client-search'
- dev: false
-
- /@docsearch/react@3.6.0(@algolia/client-search@4.15.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0):
+ /@docsearch/react@3.6.0(@algolia/client-search@4.15.0)(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0):
resolution: {integrity: sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -4125,95 +4430,96 @@ packages:
'@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.15.0)(algoliasearch@4.22.1)(search-insights@2.13.0)
'@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.15.0)(algoliasearch@4.22.1)
'@docsearch/css': 3.6.0
+ '@types/react': 18.2.67
algoliasearch: 4.22.1
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
search-insights: 2.13.0
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
- /@docusaurus/core@2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-/ZJ6xmm+VB9Izbn0/s6h6289cbPy2k4iYFwWDhjiLsVqwa/Y0YBBcXvStfaHccudUC3OfP+26hMk7UCjc50J6Q==}
+ /@docusaurus/core@2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA==}
engines: {node: '>=16.14'}
hasBin: true
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/generator': 7.23.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-runtime': 7.24.0(@babel/core@7.24.0)
- '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
- '@babel/preset-react': 7.23.3(@babel/core@7.24.0)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.24.0)
- '@babel/runtime': 7.24.0
- '@babel/runtime-corejs3': 7.24.0
- '@babel/traverse': 7.24.0
- '@docusaurus/cssnano-preset': 2.1.0
- '@docusaurus/logger': 2.1.0
- '@docusaurus/mdx-loader': 2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/react-loadable': 5.5.2(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-common': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
+ '@babel/core': 7.24.3
+ '@babel/generator': 7.24.1
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/runtime': 7.24.1
+ '@babel/runtime-corejs3': 7.24.1
+ '@babel/traverse': 7.24.1
+ '@docusaurus/cssnano-preset': 2.4.3
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/react-loadable': 5.5.2(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.18(postcss@8.4.35)
- babel-loader: 8.3.0(@babel/core@7.24.0)(webpack@5.76.1)
+ autoprefixer: 10.4.19(postcss@8.4.38)
+ babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
clean-css: 5.3.3
cli-table3: 0.6.3
combine-promises: 1.2.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.76.1)
- core-js: 3.36.0
- css-loader: 6.10.0(webpack@5.76.1)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.76.1)
- cssnano: 5.1.15(postcss@8.4.35)
+ copy-webpack-plugin: 11.0.0(webpack@5.91.0)
+ core-js: 3.36.1
+ css-loader: 6.10.0(webpack@5.91.0)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.91.0)
+ cssnano: 5.1.15(postcss@8.4.38)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
- eta: 1.14.2
- file-loader: 6.2.0(webpack@5.76.1)
+ eta: 2.2.0
+ file-loader: 6.2.0(webpack@5.91.0)
fs-extra: 10.1.0
html-minifier-terser: 6.1.0
html-tags: 3.3.1
- html-webpack-plugin: 5.6.0(webpack@5.76.1)
+ html-webpack-plugin: 5.6.0(webpack@5.91.0)
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.8.1(webpack@5.76.1)
- postcss: 8.4.35
- postcss-loader: 7.3.4(postcss@8.4.35)(typescript@4.9.5)(webpack@5.76.1)
+ mini-css-extract-plugin: 2.8.1(webpack@5.91.0)
+ postcss: 8.4.38
+ postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.4.2)(webpack@5.91.0)
prompts: 2.4.2
- react: 17.0.1
- react-dev-utils: 12.0.1(eslint@8.45.0)(typescript@4.9.5)(webpack@5.76.1)
- react-dom: 17.0.1(react@17.0.1)
- react-helmet-async: 1.3.0(react-dom@17.0.1)(react@17.0.1)
- react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.1)
- react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.1)
- react-router: 5.3.4(react@17.0.1)
- react-router-config: 5.1.1(react-router@5.3.4)(react@17.0.1)
- react-router-dom: 5.3.4(react@17.0.1)
+ react: 17.0.2
+ react-dev-utils: 12.0.1(eslint@8.45.0)(typescript@5.4.2)(webpack@5.91.0)
+ react-dom: 17.0.2(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0)
+ react-router: 5.3.4(react@17.0.2)
+ react-router-config: 5.1.1(react-router@5.3.4)(react@17.0.2)
+ react-router-dom: 5.3.4(react@17.0.2)
rtl-detect: 1.1.2
semver: 7.6.0
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.10(webpack@5.76.1)
+ terser-webpack-plugin: 5.3.10(webpack@5.91.0)
tslib: 2.6.2
update-notifier: 5.1.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.1)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
wait-on: 6.0.1
- webpack: 5.76.1
+ webpack: 5.91.0
webpack-bundle-analyzer: 4.10.1
- webpack-dev-server: 4.15.1(webpack@5.76.1)
+ webpack-dev-server: 4.15.2(webpack@5.91.0)
webpack-merge: 5.10.0
- webpackbar: 5.0.2(webpack@5.76.1)
+ webpackbar: 5.0.2(webpack@5.91.0)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -4234,50 +4540,50 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/cssnano-preset@2.1.0:
- resolution: {integrity: sha512-pRLewcgGhOies6pzsUROfmPStDRdFw+FgV5sMtLr5+4Luv2rty5+b/eSIMMetqUsmg3A9r9bcxHk9bKAKvx3zQ==}
+ /@docusaurus/cssnano-preset@2.4.3:
+ resolution: {integrity: sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.10(postcss@8.4.35)
- postcss: 8.4.35
- postcss-sort-media-queries: 4.4.1(postcss@8.4.35)
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-sort-media-queries: 4.4.1(postcss@8.4.38)
tslib: 2.6.2
dev: false
- /@docusaurus/logger@2.1.0:
- resolution: {integrity: sha512-uuJx2T6hDBg82joFeyobywPjSOIfeq05GfyKGHThVoXuXsu1KAzMDYcjoDxarb9CoHCI/Dor8R2MoL6zII8x1Q==}
+ /@docusaurus/logger@2.4.3:
+ resolution: {integrity: sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w==}
engines: {node: '>=16.14'}
dependencies:
chalk: 4.1.2
tslib: 2.6.2
dev: false
- /@docusaurus/mdx-loader@2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-i97hi7hbQjsD3/8OSFhLy7dbKGH8ryjEzOfyhQIn2CFBYOY3ko0vMVEf3IY9nD3Ld7amYzsZ8153RPkcnXA+Lg==}
+ /@docusaurus/mdx-loader@2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/parser': 7.24.0
- '@babel/traverse': 7.24.0
- '@docusaurus/logger': 2.1.0
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
+ '@babel/parser': 7.24.1
+ '@babel/traverse': 7.24.1
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0(webpack@5.76.1)
+ file-loader: 6.2.0(webpack@5.91.0)
fs-extra: 10.1.0
image-size: 1.1.1
mdast-util-to-string: 2.0.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
remark-emoji: 2.2.0
stringify-object: 3.3.0
tslib: 2.6.2
unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.1)
- webpack: 5.76.1
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ webpack: 5.91.0
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -4287,22 +4593,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/module-type-aliases@2.1.0(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-Z8WZaK5cis3xEtyfOT817u9xgGUauT0PuuVo85ysnFRX8n7qLN1lTPCkC+aCmFm/UcV8h/W5T4NtIsst94UntQ==}
+ /@docusaurus/module-type-aliases@2.4.3(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA==}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@docusaurus/react-loadable': 5.5.2(react@17.0.1)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
+ '@docusaurus/react-loadable': 5.5.2(react@17.0.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
'@types/history': 4.7.11
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
'@types/react-router-config': 5.0.11
'@types/react-router-dom': 5.3.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- react-helmet-async: 2.0.4(react-dom@17.0.1)(react@17.0.1)
- react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-helmet-async: 2.0.4(react-dom@17.0.2)(react@17.0.2)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -4310,31 +4616,31 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-blog@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-xEp6jlu92HMNUmyRBEeJ4mCW1s77aAEQO4Keez94cUY/Ap7G/r0Awa6xSLff7HL0Fjg8KK1bEbDy7q9voIavdg==}
+ /@docusaurus/plugin-content-blog@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/logger': 2.1.0
- '@docusaurus/mdx-loader': 2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-common': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
cheerio: 1.0.0-rc.12
feed: 4.2.2
fs-extra: 10.1.0
lodash: 4.17.21
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
reading-time: 1.5.0
tslib: 2.6.2
unist-util-visit: 2.0.3
utility-types: 3.11.0
- webpack: 5.76.1
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -4354,31 +4660,31 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-Rup5pqXrXlKGIC4VgwvioIhGWF7E/NNSlxv+JAxRYpik8VKlWsk9ysrdHIlpX+KJUCO9irnY21kQh2814mlp/Q==}
+ /@docusaurus/plugin-content-docs@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/logger': 2.1.0
- '@docusaurus/mdx-loader': 2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/module-type-aliases': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
'@types/react-router-config': 5.0.11
combine-promises: 1.2.0
fs-extra: 10.1.0
import-fresh: 3.3.0
js-yaml: 4.1.0
lodash: 4.17.21
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.6.2
utility-types: 3.11.0
- webpack: 5.76.1
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -4398,23 +4704,23 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-SwZdDZRlObHNKXTnFo7W2aF6U5ZqNVI55Nw2GCBryL7oKQSLeI0lsrMlMXdzn+fS7OuBTd3MJBO1T4Zpz0i/+g==}
+ /@docusaurus/plugin-content-pages@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/mdx-loader': 2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
fs-extra: 10.1.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.6.2
- webpack: 5.76.1
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -4434,20 +4740,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-8wsDq3OIfiy6440KLlp/qT5uk+WRHQXIXklNHEeZcar+Of0TZxCNe2FBpv+bzb/0qcdP45ia5i5WmR5OjN6DPw==}
+ /@docusaurus/plugin-debug@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
fs-extra: 10.1.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- react-json-view: 1.21.3(react-dom@17.0.1)(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-json-view: 1.21.3(react-dom@17.0.2)(react@17.0.2)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
@@ -4470,18 +4776,50 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-4cgeqIly/wcFVbbWP03y1QJJBgH8W+Bv6AVbWnsXNOZa1yB3AO6hf3ZdeQH9x20v9T2pREogVgAH0rSoVnNsgg==}
+ /@docusaurus/plugin-google-analytics@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ==}
+ engines: {node: '>=16.14'}
+ peerDependencies:
+ react: ^16.8.4 || ^17.0.0
+ react-dom: ^16.8.4 || ^17.0.0
+ dependencies:
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - '@parcel/css'
+ - '@rspack/core'
+ - '@swc/core'
+ - '@swc/css'
+ - bufferutil
+ - csso
+ - debug
+ - esbuild
+ - eslint
+ - lightningcss
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/plugin-google-gtag@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
@@ -4502,18 +4840,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-/3aDlv2dMoCeiX2e+DTGvvrdTA+v3cKQV3DbmfsF4ENhvc5nKV23nth04Z3Vq0Ci1ui6Sn80TkhGk/tiCMW2AA==}
+ /@docusaurus/plugin-google-tag-manager@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
@@ -4534,22 +4872,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-2Y6Br8drlrZ/jN9MwMBl0aoi9GAjpfyfMBYpaQZXimbK+e9VjYnujXlvQ4SxtM60ASDgtHIAzfVFBkSR/MwRUw==}
+ /@docusaurus/plugin-sitemap@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/logger': 2.1.0
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-common': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
fs-extra: 10.1.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
sitemap: 7.1.1
tslib: 2.6.2
transitivePeerDependencies:
@@ -4571,27 +4909,28 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic@2.1.0(@algolia/client-search@4.15.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)(typescript@4.9.5):
- resolution: {integrity: sha512-NQMnaq974K4BcSMXFSJBQ5itniw6RSyW+VT+6i90kGZzTwiuKZmsp0r9lC6BYAvvVMQUNJQwrETmlu7y2XKW7w==}
+ /@docusaurus/preset-classic@2.4.3(@algolia/client-search@4.15.0)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-blog': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-debug': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-google-analytics': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-google-gtag': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-sitemap': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-classic': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-common': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-search-algolia': 2.1.0(@algolia/client-search@4.15.0)(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)(typescript@4.9.5)
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-blog': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-docs': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-pages': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-debug': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-google-analytics': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-google-gtag': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-google-tag-manager': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-sitemap': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-classic': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-common': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-search-algolia': 2.4.3(@algolia/client-search@4.15.0)(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)(typescript@5.4.2)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
transitivePeerDependencies:
- '@algolia/client-search'
- '@parcel/css'
@@ -4615,47 +4954,47 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/react-loadable@5.5.2(react@17.0.1):
+ /@docusaurus/react-loadable@5.5.2(react@17.0.2):
resolution: {integrity: sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==}
peerDependencies:
react: '*'
dependencies:
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
prop-types: 15.8.1
- react: 17.0.1
+ react: 17.0.2
dev: false
- /@docusaurus/theme-classic@2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-xn8ZfNMsf7gaSy9+ClFnUu71o7oKgMo5noYSS1hy3svNifRTkrBp6+MReLDsmIaj3mLf2e7+JCBYKBFbaGzQng==}
+ /@docusaurus/theme-classic@2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/mdx-loader': 2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/module-type-aliases': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/plugin-content-blog': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-common': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-translations': 2.1.0
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-common': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
- '@mdx-js/react': 1.6.22(react@17.0.1)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-docs': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-pages': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-common': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-translations': 2.4.3
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
+ '@mdx-js/react': 1.6.22(react@17.0.2)
clsx: 1.2.1
copy-text-to-clipboard: 3.2.0
- infima: 0.2.0-alpha.42
+ infima: 0.2.0-alpha.43
lodash: 4.17.21
nprogress: 0.2.0
- postcss: 8.4.35
- prism-react-renderer: 1.3.5(react@17.0.1)
+ postcss: 8.4.38
+ prism-react-renderer: 1.3.5(react@17.0.2)
prismjs: 1.29.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- react-router-dom: 5.3.4(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-router-dom: 5.3.4(react@17.0.2)
rtlcss: 3.5.0
tslib: 2.6.2
utility-types: 3.11.0
@@ -4678,28 +5017,30 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common@2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5):
- resolution: {integrity: sha512-vT1otpVPbKux90YpZUnvknsn5zvpLf+AW1W0EDcpE9up4cDrPqfsh0QoxGHFJnobE2/qftsBFC19BneN4BH8Ag==}
+ /@docusaurus/theme-common@2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2):
+ resolution: {integrity: sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/mdx-loader': 2.1.0(@docusaurus/types@2.1.0)(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/module-type-aliases': 2.1.0(react-dom@17.0.1)(react@17.0.1)
- '@docusaurus/plugin-content-blog': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.3(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-docs': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/plugin-content-pages': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3)
'@types/history': 4.7.11
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
'@types/react-router-config': 5.0.11
clsx: 1.2.1
parse-numeric-range: 1.3.0
- prism-react-renderer: 1.3.5(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ prism-react-renderer: 1.3.5(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.6.2
+ use-sync-external-store: 1.2.0(react@17.0.2)
utility-types: 3.11.0
transitivePeerDependencies:
- '@docusaurus/types'
@@ -4721,29 +5062,29 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia@2.1.0(@algolia/client-search@4.15.0)(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)(typescript@4.9.5):
- resolution: {integrity: sha512-rNBvi35VvENhucslEeVPOtbAzBdZY/9j55gdsweGV5bYoAXy4mHB6zTGjealcB4pJ6lJY4a5g75fXXMOlUqPfg==}
+ /@docusaurus/theme-search-algolia@2.4.3(@algolia/client-search@4.15.0)(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docsearch/react': 3.6.0(@algolia/client-search@4.15.0)(react-dom@17.0.1)(react@17.0.1)(search-insights@2.13.0)
- '@docusaurus/core': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/logger': 2.1.0
- '@docusaurus/plugin-content-docs': 2.1.0(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-common': 2.1.0(@docusaurus/types@2.1.0)(eslint@8.45.0)(react-dom@17.0.1)(react@17.0.1)(typescript@4.9.5)
- '@docusaurus/theme-translations': 2.1.0
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
- '@docusaurus/utils-validation': 2.1.0(@docusaurus/types@2.1.0)
+ '@docsearch/react': 3.6.0(@algolia/client-search@4.15.0)(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.13.0)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/plugin-content-docs': 2.4.3(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-common': 2.4.3(@docusaurus/types@2.4.3)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)
+ '@docusaurus/theme-translations': 2.4.3
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
algoliasearch: 4.22.1
algoliasearch-helper: 3.16.3(algoliasearch@4.22.1)
clsx: 1.2.1
- eta: 1.14.2
+ eta: 2.2.0
fs-extra: 10.1.0
lodash: 4.17.21
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.6.2
utility-types: 3.11.0
transitivePeerDependencies:
@@ -4769,29 +5110,29 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-translations@2.1.0:
- resolution: {integrity: sha512-07n2akf2nqWvtJeMy3A+7oSGMuu5F673AovXVwY0aGAux1afzGCiqIFlYW3EP0CujvDJAEFSQi/Tetfh+95JNg==}
+ /@docusaurus/theme-translations@2.4.3:
+ resolution: {integrity: sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg==}
engines: {node: '>=16.14'}
dependencies:
fs-extra: 10.1.0
tslib: 2.6.2
dev: false
- /@docusaurus/types@2.1.0(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-BS1ebpJZnGG6esKqsjtEC9U9qSaPylPwlO7cQ1GaIE7J/kMZI3FITnNn0otXXu7c7ZTqhb6+8dOrG6fZn6fqzQ==}
+ /@docusaurus/types@2.4.3(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw==}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
commander: 5.1.0
joi: 17.12.2
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- react-helmet-async: 1.3.0(react-dom@17.0.1)(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
utility-types: 3.11.0
- webpack: 5.76.1
+ webpack: 5.91.0
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@swc/core'
@@ -4800,8 +5141,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils-common@2.1.0(@docusaurus/types@2.1.0):
- resolution: {integrity: sha512-F2vgmt4yRFgRQR2vyEFGTWeyAdmgKbtmu3sjHObF0tjjx/pN0Iw/c6eCopaH34E6tc9nO0nvp01pwW+/86d1fg==}
+ /@docusaurus/utils-common@2.4.3(@docusaurus/types@2.4.3):
+ resolution: {integrity: sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==}
engines: {node: '>=16.14'}
peerDependencies:
'@docusaurus/types': '*'
@@ -4809,16 +5150,16 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
tslib: 2.6.2
dev: false
- /@docusaurus/utils-validation@2.1.0(@docusaurus/types@2.1.0):
- resolution: {integrity: sha512-AMJzWYKL3b7FLltKtDXNLO9Y649V2BXvrnRdnW2AA+PpBnYV78zKLSCz135cuWwRj1ajNtP4onbXdlnyvCijGQ==}
+ /@docusaurus/utils-validation@2.4.3(@docusaurus/types@2.4.3):
+ resolution: {integrity: sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==}
engines: {node: '>=16.14'}
dependencies:
- '@docusaurus/logger': 2.1.0
- '@docusaurus/utils': 2.1.0(@docusaurus/types@2.1.0)
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
joi: 17.12.2
js-yaml: 4.1.0
tslib: 2.6.2
@@ -4831,8 +5172,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils@2.1.0(@docusaurus/types@2.1.0):
- resolution: {integrity: sha512-fPvrfmAuC54n8MjZuG4IysaMdmvN5A/qr7iFLbSGSyDrsbP4fnui6KdZZIa/YOLIPLec8vjZ8RIITJqF18mx4A==}
+ /@docusaurus/utils@2.4.3(@docusaurus/types@2.4.3):
+ resolution: {integrity: sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==}
engines: {node: '>=16.14'}
peerDependencies:
'@docusaurus/types': '*'
@@ -4840,10 +5181,11 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/logger': 2.1.0
- '@docusaurus/types': 2.1.0(react-dom@17.0.1)(react@17.0.1)
+ '@docusaurus/logger': 2.4.3
+ '@docusaurus/types': 2.4.3(react-dom@17.0.2)(react@17.0.2)
'@svgr/webpack': 6.5.1
- file-loader: 6.2.0(webpack@5.76.1)
+ escape-string-regexp: 4.0.0
+ file-loader: 6.2.0(webpack@5.91.0)
fs-extra: 10.1.0
github-slugger: 1.5.0
globby: 11.1.0
@@ -4854,8 +5196,8 @@ packages:
resolve-pathname: 3.0.0
shelljs: 0.8.5
tslib: 2.6.2
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.1)
- webpack: 5.76.1
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ webpack: 5.91.0
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -4869,24 +5211,41 @@ packages:
dependencies:
apache-arrow: 13.0.0
- /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@17.0.1):
+ /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@17.0.2):
resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
peerDependencies:
react: '>=16.8.0'
dependencies:
- react: 17.0.1
+ react: 17.0.2
+ dev: true
+
+ /@esbuild/aix-ppc64@0.19.12:
+ resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/aix-ppc64@0.20.2:
+ resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
dev: true
+ optional: true
- /@esbuild/android-arm64@0.17.19:
- resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
+ /@esbuild/android-arm64@0.19.12:
+ resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm64@0.18.20:
- resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
+ /@esbuild/android-arm64@0.20.2:
+ resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -4894,16 +5253,16 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.17.19:
- resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
+ /@esbuild/android-arm@0.19.12:
+ resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.18.20:
- resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
+ /@esbuild/android-arm@0.20.2:
+ resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -4911,16 +5270,16 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.17.19:
- resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
+ /@esbuild/android-x64@0.19.12:
+ resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.18.20:
- resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
+ /@esbuild/android-x64@0.20.2:
+ resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -4928,16 +5287,16 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.17.19:
- resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
+ /@esbuild/darwin-arm64@0.19.12:
+ resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.18.20:
- resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
+ /@esbuild/darwin-arm64@0.20.2:
+ resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -4945,16 +5304,16 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.17.19:
- resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
+ /@esbuild/darwin-x64@0.19.12:
+ resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.18.20:
- resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
+ /@esbuild/darwin-x64@0.20.2:
+ resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -4962,16 +5321,16 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.17.19:
- resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
+ /@esbuild/freebsd-arm64@0.19.12:
+ resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.18.20:
- resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
+ /@esbuild/freebsd-arm64@0.20.2:
+ resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -4979,16 +5338,16 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.17.19:
- resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
+ /@esbuild/freebsd-x64@0.19.12:
+ resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.18.20:
- resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
+ /@esbuild/freebsd-x64@0.20.2:
+ resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -4996,16 +5355,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.17.19:
- resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
+ /@esbuild/linux-arm64@0.19.12:
+ resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.18.20:
- resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
+ /@esbuild/linux-arm64@0.20.2:
+ resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -5013,16 +5372,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.17.19:
- resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
+ /@esbuild/linux-arm@0.19.12:
+ resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.18.20:
- resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
+ /@esbuild/linux-arm@0.20.2:
+ resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -5030,16 +5389,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.17.19:
- resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
+ /@esbuild/linux-ia32@0.19.12:
+ resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.18.20:
- resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
+ /@esbuild/linux-ia32@0.20.2:
+ resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -5047,16 +5406,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.17.19:
- resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
+ /@esbuild/linux-loong64@0.19.12:
+ resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.18.20:
- resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
+ /@esbuild/linux-loong64@0.20.2:
+ resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -5064,16 +5423,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.17.19:
- resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
+ /@esbuild/linux-mips64el@0.19.12:
+ resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.18.20:
- resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
+ /@esbuild/linux-mips64el@0.20.2:
+ resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -5081,16 +5440,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.17.19:
- resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
+ /@esbuild/linux-ppc64@0.19.12:
+ resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.18.20:
- resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
+ /@esbuild/linux-ppc64@0.20.2:
+ resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -5098,16 +5457,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.17.19:
- resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
+ /@esbuild/linux-riscv64@0.19.12:
+ resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.18.20:
- resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
+ /@esbuild/linux-riscv64@0.20.2:
+ resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -5115,16 +5474,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.17.19:
- resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
+ /@esbuild/linux-s390x@0.19.12:
+ resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.18.20:
- resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
+ /@esbuild/linux-s390x@0.20.2:
+ resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -5132,16 +5491,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.17.19:
- resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
+ /@esbuild/linux-x64@0.19.12:
+ resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.18.20:
- resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
+ /@esbuild/linux-x64@0.20.2:
+ resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -5149,16 +5508,16 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.17.19:
- resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
+ /@esbuild/netbsd-x64@0.19.12:
+ resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.18.20:
- resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
+ /@esbuild/netbsd-x64@0.20.2:
+ resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -5166,16 +5525,16 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.17.19:
- resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
+ /@esbuild/openbsd-x64@0.19.12:
+ resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.18.20:
- resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
+ /@esbuild/openbsd-x64@0.20.2:
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -5183,16 +5542,16 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.17.19:
- resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
+ /@esbuild/sunos-x64@0.19.12:
+ resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.18.20:
- resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
+ /@esbuild/sunos-x64@0.20.2:
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -5200,16 +5559,16 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.17.19:
- resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
+ /@esbuild/win32-arm64@0.19.12:
+ resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.18.20:
- resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
+ /@esbuild/win32-arm64@0.20.2:
+ resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -5217,16 +5576,16 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.17.19:
- resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
+ /@esbuild/win32-ia32@0.19.12:
+ resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.18.20:
- resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
+ /@esbuild/win32-ia32@0.20.2:
+ resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -5234,16 +5593,16 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.17.19:
- resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
+ /@esbuild/win32-x64@0.19.12:
+ resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.18.20:
- resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
+ /@esbuild/win32-x64@0.20.2:
+ resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -5260,6 +5619,16 @@ packages:
eslint: 8.45.0
eslint-visitor-keys: 3.4.3
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0):
+ resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ dependencies:
+ eslint: 8.57.0
+ eslint-visitor-keys: 3.4.3
+ dev: false
+
/@eslint-community/regexpp@4.10.0:
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
@@ -5301,13 +5670,18 @@ packages:
resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@eslint/js@8.57.0:
+ resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: false
+
/@faker-js/faker@7.6.0:
resolution: {integrity: sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==}
engines: {node: '>=14.0.0', npm: '>=6.0.0'}
dev: true
- /@faker-js/faker@8.3.1:
- resolution: {integrity: sha512-FdgpFxY6V6rLZE9mmIBb9hM0xpfvQOSNOLnzolzKwsE1DH+gC7lEKV1p1IbR0lAYyvYd5a4u3qWJzowUkw1bIw==}
+ /@faker-js/faker@8.4.1:
+ resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'}
/@fal-works/esbuild-plugin-global-externals@2.1.2:
@@ -5318,29 +5692,21 @@ packages:
resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
dependencies:
'@floating-ui/utils': 0.2.1
+ dev: false
/@floating-ui/dom@1.6.3:
resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
dependencies:
'@floating-ui/core': 1.6.0
'@floating-ui/utils': 0.2.1
-
- /@floating-ui/react-dom@2.0.8(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
- peerDependencies:
- react: '>=16.8.0'
- react-dom: '>=16.8.0'
- dependencies:
- '@floating-ui/dom': 1.6.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
+ dev: false
/@floating-ui/utils@0.2.1:
resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
+ dev: false
- /@fontsource/spectral@5.0.3:
- resolution: {integrity: sha512-bGd/waySS/RBhMarAkkjaLLEC+G3fQ7aNlccurJArxfgxx5e1AfUR8FtiUtvn/GXLSX8khdhIE7lzGkya+QQgw==}
+ /@fontsource/spectral@5.0.12:
+ resolution: {integrity: sha512-tscRgEvVW/eRnBaGRnnlg86rx0NUMGzXFNePFBIXqdZE++9hOH0RTUqtpzUR+zS037kgbkitaVqotyGY8Vq+jw==}
dev: false
/@gar/promisify@1.1.3:
@@ -5430,7 +5796,7 @@ packages:
duplexify: 4.1.3
ent: 2.2.0
extend: 3.0.2
- fast-xml-parser: 4.3.5
+ fast-xml-parser: 4.3.6
gaxios: 5.1.3
google-auth-library: 8.9.0
mime: 3.0.0
@@ -5486,10 +5852,10 @@ packages:
/@humanwhocodes/object-schema@2.0.2:
resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
- /@internationalized/date@3.5.1:
- resolution: {integrity: sha512-LUQIfwU9e+Fmutc/DpRTGXSdgYZLBegi4wygCWDSVmUdLTaMHsQyASDiJtREwanwKuQLq0hY76fCJ9J/9I2xOQ==}
+ /@internationalized/date@3.5.2:
+ resolution: {integrity: sha512-vo1yOMUt2hzp63IutEaTUxROdvQg1qlMRsbCvbay2AK2Gai7wIgCyK5weEX3nHkiLgo4qCXHijFNC/ILhlRpOQ==}
dependencies:
- '@swc/helpers': 0.5.6
+ '@swc/helpers': 0.5.7
dev: false
/@isaacs/cliui@8.0.2:
@@ -5517,14 +5883,13 @@ packages:
/@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- dev: true
/@jest/console@28.1.3:
resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
chalk: 4.1.0
jest-message-util: 28.1.3
jest-util: 28.1.3
@@ -5545,14 +5910,14 @@ packages:
'@jest/test-result': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
ansi-escapes: 4.3.2
chalk: 4.1.0
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 28.1.3
- jest-config: 28.1.3(@types/node@20.8.5)
+ jest-config: 28.1.3(@types/node@20.11.28)
jest-haste-map: 28.1.3
jest-message-util: 28.1.3
jest-regex-util: 28.0.2
@@ -5580,7 +5945,7 @@ packages:
dependencies:
'@jest/fake-timers': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-mock: 28.1.3
dev: true
@@ -5590,7 +5955,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-mock: 29.7.0
dev: true
@@ -5634,7 +5999,7 @@ packages:
dependencies:
'@jest/types': 28.1.3
'@sinonjs/fake-timers': 9.1.2
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-message-util: 28.1.3
jest-mock: 28.1.3
jest-util: 28.1.3
@@ -5646,7 +6011,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -5663,8 +6028,8 @@ packages:
- supports-color
dev: true
- /@jest/globals@29.5.0:
- resolution: {integrity: sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==}
+ /@jest/globals@29.7.0:
+ resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/environment': 29.7.0
@@ -5690,7 +6055,7 @@ packages:
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
chalk: 4.1.0
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -5759,7 +6124,7 @@ packages:
resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@jest/types': 28.1.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -5782,7 +6147,7 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -5801,17 +6166,6 @@ packages:
- supports-color
dev: true
- /@jest/types@27.5.1:
- resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 3.0.4
- '@types/node': 20.8.5
- '@types/yargs': 16.0.9
- chalk: 4.1.0
- dev: true
-
/@jest/types@28.1.3:
resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
@@ -5819,7 +6173,7 @@ packages:
'@jest/schemas': 28.1.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
'@types/yargs': 17.0.32
chalk: 4.1.0
dev: true
@@ -5831,7 +6185,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
'@types/yargs': 17.0.32
chalk: 4.1.0
@@ -5866,14 +6220,10 @@ packages:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- /@js-joda/core@5.6.1:
- resolution: {integrity: sha512-Xla/d7ZMMR6+zRd6lTio0wRZECfcfFJP7GGe9A9L4tDOlD5CX4YcZ4YZle9w58bBYzssojVapI84RraKWDQZRg==}
+ /@js-joda/core@5.6.2:
+ resolution: {integrity: sha512-ow4R+7C24xeTjiMTTZ4k6lvxj7MRBqvqLCQjThQff3RjOmIMokMP20LNYVFhGafJtUx/Xo2Qp4qU8eNoTVH0SA==}
dev: false
- /@juggle/resize-observer@3.4.0:
- resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
- dev: true
-
/@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
dev: false
@@ -5892,14 +6242,6 @@ packages:
dependencies:
'@lezer/common': 1.2.1
- /@lmdb/lmdb-darwin-arm64@2.5.2:
- resolution: {integrity: sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@lmdb/lmdb-darwin-arm64@2.7.11:
resolution: {integrity: sha512-r6+vYq2vKzE+vgj/rNVRMwAevq0+ZR9IeMFIqcSga+wMtMdXQ27KqQ7uS99/yXASg29bos7yHP3yk4x6Iio0lw==}
cpu: [arm64]
@@ -5916,14 +6258,6 @@ packages:
dev: true
optional: true
- /@lmdb/lmdb-darwin-x64@2.5.2:
- resolution: {integrity: sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@lmdb/lmdb-darwin-x64@2.7.11:
resolution: {integrity: sha512-jhj1aB4K8ycRL1HOQT5OtzlqOq70jxUQEWRN9Gqh3TIDN30dxXtiHi6EWF516tzw6v2+3QqhDMJh8O6DtTGG8Q==}
cpu: [x64]
@@ -5940,14 +6274,6 @@ packages:
dev: true
optional: true
- /@lmdb/lmdb-linux-arm64@2.5.2:
- resolution: {integrity: sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@lmdb/lmdb-linux-arm64@2.7.11:
resolution: {integrity: sha512-7xGEfPPbmVJWcY2Nzqo11B9Nfxs+BAsiiaY/OcT4aaTDdykKeCjvKMQJA3KXCtZ1AtiC9ljyGLi+BfUwdulY5A==}
cpu: [arm64]
@@ -5964,14 +6290,6 @@ packages:
dev: true
optional: true
- /@lmdb/lmdb-linux-arm@2.5.2:
- resolution: {integrity: sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@lmdb/lmdb-linux-arm@2.7.11:
resolution: {integrity: sha512-dHfLFVSrw/v5X5lkwp0Vl7+NFpEeEYKfMG2DpdFJnnG1RgHQZngZxCaBagFoaJGykRpd2DYF1AeuXBFrAUAXfw==}
cpu: [arm]
@@ -5988,14 +6306,6 @@ packages:
dev: true
optional: true
- /@lmdb/lmdb-linux-x64@2.5.2:
- resolution: {integrity: sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@lmdb/lmdb-linux-x64@2.7.11:
resolution: {integrity: sha512-vUKI3JrREMQsXX8q0Eq5zX2FlYCKWMmLiCyyJNfZK0Uyf14RBg9VtB3ObQ41b4swYh2EWaltasWVe93Y8+KDng==}
cpu: [x64]
@@ -6012,14 +6322,6 @@ packages:
dev: true
optional: true
- /@lmdb/lmdb-win32-x64@2.5.2:
- resolution: {integrity: sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@lmdb/lmdb-win32-x64@2.7.11:
resolution: {integrity: sha512-BJwkHlSUgtB+Ei52Ai32M1AOMerSlzyIGA/KC4dAGL+GGwVMdwG8HGCOA2TxP3KjhbgDPMYkv7bt/NmOmRIFng==}
cpu: [x64]
@@ -6051,7 +6353,7 @@ packages:
/@manypkg/find-root@1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
@@ -6060,7 +6362,7 @@ packages:
/@manypkg/get-packages@1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -6072,7 +6374,7 @@ packages:
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
dependencies:
- detect-libc: 2.0.2
+ detect-libc: 2.0.3
https-proxy-agent: 5.0.1
make-dir: 3.1.0
node-fetch: 2.7.0
@@ -6080,7 +6382,7 @@ packages:
npmlog: 5.0.1
rimraf: 3.0.2
semver: 7.6.0
- tar: 6.2.0
+ tar: 6.2.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -6111,62 +6413,55 @@ packages:
- supports-color
dev: false
- /@mdx-js/react@1.6.21(react@17.0.1):
- resolution: {integrity: sha512-CgSNT9sq2LAlhEbVlPg7DwUQkypz+CWaWGcJbkgmp9WCAy6vW33CQ44UbKPiH3wet9o+UbXeQOqzZd041va83g==}
- peerDependencies:
- react: ^16.13.1 || ^17.0.0
- dependencies:
- react: 17.0.1
- dev: false
-
- /@mdx-js/react@1.6.22(react@17.0.1):
+ /@mdx-js/react@1.6.22(react@17.0.2):
resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
peerDependencies:
react: ^16.13.1 || ^17.0.0
dependencies:
- react: 17.0.1
+ react: 17.0.2
dev: false
- /@mdx-js/react@2.3.0(react@17.0.1):
- resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==}
+ /@mdx-js/react@3.0.1(@types/react@18.2.67)(react@17.0.2):
+ resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
peerDependencies:
+ '@types/react': '>=16'
react: '>=16'
dependencies:
- '@types/mdx': 2.0.11
- '@types/react': 18.2.65
- react: 17.0.1
+ '@types/mdx': 2.0.12
+ '@types/react': 18.2.67
+ react: 17.0.2
dev: true
/@mdx-js/util@1.6.22:
resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
dev: false
- /@melt-ui/svelte@0.61.2(svelte@3.59.2):
+ /@melt-ui/svelte@0.61.2(svelte@4.2.12):
resolution: {integrity: sha512-BHkD9G31zQBToA4euDRBgTQRvWxT9scufOVCXgDO6HKTvyxFspbWT2bgiSFqAK4BbAGDn9Ao36Q8F9O71KN4OQ==}
peerDependencies:
svelte: '>=3 <5'
dependencies:
'@floating-ui/core': 1.6.0
'@floating-ui/dom': 1.6.3
- '@internationalized/date': 3.5.1
+ '@internationalized/date': 3.5.2
dequal: 2.0.3
focus-trap: 7.5.4
nanoid: 4.0.2
- svelte: 3.59.2
+ svelte: 4.2.12
dev: false
- /@melt-ui/svelte@0.65.2(svelte@3.59.2):
+ /@melt-ui/svelte@0.65.2(svelte@4.2.12):
resolution: {integrity: sha512-BpsSl9Bjp1++8U3+LaDOFUoX/PFQ9N7QWFhlFdUEZduhrbVyU70v9A459SKrQ+esFSjvh1AvqJYkMAUJXJlAmQ==}
peerDependencies:
svelte: '>=3 <5'
dependencies:
'@floating-ui/core': 1.6.0
'@floating-ui/dom': 1.6.3
- '@internationalized/date': 3.5.1
+ '@internationalized/date': 3.5.2
dequal: 2.0.3
focus-trap: 7.5.4
nanoid: 4.0.2
- svelte: 3.59.2
+ svelte: 4.2.12
dev: false
/@mischnic/json-sourcemap@0.1.1:
@@ -6292,18 +6587,19 @@ packages:
engines: {node: '>=8.0.0'}
dev: false
- /@parcel/bundler-default@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-yJvRsNWWu5fVydsWk3O2L4yIy3UZiKWO2cPDukGOIWMgp/Vbpp+2Ct5IygVRtE22bnseW/E/oe0PV3d2IkEJGg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/bundler-default@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-3ybN74oYNMKyjD6V20c9Gerdbh7teeNvVMwIoHIQMzuIFT6IGX53PyOLlOKRLbjxMc0TMimQQxIt2eQqxR5LsA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/graph': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/graph': 3.2.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
+ '@parcel/utils': 2.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
/@parcel/cache@2.12.0(@parcel/core@2.12.0):
@@ -6321,34 +6617,6 @@ packages:
- '@swc/helpers'
dev: true
- /@parcel/cache@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-FX5ZpTEkxvq/yvWklRHDESVRz+c7sLTXgFuzz6uEnBcXV38j6dMSikflNpHA6q/L4GKkCqRywm9R6XQwhwIMyw==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.12.0
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/fs': 2.12.0(@parcel/core@2.8.3)
- '@parcel/logger': 2.12.0
- '@parcel/utils': 2.12.0
- lmdb: 2.8.5
- transitivePeerDependencies:
- - '@swc/helpers'
- dev: true
-
- /@parcel/cache@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.8.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/fs': 2.8.3(@parcel/core@2.8.3)
- '@parcel/logger': 2.8.3
- '@parcel/utils': 2.8.3
- lmdb: 2.5.2
- dev: true
-
/@parcel/cache@2.9.3(@parcel/core@2.12.0):
resolution: {integrity: sha512-Bj/H2uAJJSXtysG7E/x4EgTrE2hXmm7td/bc97K8M9N7+vQjxf7xb0ebgqe84ePVMkj4MVQSMEJkEucXVx4b0Q==}
engines: {node: '>= 12.0.0'}
@@ -6362,28 +6630,8 @@ packages:
lmdb: 2.7.11
dev: true
- /@parcel/cache@2.9.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-Bj/H2uAJJSXtysG7E/x4EgTrE2hXmm7td/bc97K8M9N7+vQjxf7xb0ebgqe84ePVMkj4MVQSMEJkEucXVx4b0Q==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/fs': 2.9.3(@parcel/core@2.8.3)
- '@parcel/logger': 2.9.3
- '@parcel/utils': 2.9.3
- lmdb: 2.7.11
- dev: true
-
- /@parcel/codeframe@2.12.0:
- resolution: {integrity: sha512-v2VmneILFiHZJTxPiR7GEF1wey1/IXPdZMcUlNXBiPZyWDfcuNgGGVQkx/xW561rULLIvDPharOMdxz5oHOKQg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- chalk: 4.1.0
- dev: true
-
- /@parcel/codeframe@2.8.3:
- resolution: {integrity: sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg==}
+ /@parcel/codeframe@2.12.0:
+ resolution: {integrity: sha512-v2VmneILFiHZJTxPiR7GEF1wey1/IXPdZMcUlNXBiPZyWDfcuNgGGVQkx/xW561rULLIvDPharOMdxz5oHOKQg==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.0
@@ -6396,52 +6644,55 @@ packages:
chalk: 4.1.0
dev: true
- /@parcel/compressor-raw@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/compressor-raw@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-h41Q3X7ZAQ9wbQ2csP8QGrwepasLZdXiuEdpUryDce6rF9ZiHoJ97MRpdLxOhOPyASTw/xDgE1xyaPQr0Q3f5A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/config-default@2.8.3(@parcel/core@2.8.3)(postcss@8.4.35)(typescript@5.2.2):
- resolution: {integrity: sha512-o/A/mbrO6X/BfGS65Sib8d6SSG45NYrNooNBkH/o7zbOBSRQxwyTlysleK1/3Wa35YpvFyLOwgfakqCtbGy4fw==}
- peerDependencies:
- '@parcel/core': ^2.8.3
- dependencies:
- '@parcel/bundler-default': 2.8.3(@parcel/core@2.8.3)
- '@parcel/compressor-raw': 2.8.3(@parcel/core@2.8.3)
- '@parcel/core': 2.8.3
- '@parcel/namer-default': 2.8.3(@parcel/core@2.8.3)
- '@parcel/optimizer-css': 2.8.3(@parcel/core@2.8.3)
- '@parcel/optimizer-htmlnano': 2.8.3(@parcel/core@2.8.3)(postcss@8.4.35)(typescript@5.2.2)
- '@parcel/optimizer-image': 2.8.3(@parcel/core@2.8.3)
- '@parcel/optimizer-svgo': 2.8.3(@parcel/core@2.8.3)
- '@parcel/optimizer-terser': 2.8.3(@parcel/core@2.8.3)
- '@parcel/packager-css': 2.8.3(@parcel/core@2.8.3)
- '@parcel/packager-html': 2.8.3(@parcel/core@2.8.3)
- '@parcel/packager-js': 2.8.3(@parcel/core@2.8.3)
- '@parcel/packager-raw': 2.8.3(@parcel/core@2.8.3)
- '@parcel/packager-svg': 2.8.3(@parcel/core@2.8.3)
- '@parcel/reporter-dev-server': 2.8.3(@parcel/core@2.8.3)
- '@parcel/resolver-default': 2.8.3(@parcel/core@2.8.3)
- '@parcel/runtime-browser-hmr': 2.8.3(@parcel/core@2.8.3)
- '@parcel/runtime-js': 2.8.3(@parcel/core@2.8.3)
- '@parcel/runtime-react-refresh': 2.8.3(@parcel/core@2.8.3)
- '@parcel/runtime-service-worker': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-babel': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-css': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-html': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-image': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-js': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-json': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-postcss': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-posthtml': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-raw': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-react-refresh-wrap': 2.8.3(@parcel/core@2.8.3)
- '@parcel/transformer-svg': 2.8.3(@parcel/core@2.8.3)
+ /@parcel/config-default@2.12.0(@parcel/core@2.12.0)(postcss@8.4.38)(typescript@5.4.2):
+ resolution: {integrity: sha512-dPNe2n9eEsKRc1soWIY0yToMUPirPIa2QhxcCB3Z5RjpDGIXm0pds+BaiqY6uGLEEzsjhRO0ujd4v2Rmm0vuFg==}
+ peerDependencies:
+ '@parcel/core': ^2.12.0
+ dependencies:
+ '@parcel/bundler-default': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/compressor-raw': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/core': 2.12.0
+ '@parcel/namer-default': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/optimizer-css': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0)(postcss@8.4.38)(typescript@5.4.2)
+ '@parcel/optimizer-image': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/optimizer-svgo': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/optimizer-swc': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/packager-css': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/packager-html': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/packager-js': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/packager-raw': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/packager-svg': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/packager-wasm': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/resolver-default': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/runtime-browser-hmr': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/runtime-js': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/runtime-react-refresh': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/runtime-service-worker': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-babel': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-css': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-html': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-image': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-js': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-json': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-postcss': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-posthtml': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-raw': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-react-refresh-wrap': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/transformer-svg': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
+ - '@swc/helpers'
- cssnano
- postcss
- purgecss
@@ -6485,36 +6736,6 @@ packages:
- '@swc/helpers'
dev: true
- /@parcel/core@2.8.3:
- resolution: {integrity: sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@mischnic/json-sourcemap': 0.1.1
- '@parcel/cache': 2.8.3(@parcel/core@2.8.3)
- '@parcel/diagnostic': 2.8.3
- '@parcel/events': 2.8.3
- '@parcel/fs': 2.8.3(@parcel/core@2.8.3)
- '@parcel/graph': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/logger': 2.8.3
- '@parcel/package-manager': 2.8.3(@parcel/core@2.8.3)
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/source-map': 2.1.1
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- abortcontroller-polyfill: 1.7.5
- base-x: 3.0.9
- browserslist: 4.23.0
- clone: 2.1.2
- dotenv: 7.0.0
- dotenv-expand: 5.1.0
- json5: 2.2.3
- msgpackr: 1.10.1
- nullthrows: 1.1.1
- semver: 5.7.2
- dev: true
-
/@parcel/diagnostic@2.12.0:
resolution: {integrity: sha512-8f1NOsSFK+F4AwFCKynyIu9Kr/uWHC+SywAv4oS6Bv3Acig0gtwUjugk0C9UaB8ztBZiW5TQZhw+uPZn9T/lJA==}
engines: {node: '>= 12.0.0'}
@@ -6523,14 +6744,6 @@ packages:
nullthrows: 1.1.1
dev: true
- /@parcel/diagnostic@2.8.3:
- resolution: {integrity: sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@mischnic/json-sourcemap': 0.1.1
- nullthrows: 1.1.1
- dev: true
-
/@parcel/diagnostic@2.9.3:
resolution: {integrity: sha512-6jxBdyB3D7gP4iE66ghUGntWt2v64E6EbD4AetZk+hNJpgudOOPsKTovcMi/i7I4V0qD7WXSF4tvkZUoac0jwA==}
engines: {node: '>= 12.0.0'}
@@ -6544,23 +6757,11 @@ packages:
engines: {node: '>= 12.0.0'}
dev: true
- /@parcel/events@2.8.3:
- resolution: {integrity: sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w==}
- engines: {node: '>= 12.0.0'}
- dev: true
-
/@parcel/events@2.9.3:
resolution: {integrity: sha512-K0Scx+Bx9f9p1vuShMzNwIgiaZUkxEnexaKYHYemJrM7pMAqxIuIqhnvwurRCsZOVLUJPDDNJ626cWTc5vIq+A==}
engines: {node: '>= 12.0.0'}
dev: true
- /@parcel/fs-search@2.8.3:
- resolution: {integrity: sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- detect-libc: 1.0.3
- dev: true
-
/@parcel/fs-search@2.9.3:
resolution: {integrity: sha512-nsNz3bsOpwS+jphcd+XjZL3F3PDq9lik0O8HPm5f6LYkqKWT+u/kgQzA8OkAHCR3q96LGiHxUywHPEBc27vI4Q==}
engines: {node: '>= 12.0.0'}
@@ -6582,36 +6783,6 @@ packages:
- '@swc/helpers'
dev: true
- /@parcel/fs@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-NnFkuvou1YBtPOhTdZr44WN7I60cGyly2wpHzqRl62yhObyi1KvW0SjwOMa0QGNcBOIzp4G0CapoZ93hD0RG5Q==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.12.0
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/rust': 2.12.0
- '@parcel/types': 2.12.0(@parcel/core@2.8.3)
- '@parcel/utils': 2.12.0
- '@parcel/watcher': 2.4.1
- '@parcel/workers': 2.12.0(@parcel/core@2.8.3)
- transitivePeerDependencies:
- - '@swc/helpers'
- dev: true
-
- /@parcel/fs@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.8.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/fs-search': 2.8.3
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
- '@parcel/watcher': 2.4.1
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- dev: true
-
/@parcel/fs@2.9.3(@parcel/core@2.12.0):
resolution: {integrity: sha512-/PrRKgCRw22G7rNPSpgN3Q+i2nIkZWuvIOAdMG4KWXC4XLp8C9jarNaWd5QEQ75amjhQSl3oUzABzkdCtkKrgg==}
engines: {node: '>= 12.0.0'}
@@ -6626,27 +6797,6 @@ packages:
'@parcel/workers': 2.9.3(@parcel/core@2.12.0)
dev: true
- /@parcel/fs@2.9.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-/PrRKgCRw22G7rNPSpgN3Q+i2nIkZWuvIOAdMG4KWXC4XLp8C9jarNaWd5QEQ75amjhQSl3oUzABzkdCtkKrgg==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/fs-search': 2.9.3
- '@parcel/types': 2.9.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.9.3
- '@parcel/watcher': 2.4.1
- '@parcel/workers': 2.9.3(@parcel/core@2.8.3)
- dev: true
-
- /@parcel/graph@2.8.3:
- resolution: {integrity: sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- nullthrows: 1.1.1
- dev: true
-
/@parcel/graph@3.2.0:
resolution: {integrity: sha512-xlrmCPqy58D4Fg5umV7bpwDx5Vyt7MlnQPxW68vae5+BA4GSWetfZt+Cs5dtotMG2oCHzZxhIPt7YZ7NRyQzLA==}
engines: {node: '>= 12.0.0'}
@@ -6654,14 +6804,6 @@ packages:
nullthrows: 1.1.1
dev: true
- /@parcel/hash@2.8.3:
- resolution: {integrity: sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- detect-libc: 1.0.3
- xxhash-wasm: 0.4.2
- dev: true
-
/@parcel/hash@2.9.3:
resolution: {integrity: sha512-qlH5B85XLzVAeijgKPjm1gQu35LoRYX/8igsjnN8vOlbc3O8BYAUIutU58fbHbtE8MJPbxQQUw7tkTjeoujcQQ==}
engines: {node: '>= 12.0.0'}
@@ -6677,14 +6819,6 @@ packages:
'@parcel/events': 2.12.0
dev: true
- /@parcel/logger@2.8.3:
- resolution: {integrity: sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/events': 2.8.3
- dev: true
-
/@parcel/logger@2.9.3:
resolution: {integrity: sha512-5FNBszcV6ilGFcijEOvoNVG6IUJGsnMiaEnGQs7Fvc1dktTjEddnoQbIYhcSZL63wEmzBZOgkT5yDMajJ/41jw==}
engines: {node: '>= 12.0.0'}
@@ -6700,13 +6834,6 @@ packages:
chalk: 4.1.0
dev: true
- /@parcel/markdown-ansi@2.8.3:
- resolution: {integrity: sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- chalk: 4.1.0
- dev: true
-
/@parcel/markdown-ansi@2.9.3:
resolution: {integrity: sha512-/Q4X8F2aN8UNjAJrQ5NfK2OmZf6shry9DqetUSEndQ0fHonk78WKt6LT0zSKEBEW/bB/bXk6mNMsCup6L8ibjQ==}
engines: {node: '>= 12.0.0'}
@@ -6714,25 +6841,16 @@ packages:
chalk: 4.1.0
dev: true
- /@parcel/namer-default@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-tJ7JehZviS5QwnxbARd8Uh63rkikZdZs1QOyivUhEvhN+DddSAVEdQLHGPzkl3YRk0tjFhbqo+Jci7TpezuAMw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/namer-default@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-9DNKPDHWgMnMtqqZIMiEj/R9PNWW16lpnlHjwK3ciRlMPgjPJ8+UNc255teZODhX0T17GOzPdGbU/O/xbxVPzA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- dev: true
-
- /@parcel/node-resolver-core@2.8.3:
- resolution: {integrity: sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/utils': 2.8.3
- nullthrows: 1.1.1
- semver: 5.7.2
+ - '@swc/helpers'
dev: true
/@parcel/node-resolver-core@3.0.3(@parcel/core@2.12.0):
@@ -6749,20 +6867,6 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/node-resolver-core@3.0.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-AjxNcZVHHJoNT/A99PKIdFtwvoze8PAiC3yz8E/dRggrDIOboUEodeQYV5Aq++aK76uz/iOP0tST2T8A5rhb1A==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@mischnic/json-sourcemap': 0.1.1
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.9.3
- nullthrows: 1.1.1
- semver: 7.6.0
- transitivePeerDependencies:
- - '@parcel/core'
- dev: true
-
/@parcel/node-resolver-core@3.3.0(@parcel/core@2.12.0):
resolution: {integrity: sha512-rhPW9DYPEIqQBSlYzz3S0AjXxjN6Ub2yS6tzzsW/4S3Gpsgk/uEq4ZfxPvoPf/6TgZndVxmKwpmxaKtGMmf3cA==}
engines: {node: '>= 12.0.0'}
@@ -6778,47 +6882,34 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/node-resolver-core@3.3.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-rhPW9DYPEIqQBSlYzz3S0AjXxjN6Ub2yS6tzzsW/4S3Gpsgk/uEq4ZfxPvoPf/6TgZndVxmKwpmxaKtGMmf3cA==}
- engines: {node: '>= 12.0.0'}
+ /@parcel/optimizer-css@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-ifbcC97fRzpruTjaa8axIFeX4MjjSIlQfem3EJug3L2AVqQUXnM1XO8L0NaXGNLTW2qnh1ZjIJ7vXT/QhsphsA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@mischnic/json-sourcemap': 0.1.1
'@parcel/diagnostic': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.8.3)
- '@parcel/rust': 2.12.0
- '@parcel/utils': 2.12.0
- nullthrows: 1.1.1
- semver: 7.6.0
- transitivePeerDependencies:
- - '@parcel/core'
- dev: true
-
- /@parcel/optimizer-css@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-JotGAWo8JhuXsQDK0UkzeQB0UR5hDAKvAviXrjqB4KM9wZNLhLleeEAW4Hk8R9smCeQFP6Xg/N/NkLDpqMwT3g==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
- dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
+ '@parcel/utils': 2.12.0
browserslist: 4.23.0
- lightningcss: 1.24.0
+ lightningcss: 1.24.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/optimizer-htmlnano@2.8.3(@parcel/core@2.8.3)(postcss@8.4.35)(typescript@5.2.2):
- resolution: {integrity: sha512-L8/fHbEy8Id2a2E0fwR5eKGlv9VYDjrH9PwdJE9Za9v1O/vEsfl/0T/79/x129l5O0yB6EFQkFa20MiK3b+vOg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0)(postcss@8.4.38)(typescript@5.4.2):
+ resolution: {integrity: sha512-MfPMeCrT8FYiOrpFHVR+NcZQlXAptK2r4nGJjfT+ndPBhEEZp4yyL7n1y7HfX9geg5altc4WTb4Gug7rCoW8VQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- htmlnano: 2.1.0(postcss@8.4.35)(svgo@2.8.0)(typescript@5.2.2)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ htmlnano: 2.1.0(postcss@8.4.38)(svgo@2.8.0)(typescript@5.4.2)
nullthrows: 1.1.1
posthtml: 0.16.6
svgo: 2.8.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
- cssnano
- postcss
- purgecss
@@ -6829,43 +6920,48 @@ packages:
- uncss
dev: true
- /@parcel/optimizer-image@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-SD71sSH27SkCDNUNx9A3jizqB/WIJr3dsfp+JZGZC42tpD/Siim6Rqy9M4To/BpMMQIIiEXa5ofwS+DgTEiEHQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/optimizer-image@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-bo1O7raeAIbRU5nmNVtx8divLW9Xqn0c57GVNGeAK4mygnQoqHqRZ0mR9uboh64pxv6ijXZHPhKvU9HEpjPjBQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
+ peerDependencies:
+ '@parcel/core': ^2.12.0
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- detect-libc: 1.0.3
+ '@parcel/core': 2.12.0
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
+ '@parcel/utils': 2.12.0
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- - '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/optimizer-svgo@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-9KQed99NZnQw3/W4qBYVQ7212rzA9EqrQG019TIWJzkA9tjGBMIm2c/nXpK1tc3hQ3e7KkXkFCQ3C+ibVUnHNA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/optimizer-svgo@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-Kyli+ZZXnoonnbeRQdoWwee9Bk2jm/49xvnfb+2OO8NN0d41lblBoRhOyFiScRnJrw7eVl1Xrz7NTkXCIO7XFQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
svgo: 2.8.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/optimizer-terser@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-9EeQlN6zIeUWwzrzu6Q2pQSaYsYGah8MtiQ/hog9KEPlYTP60hBv/+utDyYEHSQhL7y5ym08tPX5GzBvwAD/dA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/optimizer-swc@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-iBi6LZB3lm6WmbXfzi8J3DCVPmn4FN2lw7DGXxUXu7MouDPVWfTsM6U/5TkSHJRNRogZ2gqy5q9g34NPxHbJcw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
+ '@parcel/utils': 2.12.0
+ '@swc/core': 1.4.8
nullthrows: 1.1.1
- terser: 5.29.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
/@parcel/package-manager@2.12.0(@parcel/core@2.12.0):
@@ -6882,48 +6978,12 @@ packages:
'@parcel/types': 2.12.0(@parcel/core@2.12.0)
'@parcel/utils': 2.12.0
'@parcel/workers': 2.12.0(@parcel/core@2.12.0)
- '@swc/core': 1.4.6
- semver: 7.6.0
- transitivePeerDependencies:
- - '@swc/helpers'
- dev: true
-
- /@parcel/package-manager@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-0nvAezcjPx9FT+hIL+LS1jb0aohwLZXct7jAh7i0MLMtehOi0z1Sau+QpgMlA9rfEZZ1LIeFdnZZwqSy7Ccspw==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.12.0
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.8.3)
- '@parcel/logger': 2.12.0
- '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.8.3)
- '@parcel/types': 2.12.0(@parcel/core@2.8.3)
- '@parcel/utils': 2.12.0
- '@parcel/workers': 2.12.0(@parcel/core@2.8.3)
- '@swc/core': 1.4.6
+ '@swc/core': 1.4.8
semver: 7.6.0
transitivePeerDependencies:
- '@swc/helpers'
dev: true
- /@parcel/package-manager@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.8.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.8.3
- '@parcel/fs': 2.8.3(@parcel/core@2.8.3)
- '@parcel/logger': 2.8.3
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- semver: 5.7.2
- dev: true
-
/@parcel/package-manager@2.9.3(@parcel/core@2.12.0):
resolution: {integrity: sha512-NH6omcNTEupDmW4Lm1e4NUYBjdqkURxgZ4CNESESInHJe6tblVhNB8Rpr1ar7zDar7cly9ILr8P6N3Ei7bTEjg==}
engines: {node: '>= 12.0.0'}
@@ -6941,82 +7001,73 @@ packages:
semver: 7.6.0
dev: true
- /@parcel/package-manager@2.9.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-NH6omcNTEupDmW4Lm1e4NUYBjdqkURxgZ4CNESESInHJe6tblVhNB8Rpr1ar7zDar7cly9ILr8P6N3Ei7bTEjg==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.8.3)
- '@parcel/logger': 2.9.3
- '@parcel/node-resolver-core': 3.0.3(@parcel/core@2.8.3)
- '@parcel/types': 2.9.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.8.3)
- semver: 7.6.0
- dev: true
-
- /@parcel/packager-css@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-WyvkMmsurlHG8d8oUVm7S+D+cC/T3qGeqogb7sTI52gB6uiywU7lRCizLNqGFyFGIxcVTVHWnSHqItBcLN76lA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/packager-css@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-j3a/ODciaNKD19IYdWJT+TP+tnhhn5koBGBWWtrKSu0UxWpnezIGZetit3eE+Y9+NTePalMkvpIlit2eDhvfJA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
+ '@parcel/utils': 2.12.0
+ lightningcss: 1.24.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/packager-html@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-OhPu1Hx1RRKJodpiu86ZqL8el2Aa4uhBHF6RAL1Pcrh2EhRRlPf70Sk0tC22zUpYL7es+iNKZ/n0Rl+OWSHWEw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/packager-html@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-PpvGB9hFFe+19NXGz2ApvPrkA9GwEqaDAninT+3pJD57OVBaxB8U+HN4a5LICKxjUppPPqmrLb6YPbD65IX4RA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/packager-js@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-0pGKC3Ax5vFuxuZCRB+nBucRfFRz4ioie19BbDxYnvBxrd4M3FIu45njf6zbBYsI9eXqaDnL1b3DcZJfYqtIzw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/packager-js@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-viMF+FszITRRr8+2iJyk+4ruGiL27Y6AF7hQ3xbJfzqnmbOhGFtLTQwuwhOLqN/mWR2VKdgbLpZSarWaO3yAMg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
globals: 13.24.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/packager-raw@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/packager-raw@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-tJZqFbHqP24aq1F+OojFbQIc09P/u8HAW5xfndCrFnXpW4wTgM3p03P0xfw3gnNq+TtxHJ8c3UFE5LnXNNKhYA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/packager-svg@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-mvIoHpmv5yzl36OjrklTDFShLUfPFTwrmp1eIwiszGdEBuQaX7JVI3Oo2jbVQgcN4W7J6SENzGQ3Q5hPTW3pMw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/packager-svg@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-ldaGiacGb2lLqcXas97k8JiZRbAnNREmcvoY2W2dvW4loVuDT9B9fU777mbV6zODpcgcHWsLL3lYbJ5Lt3y9cg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
posthtml: 0.16.6
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
/@parcel/packager-ts@2.12.0(@parcel/core@2.12.0):
@@ -7026,14 +7077,13 @@ packages:
'@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
- - '@swc/helpers'
dev: true
- /@parcel/packager-ts@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-8wR0BNN2NBD+IIU0tjioK+lRD4p2Qi/fKxDH5ixEW912tRV+Vd4kE8k++U6YQIpSlK4FRnjFod5zYYhNSLuiXg==}
- engines: {node: '>= 12.0.0', parcel: ^2.12.0}
+ /@parcel/packager-wasm@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-fYqZzIqO9fGYveeImzF8ll6KRo2LrOXfD+2Y5U3BiX/wp9wv17dz50QLDQm9hmTcKGWxK4yWqKQh+Evp/fae7A==}
+ engines: {node: '>=12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
- '@swc/helpers'
@@ -7044,26 +7094,6 @@ packages:
engines: {node: '>= 12.0.0'}
dependencies:
'@parcel/types': 2.12.0(@parcel/core@2.12.0)
- transitivePeerDependencies:
- - '@parcel/core'
- - '@swc/helpers'
- dev: true
-
- /@parcel/plugin@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-nc/uRA8DiMoe4neBbzV6kDndh/58a4wQuGKw5oEoIwBCHUvE2W8ZFSu7ollSXUGRzfacTt4NdY8TwS73ScWZ+g==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@parcel/types': 2.12.0(@parcel/core@2.8.3)
- transitivePeerDependencies:
- - '@parcel/core'
- - '@swc/helpers'
- dev: true
-
- /@parcel/plugin@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
transitivePeerDependencies:
- '@parcel/core'
dev: true
@@ -7077,15 +7107,6 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/plugin@2.9.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-qN85Gqr2GMuxX1dT1mnuO9hOcvlEv1lrYrCxn7CJN2nUhbwcfG+LEvcrCzCOJ6XtIHm+ZBV9h9p7FfoPLvpw+g==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@parcel/types': 2.9.3(@parcel/core@2.8.3)
- transitivePeerDependencies:
- - '@parcel/core'
- dev: true
-
/@parcel/profiler@2.12.0:
resolution: {integrity: sha512-q53fvl5LDcFYzMUtSusUBZSjQrKjMlLEBgKeQHFwkimwR1mgoseaDBDuNz0XvmzDzF1UelJ02TUKCGacU8W2qA==}
engines: {node: '>= 12.0.0'}
@@ -7104,81 +7125,100 @@ packages:
chrome-trace-event: 1.0.3
dev: true
- /@parcel/reporter-cli@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-3sJkS6tFFzgIOz3u3IpD/RsmRxvOKKiQHOTkiiqRt1l44mMDGKS7zANRnJYsQzdCsgwc9SOP30XFgJwtoVlMbw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/reporter-cli@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-TqKsH4GVOLPSCanZ6tcTPj+rdVHERnt5y4bwTM82cajM21bCX1Ruwp8xOKU+03091oV2pv5ieB18pJyRF7IpIw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
chalk: 4.1.0
term-size: 2.2.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/reporter-dev-server@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-Y8C8hzgzTd13IoWTj+COYXEyCkXfmVJs3//GDBsH22pbtSFMuzAZd+8J9qsCo0EWpiDow7V9f1LischvEh3FbQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/reporter-dev-server@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-tIcDqRvAPAttRlTV28dHcbWT5K2r/MBFks7nM4nrEDHWtnrCwimkDmZTc1kD8QOCCjGVwRHcQybpHvxfwol6GA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/resolver-default@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-k0B5M/PJ+3rFbNj4xZSBr6d6HVIe6DH/P3dClLcgBYSXAvElNDfXgtIimbjCyItFkW9/BfcgOVKEEIZOeySH/A==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/reporter-tracer@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-g8rlu9GxB8Ut/F8WGx4zidIPQ4pcYFjU9bZO+fyRIPrSUFH2bKijCnbZcr4ntqzDGx74hwD6cCG4DBoleq2UlQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/node-resolver-core': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- transitivePeerDependencies:
- - '@parcel/core'
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
+ chrome-trace-event: 1.0.3
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/runtime-browser-hmr@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-2O1PYi2j/Q0lTyGNV3JdBYwg4rKo6TEVFlYGdd5wCYU9ZIN9RRuoCnWWH2qCPj3pjIVtBeppYxzfVjPEHINWVg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/resolver-default@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-uuhbajTax37TwCxu7V98JtRLiT6hzE4VYSu5B7Qkauy14/WFt2dz6GOUXPgVsED569/hkxebPx3KCMtZW6cHHA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/runtime-js@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-IRja0vNKwvMtPgIqkBQh0QtRn0XcxNC8HU1jrgWGRckzu10qJWO+5ULgtOeR4pv9krffmMPqywGXw6l/gvJKYQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/runtime-browser-hmr@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-4ZLp2FWyD32r0GlTulO3+jxgsA3oO1P1b5oO2IWuWilfhcJH5LTiazpL5YdusUjtNn9PGN6QLAWfxmzRIfM+Ow==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
+ transitivePeerDependencies:
+ - '@parcel/core'
+ - '@swc/helpers'
+ dev: true
+
+ /@parcel/runtime-js@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-sBerP32Z1crX5PfLNGDSXSdqzlllM++GVnVQVeM7DgMKS8JIFG3VLi28YkX+dYYGtPypm01JoIHCkvwiZEcQJg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
+ dependencies:
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/runtime-react-refresh@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-2v/qFKp00MfG0234OdOgQNAo6TLENpFYZMbVbAsPMY9ITiqG73MrEsrGXVoGbYiGTMB/Toer/lSWlJxtacOCuA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/runtime-react-refresh@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-SCHkcczJIDFTFdLTzrHTkQ0aTrX3xH6jrA4UsCBL6ji61+w+ohy4jEEe9qCgJVXhnJfGLE43HNXek+0MStX+Mw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
react-error-overlay: 6.0.9
react-refresh: 0.9.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/runtime-service-worker@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-/Skkw+EeRiwzOJso5fQtK8c9b452uWLNhQH1ISTodbmlcyB4YalAiSsyHCtMYD0c3/t5Sx4ZS7vxBAtQd0RvOw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/runtime-service-worker@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-BXuMBsfiwpIEnssn+jqfC3jkgbS8oxeo3C7xhSQsuSv+AF2FwY3O3AO1c1RBskEW3XrBLNINOJujroNw80VTKA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
/@parcel/rust@2.12.0:
@@ -7193,225 +7233,236 @@ packages:
detect-libc: 1.0.3
dev: true
- /@parcel/transformer-babel@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-L6lExfpvvC7T/g3pxf3CIJRouQl+sgrSzuWQ0fD4PemUDHvHchSP4SNUVnd6gOytF3Y1KpnEZIunQGi5xVqQCQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-babel@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-zQaBfOnf/l8rPxYGnsk/ufh/0EuqvmnxafjBIpKZ//j6rGylw5JCqXSb1QvvAqRYruKeccxGv7+HrxpqKU6V4A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
+ '@parcel/utils': 2.12.0
browserslist: 4.23.0
json5: 2.2.3
nullthrows: 1.1.1
- semver: 5.7.2
+ semver: 7.6.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-css@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-xTqFwlSXtnaYen9ivAgz+xPW7yRl/u4QxtnDyDpz5dr8gSeOpQYRcjkd4RsYzKsWzZcGtB5EofEk8ayUbWKEUg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-css@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-vXhOqoAlQGATYyQ433Z1DXKmiKmzOAUmKysbYH3FD+LKEKLMEl/pA14goqp00TW+A/EjtSKKyeMyHlMIIUqj4Q==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
+ '@parcel/utils': 2.12.0
browserslist: 4.23.0
- lightningcss: 1.24.0
+ lightningcss: 1.24.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-html@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-kIZO3qsMYTbSnSpl9cnZog+SwL517ffWH54JeB410OSAYF1ouf4n5v9qBnALZbuCCmPwJRGs4jUtE452hxwN4g==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-html@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-5jW4dFFBlYBvIQk4nrH62rfA/G/KzVzEDa6S+Nne0xXhglLjkm64Ci9b/d4tKZfuGWUbpm2ASAq8skti/nfpXw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
- semver: 5.7.2
+ semver: 7.6.0
srcset: 4.0.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-image@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-cO4uptcCGTi5H6bvTrAWEFUsTNhA4kCo8BSvRSCHA2sf/4C5tGQPHt3JhdO0GQLPwZRCh/R41EkJs5HZ8A8DAg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-image@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-8hXrGm2IRII49R7lZ0RpmNk27EhcsH+uNKsvxuMpXPuEnWgC/ha/IrjaI29xCng1uGur74bJF43NUSQhR4aTdw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
peerDependencies:
- '@parcel/core': ^2.8.3
+ '@parcel/core': ^2.12.0
dependencies:
- '@parcel/core': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/core': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0)
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-inline-string@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-TBMk2H9nV8JMOsLztalhzS6HgthG5SCHKYkR2MaW7eSZuSGotbSP22aJip8HgQZ/lPMdOMb1lknHmd8WROxWHg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-inline-string@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-FawH7Hgc7E8/Uc0t1UlFT2AdKdEQysu6OJp88NJixAqNhZT7G24OtKltM+VyayPxQZyLblPcp6TnYpY+Tz9VGA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/transformer-js@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-9Qd6bib+sWRcpovvzvxwy/PdFrLUXGfmSW9XcVVG8pvgXsZPFaNjnNT8stzGQj1pQiougCoxMY4aTM5p1lGHEQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-js@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-OSZpOu+FGDbC/xivu24v092D9w6EGytB3vidwbdiJ2FaPgfV7rxS0WIUjH4I0OcvHAcitArRXL0a3+HrNTdQQw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
peerDependencies:
- '@parcel/core': ^2.8.3
+ '@parcel/core': ^2.12.0
dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/core': 2.12.0
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.3
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- '@swc/helpers': 0.4.36
+ '@parcel/utils': 2.12.0
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0)
+ '@swc/helpers': 0.5.7
browserslist: 4.23.0
- detect-libc: 1.0.3
nullthrows: 1.1.1
regenerator-runtime: 0.13.11
- semver: 5.7.2
+ semver: 7.6.0
dev: true
- /@parcel/transformer-json@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-B7LmVq5Q7bZO4ERb6NHtRuUKWGysEeaj9H4zelnyBv+wLgpo4f5FCxSE1/rTNmP9u1qHvQ3scGdK6EdSSokGPg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-json@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-Utv64GLRCQILK5r0KFs4o7I41ixMPllwOLOhkdjJKvf1hZmN6WqfOmB1YLbWS/y5Zb/iB52DU2pWZm96vLFQZQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
json5: 2.2.3
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-postcss@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-e8luB/poIlz6jBsD1Izms+6ElbyzuoFVa4lFVLZnTAChI3UxPdt9p/uTsIO46HyBps/Bk8ocvt3J4YF84jzmvg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-postcss@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-FZqn+oUtiLfPOn67EZxPpBkfdFiTnF4iwiXPqvst3XI8H+iC+yNgzmtJkunOOuylpYY6NOU5jT8d7saqWSDv2Q==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
+ '@parcel/utils': 2.12.0
clone: 2.1.2
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- semver: 5.7.2
+ semver: 7.6.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-posthtml@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-pkzf9Smyeaw4uaRLsT41RGrPLT5Aip8ZPcntawAfIo+KivBQUV0erY1IvHYjyfFzq1ld/Fo2Ith9He6mxpPifA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-posthtml@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-z6Z7rav/pcaWdeD+2sDUcd0mmNZRUvtHaUGa50Y2mr+poxrKilpsnFMSiWBT+oOqPt7j71jzDvrdnAF4XkCljg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
- semver: 5.7.2
+ semver: 7.6.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-raw@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-G+5cXnd2/1O3nV/pgRxVKZY/HcGSseuhAe71gQdSQftb8uJEURyUHoQ9Eh0JUD3MgWh9V+nIKoyFEZdf9T0sUQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-raw@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-Ht1fQvXxix0NncdnmnXZsa6hra20RXYh1VqhBYZLsDfkvGGFnXIgO03Jqn4Z8MkKoa0tiNbDhpKIeTjyclbBxQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-react-refresh-wrap@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-q8AAoEvBnCf/nPvgOwFwKZfEl/thwq7c2duxXkhl+tTLDRN2vGmyz4355IxCkavSX+pLWSQ5MexklSEeMkgthg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-react-refresh-wrap@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-GE8gmP2AZtkpBIV5vSCVhewgOFRhqwdM5Q9jNPOY5PKcM3/Ff0qCqDiTzzGLhk0/VMBrdjssrfZkVx6S/lHdJw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
react-refresh: 0.9.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-svg@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-3Zr/gBzxi1ZH1fftH/+KsZU7w5GqkmxlB0ZM8ovS5E/Pl1lq1t0xvGJue9m2VuQqP8Mxfpl5qLFmsKlhaZdMIQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.3}
+ /@parcel/transformer-svg@2.12.0(@parcel/core@2.12.0):
+ resolution: {integrity: sha512-cZJqGRJ4JNdYcb+vj94J7PdOuTnwyy45dM9xqbIMH+HSiiIkfrMsdEwYft0GTyFTdsnf+hdHn3tau7Qa5hhX+A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
dependencies:
- '@parcel/diagnostic': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/rust': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
- semver: 5.7.2
+ semver: 7.6.0
transitivePeerDependencies:
- '@parcel/core'
+ - '@swc/helpers'
dev: true
- /@parcel/transformer-typescript-types@2.9.3(@parcel/core@2.12.0)(typescript@4.9.5):
- resolution: {integrity: sha512-W+Ze3aUTdZuBQokXlkEQ/1hUApUm6VRyYzPqEs9jcqCqU8mv18i5ZGAz4bMuIJOBprp7M2wt10SJJx/SC1pl1A==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-typescript-types@2.12.0(@parcel/core@2.12.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-uxF4UBMYvbjiV3zHTWMrZX8cFD92VUvD3ArcGi5WEtuVROUm9Sc47o0mOzxKfMFlJu2KOfZVHYlzK9f/UKA2kQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.12.0}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.12.0)
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/ts-utils': 2.9.3(typescript@4.9.5)
- '@parcel/utils': 2.9.3
+ '@parcel/ts-utils': 2.12.0(typescript@5.4.2)
+ '@parcel/utils': 2.12.0
nullthrows: 1.1.1
- typescript: 4.9.5
+ typescript: 5.4.2
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/transformer-typescript-types@2.9.3(@parcel/core@2.8.3)(typescript@5.2.2):
+ /@parcel/transformer-typescript-types@2.9.3(@parcel/core@2.12.0)(typescript@5.4.2):
resolution: {integrity: sha512-W+Ze3aUTdZuBQokXlkEQ/1hUApUm6VRyYzPqEs9jcqCqU8mv18i5ZGAz4bMuIJOBprp7M2wt10SJJx/SC1pl1A==}
engines: {node: '>= 12.0.0', parcel: ^2.9.3}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
'@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.8.3)
+ '@parcel/plugin': 2.9.3(@parcel/core@2.12.0)
'@parcel/source-map': 2.1.1
- '@parcel/ts-utils': 2.9.3(typescript@5.2.2)
+ '@parcel/ts-utils': 2.9.3(typescript@5.4.2)
'@parcel/utils': 2.9.3
nullthrows: 1.1.1
- typescript: 5.2.2
+ typescript: 5.4.2
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/ts-utils@2.9.3(typescript@4.9.5):
- resolution: {integrity: sha512-MiQoXFV8I4IWZT/q5yolKN/gnEY5gZfGB2X7W9WHJbRgyjlT/A5cPERXzVBj6mc3/VM1GdZJz76w637GUcQhow==}
+ /@parcel/ts-utils@2.12.0(typescript@5.4.2):
+ resolution: {integrity: sha512-zou+W6dcqnXXUOfN5zGM+ePIWbYOhGp8bVB2jICoNkoKmNAHd4l4zeHl5yQXnbZfynVw88cZVqxtXS8tYebelg==}
engines: {node: '>= 12.0.0'}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
nullthrows: 1.1.1
- typescript: 4.9.5
+ typescript: 5.4.2
dev: true
- /@parcel/ts-utils@2.9.3(typescript@5.2.2):
+ /@parcel/ts-utils@2.9.3(typescript@5.4.2):
resolution: {integrity: sha512-MiQoXFV8I4IWZT/q5yolKN/gnEY5gZfGB2X7W9WHJbRgyjlT/A5cPERXzVBj6mc3/VM1GdZJz76w637GUcQhow==}
engines: {node: '>= 12.0.0'}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
nullthrows: 1.1.1
- typescript: 5.2.2
+ typescript: 5.4.2
dev: true
/@parcel/types@2.12.0(@parcel/core@2.12.0):
@@ -7429,35 +7480,6 @@ packages:
- '@swc/helpers'
dev: true
- /@parcel/types@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-8zAFiYNCwNTQcglIObyNwKfRYQK5ELlL13GuBOrSMxueUiI5ylgsGbTS1N7J3dAGZixHO8KhHGv5a71FILn9rQ==}
- dependencies:
- '@parcel/cache': 2.12.0(@parcel/core@2.8.3)
- '@parcel/diagnostic': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.8.3)
- '@parcel/package-manager': 2.12.0(@parcel/core@2.8.3)
- '@parcel/source-map': 2.1.1
- '@parcel/workers': 2.12.0(@parcel/core@2.8.3)
- utility-types: 3.11.0
- transitivePeerDependencies:
- - '@parcel/core'
- - '@swc/helpers'
- dev: true
-
- /@parcel/types@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw==}
- dependencies:
- '@parcel/cache': 2.8.3(@parcel/core@2.8.3)
- '@parcel/diagnostic': 2.8.3
- '@parcel/fs': 2.8.3(@parcel/core@2.8.3)
- '@parcel/package-manager': 2.8.3(@parcel/core@2.8.3)
- '@parcel/source-map': 2.1.1
- '@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- utility-types: 3.11.0
- transitivePeerDependencies:
- - '@parcel/core'
- dev: true
-
/@parcel/types@2.9.3(@parcel/core@2.12.0):
resolution: {integrity: sha512-NSNY8sYtRhvF1SqhnIGgGvJocyWt1K8Tnw5cVepm0g38ywtX6mwkBvMkmeehXkII4mSUn+frD9wGsydTunezvA==}
dependencies:
@@ -7472,20 +7494,6 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/types@2.9.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-NSNY8sYtRhvF1SqhnIGgGvJocyWt1K8Tnw5cVepm0g38ywtX6mwkBvMkmeehXkII4mSUn+frD9wGsydTunezvA==}
- dependencies:
- '@parcel/cache': 2.9.3(@parcel/core@2.8.3)
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.8.3)
- '@parcel/package-manager': 2.9.3(@parcel/core@2.8.3)
- '@parcel/source-map': 2.1.1
- '@parcel/workers': 2.9.3(@parcel/core@2.8.3)
- utility-types: 3.11.0
- transitivePeerDependencies:
- - '@parcel/core'
- dev: true
-
/@parcel/utils@2.12.0:
resolution: {integrity: sha512-z1JhLuZ8QmDaYoEIuUCVZlhcFrS7LMfHrb2OCRui5SQFntRWBH2fNM6H/fXXUkT9SkxcuFP2DUA6/m4+Gkz72g==}
engines: {node: '>= 12.0.0'}
@@ -7500,19 +7508,6 @@ packages:
nullthrows: 1.1.1
dev: true
- /@parcel/utils@2.8.3:
- resolution: {integrity: sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@parcel/codeframe': 2.8.3
- '@parcel/diagnostic': 2.8.3
- '@parcel/hash': 2.8.3
- '@parcel/logger': 2.8.3
- '@parcel/markdown-ansi': 2.8.3
- '@parcel/source-map': 2.1.1
- chalk: 4.1.0
- dev: true
-
/@parcel/utils@2.9.3:
resolution: {integrity: sha512-cesanjtj/oLehW8Waq9JFPmAImhoiHX03ihc3JTWkrvJYSbD7wYKCDgPAM3JiRAqvh1LZ6P699uITrYWNoRLUg==}
engines: {node: '>= 12.0.0'}
@@ -7668,39 +7663,11 @@ packages:
'@parcel/diagnostic': 2.12.0
'@parcel/logger': 2.12.0
'@parcel/profiler': 2.12.0
- '@parcel/types': 2.12.0(@parcel/core@2.8.3)
- '@parcel/utils': 2.12.0
- nullthrows: 1.1.1
- dev: true
-
- /@parcel/workers@2.12.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-zv5We5Jmb+ZWXlU6A+AufyjY4oZckkxsZ8J4dvyWL0W8IQvGO1JB4FGeryyttzQv3RM3OxcN/BpTGPiDG6keBw==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.12.0
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.12.0
- '@parcel/logger': 2.12.0
- '@parcel/profiler': 2.12.0
- '@parcel/types': 2.12.0(@parcel/core@2.8.3)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0)
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
- dev: true
-
- /@parcel/workers@2.8.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.8.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.8.3
- '@parcel/logger': 2.8.3
- '@parcel/types': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
- chrome-trace-event: 1.0.3
- nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@swc/helpers'
dev: true
/@parcel/workers@2.9.3(@parcel/core@2.12.0):
@@ -7713,22 +7680,7 @@ packages:
'@parcel/diagnostic': 2.9.3
'@parcel/logger': 2.9.3
'@parcel/profiler': 2.9.3
- '@parcel/types': 2.9.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.9.3
- nullthrows: 1.1.1
- dev: true
-
- /@parcel/workers@2.9.3(@parcel/core@2.8.3):
- resolution: {integrity: sha512-zRrDuZJzTevrrwElYosFztgldhqW6G9q5zOeQXfVQFkkEJCNfg36ixeiofKRU8uu2x+j+T6216mhMNB6HiuY+w==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/profiler': 2.9.3
- '@parcel/types': 2.9.3(@parcel/core@2.8.3)
+ '@parcel/types': 2.9.3(@parcel/core@2.12.0)
'@parcel/utils': 2.9.3
nullthrows: 1.1.1
dev: true
@@ -7739,72 +7691,18 @@ packages:
requiresBuild: true
optional: true
- /@playwright/test@1.30.0:
- resolution: {integrity: sha512-SVxkQw1xvn/Wk/EvBnqWIq6NLo1AppwbYOjNLmyU0R1RoQ3rLEBtmjTnElcnz8VEtn11fptj1ECxK0tgURhajw==}
- engines: {node: '>=14'}
+ /@playwright/test@1.42.1:
+ resolution: {integrity: sha512-Gq9rmS54mjBL/7/MvBaNOBwbfnh7beHvS6oS4srqXFcQHpQCV1+c8JXWE8VLPyRDhgS3H8x8A7hztqI9VnwrAQ==}
+ engines: {node: '>=16'}
hasBin: true
dependencies:
- '@types/node': 20.8.5
- playwright-core: 1.30.0
+ playwright: 1.42.1
dev: true
/@polka/url@1.0.0-next.25:
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
- /@radix-ui/number@1.0.1:
- resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
- dependencies:
- '@babel/runtime': 7.24.0
- dev: true
-
- /@radix-ui/primitive@1.0.1:
- resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
- dependencies:
- '@babel/runtime': 7.24.0
- dev: true
-
- /@radix-ui/react-arrow@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-collection@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- '@radix-ui/react-context': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-slot': 1.0.2(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-compose-refs@1.0.1(react@17.0.1):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.67)(react@17.0.2):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -7813,461 +7711,24 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-context@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-direction@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-dismissable-layer@1.0.4(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-escape-keydown': 1.0.3(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-focus-guards@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-focus-scope@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-id@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-layout-effect': 1.0.1(react@17.0.1)
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-popper@1.1.2(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@floating-ui/react-dom': 2.0.8(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-arrow': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- '@radix-ui/react-context': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-rect': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-size': 1.0.1(react@17.0.1)
- '@radix-ui/rect': 1.0.1
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-portal@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-primitive@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-slot': 1.0.2(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-roving-focus@1.0.4(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- '@radix-ui/react-context': 1.0.1(react@17.0.1)
- '@radix-ui/react-direction': 1.0.1(react@17.0.1)
- '@radix-ui/react-id': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-select@1.2.2(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/number': 1.0.1
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- '@radix-ui/react-context': 1.0.1(react@17.0.1)
- '@radix-ui/react-direction': 1.0.1(react@17.0.1)
- '@radix-ui/react-dismissable-layer': 1.0.4(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-focus-guards': 1.0.1(react@17.0.1)
- '@radix-ui/react-focus-scope': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-id': 1.0.1(react@17.0.1)
- '@radix-ui/react-popper': 1.1.2(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-portal': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-slot': 1.0.2(react@17.0.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(react@17.0.1)
- '@radix-ui/react-use-previous': 1.0.1(react@17.0.1)
- '@radix-ui/react-visually-hidden': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- aria-hidden: 1.2.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- react-remove-scroll: 2.5.5(react@17.0.1)
- dev: true
-
- /@radix-ui/react-separator@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-slot@1.0.2(react@17.0.1):
- resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-compose-refs': 1.0.1(react@17.0.1)
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-toggle-group@1.0.4(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(react@17.0.1)
- '@radix-ui/react-direction': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-roving-focus': 1.0.4(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-toggle': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-toggle@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-toolbar@1.0.4(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(react@17.0.1)
- '@radix-ui/react-direction': 1.0.1(react@17.0.1)
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-roving-focus': 1.0.4(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-separator': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-toggle-group': 1.0.4(react-dom@17.0.1)(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/react-use-callback-ref@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-use-controllable-state@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-use-escape-keydown@1.0.3(react@17.0.1):
- resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-callback-ref': 1.0.1(react@17.0.1)
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-use-layout-effect@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-use-previous@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-use-rect@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/rect': 1.0.1
- react: 17.0.1
- dev: true
-
- /@radix-ui/react-use-size@1.0.1(react@17.0.1):
- resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-layout-effect': 1.0.1(react@17.0.1)
- react: 17.0.1
+ '@babel/runtime': 7.24.1
+ '@types/react': 18.2.67
+ react: 17.0.2
dev: true
- /@radix-ui/react-visually-hidden@1.0.3(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.67)(react@17.0.2):
+ resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(react-dom@17.0.1)(react@17.0.1)
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@radix-ui/rect@1.0.1:
- resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.67)(react@17.0.2)
+ '@types/react': 18.2.67
+ react: 17.0.2
dev: true
/@rollup/pluginutils@4.2.1:
@@ -8278,6 +7739,97 @@ packages:
picomatch: 2.3.1
dev: false
+ /@rollup/rollup-android-arm-eabi@4.13.0:
+ resolution: {integrity: sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg==}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-android-arm64@4.13.0:
+ resolution: {integrity: sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-darwin-arm64@4.13.0:
+ resolution: {integrity: sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-darwin-x64@4.13.0:
+ resolution: {integrity: sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm-gnueabihf@4.13.0:
+ resolution: {integrity: sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-gnu@4.13.0:
+ resolution: {integrity: sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-musl@4.13.0:
+ resolution: {integrity: sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-riscv64-gnu@4.13.0:
+ resolution: {integrity: sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA==}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.13.0:
+ resolution: {integrity: sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-musl@4.13.0:
+ resolution: {integrity: sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-win32-arm64-msvc@4.13.0:
+ resolution: {integrity: sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-win32-ia32-msvc@4.13.0:
+ resolution: {integrity: sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-win32-x64-msvc@4.13.0:
+ resolution: {integrity: sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@segment/loosely-validate-event@2.0.0:
resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==}
dependencies:
@@ -8306,11 +7858,6 @@ packages:
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- /@sindresorhus/is@4.6.0:
- resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
- engines: {node: '>=10'}
- dev: true
-
/@sindresorhus/is@6.2.0:
resolution: {integrity: sha512-yM/IGPkVnYGblhDosFBwq0ZGdnVSBkNV4onUtipGMOjZd4kB6GAu3ys91aftSbyMHh6A2GPdt+KDI5NoWP63MQ==}
engines: {node: '>=16'}
@@ -8349,507 +7896,462 @@ packages:
webpack-sources: 3.2.3
dev: false
- /@smithy/abort-controller@2.1.4:
- resolution: {integrity: sha512-66HO817oIZ2otLIqy06R5muapqZjkgF1jfU0wyNko8cuqZNu8nbS9ljlhcRYw/M/uWRJzB9ih81DLSHhYbBLlQ==}
+ /@smithy/abort-controller@2.2.0:
+ resolution: {integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/chunked-blob-reader-native@2.1.3:
- resolution: {integrity: sha512-9RcLADDnQi8N3VMWNSFnhiUUuo19L0yHEV0i0CQPvRzf5o1FKHT7Zenrh3P9KcmECWQum3s/ljMcM+YeWd9tqg==}
+ /@smithy/chunked-blob-reader-native@2.2.0:
+ resolution: {integrity: sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==}
dependencies:
- '@smithy/util-base64': 2.2.1
+ '@smithy/util-base64': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/chunked-blob-reader@2.1.1:
- resolution: {integrity: sha512-NjNFCKxC4jVvn+lUr3Yo4/PmUJj3tbyqH6GNHueyTGS5Q27vlEJ1MkNhUDV8QGxJI7Bodnc2pD18lU2zRfhHlQ==}
+ /@smithy/chunked-blob-reader@2.2.0:
+ resolution: {integrity: sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/config-resolver@2.1.5:
- resolution: {integrity: sha512-LcBB5JQC3Tx2ZExIJzfvWaajhFIwHrUNQeqxhred2r5nnqrdly9uoCrvM1sxOOdghYuWWm2Kr8tBCDOmxsgeTA==}
+ /@smithy/config-resolver@2.2.0:
+ resolution: {integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.2.5
- '@smithy/types': 2.11.0
- '@smithy/util-config-provider': 2.2.1
- '@smithy/util-middleware': 2.1.4
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-config-provider': 2.3.0
+ '@smithy/util-middleware': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/core@1.3.8:
- resolution: {integrity: sha512-6cFhQ9ChU7MxvOXJn6nuUSONacpNsGHWhfueROQuM/0vibDdZA9FWEdNbVkuVuc+BFI5BnaX3ltERUlpUirpIA==}
+ /@smithy/core@1.4.0:
+ resolution: {integrity: sha512-uu9ZDI95Uij4qk+L6kyFjdk11zqBkcJ3Lv0sc6jZrqHvLyr0+oeekD3CnqMafBn/5PRI6uv6ulW3kNLRBUHeVw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/middleware-endpoint': 2.4.6
- '@smithy/middleware-retry': 2.1.7
- '@smithy/middleware-serde': 2.2.1
- '@smithy/protocol-http': 3.2.2
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/util-middleware': 2.1.4
+ '@smithy/middleware-endpoint': 2.5.0
+ '@smithy/middleware-retry': 2.2.0
+ '@smithy/middleware-serde': 2.3.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-middleware': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/credential-provider-imds@2.2.6:
- resolution: {integrity: sha512-+xQe4Pite0kdk9qn0Vyw5BRVh0iSlj+T4TEKRXr4E1wZKtVgIzGlkCrfICSjiPVFkPxk4jMpVboMYdEiiA88/w==}
+ /@smithy/credential-provider-imds@2.3.0:
+ resolution: {integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.2.5
- '@smithy/property-provider': 2.1.4
- '@smithy/types': 2.11.0
- '@smithy/url-parser': 2.1.4
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/url-parser': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-codec@2.1.4:
- resolution: {integrity: sha512-UkiieTztP7adg8EuqZvB0Y4LewdleZCJU7Kgt9RDutMsRYqO32fMpWeQHeTHaIMosmzcRZUykMRrhwGJe9mP3A==}
+ /@smithy/eventstream-codec@2.2.0:
+ resolution: {integrity: sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==}
dependencies:
'@aws-crypto/crc32': 3.0.0
- '@smithy/types': 2.11.0
- '@smithy/util-hex-encoding': 2.1.1
+ '@smithy/types': 2.12.0
+ '@smithy/util-hex-encoding': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-browser@2.1.4:
- resolution: {integrity: sha512-K0SyvrUu/vARKzNW+Wp9HImiC/cJ6K88/n7FTH1slY+MErdKoiSbRLaXbJ9qD6x1Hu28cplHMlhADwZelUx/Ww==}
+ /@smithy/eventstream-serde-browser@2.2.0:
+ resolution: {integrity: sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-serde-universal': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/eventstream-serde-universal': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-config-resolver@2.1.4:
- resolution: {integrity: sha512-FH+2AwOwZ0kHPB9sciWJtUqx81V4vizfT3P6T9eslmIC2hi8ch/KFvQlF7jDmwR1aLlPlq6qqLKLqzK/71Ki4A==}
+ /@smithy/eventstream-serde-config-resolver@2.2.0:
+ resolution: {integrity: sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-node@2.1.4:
- resolution: {integrity: sha512-gsc5ZTvVcB9sleLQzsK/rOhgn52+AAsmhEr41WDwAcctccBjh429+b8gT9t+SU8QyajypfsLOZfJQu0+zE515Q==}
+ /@smithy/eventstream-serde-node@2.2.0:
+ resolution: {integrity: sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-serde-universal': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/eventstream-serde-universal': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-universal@2.1.4:
- resolution: {integrity: sha512-NKLAsYnZA5s+ntipJRKo1RrRbhYHrsEnmiUoz0EhVYrAih+UELY9sKR+A1ujGaFm3nKDs5fPfiozC2wpXq2zUA==}
+ /@smithy/eventstream-serde-universal@2.2.0:
+ resolution: {integrity: sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-codec': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/eventstream-codec': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/fetch-http-handler@2.4.5:
- resolution: {integrity: sha512-FR1IMGdo0yRFs1tk71zRGSa1MznVLQOVNaPjyNtx6dOcy/u0ovEnXN5NVz6slw5KujFlg3N1w4+UbO8F3WyYUg==}
+ /@smithy/fetch-http-handler@2.5.0:
+ resolution: {integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==}
dependencies:
- '@smithy/protocol-http': 3.2.2
- '@smithy/querystring-builder': 2.1.4
- '@smithy/types': 2.11.0
- '@smithy/util-base64': 2.2.1
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/querystring-builder': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-base64': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/hash-blob-browser@2.1.5:
- resolution: {integrity: sha512-6HxT9Q25YxkyBLHiFEjNullTo2/w2hWo1IMnUZDn0Sun5D+BWEZiExJ83gKLVlkHvuAZX/bA5A8yxFLQ5FpGuQ==}
+ /@smithy/hash-blob-browser@2.2.0:
+ resolution: {integrity: sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==}
dependencies:
- '@smithy/chunked-blob-reader': 2.1.1
- '@smithy/chunked-blob-reader-native': 2.1.3
- '@smithy/types': 2.11.0
+ '@smithy/chunked-blob-reader': 2.2.0
+ '@smithy/chunked-blob-reader-native': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/hash-node@2.1.4:
- resolution: {integrity: sha512-uvCcpDLXaTTL0X/9ezF8T8sS77UglTfZVQaUOBiCvR0QydeSyio3t0Hj3QooVdyFsKTubR8gCk/ubLk3vAyDng==}
+ /@smithy/hash-node@2.2.0:
+ resolution: {integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
- '@smithy/util-buffer-from': 2.1.1
- '@smithy/util-utf8': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-buffer-from': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/hash-stream-node@2.1.4:
- resolution: {integrity: sha512-HcDQRs/Fcx7lwAd+/vSW/e7ltdh148D2Pq7XI61CEWcOoQdQ0W8aYBHDRC4zjtXv6hySdmWE+vo3dvdTt7aj8A==}
+ /@smithy/hash-stream-node@2.2.0:
+ resolution: {integrity: sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
- '@smithy/util-utf8': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/invalid-dependency@2.1.4:
- resolution: {integrity: sha512-QzlNBl6jt3nb9jNnE51wTegReVvUdozyMMrFEyb/rc6AzPID1O+qMJYjAAoNw098y0CZVfCpEnoK2+mfBOd8XA==}
+ /@smithy/invalid-dependency@2.2.0:
+ resolution: {integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/is-array-buffer@2.1.1:
- resolution: {integrity: sha512-xozSQrcUinPpNPNPds4S7z/FakDTh1MZWtRP/2vQtYB/u3HYrX2UXuZs+VhaKBd6Vc7g2XPr2ZtwGBNDN6fNKQ==}
+ /@smithy/is-array-buffer@2.2.0:
+ resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/md5-js@2.1.4:
- resolution: {integrity: sha512-WHTnnYJPKE7Sy49DogLuox42TnlwD3cQ6TObPD6WFWjKocWIdpEpIvdJHwWUfSFf0JIi8ON8z6ZEhsnyKVCcLQ==}
+ /@smithy/md5-js@2.2.0:
+ resolution: {integrity: sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==}
dependencies:
- '@smithy/types': 2.11.0
- '@smithy/util-utf8': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/middleware-content-length@2.1.4:
- resolution: {integrity: sha512-C6VRwfcr0w9qRFhDGCpWMVhlEIBFlmlPRP1aX9Cv9xDj9SUwlDrNvoV1oP1vjRYuLxCDgovBBynCwwcluS2wLw==}
+ /@smithy/middleware-content-length@2.2.0:
+ resolution: {integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/middleware-endpoint@2.4.6:
- resolution: {integrity: sha512-AsXtUXHPOAS0EGZUSFOsVJvc7p0KL29PGkLxLfycPOcFVLru/oinYB6yvyL73ZZPX2OB8sMYUMrj7eH2kI7V/w==}
+ /@smithy/middleware-endpoint@2.5.0:
+ resolution: {integrity: sha512-OBhI9ZEAG8Xen0xsFJwwNOt44WE2CWkfYIxTognC8x42Lfsdf0VN/wCMqpdkySMDio/vts10BiovAxQp0T0faA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/middleware-serde': 2.2.1
- '@smithy/node-config-provider': 2.2.5
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
- '@smithy/url-parser': 2.1.4
- '@smithy/util-middleware': 2.1.4
+ '@smithy/middleware-serde': 2.3.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
+ '@smithy/url-parser': 2.2.0
+ '@smithy/util-middleware': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/middleware-retry@2.1.7:
- resolution: {integrity: sha512-8fOP/cJN4oMv+5SRffZC8RkqfWxHqGgn/86JPINY/1DnTRegzf+G5GT9lmIdG1YasuSbU7LISfW9PXil3isPVw==}
+ /@smithy/middleware-retry@2.2.0:
+ resolution: {integrity: sha512-PsjDOLpbevgn37yJbawmfVoanru40qVA8UEf2+YA1lvOefmhuhL6ZbKtGsLAWDRnE1OlAmedsbA/htH6iSZjNA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.2.5
- '@smithy/protocol-http': 3.2.2
- '@smithy/service-error-classification': 2.1.4
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
- '@smithy/util-middleware': 2.1.4
- '@smithy/util-retry': 2.1.4
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/service-error-classification': 2.1.5
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-middleware': 2.2.0
+ '@smithy/util-retry': 2.2.0
tslib: 2.6.2
uuid: 8.3.2
dev: false
- /@smithy/middleware-serde@2.2.1:
- resolution: {integrity: sha512-VAWRWqnNjgccebndpyK94om4ZTYzXLQxUmNCXYzM/3O9MTfQjTNBgtFtQwyIIez6z7LWcCsXmnKVIOE9mLqAHQ==}
+ /@smithy/middleware-serde@2.3.0:
+ resolution: {integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/middleware-stack@2.1.4:
- resolution: {integrity: sha512-Qqs2ba8Ax1rGKOSGJS2JN23fhhox2WMdRuzx0NYHtXzhxbJOIMmz9uQY6Hf4PY8FPteBPp1+h0j5Fmr+oW12sg==}
+ /@smithy/middleware-stack@2.2.0:
+ resolution: {integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/node-config-provider@2.2.5:
- resolution: {integrity: sha512-CxPf2CXhjO79IypHJLBATB66Dw6suvr1Yc2ccY39hpR6wdse3pZ3E8RF83SODiNH0Wjmkd0ze4OF8exugEixgA==}
+ /@smithy/node-config-provider@2.3.0:
+ resolution: {integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/property-provider': 2.1.4
- '@smithy/shared-ini-file-loader': 2.3.5
- '@smithy/types': 2.11.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/shared-ini-file-loader': 2.4.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/node-http-handler@2.4.3:
- resolution: {integrity: sha512-bD5zRdEl1u/4vAAMeQnGEUNbH1seISV2Z0Wnn7ltPRl/6B2zND1R9XzTfsOnH1R5jqghpochF/mma8u7uXz0qQ==}
+ /@smithy/node-http-handler@2.5.0:
+ resolution: {integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/abort-controller': 2.1.4
- '@smithy/protocol-http': 3.2.2
- '@smithy/querystring-builder': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/abort-controller': 2.2.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/querystring-builder': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/property-provider@2.1.4:
- resolution: {integrity: sha512-nWaY/MImj1BiXZ9WY65h45dcxOx8pl06KYoHxwojDxDL+Q9yLU1YnZpgv8zsHhEftlj9KhePENjQTlNowWVyug==}
+ /@smithy/property-provider@2.2.0:
+ resolution: {integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/protocol-http@3.2.2:
- resolution: {integrity: sha512-xYBlllOQcOuLoxzhF2u8kRHhIFGQpDeTQj/dBSnw4kfI29WMKL5RnW1m9YjnJAJ49miuIvrkJR+gW5bCQ+Mchw==}
+ /@smithy/protocol-http@3.3.0:
+ resolution: {integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/querystring-builder@2.1.4:
- resolution: {integrity: sha512-LXSL0J/nRWvGT+jIj+Fip3j0J1ZmHkUyBFRzg/4SmPNCLeDrtVu7ptKOnTboPsFZu5BxmpYok3kJuQzzRdrhbw==}
+ /@smithy/querystring-builder@2.2.0:
+ resolution: {integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
- '@smithy/util-uri-escape': 2.1.1
+ '@smithy/types': 2.12.0
+ '@smithy/util-uri-escape': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/querystring-parser@2.1.4:
- resolution: {integrity: sha512-U2b8olKXgZAs0eRo7Op11jTNmmcC/sqYmsA7vN6A+jkGnDvJlEl7AetUegbBzU8q3D6WzC5rhR/joIy8tXPzIg==}
+ /@smithy/querystring-parser@2.2.0:
+ resolution: {integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/service-error-classification@2.1.4:
- resolution: {integrity: sha512-JW2Hthy21evnvDmYYk1kItOmbp3X5XI5iqorXgFEunb6hQfSDZ7O1g0Clyxg7k/Pcr9pfLk5xDIR2To/IohlsQ==}
+ /@smithy/service-error-classification@2.1.5:
+ resolution: {integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
dev: false
- /@smithy/shared-ini-file-loader@2.3.5:
- resolution: {integrity: sha512-oI99+hOvsM8oAJtxAGmoL/YCcGXtbP0fjPseYGaNmJ4X5xOFTer0KPk7AIH3AL6c5AlYErivEi1X/X78HgTVIw==}
+ /@smithy/shared-ini-file-loader@2.4.0:
+ resolution: {integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/signature-v4@2.1.4:
- resolution: {integrity: sha512-gnu9gCn0qQ8IdhNjs6o3QVCXzUs33znSDYwVMWo3nX4dM6j7z9u6FC302ShYyVWfO4MkVMuGCCJ6nl3PcH7V1Q==}
+ /@smithy/signature-v4@2.2.0:
+ resolution: {integrity: sha512-+B5TNzj/fRZzVW3z8UUJOkNx15+4E0CLuvJmJUA1JUIZFp3rdJ/M2H5r2SqltaVPXL0oIxv/6YK92T9TsFGbFg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-codec': 2.1.4
- '@smithy/is-array-buffer': 2.1.1
- '@smithy/types': 2.11.0
- '@smithy/util-hex-encoding': 2.1.1
- '@smithy/util-middleware': 2.1.4
- '@smithy/util-uri-escape': 2.1.1
- '@smithy/util-utf8': 2.2.0
+ '@smithy/eventstream-codec': 2.2.0
+ '@smithy/is-array-buffer': 2.2.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-hex-encoding': 2.2.0
+ '@smithy/util-middleware': 2.2.0
+ '@smithy/util-uri-escape': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/smithy-client@2.4.5:
- resolution: {integrity: sha512-igXOM4kPXPo6b5LZXTUqTnrGk20uVd8OXoybC3f89gczzGfziLK4yUNOmiHSdxY9OOMOnnhVe5MpTm01MpFqvA==}
+ /@smithy/smithy-client@2.5.0:
+ resolution: {integrity: sha512-DDXWHWdimtS3y/Kw1Jo46KQ0ZYsDKcldFynQERUGBPDpkW1lXOTHy491ALHjwfiBQvzsVKVxl5+ocXNIgJuX4g==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/middleware-endpoint': 2.4.6
- '@smithy/middleware-stack': 2.1.4
- '@smithy/protocol-http': 3.2.2
- '@smithy/types': 2.11.0
- '@smithy/util-stream': 2.1.5
+ '@smithy/middleware-endpoint': 2.5.0
+ '@smithy/middleware-stack': 2.2.0
+ '@smithy/protocol-http': 3.3.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-stream': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/types@2.11.0:
- resolution: {integrity: sha512-AR0SXO7FuAskfNhyGfSTThpLRntDI5bOrU0xrpVYU0rZyjl3LBXInZFMTP/NNSd7IS6Ksdtar0QvnrPRIhVrLQ==}
+ /@smithy/types@2.12.0:
+ resolution: {integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/url-parser@2.1.4:
- resolution: {integrity: sha512-1hTy6UYRYqOZlHKH2/2NzdNQ4NNmW2Lp0sYYvztKy+dEQuLvZL9w88zCzFQqqFer3DMcscYOshImxkJTGdV+rg==}
+ /@smithy/url-parser@2.2.0:
+ resolution: {integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==}
dependencies:
- '@smithy/querystring-parser': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/querystring-parser': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/util-base64@2.2.1:
- resolution: {integrity: sha512-troGfokrpoqv8TGgsb8p4vvM71vqor314514jyQ0i9Zae3qs0jUVbSMCIBB1tseVynXFRcZJAZ9hPQYlifLD5A==}
+ /@smithy/util-base64@2.3.0:
+ resolution: {integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/util-buffer-from': 2.1.1
- '@smithy/util-utf8': 2.2.0
+ '@smithy/util-buffer-from': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/util-body-length-browser@2.1.1:
- resolution: {integrity: sha512-ekOGBLvs1VS2d1zM2ER4JEeBWAvIOUKeaFch29UjjJsxmZ/f0L3K3x0dEETgh3Q9bkZNHgT+rkdl/J/VUqSRag==}
+ /@smithy/util-body-length-browser@2.2.0:
+ resolution: {integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/util-body-length-node@2.2.2:
- resolution: {integrity: sha512-U7DooaT1SfW7XHrOcxthYJnQ+WMaefRrFPxW5Qmypw38Ivv+TKvfVuVHA9V162h8BeW9rzOJwOunjgXd0DdB4w==}
+ /@smithy/util-body-length-node@2.3.0:
+ resolution: {integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/util-buffer-from@2.1.1:
- resolution: {integrity: sha512-clhNjbyfqIv9Md2Mg6FffGVrJxw7bgK7s3Iax36xnfVj6cg0fUG7I4RH0XgXJF8bxi+saY5HR21g2UPKSxVCXg==}
+ /@smithy/util-buffer-from@2.2.0:
+ resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/is-array-buffer': 2.1.1
+ '@smithy/is-array-buffer': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/util-config-provider@2.2.1:
- resolution: {integrity: sha512-50VL/tx9oYYcjJn/qKqNy7sCtpD0+s8XEBamIFo4mFFTclKMNp+rsnymD796uybjiIquB7VCB/DeafduL0y2kw==}
+ /@smithy/util-config-provider@2.3.0:
+ resolution: {integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/util-defaults-mode-browser@2.1.7:
- resolution: {integrity: sha512-vvIpWsysEdY77R0Qzr6+LRW50ye7eii7AyHM0OJnTi0isHYiXo5M/7o4k8gjK/b1upQJdfjzSBoJVa2SWrI+2g==}
+ /@smithy/util-defaults-mode-browser@2.2.0:
+ resolution: {integrity: sha512-2okTdZaCBvOJszAPU/KSvlimMe35zLOKbQpHhamFJmR7t95HSe0K3C92jQPjKY3PmDBD+7iMkOnuW05F5OlF4g==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@smithy/property-provider': 2.1.4
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
bowser: 2.11.0
tslib: 2.6.2
dev: false
- /@smithy/util-defaults-mode-node@2.2.7:
- resolution: {integrity: sha512-qzXkSDyU6Th+rNNcNkG4a7Ix7m5HlMOtSCPxTVKlkz7eVsqbSSPggegbFeQJ2MVELBB4wnzNPsVPJIrpIaJpXA==}
+ /@smithy/util-defaults-mode-node@2.3.0:
+ resolution: {integrity: sha512-hfKXnNLmsW9cmLb/JXKIvtuO6Cf4SuqN5PN1C2Ru/TBIws+m1wSgb+A53vo0r66xzB6E82inKG2J7qtwdi+Kkw==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@smithy/config-resolver': 2.1.5
- '@smithy/credential-provider-imds': 2.2.6
- '@smithy/node-config-provider': 2.2.5
- '@smithy/property-provider': 2.1.4
- '@smithy/smithy-client': 2.4.5
- '@smithy/types': 2.11.0
+ '@smithy/config-resolver': 2.2.0
+ '@smithy/credential-provider-imds': 2.3.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/property-provider': 2.2.0
+ '@smithy/smithy-client': 2.5.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/util-endpoints@1.1.5:
- resolution: {integrity: sha512-tgDpaUNsUtRvNiBulKU1VnpoXU1GINMfZZXunRhUXOTBEAufG1Wp79uDXLau2gg1RZ4dpAR6lXCkrmddihCGUg==}
+ /@smithy/util-endpoints@1.2.0:
+ resolution: {integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==}
engines: {node: '>= 14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.2.5
- '@smithy/types': 2.11.0
+ '@smithy/node-config-provider': 2.3.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/util-hex-encoding@2.1.1:
- resolution: {integrity: sha512-3UNdP2pkYUUBGEXzQI9ODTDK+Tcu1BlCyDBaRHwyxhA+8xLP8agEKQq4MGmpjqb4VQAjq9TwlCQX0kP6XDKYLg==}
+ /@smithy/util-hex-encoding@2.2.0:
+ resolution: {integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/util-middleware@2.1.4:
- resolution: {integrity: sha512-5yYNOgCN0DL0OplME0pthoUR/sCfipnROkbTO7m872o0GHCVNJj5xOFJ143rvHNA54+pIPMLum4z2DhPC2pVGA==}
+ /@smithy/util-middleware@2.2.0:
+ resolution: {integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.11.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/util-retry@2.1.4:
- resolution: {integrity: sha512-JRZwhA3fhkdenSEYIWatC8oLwt4Bdf2LhHbNQApqb7yFoIGMl4twcYI3BcJZ7YIBZrACA9jGveW6tuCd836XzQ==}
+ /@smithy/util-retry@2.2.0:
+ resolution: {integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==}
engines: {node: '>= 14.0.0'}
dependencies:
- '@smithy/service-error-classification': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/service-error-classification': 2.1.5
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@smithy/util-stream@2.1.5:
- resolution: {integrity: sha512-FqvBFeTgx+QC4+i8USHqU8Ifs9nYRpW/OBfksojtgkxPIQ2H7ypXDEbnQRAV7PwoNHWcSwPomLYi0svmQQG5ow==}
+ /@smithy/util-stream@2.2.0:
+ resolution: {integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/fetch-http-handler': 2.4.5
- '@smithy/node-http-handler': 2.4.3
- '@smithy/types': 2.11.0
- '@smithy/util-base64': 2.2.1
- '@smithy/util-buffer-from': 2.1.1
- '@smithy/util-hex-encoding': 2.1.1
- '@smithy/util-utf8': 2.2.0
+ '@smithy/fetch-http-handler': 2.5.0
+ '@smithy/node-http-handler': 2.5.0
+ '@smithy/types': 2.12.0
+ '@smithy/util-base64': 2.3.0
+ '@smithy/util-buffer-from': 2.2.0
+ '@smithy/util-hex-encoding': 2.2.0
+ '@smithy/util-utf8': 2.3.0
tslib: 2.6.2
dev: false
- /@smithy/util-uri-escape@2.1.1:
- resolution: {integrity: sha512-saVzI1h6iRBUVSqtnlOnc9ssU09ypo7n+shdQ8hBTZno/9rZ3AuRYvoHInV57VF7Qn7B+pFJG7qTzFiHxWlWBw==}
+ /@smithy/util-uri-escape@2.2.0:
+ resolution: {integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/util-utf8@2.2.0:
- resolution: {integrity: sha512-hBsKr5BqrDrKS8qy+YcV7/htmMGxriA1PREOf/8AGBhHIZnfilVv1Waf1OyKhSbFW15U/8+gcMUQ9/Kk5qwpHQ==}
+ /@smithy/util-utf8@2.3.0:
+ resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/util-buffer-from': 2.1.1
+ '@smithy/util-buffer-from': 2.2.0
tslib: 2.6.2
dev: false
- /@smithy/util-waiter@2.1.4:
- resolution: {integrity: sha512-AK17WaC0hx1wR9juAOsQkJ6DjDxBGEf5TrKhpXtNFEn+cVto9Li3MVsdpAO97AF7bhFXSyC8tJA3F4ThhqwCdg==}
+ /@smithy/util-waiter@2.2.0:
+ resolution: {integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/abort-controller': 2.1.4
- '@smithy/types': 2.11.0
+ '@smithy/abort-controller': 2.2.0
+ '@smithy/types': 2.12.0
tslib: 2.6.2
dev: false
- /@snyk/dep-graph@2.8.1:
- resolution: {integrity: sha512-bh/uAQBPboj7rDReEAiEN6ukP7dsj5pTRW3fLXVvOXuLb3PN5SC+wj80iAhCNjuiKRSoelt/GHlsngGzUMOwOg==}
- engines: {node: '>=10'}
- dependencies:
- event-loop-spinner: 2.2.0
- lodash.clone: 4.5.0
- lodash.constant: 3.0.0
- lodash.filter: 4.6.0
- lodash.foreach: 4.5.0
- lodash.isempty: 4.4.0
- lodash.isequal: 4.5.0
- lodash.isfunction: 3.0.9
- lodash.isundefined: 3.0.1
- lodash.map: 4.6.0
- lodash.reduce: 4.6.0
- lodash.size: 4.2.0
- lodash.transform: 4.6.0
- lodash.union: 4.6.0
- lodash.values: 4.3.0
- object-hash: 3.0.0
- packageurl-js: 1.2.0
- semver: 7.6.0
- tslib: 2.4.1
- dev: true
-
- /@snyk/graphlib@2.1.9-patch.3:
- resolution: {integrity: sha512-bBY9b9ulfLj0v2Eer0yFYa3syVeIxVKl2EpxSrsVeT4mjA0CltZyHsF0JjoaGXP27nItTdJS5uVsj1NA+3aE+Q==}
- dependencies:
- lodash.clone: 4.5.0
- lodash.constant: 3.0.0
- lodash.filter: 4.6.0
- lodash.foreach: 4.5.0
- lodash.has: 4.5.2
- lodash.isempty: 4.4.0
- lodash.isfunction: 3.0.9
- lodash.isundefined: 3.0.1
- lodash.keys: 4.2.0
- lodash.map: 4.6.0
- lodash.reduce: 4.6.0
- lodash.size: 4.2.0
- lodash.transform: 4.6.0
- lodash.union: 4.6.0
- lodash.values: 4.3.0
- dev: true
-
/@sqltools/formatter@1.2.5:
resolution: {integrity: sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw==}
dev: false
@@ -8862,53 +8364,22 @@ packages:
resolution: {integrity: sha512-vIsurZBiP6ksg/6zvE6wQVKVludu3UFtePmIAWAbmfjlA6LcjGx+IpX0xNOhVfUs8dC8cMOVn2yLbDhQm5dLYA==}
dev: false
- /@steeze-ui/svelte-icon@1.4.1(svelte@3.55.0):
- resolution: {integrity: sha512-O8KiL+1rjdhVzdBC5AKzDbc/NLZehOVU+nBj24t6BK22mWCe4o5YDbb04LesN9mBgB8NRRlaV6T81zLGY8xZHQ==}
- peerDependencies:
- svelte: ^3.54.0
- dependencies:
- svelte: 3.55.0
- dev: false
-
- /@steeze-ui/svelte-icon@1.4.1(svelte@3.59.2):
- resolution: {integrity: sha512-O8KiL+1rjdhVzdBC5AKzDbc/NLZehOVU+nBj24t6BK22mWCe4o5YDbb04LesN9mBgB8NRRlaV6T81zLGY8xZHQ==}
- peerDependencies:
- svelte: ^3.54.0
- dependencies:
- svelte: 3.59.2
- dev: false
-
- /@steeze-ui/tabler-icons@2.1.0(svelte@3.55.0):
- resolution: {integrity: sha512-c3BJTt9Gi+73H/fKLOG9shDQrcdUfw19ELfLP7GLO+rF/R8wxTjdqcg0/C4HJajT21+Z6R+sBNIaB/rfdfQPpA==}
+ /@steeze-ui/svelte-icon@1.5.0(svelte@4.2.12):
+ resolution: {integrity: sha512-Y0S7Qk2kO6byzOlD5SQGbOF2ZaKXJgfTkH78QUPcq579wiWMQJ5H14zL4XwtsPJ0DfkoL5qa3WaIdYkWb9A6AA==}
peerDependencies:
- svelte: ^3.54.0
+ svelte: ^4.0.0
dependencies:
- svelte: 3.55.0
+ svelte: 4.2.12
dev: false
- /@steeze-ui/tabler-icons@2.1.0(svelte@3.59.2):
- resolution: {integrity: sha512-c3BJTt9Gi+73H/fKLOG9shDQrcdUfw19ELfLP7GLO+rF/R8wxTjdqcg0/C4HJajT21+Z6R+sBNIaB/rfdfQPpA==}
- peerDependencies:
- svelte: ^3.54.0
- dependencies:
- svelte: 3.59.2
+ /@steeze-ui/tabler-icons@2.1.1:
+ resolution: {integrity: sha512-cWnORbuPwXhsrH3hebxZ0gSF/zMZEuLz014XoGcxXhU+GPYixqXjyBbTfJiGjbexRjkj7A2/1ocx6AcWEwN1Pw==}
dev: false
- /@storybook/addon-actions@7.6.12:
- resolution: {integrity: sha512-vK/H6K+AJ4ZSsCu/+MapYYI/xrynB6JoCOejt//flTigZOhwTWv7WXbmEeqGIIToXy0LA2IUZ1/kCjFXR0lEdQ==}
- dependencies:
- '@storybook/core-events': 7.6.12
- '@storybook/global': 5.0.0
- '@types/uuid': 9.0.8
- dequal: 2.0.3
- polished: 4.3.1
- uuid: 9.0.1
- dev: true
-
- /@storybook/addon-actions@7.6.13:
- resolution: {integrity: sha512-uxjBLzJNJfj8oS0orgLt7/Gs5tLoP2xhBESi5vjk+7BZjAgfoA6w5IwMwmh9sRB3+aUx3ks7fGjE/hRT/YcaxA==}
+ /@storybook/addon-actions@8.0.4:
+ resolution: {integrity: sha512-EyCWo+8T11/TJGYNL/AXtW4yaB+q1v2E9mixbumryCLxpTl2NtaeGZ4e0dlwfIMuw/7RWgHk2uIypcIPR/UANQ==}
dependencies:
- '@storybook/core-events': 7.6.13
+ '@storybook/core-events': 8.0.4
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
@@ -8916,145 +8387,140 @@ packages:
uuid: 9.0.1
dev: true
- /@storybook/addon-backgrounds@7.6.12:
- resolution: {integrity: sha512-G14uN5lDXUtXw+dmEPaB6lpDpR9K25ssYuWWn8yYR44B1WMuD4kDgw0QGb0g+xYQj9R1TsalKEJHA4AuSYkVGQ==}
+ /@storybook/addon-backgrounds@8.0.4:
+ resolution: {integrity: sha512-fef0KD2GhJx2zpicOf8iL7k2LiIsNzEbGaQpIIjoy4DMqM1hIfNCt3DGTLH7LN5O8G+NVCLS1xmQg7RLvIVSCA==}
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-controls@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-NX4KajscOsuXyYE3hhniF+y0E59E6rM0FgIaZ48P9c0DD+wDo8bAISHjZvmKXtDVajLk4/JySvByx1eN6V3hmA==}
+ /@storybook/addon-controls@8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-K5EYBTsUOTJlvIdA7p6Xj31wnV+RbZAkk56UKQvA7nJD7oDuLOq3E9u46F/uZD1vxddd9zFhf2iONfMe3KTTwQ==}
dependencies:
- '@storybook/blocks': 7.6.12(react-dom@17.0.1)(react@17.0.1)
+ '@storybook/blocks': 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- - '@types/react-dom'
- encoding
- react
- react-dom
- supports-color
dev: true
- /@storybook/addon-docs@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-AzMgnGYfEg+Z1ycJh8MEp44x1DfjRijKCVYNaPFT6o+TjN/9GBaAkV4ydxmQzMEMnnnh/0E9YeHO+ivBVSkNog==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ /@storybook/addon-docs@8.0.4:
+ resolution: {integrity: sha512-m0Y7qGAMnNPLEOEgzW/SBm8GX0xabJBaRN+aYijO6UKTln7F6oXXVve+xPC0Y4s6Gc9HZFdJY8WXZr1YSGEUVA==}
dependencies:
- '@jest/transform': 29.7.0
- '@mdx-js/react': 2.3.0(react@17.0.1)
- '@storybook/blocks': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/client-logger': 7.6.12
- '@storybook/components': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/csf-plugin': 7.6.12
- '@storybook/csf-tools': 7.6.12
+ '@babel/core': 7.24.3
+ '@mdx-js/react': 3.0.1(@types/react@18.2.67)(react@17.0.2)
+ '@storybook/blocks': 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/client-logger': 8.0.4
+ '@storybook/components': 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/csf-plugin': 8.0.4
+ '@storybook/csf-tools': 8.0.4
'@storybook/global': 5.0.0
- '@storybook/mdx2-csf': 1.1.0
- '@storybook/node-logger': 7.6.12
- '@storybook/postinstall': 7.6.12
- '@storybook/preview-api': 7.6.12
- '@storybook/react-dom-shim': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/theming': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.12
+ '@storybook/node-logger': 8.0.4
+ '@storybook/preview-api': 8.0.4
+ '@storybook/react-dom-shim': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/theming': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/types': 8.0.4
+ '@types/react': 18.2.67
fs-extra: 11.2.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- remark-external-links: 8.0.0
- remark-slug: 6.1.0
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ rehype-external-links: 3.0.0
+ rehype-slug: 6.0.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- encoding
- supports-color
dev: true
- /@storybook/addon-essentials@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-Pl6n+19QC/T+cuU8DZjCwILXVxrdRTivNxPOiy8SEX+jjR4H0uAfXC9+RXCPjRFn64t4j1K7oIyoNokEn39cNw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@storybook/addon-actions': 7.6.12
- '@storybook/addon-backgrounds': 7.6.12
- '@storybook/addon-controls': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/addon-docs': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/addon-highlight': 7.6.12
- '@storybook/addon-measure': 7.6.12
- '@storybook/addon-outline': 7.6.12
- '@storybook/addon-toolbars': 7.6.12
- '@storybook/addon-viewport': 7.6.12
- '@storybook/core-common': 7.6.12
- '@storybook/manager-api': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/node-logger': 7.6.12
- '@storybook/preview-api': 7.6.12
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ /@storybook/addon-essentials@8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-mUIqhAkSz6Qv7nRqAAyCqMLiXBWVsY/8qN7HEIoaMQgdFq38KW3rYwNdzd2JLeXNWP1bBXwfvfcFe7/eqhYJFA==}
+ dependencies:
+ '@storybook/addon-actions': 8.0.4
+ '@storybook/addon-backgrounds': 8.0.4
+ '@storybook/addon-controls': 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/addon-docs': 8.0.4
+ '@storybook/addon-highlight': 8.0.4
+ '@storybook/addon-measure': 8.0.4
+ '@storybook/addon-outline': 8.0.4
+ '@storybook/addon-toolbars': 8.0.4
+ '@storybook/addon-viewport': 8.0.4
+ '@storybook/core-common': 8.0.4
+ '@storybook/manager-api': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/node-logger': 8.0.4
+ '@storybook/preview-api': 8.0.4
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- - '@types/react-dom'
- encoding
+ - react
+ - react-dom
- supports-color
dev: true
- /@storybook/addon-highlight@7.6.12:
- resolution: {integrity: sha512-rWNEyBhwncXEDd9z7l67BLBIPqn0SRI/CJpZvCSF5KLWrVaoSEDF8INavmbikd1JBMcajJ28Ur6NsGj+eJjJiw==}
+ /@storybook/addon-highlight@8.0.4:
+ resolution: {integrity: sha512-tnEiVaJlXL07v8JBox+QtRPVruoy0YovOTAOWY7fKDiKzF1I9wLaJjQF3wOsvwspHTHu00OZw2gsazgXiH4wLQ==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/addon-interactions@7.6.6:
- resolution: {integrity: sha512-EJWx6ciJPgv1c75tB/M4smWDpPDGM/L24v4DZxGpl1eV3oQOSQCKImG5btwoy6QcIi68ozroUHdUti/kzCKS1w==}
+ /@storybook/addon-interactions@8.0.4(vitest@0.34.6):
+ resolution: {integrity: sha512-wTEOnVUbF1lNJxxocr5IKmpgnmwyO8YsQf6Baw3tTWCHAa/MaWWQYq1OA6CfFfmVGGRjv/w2GTuf1Vyq99O7mg==}
dependencies:
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.6
- jest-mock: 27.5.1
+ '@storybook/instrumenter': 8.0.4
+ '@storybook/test': 8.0.4(vitest@0.34.6)
+ '@storybook/types': 8.0.4
polished: 4.3.1
ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - '@jest/globals'
+ - '@types/bun'
+ - '@types/jest'
+ - jest
+ - vitest
dev: true
- /@storybook/addon-links@7.6.6(react@17.0.1):
- resolution: {integrity: sha512-NEcqOz6zZ1dJnCcVmYdaQTAMAGIb8NFAZGnr9DU0q+t4B1fTaWUgqLtBM5V6YqIrXGSC/oKLpjWUkS5UpswlHA==}
+ /@storybook/addon-links@8.0.4(react@17.0.2):
+ resolution: {integrity: sha512-SzE+JPZ4mxjprZqbLHf8Hx7UA2fXfMajFjeY9c3JREKQrDoOF1e4r28nAoVsZYF+frWxQB51U4+hOqjlx06wEA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@storybook/csf': 0.1.2
+ '@storybook/csf': 0.1.3
'@storybook/global': 5.0.0
- react: 17.0.1
+ react: 17.0.2
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@7.6.12:
- resolution: {integrity: sha512-K3aKErr84V0eVK7t+wco5cSYDdeotwoXi4e7VLSa2cdUz0wanOb4R7v3kf6vxucUyp05Lv+yHkz9zsbwuezepA==}
+ /@storybook/addon-measure@8.0.4:
+ resolution: {integrity: sha512-GZYKo2ss5Br+dfHinoK3bgTaS90z3oKKDkhv6lrFfjjU1mDYzzMJpxajQhd3apCYxHLr3MbUqMQibWu2T/q2DQ==}
dependencies:
'@storybook/global': 5.0.0
tiny-invariant: 1.3.3
dev: true
- /@storybook/addon-outline@7.6.12:
- resolution: {integrity: sha512-r6eO4EKh+zwGUNjxe8v/44BhyV+JD3Dl9GYMutsFqbwYsoWHJaZmzHuyqeFBXwx2MEoixdWdIzNMP71+srQqvw==}
+ /@storybook/addon-outline@8.0.4:
+ resolution: {integrity: sha512-6J9ezNDUxdA3rMCh8sUEQbUwAgkrr+M9QdiFr1t+gKrk5FKP5gwubw1sr3sF1IRB9+s/AjljcOtJAVulSfq05w==}
dependencies:
'@storybook/global': 5.0.0
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-svelte-csf@4.0.13(@storybook/svelte@7.6.6)(@storybook/theming@7.6.6)(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@4.3.9):
- resolution: {integrity: sha512-WHp8MSM8IFvhwJoJ3ghJ5K7FO0oQgnbstdd0iEk6wAW0KWN1KpwdSYMRFNrdSF3gar5Dol4PWOC/6+3SMdsZMQ==}
+ /@storybook/addon-svelte-csf@4.1.2(@storybook/svelte@8.0.4)(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6):
+ resolution: {integrity: sha512-4aNlI8tdzkNyUK4fxRgAGTtgYLT97KBAqaiJLu5YtXI4YFarDcmUgLnPet0oj4QxQAfbcId+vGWhSIMG6q6lNg==}
peerDependencies:
- '@storybook/svelte': ^7.0.0
- '@storybook/theming': ^7.0.0
- '@sveltejs/vite-plugin-svelte': ^2.0.0
+ '@storybook/svelte': ^7.0.0 || ^8.0.0 || ^8.0.0-beta.0
+ '@sveltejs/vite-plugin-svelte': ^2.0.0 || ^3.0.0
svelte: ^4.0.0
svelte-loader: ^3.1.2
- vite: ^4.0.0
+ vite: ^4.0.0 || ^5.0.0
peerDependenciesMeta:
'@sveltejs/vite-plugin-svelte':
optional: true
@@ -9063,121 +8529,85 @@ packages:
vite:
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@storybook/svelte': 7.6.6(svelte@3.59.2)
- '@storybook/theming': 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.9)
+ '@babel/runtime': 7.24.1
+ '@storybook/svelte': 8.0.4(svelte@4.2.12)
+ '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@4.2.12)(vite@5.1.6)
dedent: 1.5.1
fs-extra: 11.2.0
magic-string: 0.30.8
- svelte: 3.59.2
- vite: 4.3.9
+ svelte: 4.2.12
+ vite: 5.1.6(@types/node@20.11.28)
transitivePeerDependencies:
- babel-plugin-macros
dev: true
- /@storybook/addon-toolbars@7.6.12:
- resolution: {integrity: sha512-TSwq8xO7fmS6GRTgJJa31OBzm+5zlgDYK2Q42jxFo/Vm10uMzCpjYJE6mIHpUDyjyBVQk6xxMMEcvo6no2eAWg==}
- dev: true
-
- /@storybook/addon-viewport@7.6.12:
- resolution: {integrity: sha512-51zsBeoaEzq699SKDCe+GG/2PDAJKKJtpjqxIc4lDskogaCJSb3Ie8LyookHAKYgbi2qealVgK8zaP27KUj3Pg==}
- dependencies:
- memoizerific: 1.11.3
+ /@storybook/addon-toolbars@8.0.4:
+ resolution: {integrity: sha512-yodRXDYog/90cNEy84kg6s7L+nxQ+egBjHBTsav1L4cJmQI/uAX8yISHHiX4I5ppNc120Jz3UdHdRxXRlo345g==}
dev: true
- /@storybook/blocks@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-T47KOAjgZmhV+Ov59A70inE5edInh1Jh5w/5J5cjpk9a2p4uhd337SnK4B8J5YLhcM2lbKRWJjzIJ0nDZQTdnQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ /@storybook/addon-viewport@8.0.4:
+ resolution: {integrity: sha512-E5IKOsxKcOtlOYc0cWgzVJohQB+dVBWwaJcg5FlslToknfVB9M0kfQ/SQcp3KB0C9/cOmJK1Jm388InW+EjrBQ==}
dependencies:
- '@storybook/channels': 7.6.12
- '@storybook/client-logger': 7.6.12
- '@storybook/components': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/core-events': 7.6.12
- '@storybook/csf': 0.1.2
- '@storybook/docs-tools': 7.6.12
- '@storybook/global': 5.0.0
- '@storybook/manager-api': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/preview-api': 7.6.12
- '@storybook/theming': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.12
- '@types/lodash': 4.17.0
- color-convert: 2.0.1
- dequal: 2.0.3
- lodash: 4.17.21
- markdown-to-jsx: 7.4.2(react@17.0.1)
memoizerific: 1.11.3
- polished: 4.3.1
- react: 17.0.1
- react-colorful: 5.6.1(react-dom@17.0.1)(react@17.0.1)
- react-dom: 17.0.1(react@17.0.1)
- telejson: 7.2.0
- tocbot: 4.25.0
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- - encoding
- - supports-color
dev: true
- /@storybook/blocks@7.6.6(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-QLqkiSNrtGnh8RK9ipD63jVAUenkRu+72xR31DViZWRV9V8G2hzky5E/RoZWPEx+DfmBIUJ7Tcef6cCRcxEj9A==}
+ /@storybook/blocks@8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-9dRXk9zLJVPOmEWsSXm10XUmIfvS/tVgeBgFXNbusFQZXPpexIPNdRgB004pDGg9RvlY78ykpnd3yP143zaXMg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
dependencies:
- '@storybook/channels': 7.6.6
- '@storybook/client-logger': 7.6.6
- '@storybook/components': 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@storybook/core-events': 7.6.6
- '@storybook/csf': 0.1.2
- '@storybook/docs-tools': 7.6.6
+ '@storybook/channels': 8.0.4
+ '@storybook/client-logger': 8.0.4
+ '@storybook/components': 8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/core-events': 8.0.4
+ '@storybook/csf': 0.1.3
+ '@storybook/docs-tools': 8.0.4
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@storybook/preview-api': 7.6.6
- '@storybook/theming': 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.6
+ '@storybook/icons': 1.2.9(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/manager-api': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/preview-api': 8.0.4
+ '@storybook/theming': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/types': 8.0.4
'@types/lodash': 4.17.0
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.4.2(react@17.0.1)
+ markdown-to-jsx: 7.3.2(react@17.0.2)
memoizerific: 1.11.3
polished: 4.3.1
- react: 17.0.1
- react-colorful: 5.6.1(react-dom@17.0.1)(react@17.0.1)
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-colorful: 5.6.1(react-dom@17.0.2)(react@17.0.2)
+ react-dom: 17.0.2(react@17.0.2)
telejson: 7.2.0
tocbot: 4.25.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- '@types/react'
- - '@types/react-dom'
- encoding
- supports-color
dev: true
- /@storybook/builder-manager@7.6.6:
- resolution: {integrity: sha512-96vmtUqh016H2n80xhvBZU2w5flTOzY7S0nW9nfxbY4UY4b39WajgwJ5wpg8l0YmCwQTrxCwY9/VE2Pd6CCqPA==}
+ /@storybook/builder-manager@8.0.4:
+ resolution: {integrity: sha512-BafYVxq77uuTmXdjYo5by42OyOrb6qcpWYKva3ntWK2ZhTaLJlwwqAOdahT1DVzi4VeUP6465YvsTCzIE8fuIw==}
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 7.6.6
- '@storybook/manager': 7.6.6
- '@storybook/node-logger': 7.6.6
+ '@storybook/core-common': 8.0.4
+ '@storybook/manager': 8.0.4
+ '@storybook/node-logger': 8.0.4
'@types/ejs': 3.1.5
- '@types/find-cache-dir': 3.2.1
- '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20)
+ '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2)
browser-assert: 1.2.1
ejs: 3.1.9
- esbuild: 0.18.20
+ esbuild: 0.20.2
esbuild-plugin-alias: 0.2.1
- express: 4.18.3
- find-cache-dir: 3.3.2
+ express: 4.19.1
fs-extra: 11.2.0
process: 0.11.10
util: 0.12.5
@@ -9186,12 +8616,12 @@ packages:
- supports-color
dev: true
- /@storybook/builder-vite@7.6.13(typescript@5.2.2)(vite@4.3.9):
- resolution: {integrity: sha512-BpOUP1QPS7NeTTTs5i2gUmORtjigo2S6B57Pb08vDyy1/1bd+NpkLvHvdc/TxBBc57FI4TS/7m8NtwIYHtwkcQ==}
+ /@storybook/builder-vite@8.0.4(typescript@5.4.2)(vite@5.1.6):
+ resolution: {integrity: sha512-Whb001bGkoGQ6/byp9QTQJ4NO61Qa5bh1p5WEEMJ5wYvHm83b+B/IwwilUfU5mL9bJB/RjbwyKcSQqGP6AxMzA==}
peerDependencies:
'@preact/preset-vite': '*'
typescript: '>= 4.3.x'
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ vite: ^4.0.0 || ^5.0.0
vite-plugin-glimmerx: '*'
peerDependenciesMeta:
'@preact/preset-vite':
@@ -9201,78 +8631,55 @@ packages:
vite-plugin-glimmerx:
optional: true
dependencies:
- '@storybook/channels': 7.6.13
- '@storybook/client-logger': 7.6.13
- '@storybook/core-common': 7.6.13
- '@storybook/csf-plugin': 7.6.13
- '@storybook/node-logger': 7.6.13
- '@storybook/preview': 7.6.13
- '@storybook/preview-api': 7.6.13
- '@storybook/types': 7.6.13
+ '@storybook/channels': 8.0.4
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-common': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/csf-plugin': 8.0.4
+ '@storybook/node-logger': 8.0.4
+ '@storybook/preview': 8.0.4
+ '@storybook/preview-api': 8.0.4
+ '@storybook/types': 8.0.4
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
- express: 4.18.3
+ express: 4.19.1
find-cache-dir: 3.3.2
fs-extra: 11.2.0
magic-string: 0.30.8
- rollup: 3.29.4
- typescript: 5.2.2
- vite: 4.3.9
+ ts-dedent: 2.2.0
+ typescript: 5.4.2
+ vite: 5.1.6(@types/node@20.11.28)
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/channels@7.6.12:
- resolution: {integrity: sha512-TaPl5Y3lOoVi5kTLgKNRX8xh2sUPekH0Id1l4Ymw+lpgriEY6r60bmkZLysLG1GhlskpQ/da2+S2ap2ht8P2TQ==}
- dependencies:
- '@storybook/client-logger': 7.6.12
- '@storybook/core-events': 7.6.12
- '@storybook/global': 5.0.0
- qs: 6.12.0
- telejson: 7.2.0
- tiny-invariant: 1.3.3
- dev: true
-
- /@storybook/channels@7.6.13:
- resolution: {integrity: sha512-AiplFJXPjgHA62xqZFq7SwCS+o8bFrYLPM9I8yNY+8jhAi9N3Yig+h2P0jOXxLKicwrCXa5ZJ7PZK05M1r6YqA==}
+ /@storybook/channels@8.0.4:
+ resolution: {integrity: sha512-haKV+8RbiSzLjicowUfc7h2fTClZHX/nz9SRUecf4IEZUEu2T78OgM/TzqZvL7rA3+/fKqp5iI+3PN3OA75Sdg==}
dependencies:
- '@storybook/client-logger': 7.6.13
- '@storybook/core-events': 7.6.13
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-events': 8.0.4
'@storybook/global': 5.0.0
- qs: 6.12.0
- telejson: 7.2.0
- tiny-invariant: 1.3.3
- dev: true
-
- /@storybook/channels@7.6.6:
- resolution: {integrity: sha512-vvo7fBe2WffPonNNOA7Xx7jcHAto8qJYlq+VMysfheXrsRRbhHl3WQOA18Vm8hV9txtqdqk0hwQiXOWvhYVpeQ==}
- dependencies:
- '@storybook/client-logger': 7.6.6
- '@storybook/core-events': 7.6.6
- '@storybook/global': 5.0.0
- qs: 6.12.0
telejson: 7.2.0
tiny-invariant: 1.3.3
dev: true
- /@storybook/cli@7.6.6:
- resolution: {integrity: sha512-FLmWrbmGOqe1VYwqyIWxU2lJcYPssORmSbSVVPw6OqQIXx3NrNBrmZDLncMwbVCDQ8eU54J1zb+MyDmSqMbVFg==}
+ /@storybook/cli@8.0.4(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-8jb8hrulRMfyFyNXFEapxHBS51xb42ZZGfVAacXIsHOJtjOd5CnOoSUYn0aOkVl19VF/snoa9JOW7BaW/50Eqw==}
hasBin: true
dependencies:
- '@babel/core': 7.24.0
- '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
'@babel/types': 7.24.0
'@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 7.6.6
- '@storybook/core-common': 7.6.6
- '@storybook/core-events': 7.6.6
- '@storybook/core-server': 7.6.6
- '@storybook/csf-tools': 7.6.6
- '@storybook/node-logger': 7.6.6
- '@storybook/telemetry': 7.6.6
- '@storybook/types': 7.6.6
+ '@storybook/codemod': 8.0.4
+ '@storybook/core-common': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/core-server': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/csf-tools': 8.0.4
+ '@storybook/node-logger': 8.0.4
+ '@storybook/telemetry': 8.0.4
+ '@storybook/types': 8.0.4
'@types/semver': 7.5.8
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
@@ -9282,207 +8689,95 @@ packages:
detect-indent: 6.1.0
envinfo: 7.11.1
execa: 5.1.1
- express: 4.18.3
find-up: 5.0.0
fs-extra: 11.2.0
get-npm-tarball-url: 2.1.0
- get-port: 5.1.1
- giget: 1.2.1
+ giget: 1.2.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.0)
+ jscodeshift: 0.15.2(@babel/preset-env@7.24.3)
leven: 3.1.0
ora: 5.4.1
- prettier: 2.8.8
+ prettier: 3.2.5
prompts: 2.4.2
- puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
semver: 7.6.0
- simple-update-notifier: 2.0.0
strip-json-comments: 3.1.1
tempy: 1.0.1
+ tiny-invariant: 1.3.3
ts-dedent: 2.2.0
- util-deprecate: 1.0.2
transitivePeerDependencies:
+ - '@babel/preset-env'
- bufferutil
- encoding
+ - react
+ - react-dom
- supports-color
- utf-8-validate
dev: true
- /@storybook/client-logger@7.6.12:
- resolution: {integrity: sha512-hiRv6dXsOttMPqm9SxEuFoAtDe9rs7TUS8XcO5rmJ9BgfwBJsYlHzAxXkazxmvlyZtKL7gMx6m8OYbCdZgUqtA==}
- dependencies:
- '@storybook/global': 5.0.0
- dev: true
-
- /@storybook/client-logger@7.6.13:
- resolution: {integrity: sha512-uo51MsUG1Fbi1IA+me9tewF1mFiaYuyR0IMeBmaU3Z3CtjEUdOekmvRQ9ckoFn+BbKtxSipTodiR4HmIZDta3g==}
- dependencies:
- '@storybook/global': 5.0.0
- dev: true
-
- /@storybook/client-logger@7.6.6:
- resolution: {integrity: sha512-WEvVyuQR5oNF8jcMmGA13zDjxP/l46kOBBvB6JSc8toUdtLZ/kZWSnU0ioNM8+ECpFqXHjBcF2K6uSJOEb6YEg==}
- dependencies:
- '@storybook/global': 5.0.0
- dev: true
-
- /@storybook/codemod@7.6.6:
- resolution: {integrity: sha512-6QwW6T6ZgwwbTkEoZ7CAoX7lUUob7Sy7bRkMHhSjJe2++wEVFOYLvzHcLUJCupK59+WhmsJU9PpUMlXEKi40TQ==}
- dependencies:
- '@babel/core': 7.24.0
- '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.2
- '@storybook/csf-tools': 7.6.6
- '@storybook/node-logger': 7.6.6
- '@storybook/types': 7.6.6
- '@types/cross-spawn': 6.0.6
- cross-spawn: 7.0.3
- globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.0)
- lodash: 4.17.21
- prettier: 2.8.8
- recast: 0.23.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@storybook/components@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-PCijPqmlZd7qyTzNr+vD0Kf8sAI9vWJIaxbSjXwn/De3e63m4fsEcIf8FaUT8cMZ46AWZvaxaxX5km2u0UISJQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@radix-ui/react-select': 1.2.2(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-toolbar': 1.0.4(react-dom@17.0.1)(react@17.0.1)
- '@storybook/client-logger': 7.6.12
- '@storybook/csf': 0.1.2
- '@storybook/global': 5.0.0
- '@storybook/theming': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.12
- memoizerific: 1.11.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- use-resize-observer: 9.1.0(react-dom@17.0.1)(react@17.0.1)
- util-deprecate: 1.0.2
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- dev: true
-
- /@storybook/components@7.6.6(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-FSfcRxdmV4+LJHjMk0eodGVnZdb2qrKKmbtsn0O/434z586zPA287/wJJsm4JS/Xr1WS9oTvU6mYMDChkcxgeQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ /@storybook/client-logger@8.0.4:
+ resolution: {integrity: sha512-2SeEg3PT/d0l/+EAVtyj9hmMLTyTPp+bRBSzxYouBjtJPM1jrdKpFagj1o3uBRovwWm9SIVX6/ZsoRC33PEV1g==}
dependencies:
- '@radix-ui/react-select': 1.2.2(react-dom@17.0.1)(react@17.0.1)
- '@radix-ui/react-toolbar': 1.0.4(react-dom@17.0.1)(react@17.0.1)
- '@storybook/client-logger': 7.6.6
- '@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/theming': 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.6
- memoizerific: 1.11.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- use-resize-observer: 9.1.0(react-dom@17.0.1)(react@17.0.1)
- util-deprecate: 1.0.2
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- dev: true
-
- /@storybook/core-client@7.6.13:
- resolution: {integrity: sha512-6tzWZ5u/8YXSthVuBqDHGABqALsiv/h+IiYaeg+UPWgz7sYwyj/IoFlHN1/du/h1wV5bc8GZyPcAIrOHxF60rQ==}
- dependencies:
- '@storybook/client-logger': 7.6.13
- '@storybook/preview-api': 7.6.13
- dev: true
-
- /@storybook/core-client@7.6.6:
- resolution: {integrity: sha512-P100aNf+WpvzlfULZp1NPd60/nxsppLmft2DdIyAx1j4QPMZvUJyJB+hdBMzTFiPEhIUncIMoIVf2R3UXC5DfA==}
- dependencies:
- '@storybook/client-logger': 7.6.6
- '@storybook/preview-api': 7.6.6
- dev: true
-
- /@storybook/core-common@7.6.12:
- resolution: {integrity: sha512-kM9YiBBMM2x5v/oylL7gdO1PS4oehgJC21MivS9p5QZ8uuXKtCQ6UQvI3rzaV+1ZzUA4n+I8MyaMrNIQk8KDbw==}
- dependencies:
- '@storybook/core-events': 7.6.12
- '@storybook/node-logger': 7.6.12
- '@storybook/types': 7.6.12
- '@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.23
- '@types/node-fetch': 2.6.11
- '@types/pretty-hrtime': 1.0.3
- chalk: 4.1.0
- esbuild: 0.18.20
- esbuild-register: 3.5.0(esbuild@0.18.20)
- file-system-cache: 2.3.0
- find-cache-dir: 3.3.2
- find-up: 5.0.0
- fs-extra: 11.2.0
- glob: 10.3.10
- handlebars: 4.7.8
- lazy-universal-dotenv: 4.0.0
- node-fetch: 2.7.0
- picomatch: 2.3.1
- pkg-dir: 5.0.0
- pretty-hrtime: 1.0.3
- resolve-from: 5.0.0
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: true
-
- /@storybook/core-common@7.6.13:
- resolution: {integrity: sha512-kCCVDga/66wIWFSluT3acD3/JT3vwV7A9rxG8FZF5K38quU/b37sRXvCw8Yk5HJ4rQhrB76cxVhIOy/ZucaZVw==}
- dependencies:
- '@storybook/core-events': 7.6.13
- '@storybook/node-logger': 7.6.13
- '@storybook/types': 7.6.13
- '@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.23
- '@types/node-fetch': 2.6.11
- '@types/pretty-hrtime': 1.0.3
- chalk: 4.1.0
- esbuild: 0.18.20
- esbuild-register: 3.5.0(esbuild@0.18.20)
- file-system-cache: 2.3.0
- find-cache-dir: 3.3.2
- find-up: 5.0.0
- fs-extra: 11.2.0
- glob: 10.3.10
- handlebars: 4.7.8
- lazy-universal-dotenv: 4.0.0
- node-fetch: 2.7.0
- picomatch: 2.3.1
- pkg-dir: 5.0.0
- pretty-hrtime: 1.0.3
- resolve-from: 5.0.0
- ts-dedent: 2.2.0
+ dev: true
+
+ /@storybook/codemod@8.0.4:
+ resolution: {integrity: sha512-bysG46P4wjlR3RCpr/ntNAUaupWpzLcWYWti3iNtIyZ/iPrX6KtXoA9QCIwJZrlv41us6F+KEZbzLzkgWbymtQ==}
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/types': 7.24.0
+ '@storybook/csf': 0.1.3
+ '@storybook/csf-tools': 8.0.4
+ '@storybook/node-logger': 8.0.4
+ '@storybook/types': 8.0.4
+ '@types/cross-spawn': 6.0.6
+ cross-spawn: 7.0.3
+ globby: 11.1.0
+ jscodeshift: 0.15.2(@babel/preset-env@7.24.3)
+ lodash: 4.17.21
+ prettier: 3.2.5
+ recast: 0.23.6
+ tiny-invariant: 1.3.3
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
- /@storybook/core-common@7.6.6:
- resolution: {integrity: sha512-DpbFSYw8LHuwpeU2ec5uWryxrSqslFJnWTfNA7AvpzCviWXkz4kq+YYrDee9XExF6OozNwILmG6m52SnraysBA==}
+ /@storybook/components@8.0.4(@types/react@18.2.67)(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-i5ngl5GTOLB9nZ1cmpxTjtWct5IuH9UxzFC73a0jHMkCwN26w16IqufRVDaoQv0AvZN4pd4fNM2in/XVHA10dw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/core-events': 7.6.6
- '@storybook/node-logger': 7.6.6
- '@storybook/types': 7.6.6
- '@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.23
- '@types/node-fetch': 2.6.11
- '@types/pretty-hrtime': 1.0.3
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.67)(react@17.0.2)
+ '@storybook/client-logger': 8.0.4
+ '@storybook/csf': 0.1.3
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 1.2.9(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/theming': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/types': 8.0.4
+ memoizerific: 1.11.3
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: true
+
+ /@storybook/core-common@8.0.4:
+ resolution: {integrity: sha512-dzFRLm5FxUa2EFE6Rx/KLDTJNLBIp1S2/+Q1K+rG8V+CLvewCc2Cd486rStZqSXEKI7vDnsRs/aMla+N0X/++Q==}
+ dependencies:
+ '@storybook/core-events': 8.0.4
+ '@storybook/csf-tools': 8.0.4
+ '@storybook/node-logger': 8.0.4
+ '@storybook/types': 8.0.4
+ '@yarnpkg/fslib': 2.10.3
+ '@yarnpkg/libzip': 2.3.0
chalk: 4.1.0
- esbuild: 0.18.20
- esbuild-register: 3.5.0(esbuild@0.18.20)
+ cross-spawn: 7.0.3
+ esbuild: 0.20.2
+ esbuild-register: 3.5.0(esbuild@0.20.2)
+ execa: 5.1.1
file-system-cache: 2.3.0
find-cache-dir: 3.3.2
find-up: 5.0.0
@@ -9495,50 +8790,44 @@ packages:
pkg-dir: 5.0.0
pretty-hrtime: 1.0.3
resolve-from: 5.0.0
+ semver: 7.6.0
+ tempy: 1.0.1
+ tiny-invariant: 1.3.3
ts-dedent: 2.2.0
+ util: 0.12.5
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/core-events@7.6.12:
- resolution: {integrity: sha512-IO4cwk7bBCKH6lLnnIlHO9FwQXt/9CzLUAoZSY9msWsdPppCdKlw8ynJI5YarSNKDBUn8ArIfnRf0Mve0KQr9Q==}
- dependencies:
- ts-dedent: 2.2.0
- dev: true
-
- /@storybook/core-events@7.6.13:
- resolution: {integrity: sha512-hsL6JT273b1RcJBGHpNNLJ1ilzFMT4UCJwwtOpNNQVPBJt0Hn22vxC69/hpqSINrhHRLj3ak8CTtA0ynVjngaQ==}
- dependencies:
- ts-dedent: 2.2.0
- dev: true
-
- /@storybook/core-events@7.6.6:
- resolution: {integrity: sha512-7+q9HiZiLxaQcwpaSLQrLdjHNHBoOoUY9ZcZXI9iNFSopOgb/ItDnzzlpv08NC7CbKae1hVKJM/t5aSTl7tCMw==}
+ /@storybook/core-events@8.0.4:
+ resolution: {integrity: sha512-1FgLacIGi9i6/fyxw7ZJDC621RK47IMaA3keH4lc11ASRzCSwJ4YOrXjBFjfPc79EF2BuX72DDJNbhj6ynfF3g==}
dependencies:
ts-dedent: 2.2.0
dev: true
- /@storybook/core-server@7.6.6:
- resolution: {integrity: sha512-QFVahaExgGtq9swBXgQAMUiCqpCcyVXOiKTIy1j+1uAhPVqhpCxBkkFoXruih5hbIMZyohE4mLPCAr/ivicoDg==}
+ /@storybook/core-server@8.0.4(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-/633Pp7LPcDWXkPLSW+W9VUYUbVkdVBG6peXjuzogV0vzdM0dM9af/T0uV2NQxUhzoy6/7QdSDljE+eEOBs2Lw==}
dependencies:
'@aw-web-design/x-default-browser': 1.4.126
+ '@babel/core': 7.24.3
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 7.6.6
- '@storybook/channels': 7.6.6
- '@storybook/core-common': 7.6.6
- '@storybook/core-events': 7.6.6
- '@storybook/csf': 0.1.2
- '@storybook/csf-tools': 7.6.6
- '@storybook/docs-mdx': 0.1.0
+ '@storybook/builder-manager': 8.0.4
+ '@storybook/channels': 8.0.4
+ '@storybook/core-common': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/csf': 0.1.3
+ '@storybook/csf-tools': 8.0.4
+ '@storybook/docs-mdx': 3.0.0
'@storybook/global': 5.0.0
- '@storybook/manager': 7.6.6
- '@storybook/node-logger': 7.6.6
- '@storybook/preview-api': 7.6.6
- '@storybook/telemetry': 7.6.6
- '@storybook/types': 7.6.6
+ '@storybook/manager': 8.0.4
+ '@storybook/manager-api': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/node-logger': 8.0.4
+ '@storybook/preview-api': 8.0.4
+ '@storybook/telemetry': 8.0.4
+ '@storybook/types': 8.0.4
'@types/detect-port': 1.3.5
- '@types/node': 18.19.23
+ '@types/node': 18.19.26
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.8
better-opn: 3.0.2
@@ -9546,7 +8835,7 @@ packages:
cli-table3: 0.6.3
compression: 1.7.4
detect-port: 1.5.1
- express: 4.18.3
+ express: 4.19.1
fs-extra: 11.2.0
globby: 11.1.0
ip: 2.0.1
@@ -9561,74 +8850,35 @@ packages:
ts-dedent: 2.2.0
util: 0.12.5
util-deprecate: 1.0.2
- watchpack: 2.4.0
+ watchpack: 2.4.1
ws: 8.16.0
transitivePeerDependencies:
- bufferutil
- encoding
+ - react
+ - react-dom
- supports-color
- utf-8-validate
dev: true
- /@storybook/csf-plugin@7.6.12:
- resolution: {integrity: sha512-fe/84AyctJcrpH1F/tTBxKrbjv0ilmG3ZTwVcufEiAzupZuYjQ/0P+Pxs8m8VxiGJZZ1pWofFFDbYi+wERjamQ==}
- dependencies:
- '@storybook/csf-tools': 7.6.12
- unplugin: 1.9.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@storybook/csf-plugin@7.6.13:
- resolution: {integrity: sha512-ZTyAao/W8Aob6wT1nC4cTfBjWAT9FN0Y9nzairbvNOiqRkAvk3w/02K4BauESHYMm06QC8Pg0tzS1s+tWJtRRQ==}
+ /@storybook/csf-plugin@8.0.4:
+ resolution: {integrity: sha512-pEgctWuS/qeKMFZJJUM2JuKwjKBt27ye+216ft7xhNqpsrmCgumJYrkU/ii2CsFJU/qr5Fu9EYw+N+vof1OalQ==}
dependencies:
- '@storybook/csf-tools': 7.6.13
- unplugin: 1.9.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@storybook/csf-tools@7.6.12:
- resolution: {integrity: sha512-MdhkYYxSW5I6Jpk34gTkAZsuj9sxe0xdyeUQpNa8CgJxG43F+ehZ6scW/IPjoSG9gCXBUJMekq26UrmbVfsLCQ==}
- dependencies:
- '@babel/generator': 7.23.6
- '@babel/parser': 7.24.0
- '@babel/traverse': 7.24.0
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.2
- '@storybook/types': 7.6.12
- fs-extra: 11.2.0
- recast: 0.23.6
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@storybook/csf-tools@7.6.13:
- resolution: {integrity: sha512-N0erD3fhbZIDkQpcHlNTLvkpWVVtpiOjY3JO8B5SdBT2uQ8T7aXx7IEM3Q8g1f/BpfjkM15rZl9r4HFtm5E43Q==}
- dependencies:
- '@babel/generator': 7.23.6
- '@babel/parser': 7.24.0
- '@babel/traverse': 7.24.0
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.2
- '@storybook/types': 7.6.13
- fs-extra: 11.2.0
- recast: 0.23.6
- ts-dedent: 2.2.0
+ '@storybook/csf-tools': 8.0.4
+ unplugin: 1.10.0
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/csf-tools@7.6.6:
- resolution: {integrity: sha512-VXOZCzfSVJL832u17pPhFu1x3PPaAN9d8VXNFX+t/2raga7tK3T7Qhe7lWfP7EZcrVvSCEEp0aMRz2EzzDGVtw==}
+ /@storybook/csf-tools@8.0.4:
+ resolution: {integrity: sha512-dMSZxWnXBhmXGOZZOAJ4DKZRCYdA0HaqqZ4/eF9MLLsI+qvW4EklcpjVY6bsIzACgubRWtRZkTpxTnjExi/N1A==}
dependencies:
- '@babel/generator': 7.23.6
- '@babel/parser': 7.24.0
- '@babel/traverse': 7.24.0
+ '@babel/generator': 7.24.1
+ '@babel/parser': 7.24.1
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
- '@storybook/csf': 0.1.2
- '@storybook/types': 7.6.6
+ '@storybook/csf': 0.1.3
+ '@storybook/types': 8.0.4
fs-extra: 11.2.0
recast: 0.23.6
ts-dedent: 2.2.0
@@ -9642,22 +8892,22 @@ packages:
lodash: 4.17.21
dev: true
- /@storybook/csf@0.1.2:
- resolution: {integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==}
+ /@storybook/csf@0.1.3:
+ resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==}
dependencies:
type-fest: 2.19.0
dev: true
- /@storybook/docs-mdx@0.1.0:
- resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
+ /@storybook/docs-mdx@3.0.0:
+ resolution: {integrity: sha512-NmiGXl2HU33zpwTv1XORe9XG9H+dRUC1Jl11u92L4xr062pZtrShLmD4VKIsOQujxhhOrbxpwhNOt+6TdhyIdQ==}
dev: true
- /@storybook/docs-tools@7.6.12:
- resolution: {integrity: sha512-nY2lqEDTd/fR/D91ZLlIp+boSuJtkb8DqHW7pECy61rJqzGq4QpepRaWjQDKnGTgPItrsPfTPOu6iXvXNK07Ow==}
+ /@storybook/docs-tools@8.0.4:
+ resolution: {integrity: sha512-PONfG8j/AOHi79NbEkneFRZIscrShbA0sgA+62zeejH4r9+fuIkIKtLnKcAxvr8Bm6uo9aSQbISJZUcBG42WhQ==}
dependencies:
- '@storybook/core-common': 7.6.12
- '@storybook/preview-api': 7.6.12
- '@storybook/types': 7.6.12
+ '@storybook/core-common': 8.0.4
+ '@storybook/preview-api': 8.0.4
+ '@storybook/types': 8.0.4
'@types/doctrine': 0.0.3
assert: 2.1.0
doctrine: 3.0.0
@@ -9667,77 +8917,48 @@ packages:
- supports-color
dev: true
- /@storybook/docs-tools@7.6.13:
- resolution: {integrity: sha512-m3YAyNRQ97vm/rLj48Lgg8jjhbjr+668aADU49S50zjwtvC7H9C0h8PJI3LyE1Owxg2Ld2B6bG5wBv30nPnxZg==}
- dependencies:
- '@storybook/core-common': 7.6.13
- '@storybook/preview-api': 7.6.13
- '@storybook/types': 7.6.13
- '@types/doctrine': 0.0.3
- assert: 2.1.0
- doctrine: 3.0.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - encoding
- - supports-color
+ /@storybook/global@5.0.0:
+ resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
dev: true
- /@storybook/docs-tools@7.6.6:
- resolution: {integrity: sha512-nc5ZjN2s8SC2PtsZoFf9Wm6gD8TcSlkYbF/mjtyLCGN+Fi+k5B5iudqoa65H19hwiLlzBdcnpQ8C89AiK33J9Q==}
+ /@storybook/icons@1.2.9(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/core-common': 7.6.6
- '@storybook/preview-api': 7.6.6
- '@storybook/types': 7.6.6
- '@types/doctrine': 0.0.3
- assert: 2.1.0
- doctrine: 3.0.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: true
-
- /@storybook/global@5.0.0:
- resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
dev: true
- /@storybook/manager-api@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-XA5KQpY44d6mlqt0AlesZ7fsPpm1PCpoV+nRGFBR0YtF6RdPFvrPyHhlGgLkJC4xSyb2YJmLKn8cERSluAcEgQ==}
+ /@storybook/instrumenter@8.0.4:
+ resolution: {integrity: sha512-lkHv1na12oMTZvuDbzufgqrtFlV1XqdXrAAg7YXZOia/oMz6Z/XMldEqwLPUCLGVodbFJofrpE67Wtw8dNTDQg==}
dependencies:
- '@storybook/channels': 7.6.12
- '@storybook/client-logger': 7.6.12
- '@storybook/core-events': 7.6.12
- '@storybook/csf': 0.1.2
+ '@storybook/channels': 8.0.4
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-events': 8.0.4
'@storybook/global': 5.0.0
- '@storybook/router': 7.6.12
- '@storybook/theming': 7.6.12(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.12
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- store2: 2.14.3
- telejson: 7.2.0
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - react
- - react-dom
+ '@storybook/preview-api': 8.0.4
+ '@vitest/utils': 1.4.0
+ util: 0.12.5
dev: true
- /@storybook/manager-api@7.6.6(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-euRAbSZAUzHDt6z1Pq/g45N/RNqta9RaQAym18zt/oLWiYOIrkLmdf7kCuFYsmuA5XQBytiJqwkAD7uF1aLe0g==}
+ /@storybook/manager-api@8.0.4(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-TudiRmWlsi8kdjwqW0DDLen76Zp4Sci/AnvTbZvZOWe8C2mruxcr6aaGwuIug6y+uxIyXDvURF6Cek5Twz4isg==}
dependencies:
- '@storybook/channels': 7.6.6
- '@storybook/client-logger': 7.6.6
- '@storybook/core-events': 7.6.6
- '@storybook/csf': 0.1.2
+ '@storybook/channels': 8.0.4
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/csf': 0.1.3
'@storybook/global': 5.0.0
- '@storybook/router': 7.6.6
- '@storybook/theming': 7.6.6(react-dom@17.0.1)(react@17.0.1)
- '@storybook/types': 7.6.6
+ '@storybook/icons': 1.2.9(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/router': 8.0.4
+ '@storybook/theming': 8.0.4(react-dom@17.0.2)(react@17.0.2)
+ '@storybook/types': 8.0.4
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- semver: 7.6.0
store2: 2.14.3
telejson: 7.2.0
ts-dedent: 2.2.0
@@ -9746,134 +8967,73 @@ packages:
- react-dom
dev: true
- /@storybook/manager@7.6.6:
- resolution: {integrity: sha512-Ga3LcSu/xxSyg+cLlO9AS8QjW+D667V+c9qQPmsFyU6qfFc6m6mVqcRLSmFVD5e7P/o0FL7STOf9jAKkDcW8xw==}
- dev: true
-
- /@storybook/mdx2-csf@1.1.0:
- resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
- dev: true
-
- /@storybook/node-logger@7.6.12:
- resolution: {integrity: sha512-iS44/EjfF6hLecKzICmcpQoB9bmVi4tXx5gVXnbI5ZyziBibRQcg/U191Njl7wY2ScN/RCQOr8lh5k57rI3Prg==}
- dev: true
-
- /@storybook/node-logger@7.6.13:
- resolution: {integrity: sha512-Ci/2Gd0+Qd3fX6GWGS1UAa/bTl0uALsEuMuzOO0meKEPEEYZvBFCoeK6lP1ysMnxWxKaDjxNr01JlTpmjfT6ag==}
- dev: true
-
- /@storybook/node-logger@7.6.6:
- resolution: {integrity: sha512-b2OF9GRNI01MlBlnDGS8S6/yOpBNl8eH/0ONafuMPzFEZs5PouHGsFflJvQwwcdVTknMjF5uVS2eSmnLZ8spvA==}
- dev: true
-
- /@storybook/postinstall@7.6.12:
- resolution: {integrity: sha512-uR0mDPxLzPaouCNrLp8vID8lATVTOtG7HB6lfjjzMdE3sN6MLmK9n2z2nXjb5DRRxOFWMeE1/4Age1/Ml2tnmA==}
+ /@storybook/manager@8.0.4:
+ resolution: {integrity: sha512-M5IofDSxbIQIdAglxUtZOGKjZ1EAq1Mdbh4UolVsF1PKF6dAvBQJLVW6TiLjEbmPBtqgeYKMgrmmYiFNqVcdBQ==}
dev: true
- /@storybook/preview-api@7.6.12:
- resolution: {integrity: sha512-uSzeMSLnCRROjiofJP0F0niLWL+sboQ5ktHW6BAYoPwprumXduPxKBUVEZNxMbVYoAz9v/kEZmaLauh8LRP2Hg==}
- dependencies:
- '@storybook/channels': 7.6.12
- '@storybook/client-logger': 7.6.12
- '@storybook/core-events': 7.6.12
- '@storybook/csf': 0.1.2
- '@storybook/global': 5.0.0
- '@storybook/types': 7.6.12
- '@types/qs': 6.9.12
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- qs: 6.12.0
- synchronous-promise: 2.0.17
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/preview-api@7.6.13:
- resolution: {integrity: sha512-BbRlVpxgOXSe4/hpf9cRtbvvCJoRrFbjMCnmaDh+krd8O4wLbVknKhqgSR46qLyW/VGud9Rb3upakz7tNP+mtg==}
- dependencies:
- '@storybook/channels': 7.6.13
- '@storybook/client-logger': 7.6.13
- '@storybook/core-events': 7.6.13
- '@storybook/csf': 0.1.2
- '@storybook/global': 5.0.0
- '@storybook/types': 7.6.13
- '@types/qs': 6.9.12
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- qs: 6.12.0
- synchronous-promise: 2.0.17
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
+ /@storybook/node-logger@8.0.4:
+ resolution: {integrity: sha512-cALLHuX53vLQsoJamGRlquh2pfhPq9copXou2JTmFT6mrCcipo77SzhBDfeeuhaGv6vUWPfmGjPBEHXWGPe4+g==}
dev: true
- /@storybook/preview-api@7.6.6:
- resolution: {integrity: sha512-Bt6xIAR5yZ/JWc90X4BbLOA97iL65glZ1SOBgFFv2mHrdZ1lcdKhAlQr2aeJAf1mLvBtalPjvKzi9EuVY3FZ4w==}
+ /@storybook/preview-api@8.0.4:
+ resolution: {integrity: sha512-uZCgZ/7BZkFTNudCBWx3YPFVdReMQSZJj9EfQVhQaPmfGORHGMvZMRsQXl0ONhPy7zDD4rVQxu5dSKWmIiYoWQ==}
dependencies:
- '@storybook/channels': 7.6.6
- '@storybook/client-logger': 7.6.6
- '@storybook/core-events': 7.6.6
- '@storybook/csf': 0.1.2
+ '@storybook/channels': 8.0.4
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/csf': 0.1.3
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.6
- '@types/qs': 6.9.12
+ '@storybook/types': 8.0.4
+ '@types/qs': 6.9.14
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
qs: 6.12.0
- synchronous-promise: 2.0.17
+ tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/preview@7.6.13:
- resolution: {integrity: sha512-XW8+6PRVC/AfdY4Vf67XFNu9bNi5AwyLnLz7v+H4VEv+AnalRDXuszQcT6rUEumDDsDx2uwAhVs19xaQyAJu/w==}
+ /@storybook/preview@8.0.4:
+ resolution: {integrity: sha512-dJa13bIxQBfa5ZsXAeL6X/oXI6b87Fy31pvpKPkW1o+7M6MC4OvwGQBqgAd7m8yn6NuIHxrdwjEupa7l7PGb6w==}
dev: true
- /@storybook/react-dom-shim@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-P8eu/s/RQlc/7Yvr260lqNa6rttxIYiPUuHQBu9oCacwkpB3Xep2R/PUY2CifRHqlDhaOINO/Z79oGZl4EBQRQ==}
+ /@storybook/react-dom-shim@8.0.4(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-H8bci23e+G40WsdYPuPrhAjCeeXypXuAV6mTVvLHGKH+Yb+3wiB1weaXrot/TgzPbkDNybuhTI3Qm48FPLt0bw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@storybook/router@7.6.12:
- resolution: {integrity: sha512-1fqscJbePFJXhapqiv7fAIIqAvouSsdPnqWjJGJrUMR6JBtRYMcrb3MnDeqi9OYnU73r65BrQBPtSzWM8nP0LQ==}
- dependencies:
- '@storybook/client-logger': 7.6.12
- memoizerific: 1.11.3
- qs: 6.12.0
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
dev: true
- /@storybook/router@7.6.6:
- resolution: {integrity: sha512-dkn81MtxrG7JMDbOHEcVZkTDVKsneg72CyqJ8ELZfC81iKQcDMQkV9mdmnMl45aKn6UrscudI4K23OxQmsevkw==}
+ /@storybook/router@8.0.4:
+ resolution: {integrity: sha512-hlR80QvmLBflAqMeGcgtDuSe6TJlzdizwEAkBLE1lDvFI6tvvEyAliCAXBpIDdOZTe0u/zeeJkOUXKSx33caoQ==}
dependencies:
- '@storybook/client-logger': 7.6.6
+ '@storybook/client-logger': 8.0.4
memoizerific: 1.11.3
qs: 6.12.0
dev: true
- /@storybook/svelte-vite@7.6.13(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2)(vite@4.3.9):
- resolution: {integrity: sha512-v+5gPKJ4PdQ2TnT5mNZSh7fdV9QdzN4bi1NaB8c083huAcxtzEHZL+xuPMbgMtTV5znpizQKlmEVCzmCdasRRw==}
- engines: {node: ^14.18 || >=16}
+ /@storybook/svelte-vite@8.0.4(@babel/core@7.24.3)(@sveltejs/vite-plugin-svelte@3.0.2)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)(vite@5.1.6):
+ resolution: {integrity: sha512-XLtT9GuiUf/TFE+8tHhn+bYNdA2ycxYCEpmEZQvEkop/+9F/ZLS1PCM4/cynY6eXNkmsmyF6giDep/iqCIxJzA==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
- svelte: ^3.0.0 || ^4.0.0
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ '@sveltejs/vite-plugin-svelte': ^2.0.0 || ^3.0.0
+ svelte: ^4.0.0 || ^5.0.0-next.65
+ vite: ^4.0.0 || ^5.0.0
dependencies:
- '@storybook/builder-vite': 7.6.13(typescript@5.2.2)(vite@4.3.9)
- '@storybook/node-logger': 7.6.13
- '@storybook/svelte': 7.6.13(svelte@3.59.2)
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.9)
+ '@storybook/builder-vite': 8.0.4(typescript@5.4.2)(vite@5.1.6)
+ '@storybook/node-logger': 8.0.4
+ '@storybook/svelte': 8.0.4(svelte@4.2.12)
+ '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@4.2.12)(vite@5.1.6)
magic-string: 0.30.8
- svelte: 3.59.2
- svelte-preprocess: 5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2)
+ svelte: 4.2.12
+ svelte-preprocess: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
sveltedoc-parser: 4.2.1
ts-dedent: 2.2.0
- vite: 4.3.9
+ vite: 5.1.6(@types/node@20.11.28)
transitivePeerDependencies:
- '@babel/core'
- '@preact/preset-vite'
@@ -9891,42 +9051,19 @@ packages:
- vite-plugin-glimmerx
dev: true
- /@storybook/svelte@7.6.13(svelte@3.59.2):
- resolution: {integrity: sha512-0N6P0xCbMISqM96vgE1DG1CISJh7dKbH82n5cZpLNJvsBMT677FWkVOgUoYL8CxFDcfg3ierGlDD+gam10WcFg==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- svelte: ^3.1.0 || ^4.0.0
- dependencies:
- '@storybook/client-logger': 7.6.13
- '@storybook/core-client': 7.6.13
- '@storybook/core-events': 7.6.13
- '@storybook/docs-tools': 7.6.13
- '@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.13
- '@storybook/types': 7.6.13
- svelte: 3.59.2
- sveltedoc-parser: 4.2.1
- ts-dedent: 2.2.0
- type-fest: 2.19.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: true
-
- /@storybook/svelte@7.6.6(svelte@3.59.2):
- resolution: {integrity: sha512-QZWF/0djw+tic3nF3IlVgonEvtuF7xRDlNFIQaYqLKUnruSsp+t/vttI2rivbg54pZ4HoqrwPLYPx2t08KVOBg==}
- engines: {node: '>=16.0.0'}
+ /@storybook/svelte@8.0.4(svelte@4.2.12):
+ resolution: {integrity: sha512-OBQnkYLPbSVUEbk+oSoZKp0oQou/pVnl8nxmokDIcQw1W/jine5IoEz+PfOoCTICvbvAGueRyKD9aPxcIlMRKA==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
- svelte: ^3.1.0 || ^4.0.0
+ svelte: ^4.0.0 || ^5.0.0-next.65
dependencies:
- '@storybook/client-logger': 7.6.6
- '@storybook/core-client': 7.6.6
- '@storybook/core-events': 7.6.6
- '@storybook/docs-tools': 7.6.6
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/docs-tools': 8.0.4
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.6
- '@storybook/types': 7.6.6
- svelte: 3.59.2
+ '@storybook/preview-api': 8.0.4
+ '@storybook/types': 8.0.4
+ svelte: 4.2.12
sveltedoc-parser: 4.2.1
ts-dedent: 2.2.0
type-fest: 2.19.0
@@ -9935,22 +9072,23 @@ packages:
- supports-color
dev: true
- /@storybook/sveltekit@7.6.13(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2)(vite@4.3.9):
- resolution: {integrity: sha512-5KxEXoEMF+bq0Si4z3yaKSUIcWDLg/HuKk3WqjNWmuFAvIAKdWaHINfg+xpDLvB+b9Sjgay5zf2c/rd7moeiUQ==}
- engines: {node: ^14.18 || >=16}
+ /@storybook/sveltekit@8.0.4(@babel/core@7.24.3)(@sveltejs/vite-plugin-svelte@3.0.2)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)(vite@5.1.6):
+ resolution: {integrity: sha512-oTp1DItHT3qPm5BLdcp5uvzRqLPdg03iSrdBSOHTnBMG4HPw+/O7N/lBJLtgKxaYgvrSfTlJw+ltz+kDVE35bw==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
- svelte: ^3.0.0 || ^4.0.0
+ svelte: ^4.0.0 || ^5.0.0-next.65
vite: ^4.0.0 || ^5.0.0
dependencies:
- '@storybook/addon-actions': 7.6.13
- '@storybook/builder-vite': 7.6.13(typescript@5.2.2)(vite@4.3.9)
- '@storybook/svelte': 7.6.13(svelte@3.59.2)
- '@storybook/svelte-vite': 7.6.13(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2)(vite@4.3.9)
- svelte: 3.59.2
- vite: 4.3.9
+ '@storybook/addon-actions': 8.0.4
+ '@storybook/builder-vite': 8.0.4(typescript@5.4.2)(vite@5.1.6)
+ '@storybook/svelte': 8.0.4(svelte@4.2.12)
+ '@storybook/svelte-vite': 8.0.4(@babel/core@7.24.3)(@sveltejs/vite-plugin-svelte@3.0.2)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)(vite@5.1.6)
+ svelte: 4.2.12
+ vite: 5.1.6(@types/node@20.11.28)
transitivePeerDependencies:
- '@babel/core'
- '@preact/preset-vite'
+ - '@sveltejs/vite-plugin-svelte'
- coffeescript
- encoding
- less
@@ -9965,12 +9103,12 @@ packages:
- vite-plugin-glimmerx
dev: true
- /@storybook/telemetry@7.6.6:
- resolution: {integrity: sha512-2WdDcrMrt1bPVgdMVO0tFmVxT6YIjiPRfKbH/7wwYMOGmV75m4mJ9Ha2gzZc/oXTSK1M4/fiK12IgW+S3ErcMg==}
+ /@storybook/telemetry@8.0.4:
+ resolution: {integrity: sha512-Q3ITY6J46R/TrrPRIU1fs3WNs69ExpTJZ9UlB8087qOUyV90Ex33SYk3i10xVWRczxCmyC1V58Xuht6nxz7mNQ==}
dependencies:
- '@storybook/client-logger': 7.6.6
- '@storybook/core-common': 7.6.6
- '@storybook/csf-tools': 7.6.6
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-common': 8.0.4
+ '@storybook/csf-tools': 8.0.4
chalk: 4.1.0
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -9981,155 +9119,106 @@ packages:
- supports-color
dev: true
- /@storybook/testing-library@0.2.2:
- resolution: {integrity: sha512-L8sXFJUHmrlyU2BsWWZGuAjv39Jl1uAqUHdxmN42JY15M4+XCMjGlArdCCjDe1wpTSW6USYISA9axjZojgtvnw==}
+ /@storybook/test@8.0.4(vitest@0.34.6):
+ resolution: {integrity: sha512-/uvE8Rtu7tIcuyQBUzKq7uuDCsjmADI18BApLdwo/qthmN8ERDxRSz0Ngj2gvBMQFv99At8ESi/xh6oFGu3rWg==}
dependencies:
+ '@storybook/client-logger': 8.0.4
+ '@storybook/core-events': 8.0.4
+ '@storybook/instrumenter': 8.0.4
+ '@storybook/preview-api': 8.0.4
'@testing-library/dom': 9.3.4
+ '@testing-library/jest-dom': 6.4.2(vitest@0.34.6)
'@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
- ts-dedent: 2.2.0
+ '@vitest/expect': 1.3.1
+ '@vitest/spy': 1.4.0
+ chai: 4.4.1
+ util: 0.12.5
+ transitivePeerDependencies:
+ - '@jest/globals'
+ - '@types/bun'
+ - '@types/jest'
+ - jest
+ - vitest
dev: true
- /@storybook/theming@7.6.12(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-P4zoMKlSYbNrWJjQROuz+DZSDEpdf3TUvk203EqBRdElqw2EMHcqZ8+0HGPFfVHpqEj05+B9Mr6R/Z/BURj0lw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ /@storybook/testing-library@0.2.2:
+ resolution: {integrity: sha512-L8sXFJUHmrlyU2BsWWZGuAjv39Jl1uAqUHdxmN42JY15M4+XCMjGlArdCCjDe1wpTSW6USYISA9axjZojgtvnw==}
dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.1)
- '@storybook/client-logger': 7.6.12
- '@storybook/global': 5.0.0
- memoizerific: 1.11.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ '@testing-library/dom': 9.3.4
+ '@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
+ ts-dedent: 2.2.0
dev: true
- /@storybook/theming@7.6.6(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-hNZOOxaF55iAGUEM0dvAIP6LfGMgPKCJQIk/qyotFk+SKkg3PBqzph89XfFl9yCD3KiX5cryqarULgVuNawLJg==}
+ /@storybook/theming@8.0.4(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-NxtTU2wMC0lj375ejoT3Npdcqwv6NeUpLaJl6EZCMXSR41ve9WG4suUNWQ63olhqKxirjzAz0IL7ggH7c3hPvA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.1)
- '@storybook/client-logger': 7.6.6
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2)
+ '@storybook/client-logger': 8.0.4
'@storybook/global': 5.0.0
memoizerific: 1.11.3
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /@storybook/types@7.6.12:
- resolution: {integrity: sha512-Wsbd+NS10/2yMHQ/26rXHflXam0hm2qufTFiHOX6VXZWxij3slRU88Fnwzp+1QSyjXb0qkEr8dOx7aG00+ItVw==}
- dependencies:
- '@storybook/channels': 7.6.12
- '@types/babel__core': 7.20.5
- '@types/express': 4.17.21
- file-system-cache: 2.3.0
- dev: true
-
- /@storybook/types@7.6.13:
- resolution: {integrity: sha512-N8HfqhL5uaI69BZx+xLkKi1YIgDp34XeL3uhxii4NfThcY1KJA643Gqk3oLKefiBqBpIRGKN0nA41Fhdvhr7Hw==}
- dependencies:
- '@storybook/channels': 7.6.13
- '@types/babel__core': 7.20.5
- '@types/express': 4.17.21
- file-system-cache: 2.3.0
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
dev: true
- /@storybook/types@7.6.6:
- resolution: {integrity: sha512-77vbQp3GX93OD8UzFkY4a0fAmkZrqLe61XVo6yABrwbVDY0EcAwaCF5gcXRhOHldlH7KYbLfEQkDkkKTBjX7ow==}
+ /@storybook/types@8.0.4:
+ resolution: {integrity: sha512-OO7QY+qZFCYkItDUBACtIV32p75O7sNziAiyS1V2Oxgo7Ln7fwZwr3mJcA1ruBed6ZcrW3c87k7Xs40T2zAWcg==}
dependencies:
- '@storybook/channels': 7.6.6
- '@types/babel__core': 7.20.5
+ '@storybook/channels': 8.0.4
'@types/express': 4.17.21
file-system-cache: 2.3.0
dev: true
- /@sveltejs/adapter-auto@2.0.0(@sveltejs/kit@1.22.3):
- resolution: {integrity: sha512-b+gkHFZgD771kgV3aO4avHFd7y1zhmMYy9i6xOK7m/rwmwaRO8gnF5zBc0Rgca80B2PMU1bKNxyBTHA14OzUAQ==}
+ /@sveltejs/adapter-auto@3.1.1(@sveltejs/kit@2.5.4):
+ resolution: {integrity: sha512-6LeZft2Fo/4HfmLBi5CucMYmgRxgcETweQl/yQoZo/895K3S9YWYN4Sfm/IhwlIpbJp3QNvhKmwCHbsqQNYQpw==}
peerDependencies:
- '@sveltejs/kit': ^1.0.0
+ '@sveltejs/kit': ^2.0.0
dependencies:
- '@sveltejs/kit': 1.22.3(svelte@3.59.2)(vite@4.3.9)
- import-meta-resolve: 2.2.2
+ '@sveltejs/kit': 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
+ import-meta-resolve: 4.0.0
dev: true
- /@sveltejs/adapter-static@2.0.2(@sveltejs/kit@1.22.3):
- resolution: {integrity: sha512-9wYtf6s6ew7DHUHMrt55YpD1FgV7oWql2IGsW5BXquLxqcY9vjrqCFo0TzzDpo+ZPZkW/v77k0eOP6tsAb8HmQ==}
- peerDependencies:
- '@sveltejs/kit': ^1.5.0
- dependencies:
- '@sveltejs/kit': 1.22.3(svelte@3.55.0)(vite@4.3.9)
-
- /@sveltejs/kit@1.22.3(svelte@3.55.0)(vite@4.3.9):
- resolution: {integrity: sha512-IpHD5wvuoOIHYaHQUBJ1zERD2Iz+fB/rBXhXjl8InKw6X4VKE9BSus+ttHhE7Ke+Ie9ecfilzX8BnWE3FeQyng==}
- engines: {node: ^16.14 || >=18}
- hasBin: true
- requiresBuild: true
+ /@sveltejs/adapter-static@3.0.1(@sveltejs/kit@2.5.4):
+ resolution: {integrity: sha512-6lMvf7xYEJ+oGeR5L8DFJJrowkefTK6ZgA4JiMqoClMkKq0s6yvsd3FZfCFvX1fQ0tpCD7fkuRVHsnUVgsHyNg==}
peerDependencies:
- svelte: ^3.54.0 || ^4.0.0-next.0
- vite: ^4.0.0
+ '@sveltejs/kit': ^2.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.55.0)(vite@4.3.9)
- '@types/cookie': 0.5.4
- cookie: 0.5.0
- devalue: 4.3.2
- esm-env: 1.0.0
- kleur: 4.1.5
- magic-string: 0.30.8
- mime: 3.0.0
- sade: 1.8.1
- set-cookie-parser: 2.6.0
- sirv: 2.0.4
- svelte: 3.55.0
- undici: 5.22.1
- vite: 4.3.9
- transitivePeerDependencies:
- - supports-color
+ '@sveltejs/kit': 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
- /@sveltejs/kit@1.22.3(svelte@3.59.2)(vite@4.3.9):
- resolution: {integrity: sha512-IpHD5wvuoOIHYaHQUBJ1zERD2Iz+fB/rBXhXjl8InKw6X4VKE9BSus+ttHhE7Ke+Ie9ecfilzX8BnWE3FeQyng==}
- engines: {node: ^16.14 || >=18}
+ /@sveltejs/kit@2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6):
+ resolution: {integrity: sha512-eDxK2d4EGzk99QsZNoPXe7jlzA5EGqfcCpUwZ912bhnalsZ2ZsG5wGRthkydupVjYyqdmzEanVKFhLxU2vkPSQ==}
+ engines: {node: '>=18.13'}
hasBin: true
requiresBuild: true
peerDependencies:
- svelte: ^3.54.0 || ^4.0.0-next.0
- vite: ^4.0.0
+ '@sveltejs/vite-plugin-svelte': ^3.0.0
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ vite: ^5.0.3
dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.9)
- '@types/cookie': 0.5.4
- cookie: 0.5.0
+ '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@4.2.12)(vite@5.1.6)
+ '@types/cookie': 0.6.0
+ cookie: 0.6.0
devalue: 4.3.2
esm-env: 1.0.0
+ import-meta-resolve: 4.0.0
kleur: 4.1.5
magic-string: 0.30.8
- mime: 3.0.0
+ mrmime: 2.0.0
sade: 1.8.1
set-cookie-parser: 2.6.0
sirv: 2.0.4
- svelte: 3.59.2
- undici: 5.22.1
- vite: 4.3.9
- transitivePeerDependencies:
- - supports-color
-
- /@sveltejs/package@2.2.7(svelte@3.59.2)(typescript@4.9.5):
- resolution: {integrity: sha512-/vvmrQO2mMvROdM/iGRHtRn+ValnK9xzB50pqRcX0IvoeVoTq7uhYf+KifrZTluBA+km6AX/WXRXajrgrgbmvw==}
- engines: {node: ^16.14 || >=18}
- hasBin: true
- peerDependencies:
- svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1
- dependencies:
- chokidar: 3.6.0
- kleur: 4.1.5
- sade: 1.8.1
- semver: 7.6.0
- svelte: 3.59.2
- svelte2tsx: 0.7.4(svelte@3.59.2)(typescript@4.9.5)
- transitivePeerDependencies:
- - typescript
- dev: true
+ svelte: 4.2.12
+ tiny-glob: 0.2.9
+ vite: 5.1.6(@types/node@20.11.28)
- /@sveltejs/package@2.2.7(svelte@3.59.2)(typescript@5.2.2):
+ /@sveltejs/package@2.2.7(svelte@4.2.12)(typescript@5.4.2):
resolution: {integrity: sha512-/vvmrQO2mMvROdM/iGRHtRn+ValnK9xzB50pqRcX0IvoeVoTq7uhYf+KifrZTluBA+km6AX/WXRXajrgrgbmvw==}
engines: {node: ^16.14 || >=18}
hasBin: true
@@ -10140,96 +9229,43 @@ packages:
kleur: 4.1.5
sade: 1.8.1
semver: 7.6.0
- svelte: 3.59.2
- svelte2tsx: 0.7.4(svelte@3.59.2)(typescript@5.2.2)
+ svelte: 4.2.12
+ svelte2tsx: 0.7.4(svelte@4.2.12)(typescript@5.4.2)
transitivePeerDependencies:
- typescript
dev: true
- /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.55.0)(vite@4.3.9):
- resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==}
- engines: {node: ^14.18.0 || >= 16}
- peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^2.2.0
- svelte: ^3.54.0 || ^4.0.0
- vite: ^4.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.55.0)(vite@4.3.9)
- debug: 4.3.4
- svelte: 3.55.0
- vite: 4.3.9
- transitivePeerDependencies:
- - supports-color
-
- /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@4.3.9):
- resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==}
- engines: {node: ^14.18.0 || >= 16}
- peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^2.2.0
- svelte: ^3.54.0 || ^4.0.0
- vite: ^4.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.9)
- debug: 4.3.4
- svelte: 3.59.2
- vite: 4.3.9
- transitivePeerDependencies:
- - supports-color
-
- /@sveltejs/vite-plugin-svelte@2.0.3(svelte@3.59.2)(vite@4.3.9):
- resolution: {integrity: sha512-o+cguBFdwIGtRbNkYOyqTM7KvRUffxh5bfK4oJsWKG2obu+v/cbpT03tJrGl58C7tRXo/aEC0/axN5FVHBj0nA==}
- engines: {node: ^14.18.0 || >= 16}
- peerDependencies:
- svelte: ^3.54.0
- vite: ^4.0.0
- dependencies:
- debug: 4.3.4
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.29.0
- svelte: 3.59.2
- svelte-hmr: 0.15.3(svelte@3.59.2)
- vite: 4.3.9
- vitefu: 0.2.5(vite@4.3.9)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@sveltejs/vite-plugin-svelte@2.5.3(svelte@3.55.0)(vite@4.3.9):
- resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==}
- engines: {node: ^14.18.0 || >= 16}
+ /@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6):
+ resolution: {integrity: sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==}
+ engines: {node: ^18.0.0 || >=20}
peerDependencies:
- svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
- vite: ^4.0.0
+ '@sveltejs/vite-plugin-svelte': ^3.0.0
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ vite: ^5.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.55.0)(vite@4.3.9)
+ '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@4.2.12)(vite@5.1.6)
debug: 4.3.4
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.30.8
- svelte: 3.55.0
- svelte-hmr: 0.15.3(svelte@3.55.0)
- vite: 4.3.9
- vitefu: 0.2.5(vite@4.3.9)
+ svelte: 4.2.12
+ vite: 5.1.6(@types/node@20.11.28)
transitivePeerDependencies:
- supports-color
- /@sveltejs/vite-plugin-svelte@2.5.3(svelte@3.59.2)(vite@4.3.9):
- resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==}
- engines: {node: ^14.18.0 || >= 16}
+ /@sveltejs/vite-plugin-svelte@3.0.2(svelte@4.2.12)(vite@5.1.6):
+ resolution: {integrity: sha512-MpmF/cju2HqUls50WyTHQBZUV3ovV/Uk8k66AN2gwHogNAG8wnW8xtZDhzNBsFJJuvmq1qnzA5kE7YfMJNFv2Q==}
+ engines: {node: ^18.0.0 || >=20}
peerDependencies:
- svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
- vite: ^4.0.0
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ vite: ^5.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@4.3.9)
+ '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
debug: 4.3.4
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.8
- svelte: 3.59.2
- svelte-hmr: 0.15.3(svelte@3.59.2)
- vite: 4.3.9
- vitefu: 0.2.5(vite@4.3.9)
+ svelte: 4.2.12
+ svelte-hmr: 0.15.3(svelte@4.2.12)
+ vite: 5.1.6(@types/node@20.11.28)
+ vitefu: 0.2.5(vite@5.1.6)
transitivePeerDependencies:
- supports-color
@@ -10238,13 +9274,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-remove-jsx-attribute@5.4.0:
@@ -10252,13 +9288,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.0):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.3):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1:
@@ -10266,13 +9302,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.0):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.3):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1:
@@ -10280,13 +9316,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-svg-dynamic-title@5.4.0:
@@ -10294,13 +9330,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-svg-em-dimensions@5.4.0:
@@ -10308,13 +9344,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-transform-react-native-svg@5.4.0:
@@ -10322,13 +9358,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-plugin-transform-svg-component@5.5.0:
@@ -10336,13 +9372,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: false
/@svgr/babel-preset@5.5.0:
@@ -10359,21 +9395,21 @@ packages:
'@svgr/babel-plugin-transform-svg-component': 5.5.0
dev: false
- /@svgr/babel-preset@6.5.1(@babel/core@7.24.0):
+ /@svgr/babel-preset@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.0)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.0)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.0)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.0)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.0)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.0)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.0)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.3)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.3)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.3)
dev: false
/@svgr/core@5.5.0:
@@ -10391,8 +9427,8 @@ packages:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.0
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.24.3)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -10419,7 +9455,7 @@ packages:
resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -10433,8 +9469,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.24.0
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.24.3)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -10467,10 +9503,10 @@ packages:
resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.0
- '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.24.0)
- '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
- '@babel/preset-react': 7.23.3(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
@@ -10483,11 +9519,11 @@ packages:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.0
- '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.24.0)
- '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
- '@babel/preset-react': 7.23.3(@babel/core@7.24.0)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
'@svgr/core': 6.5.1
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
'@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
@@ -10495,8 +9531,8 @@ packages:
- supports-color
dev: false
- /@swc/core-darwin-arm64@1.4.6:
- resolution: {integrity: sha512-bpggpx/BfLFyy48aUKq1PsNUxb7J6CINlpAUk0V4yXfmGnpZH80Gp1pM3GkFDQyCfq7L7IpjPrIjWQwCrL4hYw==}
+ /@swc/core-darwin-arm64@1.4.8:
+ resolution: {integrity: sha512-hhQCffRTgzpTIbngSnC30vV6IJVTI9FFBF954WEsshsecVoCGFiMwazBbrkLG+RwXENTrMhgeREEFh6R3KRgKQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -10504,8 +9540,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.4.6:
- resolution: {integrity: sha512-vJn+/ZuBTg+vtNkcmgZdH6FQpa0hFVdnB9bAeqYwKkyqP15zaPe6jfC+qL2y/cIeC7ASvHXEKrnCZgBLxfVQ9w==}
+ /@swc/core-darwin-x64@1.4.8:
+ resolution: {integrity: sha512-P3ZBw8Jr8rKhY/J8d+6WqWriqngGTgHwtFeJ8MIakQJTbdYbFgXSZxcvDiERg3psbGeFXaUaPI0GO6BXv9k/OQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -10513,8 +9549,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.4.6:
- resolution: {integrity: sha512-hEmYcB/9XBAl02MtuVHszhNjQpjBzhk/NFulnU33tBMbNZpy2TN5yTsitezMq090QXdDz8sKIALApDyg07ZR8g==}
+ /@swc/core-linux-arm-gnueabihf@1.4.8:
+ resolution: {integrity: sha512-PP9JIJt19bUWhAGcQW6qMwTjZOcMyzkvZa0/LWSlDm0ORYVLmDXUoeQbGD3e0Zju9UiZxyulnpjEN0ZihJgPTA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -10522,8 +9558,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.4.6:
- resolution: {integrity: sha512-/UCYIVoGpm2YVvGHZM2QOA3dexa28BjcpLAIYnoCbgH5f7ulDhE8FAIO/9pasj+kixDBsdqewHfsNXFYlgGJjQ==}
+ /@swc/core-linux-arm64-gnu@1.4.8:
+ resolution: {integrity: sha512-HvEWnwKHkoVUr5iftWirTApFJ13hGzhAY2CMw4lz9lur2m+zhPviRRED0FCI6T95Knpv7+8eUOr98Z7ctrG6DQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -10531,8 +9567,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.4.6:
- resolution: {integrity: sha512-LGQsKJ8MA9zZ8xHCkbGkcPSmpkZL2O7drvwsGKynyCttHhpwVjj9lguhD4DWU3+FWIsjvho5Vu0Ggei8OYi/Lw==}
+ /@swc/core-linux-arm64-musl@1.4.8:
+ resolution: {integrity: sha512-kY8+qa7k/dEeBq9p0Hrta18QnJPpsiJvDQSLNaTIFpdM3aEM9zbkshWz8gaX5VVGUEALowCBUWqmzO4VaqM+2w==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -10540,8 +9576,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.4.6:
- resolution: {integrity: sha512-10JL2nLIreMQDKvq2TECnQe5fCuoqBHu1yW8aChqgHUyg9d7gfZX/kppUsuimqcgRBnS0AjTDAA+JF6UsG/2Yg==}
+ /@swc/core-linux-x64-gnu@1.4.8:
+ resolution: {integrity: sha512-0WWyIw432wpO/zeGblwq4f2YWam4pn8Z/Ig4KzHMgthR/KmiLU3f0Z7eo45eVmq5vcU7Os1zi/Zb65OOt09q/w==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -10549,8 +9585,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.4.6:
- resolution: {integrity: sha512-EGyjFVzVY6Do89x8sfah7I3cuP4MwtwzmA6OlfD/KASqfCFf5eIaEBMbajgR41bVfMV7lK72lwAIea5xEyq1AQ==}
+ /@swc/core-linux-x64-musl@1.4.8:
+ resolution: {integrity: sha512-p4yxvVS05rBNCrBaSTa20KK88vOwtg8ifTW7ec/yoab0bD5EwzzB8KbDmLLxE6uziFa0sdjF0dfRDwSZPex37Q==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -10558,8 +9594,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc@1.4.6:
- resolution: {integrity: sha512-gfW9AuXvwSyK07Vb8Y8E9m2oJZk21WqcD+X4BZhkbKB0TCZK0zk1j/HpS2UFlr1JB2zPKPpSWLU3ll0GEHRG2A==}
+ /@swc/core-win32-arm64-msvc@1.4.8:
+ resolution: {integrity: sha512-jKuXihxAaqUnbFfvPxtmxjdJfs87F1GdBf33il+VUmSyWCP4BE6vW+/ReDAe8sRNsKyrZ3UH1vI5q1n64csBUA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -10567,8 +9603,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.4.6:
- resolution: {integrity: sha512-ZuQm81FhhvNVYtVb9GfZ+Du6e7fZlkisWvuCeBeRiyseNt1tcrQ8J3V67jD2nxje8CVXrwG3oUIbPcybv2rxfQ==}
+ /@swc/core-win32-ia32-msvc@1.4.8:
+ resolution: {integrity: sha512-O0wT4AGHrX8aBeH6c2ADMHgagAJc5Kf6W48U5moyYDAkkVnKvtSc4kGhjWhe1Yl0sI0cpYh2In2FxvYsb44eWw==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -10576,8 +9612,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.4.6:
- resolution: {integrity: sha512-UagPb7w5V0uzWSjrXwOavGa7s9iv3wrVdEgWy+/inm0OwY4lj3zpK9qDnMWAwYLuFwkI3UG4Q3dH8wD+CUUcjw==}
+ /@swc/core-win32-x64-msvc@1.4.8:
+ resolution: {integrity: sha512-C2AYc3A2o+ECciqsJWRgIpp83Vk5EaRzHe7ed/xOWzVd0MsWR+fweEsyOjlmzHfpUxJSi46Ak3/BIZJlhZbXbg==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -10585,8 +9621,8 @@ packages:
dev: true
optional: true
- /@swc/core@1.4.6:
- resolution: {integrity: sha512-A7iK9+1qzTCIuc3IYcS8gPHCm9bZVKUJrfNnwveZYyo6OFp3jLno4WOM2yBy5uqedgYATEiWgBYHKq37KrU6IA==}
+ /@swc/core@1.4.8:
+ resolution: {integrity: sha512-uY2RSJcFPgNOEg12RQZL197LZX+MunGiKxsbxmh22VfVxrOYGRvh4mPANFlrD1yb38CgmW1wI6YgIi8LkIwmWg==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -10596,52 +9632,33 @@ packages:
optional: true
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.5
+ '@swc/types': 0.1.6
optionalDependencies:
- '@swc/core-darwin-arm64': 1.4.6
- '@swc/core-darwin-x64': 1.4.6
- '@swc/core-linux-arm-gnueabihf': 1.4.6
- '@swc/core-linux-arm64-gnu': 1.4.6
- '@swc/core-linux-arm64-musl': 1.4.6
- '@swc/core-linux-x64-gnu': 1.4.6
- '@swc/core-linux-x64-musl': 1.4.6
- '@swc/core-win32-arm64-msvc': 1.4.6
- '@swc/core-win32-ia32-msvc': 1.4.6
- '@swc/core-win32-x64-msvc': 1.4.6
+ '@swc/core-darwin-arm64': 1.4.8
+ '@swc/core-darwin-x64': 1.4.8
+ '@swc/core-linux-arm-gnueabihf': 1.4.8
+ '@swc/core-linux-arm64-gnu': 1.4.8
+ '@swc/core-linux-arm64-musl': 1.4.8
+ '@swc/core-linux-x64-gnu': 1.4.8
+ '@swc/core-linux-x64-musl': 1.4.8
+ '@swc/core-win32-arm64-msvc': 1.4.8
+ '@swc/core-win32-ia32-msvc': 1.4.8
+ '@swc/core-win32-x64-msvc': 1.4.8
dev: true
/@swc/counter@0.1.3:
- resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- dev: true
-
- /@swc/helpers@0.4.14:
- resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
- dependencies:
- tslib: 2.6.2
- dev: true
-
- /@swc/helpers@0.4.36:
- resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==}
- dependencies:
- legacy-swc-helpers: /@swc/helpers@0.4.14
- tslib: 2.6.2
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
dev: true
- /@swc/helpers@0.5.6:
- resolution: {integrity: sha512-aYX01Ke9hunpoCexYAgQucEpARGQ5w/cqHFrIR+e9gdKb1QWTsVJuTJ2ozQzIAxLyRQe/m+2RqzkyOOGiMKRQA==}
+ /@swc/helpers@0.5.7:
+ resolution: {integrity: sha512-BVvNZhx362+l2tSwSuyEUV4h7+jk9raNdoTSdLfwTshXJSaGmYKluGRJznziCI3KX02Z19DdsQrdfrpXAU3Hfg==}
dependencies:
- tslib: 2.4.1
- dev: false
-
- /@swc/types@0.1.5:
- resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
- dev: true
+ tslib: 2.6.2
- /@szmarczak/http-timer@4.0.6:
- resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
- engines: {node: '>=10'}
+ /@swc/types@0.1.6:
+ resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==}
dependencies:
- defer-to-connect: 2.0.1
+ '@swc/counter': 0.1.3
dev: true
/@szmarczak/http-timer@5.0.1:
@@ -10661,16 +9678,16 @@ packages:
simple-lru-cache: 0.0.2
dev: false
- /@tediousjs/connection-string@0.4.4:
- resolution: {integrity: sha512-Qssn7gmOILmqD0zkfA09YyFd52UajWYkLTTSi4Dx/XZaUuVcx4W4guv2rAVc5mm8wYRdonmG/HfFH3PS6izXAg==}
+ /@tediousjs/connection-string@0.5.0:
+ resolution: {integrity: sha512-7qSgZbincDDDFyRweCIEvZULFAw5iz/DeunhvuxpL31nfntX3P4Yd4HkHBRg9H8CdqY1e5WFN1PZIz/REL9MVQ==}
dev: false
/@testing-library/dom@9.3.4:
resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
engines: {node: '>=14'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/runtime': 7.24.0
+ '@babel/code-frame': 7.24.2
+ '@babel/runtime': 7.24.1
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.0
@@ -10679,6 +9696,38 @@ packages:
pretty-format: 27.5.1
dev: true
+ /@testing-library/jest-dom@6.4.2(vitest@0.34.6):
+ resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==}
+ engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+ peerDependencies:
+ '@jest/globals': '>= 28'
+ '@types/bun': latest
+ '@types/jest': '>= 28'
+ jest: '>= 28'
+ vitest: '>= 0.32'
+ peerDependenciesMeta:
+ '@jest/globals':
+ optional: true
+ '@types/bun':
+ optional: true
+ '@types/jest':
+ optional: true
+ jest:
+ optional: true
+ vitest:
+ optional: true
+ dependencies:
+ '@adobe/css-tools': 4.3.3
+ '@babel/runtime': 7.24.1
+ aria-query: 5.3.0
+ chalk: 3.0.0
+ css.escape: 1.5.1
+ dom-accessibility-api: 0.6.3
+ lodash: 4.17.21
+ redent: 3.0.0
+ vitest: 0.34.6
+ dev: true
+
/@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4):
resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==}
engines: {node: '>=12', npm: '>=6'}
@@ -10705,6 +9754,10 @@ packages:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
+ /@tootallnate/quickjs-emscripten@0.23.0:
+ resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
+ dev: false
+
/@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -10720,7 +9773,7 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.24.0
+ '@babel/parser': 7.24.1
'@babel/types': 7.24.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
@@ -10736,7 +9789,7 @@ packages:
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.24.0
+ '@babel/parser': 7.24.1
'@babel/types': 7.24.0
dev: true
@@ -10754,37 +9807,28 @@ packages:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
/@types/bonjour@3.5.13:
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
- /@types/cacheable-request@6.0.3:
- resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
- dependencies:
- '@types/http-cache-semantics': 4.0.4
- '@types/keyv': 3.1.4
- '@types/node': 20.8.5
- '@types/responselike': 1.0.3
- dev: true
-
/@types/chai-subset@1.3.5:
resolution: {integrity: sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==}
dependencies:
- '@types/chai': 4.3.12
+ '@types/chai': 4.3.14
dev: true
- /@types/chai@4.3.12:
- resolution: {integrity: sha512-zNKDHG/1yxm8Il6uCCVsm+dRdEsJlFoDu73X17y09bId6UwoYww+vFBsAcRzl8knM1sab3Dp1VRikFQwDOtDDw==}
+ /@types/chai@4.3.14:
+ resolution: {integrity: sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==}
dev: true
- /@types/cli-progress@3.11.0:
- resolution: {integrity: sha512-XhXhBv1R/q2ahF3BM7qT5HLzJNlIL0wbcGyZVjqOTqAybAnsLisd7gy1UCyIqpL+5Iv6XhlSyzjLCnI2sIdbCg==}
+ /@types/cli-progress@3.11.5:
+ resolution: {integrity: sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/command-line-args@5.2.0:
@@ -10797,21 +9841,21 @@ packages:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
'@types/express-serve-static-core': 4.17.43
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
- /@types/cookie@0.5.4:
- resolution: {integrity: sha512-7z/eR6O859gyWIAjuvBWFzNURmf2oPBmJlfVWkwehU5nzIyjwBsTh7WMmEEV4JFnHuQ3ex4oyTvfKzcyJVDBNA==}
+ /@types/cookie@0.6.0:
+ resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
/@types/cross-spawn@6.0.6:
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
/@types/d3-scale-chromatic@3.0.3:
@@ -10853,36 +9897,29 @@ packages:
/@types/eslint-scope@3.7.7:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 8.56.5
+ '@types/eslint': 8.56.6
'@types/estree': 1.0.5
- /@types/eslint@8.56.5:
- resolution: {integrity: sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==}
+ /@types/eslint@8.56.6:
+ resolution: {integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==}
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
- /@types/esm@3.2.0:
- resolution: {integrity: sha512-aXemgVPnF1s0PQin04Ei8zTWaNwUdc4pmhZDg8LBW6QEl9kBWVItAUOLGUY5H5xduAmbL1pLGH1X/PN0+4R9tg==}
+ /@types/esm@3.2.2:
+ resolution: {integrity: sha512-l3IQQD2sChjNiQVNf28qq+sY9Sjvz7HrcOO3g4ZeSaiQRXQccBaR6cpqXPpzJ3QYCt6UF7+4ugabMRsQTPV+Eg==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
- /@types/estree@0.0.51:
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
-
- /@types/estree@1.0.1:
- resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
- dev: false
-
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
/@types/express-serve-static-core@4.17.43:
resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
dependencies:
- '@types/node': 20.8.5
- '@types/qs': 6.9.12
+ '@types/node': 20.11.28
+ '@types/qs': 6.9.14
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -10891,7 +9928,7 @@ packages:
dependencies:
'@types/body-parser': 1.19.5
'@types/express-serve-static-core': 4.17.43
- '@types/qs': 6.9.12
+ '@types/qs': 6.9.14
'@types/serve-static': 1.15.5
/@types/find-cache-dir@3.2.1:
@@ -10902,13 +9939,13 @@ packages:
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
/@types/hast@2.3.10:
@@ -10917,6 +9954,12 @@ packages:
'@types/unist': 2.0.10
dev: false
+ /@types/hast@3.0.4:
+ resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
+ dependencies:
+ '@types/unist': 3.0.2
+ dev: true
+
/@types/history@4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
dev: false
@@ -10927,6 +9970,7 @@ packages:
/@types/http-cache-semantics@4.0.4:
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
+ dev: false
/@types/http-errors@2.0.4:
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
@@ -10934,7 +9978,7 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/is-ci@3.0.4:
@@ -10956,27 +10000,29 @@ packages:
dependencies:
'@types/istanbul-lib-report': 3.0.3
+ /@types/jsdom@21.1.6:
+ resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==}
+ dependencies:
+ '@types/node': 20.11.28
+ '@types/tough-cookie': 4.0.5
+ parse5: 7.1.2
+ dev: false
+
/@types/json-schema@7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
/@types/jsonfile@6.1.4:
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
/@types/katex@0.11.1:
resolution: {integrity: sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==}
dev: false
- /@types/keyv@3.1.4:
- resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
- dependencies:
- '@types/node': 20.8.5
- dev: true
-
- /@types/lodash.chunk@4.2.7:
- resolution: {integrity: sha512-//tmaWHiANgToom/YYYKKqiCtlNz11fwYtMUUbaemNSbWTI+2zHtYW5nt1PHNCRWHPAJHHhn4UVFD9LKUFvatA==}
+ /@types/lodash.chunk@4.2.9:
+ resolution: {integrity: sha512-Z9VtFUSnmT0No/QymqfG9AGbfOA4O5qB/uyP89xeZBqDAsKsB4gQFTqt7d0pHjbsTwtQ4yZObQVHuKlSOhIJ5Q==}
dependencies:
'@types/lodash': 4.17.0
dev: false
@@ -10993,8 +10039,8 @@ packages:
'@types/lodash': 4.17.0
dev: false
- /@types/lodash.merge@4.6.8:
- resolution: {integrity: sha512-He1g+VBmRclP+6hT6P6zKlzpFoeOLMgPpMGChgINuxbdPumZCIJsITbqSq2cWXzJu2ltmwVN5TfQ6kj0X06rFQ==}
+ /@types/lodash.merge@4.6.9:
+ resolution: {integrity: sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==}
dependencies:
'@types/lodash': 4.17.0
dev: false
@@ -11008,23 +10054,19 @@ packages:
'@types/unist': 2.0.10
dev: false
- /@types/mdx@2.0.11:
- resolution: {integrity: sha512-HM5bwOaIQJIQbAYfax35HCKxx7a3KrK3nBtIqJgSOitivTD1y3oW9P3rxY9RkXYPUk7y/AjAohfHKmFpGE79zw==}
+ /@types/mdx@2.0.12:
+ resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==}
dev: true
/@types/mermaid@9.2.0:
resolution: {integrity: sha512-AlvLWYer6u4BkO4QzMkHo0t9RkvVIgqggVZmO+5snUiuX2caTKqtdqygX6GeE1VQa/TnXw9WoH0spcmHtG0inQ==}
deprecated: This is a stub types definition. mermaid provides its own type definitions, so you do not need this installed.
dependencies:
- mermaid: 10.6.1
+ mermaid: 10.9.0
transitivePeerDependencies:
- supports-color
dev: false
- /@types/mime-types@2.1.4:
- resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==}
- dev: true
-
/@types/mime@1.3.5:
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
@@ -11035,10 +10077,10 @@ packages:
resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
dev: true
- /@types/mock-fs@4.13.1:
- resolution: {integrity: sha512-m6nFAJ3lBSnqbvDZioawRvpLXSaPyn52Srf7OfzjubYbYX8MTUdIgDxQl0wEapm4m/pNYSd9TXocpQ0TvZFlYA==}
+ /@types/mock-fs@4.13.4:
+ resolution: {integrity: sha512-mXmM0o6lULPI8z3XNnQCpL0BGxPwx1Ul1wXYEPBGl4efShyxW2Rln0JOPEWGyZaYZMM6OVXM/15zUuFMY52ljg==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
/@types/ms@0.7.34:
@@ -11048,7 +10090,7 @@ packages:
/@types/mssql@8.1.2:
resolution: {integrity: sha512-hoDM+mZUClfXu0J1pyVdbhv2Ve0dl0TdagAE3M5rd1slqoVEEHuNObPD+giwtJgyo99CcS58qbF9ektVKdxSfQ==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
'@types/tedious': 4.0.14
tarn: 3.0.2
dev: false
@@ -11056,41 +10098,38 @@ packages:
/@types/node-fetch@2.6.11:
resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
form-data: 4.0.0
+ dev: false
/@types/node-forge@1.3.11:
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: true
- /@types/node@13.13.52:
- resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==}
- dev: true
-
/@types/node@17.0.45:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: false
- /@types/node@18.19.23:
- resolution: {integrity: sha512-wtE3d0OUfNKtZYAqZb8HAWGxxXsImJcPUAgZNw+dWFxO6s5tIwIjyKnY76tsTatsNCLJPkVYwUpq15D38ng9Aw==}
+ /@types/node@18.19.26:
+ resolution: {integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==}
dependencies:
undici-types: 5.26.5
dev: true
+ /@types/node@20.11.28:
+ resolution: {integrity: sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==}
+ dependencies:
+ undici-types: 5.26.5
+
/@types/node@20.3.0:
resolution: {integrity: sha512-cumHmIAf6On83X7yP+LrsEyUOf/YlociZelmpRYaGFydoaPdxdt80MAbu6vWerQT2COCp2nPvHdsbD7tHn/YlQ==}
- /@types/node@20.8.5:
- resolution: {integrity: sha512-SPlobFgbidfIeOYlzXiEjSYeIJiOCthv+9tSQVpvk4PAdIIc+2SmjNVzWXk9t0Y7dl73Zdf+OgXKHX9XtkqUpw==}
- dependencies:
- undici-types: 5.25.3
-
/@types/normalize-package-data@2.4.4:
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
dev: true
@@ -11106,10 +10145,10 @@ packages:
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
dev: false
- /@types/pg@8.10.9:
- resolution: {integrity: sha512-UksbANNE/f8w0wOMxVKKIrLCbEMV+oM1uKejmwXr39olg4xqcfBDbXxObJAt6XxHbDa4XTKOlUEcEltXDX+XLQ==}
+ /@types/pg@8.11.4:
+ resolution: {integrity: sha512-yw3Bwbda6vO+NvI1Ue/YKOwtl31AYvvd/e73O3V4ZkNzuGpTDndLSyc0dQRB2xrQqDePd20pEGIfqSp/GH3pRw==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
pg-protocol: 1.6.0
pg-types: 4.0.2
dev: true
@@ -11132,8 +10171,8 @@ packages:
resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==}
dev: false
- /@types/qs@6.9.12:
- resolution: {integrity: sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg==}
+ /@types/qs@6.9.14:
+ resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==}
/@types/range-parser@1.2.7:
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
@@ -11142,7 +10181,7 @@ packages:
resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
'@types/react-router': 5.1.20
dev: false
@@ -11150,7 +10189,7 @@ packages:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
'@types/react-router': 5.1.20
dev: false
@@ -11158,22 +10197,16 @@ packages:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.65
+ '@types/react': 18.2.67
dev: false
- /@types/react@18.2.65:
- resolution: {integrity: sha512-98TsY0aW4jqx/3RqsUXwMDZSWR1Z4CUlJNue8ueS2/wcxZOsz4xmW1X8ieaWVRHcmmQM3R8xVA4XWB3dJnWwDQ==}
+ /@types/react@18.2.67:
+ resolution: {integrity: sha512-vkIE2vTIMHQ/xL0rgmuoECBCkZFZeHr49HeWSc24AptMbNRo7pwSBvj73rlJJs9fGKj0koS+V7kQB1jHS0uCgw==}
dependencies:
'@types/prop-types': 15.7.11
'@types/scheduler': 0.16.8
csstype: 3.1.3
- /@types/responselike@1.0.3:
- resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
- dependencies:
- '@types/node': 20.8.5
- dev: true
-
/@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
dev: false
@@ -11181,7 +10214,7 @@ packages:
/@types/sax@1.2.7:
resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/scheduler@0.16.8:
@@ -11203,7 +10236,7 @@ packages:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
/@types/serve-index@1.9.4:
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
@@ -11216,19 +10249,19 @@ packages:
dependencies:
'@types/http-errors': 2.0.4
'@types/mime': 3.0.4
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
- /@types/snowflake-sdk@1.6.13:
- resolution: {integrity: sha512-WOOyHcrJWozRlapES0T7+Uk2e55xIW+ur81xKx1RbzHwgelosGiu+kvwvbLPVpkoh9p0sOvuPUednil1LLLW5Q==}
+ /@types/snowflake-sdk@1.6.20:
+ resolution: {integrity: sha512-Dr7oIXrWthlk9wVWpZgpm49BT8cFFXz43u7SkJKyiZK3WHiHQo4b+m2/p3WIpkYzZCcOZZ/t1B09XMd7+u1Wjw==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
generic-pool: 3.9.0
dev: false
/@types/sockjs@0.3.36:
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/stack-utils@2.0.3:
@@ -11238,12 +10271,12 @@ packages:
/@types/tedious@4.0.14:
resolution: {integrity: sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
- /@types/treeify@1.0.3:
- resolution: {integrity: sha512-hx0o7zWEUU4R2Amn+pjCBQQt23Khy/Dk56gQU5xi5jtPL1h83ACJCeFaB2M/+WO1AntvWrSoVnnCAfI1AQH4Cg==}
- dev: true
+ /@types/tough-cookie@4.0.5:
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+ dev: false
/@types/triple-beam@1.3.5:
resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
@@ -11252,35 +10285,29 @@ packages:
/@types/tunnel@0.0.3:
resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/unist@2.0.10:
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
- /@types/uuid@9.0.8:
- resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+ /@types/unist@3.0.2:
+ resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
dev: true
- /@types/webpack-env@1.18.4:
- resolution: {integrity: sha512-I6e+9+HtWADAWeeJWDFQtdk4EVSAbj6Rtz4q8fJ7mSr1M0jzlFcs8/HZ+Xb5SHzVm1dxH7aUiI+A8kA8Gcrm0A==}
+ /@types/uuid@9.0.8:
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
dev: true
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: false
/@types/yargs-parser@21.0.3:
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- /@types/yargs@16.0.9:
- resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
- dependencies:
- '@types/yargs-parser': 21.0.3
- dev: true
-
/@types/yargs@17.0.32:
resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
dependencies:
@@ -11299,7 +10326,12 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
+ /@typescript-eslint/types@6.21.0:
+ resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dev: false
+
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.2):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -11314,13 +10346,35 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.0
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
+ tsutils: 3.21.0(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.45.0)(typescript@5.2.2):
+ /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.2):
+ resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.3
+ semver: 7.6.0
+ ts-api-utils: 1.3.0(typescript@5.4.2)
+ typescript: 5.4.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@typescript-eslint/utils@5.62.0(eslint@8.45.0)(typescript@5.4.2):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -11331,7 +10385,7 @@ packages:
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2)
eslint: 8.45.0
eslint-scope: 5.1.1
semver: 7.6.0
@@ -11348,137 +10402,236 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@uwdata/mosaic-sql@0.3.2:
- resolution: {integrity: sha512-gNc7phCo6OrSEfxcGgrxcyWl/TQjidxjj8xm0/7anQz9uAtD6zKvFocJHV4AL2Wc9rT26B2fccj1l6oBfacohQ==}
+ /@typescript-eslint/visitor-keys@6.21.0:
+ resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.21.0
+ eslint-visitor-keys: 3.4.3
+ dev: false
+
+ /@ungap/structured-clone@1.2.0:
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+
+ /@uwdata/mosaic-sql@0.3.5:
+ resolution: {integrity: sha512-/xdasEcxBzBG1O9WyhnsFnbf/GXjKSbl4lcpg3Cawrl3m6EuA9mKm0WStxAlEBRj1CscJbOHi355e1g7bv/zGg==}
+ dev: false
+
+ /@uwdata/mosaic-sql@0.4.0:
+ resolution: {integrity: sha512-QpjG6jrKJ4bH0eud4h719IaCgUOCYX6acyd5/HalFbDdjGHmFIPfcm8SYEnzvg+Jxz1jBfuH/2tpgOHahOK8xA==}
+ dev: false
+
+ /@vitest/coverage-v8@1.4.0(vitest@1.4.0):
+ resolution: {integrity: sha512-4hDGyH1SvKpgZnIByr9LhGgCEuF9DKM34IBLCC/fVfy24Z3+PZ+Ii9hsVBsHvY1umM1aGPEjceRkzxCfcQ10wg==}
+ peerDependencies:
+ vitest: 1.4.0
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@bcoe/v8-coverage': 0.2.3
+ debug: 4.3.4
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 5.0.4
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.8
+ magicast: 0.3.3
+ picocolors: 1.0.0
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ test-exclude: 6.0.0
+ v8-to-istanbul: 9.2.0
+ vitest: 1.4.0(@types/node@20.11.28)(jsdom@23.2.0)
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@vitest/expect@0.34.2:
- resolution: {integrity: sha512-EZm2dMNlLyIfDMha17QHSQcg2KjeAZaXd65fpPzXY5bvnfx10Lcaz3N55uEe8PhF+w4pw+hmrlHLLlRn9vkBJg==}
+ /@vitest/expect@0.34.6:
+ resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==}
+ dependencies:
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
+ chai: 4.4.1
+ dev: true
+
+ /@vitest/expect@1.3.1:
+ resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
dependencies:
- '@vitest/spy': 0.34.2
- '@vitest/utils': 0.34.2
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
chai: 4.4.1
dev: true
- /@vitest/runner@0.34.2:
- resolution: {integrity: sha512-8ydGPACVX5tK3Dl0SUwxfdg02h+togDNeQX3iXVFYgzF5odxvaou7HnquALFZkyVuYskoaHUOqOyOLpOEj5XTA==}
+ /@vitest/expect@1.4.0:
+ resolution: {integrity: sha512-Jths0sWCJZ8BxjKe+p+eKsoqev1/T8lYcrjavEaz8auEJ4jAVY0GwW3JKmdVU4mmNPLPHixh4GNXP7GFtAiDHA==}
dependencies:
- '@vitest/utils': 0.34.2
+ '@vitest/spy': 1.4.0
+ '@vitest/utils': 1.4.0
+ chai: 4.4.1
+ dev: false
+
+ /@vitest/runner@0.34.6:
+ resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==}
+ dependencies:
+ '@vitest/utils': 0.34.6
p-limit: 4.0.0
pathe: 1.1.2
dev: true
- /@vitest/snapshot@0.34.2:
- resolution: {integrity: sha512-qhQ+xy3u4mwwLxltS4Pd4SR+XHv4EajiTPNY3jkIBLUApE6/ce72neJPSUQZ7bL3EBuKI+NhvzhGj3n5baRQUQ==}
+ /@vitest/runner@1.4.0:
+ resolution: {integrity: sha512-EDYVSmesqlQ4RD2VvWo3hQgTJ7ZrFQ2VSJdfiJiArkCerDAGeyF1i6dHkmySqk573jLp6d/cfqCN+7wUB5tLgg==}
+ dependencies:
+ '@vitest/utils': 1.4.0
+ p-limit: 5.0.0
+ pathe: 1.1.2
+ dev: false
+
+ /@vitest/snapshot@0.34.6:
+ resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==}
+ dependencies:
+ magic-string: 0.30.8
+ pathe: 1.1.2
+ pretty-format: 29.7.0
+ dev: true
+
+ /@vitest/snapshot@1.4.0:
+ resolution: {integrity: sha512-saAFnt5pPIA5qDGxOHxJ/XxhMFKkUSBJmVt5VgDsAqPTX6JP326r5C/c9UuCMPoXNzuudTPsYDZCoJ5ilpqG2A==}
dependencies:
magic-string: 0.30.8
pathe: 1.1.2
pretty-format: 29.7.0
+ dev: false
+
+ /@vitest/spy@0.34.6:
+ resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==}
+ dependencies:
+ tinyspy: 2.2.1
+ dev: true
+
+ /@vitest/spy@1.3.1:
+ resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
+ dependencies:
+ tinyspy: 2.2.1
dev: true
- /@vitest/spy@0.34.2:
- resolution: {integrity: sha512-yd4L9OhfH6l0Av7iK3sPb3MykhtcRN5c5K5vm1nTbuN7gYn+yvUVVsyvzpHrjqS7EWqn9WsPJb7+0c3iuY60tA==}
+ /@vitest/spy@1.4.0:
+ resolution: {integrity: sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==}
dependencies:
tinyspy: 2.2.1
+
+ /@vitest/utils@0.34.6:
+ resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==}
+ dependencies:
+ diff-sequences: 29.6.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
dev: true
- /@vitest/utils@0.34.2:
- resolution: {integrity: sha512-Lzw+kAsTPubhoQDp1uVAOP6DhNia1GMDsI9jgB0yMn+/nDaPieYQ88lKqz/gGjSHL4zwOItvpehec9OY+rS73w==}
+ /@vitest/utils@1.3.1:
+ resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
dependencies:
diff-sequences: 29.6.3
+ estree-walker: 3.0.3
loupe: 2.3.7
pretty-format: 29.7.0
dev: true
- /@webassemblyjs/ast@1.11.1:
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
+ /@vitest/utils@1.4.0:
+ resolution: {integrity: sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==}
+ dependencies:
+ diff-sequences: 29.6.3
+ estree-walker: 3.0.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
+
+ /@webassemblyjs/ast@1.12.1:
+ resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- /@webassemblyjs/floating-point-hex-parser@1.11.1:
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
+ /@webassemblyjs/floating-point-hex-parser@1.11.6:
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
- /@webassemblyjs/helper-api-error@1.11.1:
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
+ /@webassemblyjs/helper-api-error@1.11.6:
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
- /@webassemblyjs/helper-buffer@1.11.1:
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
+ /@webassemblyjs/helper-buffer@1.12.1:
+ resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
- /@webassemblyjs/helper-numbers@1.11.1:
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
+ /@webassemblyjs/helper-numbers@1.11.6:
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
- /@webassemblyjs/helper-wasm-bytecode@1.11.1:
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
+ /@webassemblyjs/helper-wasm-bytecode@1.11.6:
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
- /@webassemblyjs/helper-wasm-section@1.11.1:
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
+ /@webassemblyjs/helper-wasm-section@1.12.1:
+ resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.12.1
- /@webassemblyjs/ieee754@1.11.1:
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
+ /@webassemblyjs/ieee754@1.11.6:
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
dependencies:
'@xtuc/ieee754': 1.2.0
- /@webassemblyjs/leb128@1.11.1:
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
+ /@webassemblyjs/leb128@1.11.6:
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
dependencies:
'@xtuc/long': 4.2.2
- /@webassemblyjs/utf8@1.11.1:
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
+ /@webassemblyjs/utf8@1.11.6:
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
- /@webassemblyjs/wasm-edit@1.11.1:
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
+ /@webassemblyjs/wasm-edit@1.12.1:
+ resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-opt': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wast-printer': 1.12.1
- /@webassemblyjs/wasm-gen@1.11.1:
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
+ /@webassemblyjs/wasm-gen@1.12.1:
+ resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wasm-opt@1.11.1:
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
+ /@webassemblyjs/wasm-opt@1.12.1:
+ resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
- /@webassemblyjs/wasm-parser@1.11.1:
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
+ /@webassemblyjs/wasm-parser@1.12.1:
+ resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wast-printer@1.11.1:
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
+ /@webassemblyjs/wast-printer@1.12.1:
+ resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
/@xtuc/ieee754@1.2.0:
@@ -11487,51 +10640,14 @@ packages:
/@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- /@yarnpkg/core@2.4.0:
- resolution: {integrity: sha512-FYjcPNTfDfMKLFafQPt49EY28jnYC82Z2S7oMwLPUh144BL8v8YXzb4aCnFyi5nFC5h2kcrJfZh7+Pm/qvCqGw==}
- engines: {node: '>=10.19.0'}
- dependencies:
- '@arcanis/slice-ansi': 1.1.1
- '@types/semver': 7.5.8
- '@types/treeify': 1.0.3
- '@yarnpkg/fslib': 2.10.4
- '@yarnpkg/json-proxy': 2.1.1
- '@yarnpkg/libzip': 2.3.0
- '@yarnpkg/parsers': 2.6.0
- '@yarnpkg/pnp': 2.3.2
- '@yarnpkg/shell': 2.4.1
- binjumper: 0.1.4
- camelcase: 5.3.1
- chalk: 3.0.0
- ci-info: 2.0.0
- clipanion: 2.6.2
- cross-spawn: 7.0.3
- diff: 4.0.2
- globby: 11.1.0
- got: 11.8.6
- json-file-plus: 3.3.1
- lodash: 4.17.21
- micromatch: 4.0.5
- mkdirp: 0.5.6
- p-limit: 2.3.0
- pluralize: 7.0.0
- pretty-bytes: 5.6.0
- semver: 7.6.0
- stream-to-promise: 2.2.0
- tar-stream: 2.2.0
- treeify: 1.1.0
- tslib: 1.14.1
- tunnel: 0.0.6
- dev: true
-
- /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20):
+ /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.20.2):
resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==}
engines: {node: '>=14.15.0'}
peerDependencies:
esbuild: '>=0.10.0'
dependencies:
- esbuild: 0.18.20
- tslib: 2.4.1
+ esbuild: 0.20.2
+ tslib: 2.6.2
dev: true
/@yarnpkg/fslib@2.10.3:
@@ -11542,22 +10658,6 @@ packages:
tslib: 1.14.1
dev: true
- /@yarnpkg/fslib@2.10.4:
- resolution: {integrity: sha512-WhaLwvXEMjCjGxOraQx+Qtmst13iAPOlSElSZfQFdLohva5owlqACRapJ78zZFEW6M9ArqdQlZaHKVN5/mM+SA==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
- dependencies:
- '@yarnpkg/libzip': 2.3.0
- tslib: 1.14.1
- dev: true
-
- /@yarnpkg/json-proxy@2.1.1:
- resolution: {integrity: sha512-meUiCAgCYpXTH1qJfqfz+dX013ohW9p2dKfwIzUYAFutH+lsz1eHPBIk72cuCV84adh9gX6j66ekBKH/bIhCQw==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
- dependencies:
- '@yarnpkg/fslib': 2.10.4
- tslib: 1.14.1
- dev: true
-
/@yarnpkg/libzip@2.3.0:
resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
@@ -11566,41 +10666,6 @@ packages:
tslib: 1.14.1
dev: true
- /@yarnpkg/lockfile@1.1.0:
- resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
-
- /@yarnpkg/parsers@2.6.0:
- resolution: {integrity: sha512-48GtaB/WqUQSLSmlk7Evawx+r0rht6Pe91TXdjFQquC7ZV5RUbwA5pm6wnoWXiwE3tEzvGj6e/0/YLBrlBaqfg==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
- dependencies:
- js-yaml: 3.14.1
- tslib: 1.14.1
- dev: true
-
- /@yarnpkg/pnp@2.3.2:
- resolution: {integrity: sha512-JdwHu1WBCISqJEhIwx6Hbpe8MYsYbkGMxoxolkDiAeJ9IGEe08mQcbX1YmUDV1ozSWlm9JZE90nMylcDsXRFpA==}
- engines: {node: '>=10.19.0'}
- dependencies:
- '@types/node': 13.13.52
- '@yarnpkg/fslib': 2.10.4
- tslib: 1.14.1
- dev: true
-
- /@yarnpkg/shell@2.4.1:
- resolution: {integrity: sha512-oNNJkH8ZI5uwu0dMkJf737yMSY1WXn9gp55DqSA5wAOhKvV5DJTXFETxkVgBQhO6Bow9tMGSpvowTMD/oAW/9g==}
- engines: {node: '>=10.19.0'}
- hasBin: true
- dependencies:
- '@yarnpkg/fslib': 2.10.4
- '@yarnpkg/parsers': 2.6.0
- clipanion: 2.6.2
- cross-spawn: 7.0.3
- fast-glob: 3.3.2
- micromatch: 4.0.5
- stream-buffers: 3.0.2
- tslib: 1.14.1
- dev: true
-
/abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
@@ -11649,11 +10714,6 @@ packages:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
- /agent-base@5.1.1:
- resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==}
- engines: {node: '>= 6.0.0'}
- dev: true
-
/agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
@@ -11826,7 +10886,6 @@ packages:
/ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- dev: true
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
@@ -11889,19 +10948,17 @@ packages:
/argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-hidden@1.2.3:
- resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
- engines: {node: '>=10'}
- dependencies:
- tslib: 2.4.1
- dev: true
-
/aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
dependencies:
deep-equal: 2.2.3
dev: true
+ /aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ dependencies:
+ dequal: 2.0.3
+
/array-back@3.1.0:
resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==}
engines: {node: '>=6'}
@@ -11924,14 +10981,26 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- /array.prototype.reduce@1.0.6:
- resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==}
+ /array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.2
+ es-shim-unscopables: 1.0.2
+ dev: true
+
+ /array.prototype.reduce@1.0.7:
+ resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
es-array-method-boxes-properly: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
is-string: 1.0.7
dev: false
@@ -11942,7 +11011,7 @@ packages:
array-buffer-byte-length: 1.0.1
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
es-errors: 1.3.0
get-intrinsic: 1.2.4
is-array-buffer: 3.0.4
@@ -11960,14 +11029,6 @@ packages:
/asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
-
- /asn1.js-rfc2560@5.0.1(asn1.js@5.0.0):
- resolution: {integrity: sha512-1PrVg6kuBziDN3PGFmRk3QrjpKvP9h/Hv5yMrFZvC1kpzP6dQRzf5BpKstANqHBkaOUmTpakJWhicTATOA/SbA==}
- peerDependencies:
- asn1.js: ^5.0.0
- dependencies:
- asn1.js: 5.0.0
- asn1.js-rfc5280: 3.0.0
dev: false
/asn1.js-rfc2560@5.0.1(asn1.js@5.4.1):
@@ -11982,15 +11043,7 @@ packages:
/asn1.js-rfc5280@3.0.0:
resolution: {integrity: sha512-Y2LZPOWeZ6qehv698ZgOGGCZXBQShObWnGthTrIFlIQjuV1gg2B8QOhWFRExq/MR1VnPpIIe7P9vX2vElxv+Pg==}
dependencies:
- asn1.js: 5.0.0
- dev: false
-
- /asn1.js@5.0.0:
- resolution: {integrity: sha512-Y+FKviD0uyIWWo/xE0XkUl0x1allKFhzEVJ+//2Dgqpy+n+B77MlPNqvyk7Vx50M9XyVzjnRhDqJAEAsyivlbA==}
- dependencies:
- bn.js: 4.12.0
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
+ asn1.js: 5.4.1
dev: false
/asn1.js@5.4.1:
@@ -12014,17 +11067,23 @@ packages:
/assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- dev: true
+
+ /ast-types@0.13.4:
+ resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.6.2
+ dev: false
/ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.4.1
- dev: true
+ tslib: 2.6.2
/async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
+ dev: false
/async-retry@1.3.3:
resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
@@ -12033,46 +11092,31 @@ packages:
dev: false
/async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
-
- /asynckit@0.4.0:
- resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
-
- /at-least-node@1.0.0:
- resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
- engines: {node: '>= 4.0.0'}
- dev: false
-
- /autoprefixer@10.4.14(postcss@8.4.23):
- resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001597
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.23
- postcss-value-parser: 4.2.0
+ resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+
+ /asynckit@0.4.0:
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+ dev: false
+
+ /at-least-node@1.0.0:
+ resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
+ engines: {node: '>= 4.0.0'}
+ dev: false
- /autoprefixer@10.4.18(postcss@8.4.35):
- resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==}
+ /autoprefixer@10.4.19(postcss@8.4.38):
+ resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001597
+ caniuse-lite: 1.0.30001600
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- dev: false
/available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
@@ -12083,14 +11127,14 @@ packages:
/axios-retry@3.9.1:
resolution: {integrity: sha512-8PJDLJv7qTTMMwdnbMvrLYuvB47M81wRtxQmEdV5w4rgbTXTt+vtPkXwajOfOdSyv/wZICJOC+/UhXH4aQ/R+w==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
is-retry-allowed: 2.2.0
dev: false
/axios@0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies:
- follow-redirects: 1.15.5(debug@3.2.7)
+ follow-redirects: 1.15.6(debug@3.2.7)
transitivePeerDependencies:
- debug
dev: false
@@ -12098,40 +11142,45 @@ packages:
/axios@0.25.0:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
dependencies:
- follow-redirects: 1.15.5(debug@3.2.7)
+ follow-redirects: 1.15.6(debug@3.2.7)
transitivePeerDependencies:
- debug
dev: false
- /axios@1.6.7(debug@3.2.7):
- resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==}
+ /axios@1.6.8(debug@3.2.7):
+ resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
dependencies:
- follow-redirects: 1.15.5(debug@3.2.7)
+ follow-redirects: 1.15.6(debug@3.2.7)
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
dev: false
- /babel-core@7.0.0-bridge.0(@babel/core@7.24.0):
+ /axobject-query@4.0.0:
+ resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==}
+ dependencies:
+ dequal: 2.0.3
+
+ /babel-core@7.0.0-bridge.0(@babel/core@7.24.3):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
dev: true
- /babel-jest@28.1.3(@babel/core@7.24.0):
+ /babel-jest@28.1.3(@babel/core@7.24.3):
resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@jest/transform': 28.1.3
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 28.1.3(@babel/core@7.24.0)
+ babel-preset-jest: 28.1.3(@babel/core@7.24.3)
chalk: 4.1.0
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12139,19 +11188,19 @@ packages:
- supports-color
dev: true
- /babel-loader@8.3.0(@babel/core@7.24.0)(webpack@5.76.1):
+ /babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0):
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
/babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
@@ -12199,68 +11248,68 @@ packages:
'@types/babel__traverse': 7.20.5
dev: true
- /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.0):
+ /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3):
resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.23.5
- '@babel/core': 7.24.0
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.0)
+ '@babel/compat-data': 7.24.1
+ '@babel/core': 7.24.3
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.0):
- resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==}
+ /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3):
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.0)
- core-js-compat: 3.36.0
+ '@babel/core': 7.24.3
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ core-js-compat: 3.36.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.0):
- resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
+ /babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
transitivePeerDependencies:
- supports-color
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.0):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.0)
- dev: true
-
- /babel-preset-jest@28.1.3(@babel/core@7.24.0):
+ '@babel/core': 7.24.3
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3)
+ dev: true
+
+ /babel-preset-jest@28.1.3(@babel/core@7.24.3):
resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
babel-plugin-jest-hoist: 28.1.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3)
dev: true
/bail@1.0.5:
@@ -12282,8 +11331,13 @@ packages:
/base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ /basic-ftp@5.0.5:
+ resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
+ engines: {node: '>=10.0.0'}
+ dev: false
+
/batch@0.6.1:
- resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
+ resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
dev: false
/bcp-47-match@2.0.3:
@@ -12304,6 +11358,12 @@ packages:
is-windows: 1.0.2
dev: true
+ /bidi-js@1.0.3:
+ resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
+ dependencies:
+ require-from-string: 2.0.2
+ dev: false
+
/big-integer@1.6.52:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
@@ -12324,38 +11384,33 @@ packages:
resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
dev: false
- /binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ /binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
/binascii@0.0.2:
- resolution: {integrity: sha1-p/iogB28z4sXVrdD2qD+6eLZ4O4=}
+ resolution: {integrity: sha512-rA2CrUl1+6yKrn+XgLs8Hdy18OER1UW146nM+ixzhQXDY+Bd3ySkyIJGwF2a4I45JwbvF1mDL/nWkqBwpOcdBA==}
dev: false
- /binjumper@0.1.4:
- resolution: {integrity: sha512-Gdxhj+U295tIM6cO4bJO1jsvSjBVHNpj2o/OwW7pqDEtaqF6KdOxjtbo93jMMKAkP7+u09+bV8DhSqjIv4qR3w==}
- engines: {node: '>=10.12.0'}
- dev: true
-
- /bits-ui@0.11.8(svelte@3.59.2):
+ /bits-ui@0.11.8(svelte@4.2.12):
resolution: {integrity: sha512-T3YaT88OJguBoUU/MSncf41fiIc+5/ka8Au2LUDo0nSECex+LFY40+hKWLJc5tRT56avkyHsI7x9daA2r9eS/g==}
peerDependencies:
svelte: ^4.0.0
dependencies:
- '@internationalized/date': 3.5.1
- '@melt-ui/svelte': 0.65.2(svelte@3.59.2)
+ '@internationalized/date': 3.5.2
+ '@melt-ui/svelte': 0.65.2(svelte@4.2.12)
nanoid: 5.0.6
- svelte: 3.59.2
+ svelte: 4.2.12
dev: false
- /bits-ui@0.9.9(svelte@3.59.2):
+ /bits-ui@0.9.9(svelte@4.2.12):
resolution: {integrity: sha512-LkdkyTtpXdkjBzPZJVJgpcre4fut6DONoprMfadHFo82HNUhph+02CxDjYEcZcThb5z4YjSxMlCYvQPZm+YtfQ==}
peerDependencies:
svelte: ^4.0.0
dependencies:
- '@melt-ui/svelte': 0.61.2(svelte@3.59.2)
+ '@melt-ui/svelte': 0.61.2(svelte@4.2.12)
nanoid: 5.0.6
- svelte: 3.59.2
+ svelte: 4.2.12
dev: false
/bl@4.1.0:
@@ -12502,8 +11557,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001597
- electron-to-chromium: 1.4.702
+ caniuse-lite: 1.0.30001600
+ electron-to-chromium: 1.4.715
node-releases: 2.0.14
update-browserslist-db: 1.0.13(browserslist@4.23.0)
@@ -12517,7 +11572,7 @@ packages:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
/buffer-equal-constant-time@1.0.1:
- resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=}
+ resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
dev: false
/buffer-from@1.1.2:
@@ -12533,7 +11588,6 @@ packages:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- dev: true
/buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
@@ -12547,14 +11601,8 @@ packages:
dependencies:
run-applescript: 5.0.0
- /busboy@1.6.0:
- resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
- engines: {node: '>=10.16.0'}
- dependencies:
- streamsearch: 1.1.0
-
/bytes@3.0.0:
- resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
/bytes@3.1.2:
@@ -12564,7 +11612,6 @@ packages:
/cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- dev: true
/cacache@15.3.0:
resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
@@ -12587,7 +11634,7 @@ packages:
promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 8.0.1
- tar: 6.2.0
+ tar: 6.2.1
unique-filename: 1.1.1
transitivePeerDependencies:
- bluebird
@@ -12614,16 +11661,11 @@ packages:
promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 9.0.1
- tar: 6.2.0
+ tar: 6.2.1
unique-filename: 2.0.1
transitivePeerDependencies:
- bluebird
- /cacheable-lookup@5.0.4:
- resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
- engines: {node: '>=10.6.0'}
- dev: true
-
/cacheable-lookup@7.0.0:
resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
engines: {node: '>=14.16'}
@@ -12642,19 +11684,6 @@ packages:
responselike: 3.0.0
dev: false
- /cacheable-request@7.0.4:
- resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
- engines: {node: '>=8'}
- dependencies:
- clone-response: 1.0.3
- get-stream: 5.2.0
- http-cache-semantics: 4.1.1
- keyv: 4.5.4
- lowercase-keys: 2.0.0
- normalize-url: 6.1.0
- responselike: 2.0.1
- dev: true
-
/call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -12702,13 +11731,13 @@ packages:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001597
+ caniuse-lite: 1.0.30001600
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite@1.0.30001597:
- resolution: {integrity: sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==}
+ /caniuse-lite@1.0.30001600:
+ resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
/ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
@@ -12724,7 +11753,6 @@ packages:
loupe: 2.3.7
pathval: 1.1.1
type-detect: 4.0.8
- dev: true
/chalk-template@0.4.0:
resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==}
@@ -12789,14 +11817,13 @@ packages:
dev: true
/charenc@0.0.2:
- resolution: {integrity: sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=}
+ resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
dev: false
/check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
dependencies:
get-func-name: 2.0.2
- dev: true
/cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
@@ -12822,20 +11849,6 @@ packages:
parse5-htmlparser2-tree-adapter: 7.0.0
dev: false
- /chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
- engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
/chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
@@ -12849,7 +11862,6 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
- dev: true
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -12862,15 +11874,9 @@ packages:
/chroma-js@2.4.2:
resolution: {integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==}
- /chromatic@6.17.4:
- resolution: {integrity: sha512-vnlvsv2lkp8BVtTn1OumJzqkDk2qB3pcGxEDIfZtVboKtzIPjnIlGa+c1fVKQe8NvHDU8R39k8klqgKHIXUVJw==}
+ /chromatic@6.24.1:
+ resolution: {integrity: sha512-XbpdWWHvFpEHtcq1Km71UcuQ07effB+8q8L47E1Y7HJmJ4ZCoKCuPd8liNrbnvwEAxqfBZvTcONYU/3BPz2i5w==}
hasBin: true
- dependencies:
- '@discoveryjs/json-ext': 0.5.7
- '@types/webpack-env': 1.18.4
- snyk-nodejs-lockfile-parser: 1.52.11
- transitivePeerDependencies:
- - supports-color
dev: true
/chrome-trace-event@1.0.3:
@@ -12879,6 +11885,7 @@ packages:
/ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
+ dev: false
/ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
@@ -12955,10 +11962,6 @@ packages:
string-width: 5.1.2
dev: false
- /clipanion@2.6.2:
- resolution: {integrity: sha512-0tOHJNMF9+4R3qcbBL+4IxLErpaYSYvzs10aXuECDbZdJOuJHdagJMAqvLdeaUQTI/o2uSCDRpet6ywDiKOAYw==}
- dev: true
-
/cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
dependencies:
@@ -12984,12 +11987,6 @@ packages:
kind-of: 6.0.3
shallow-clone: 3.0.1
- /clone-response@1.0.3:
- resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
- dependencies:
- mimic-response: 1.0.1
- dev: true
-
/clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -13000,29 +11997,24 @@ packages:
engines: {node: '>=0.8'}
dev: true
- /clsx@1.1.1:
- resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
- engines: {node: '>=6'}
- dev: false
-
/clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
- /clsx@2.0.0:
- resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
+ /clsx@2.1.0:
+ resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
engines: {node: '>=6'}
dev: false
- /cmdk-sv@0.0.12(svelte@3.59.2):
+ /cmdk-sv@0.0.12(svelte@4.2.12):
resolution: {integrity: sha512-d+eILSOb2W+/3U/j7xGTgGRrZkFB/z4Xlvj0ADrWhf34y9YLzJon3JCGP2hMil5IrVm0P/+IFIeCF5l3//kcjA==}
peerDependencies:
svelte: ^4.0.0
dependencies:
- bits-ui: 0.9.9(svelte@3.59.2)
+ bits-ui: 0.9.9(svelte@4.2.12)
nanoid: 5.0.6
- svelte: 3.59.2
+ svelte: 4.2.12
dev: false
/co@4.6.0:
@@ -13039,16 +12031,25 @@ packages:
q: 1.5.1
dev: false
+ /code-red@1.0.4:
+ resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@types/estree': 1.0.5
+ acorn: 8.11.3
+ estree-walker: 3.0.3
+ periscopic: 3.1.0
+
/codemirror@6.0.1(@lezer/common@1.2.1):
resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.1)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.15.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.0)(@lezer/common@1.2.1)
'@codemirror/commands': 6.3.3
- '@codemirror/language': 6.10.0
- '@codemirror/lint': 6.4.2
- '@codemirror/search': 6.5.5
+ '@codemirror/language': 6.10.1
+ '@codemirror/lint': 6.5.0
+ '@codemirror/search': 6.5.6
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
transitivePeerDependencies:
- '@lezer/common'
dev: false
@@ -13120,6 +12121,7 @@ packages:
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: 1.0.0
+ dev: false
/comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
@@ -13147,10 +12149,9 @@ packages:
table-layout: 3.0.2
typical: 7.1.1
- /commander@11.0.0:
- resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
+ /commander@11.1.0:
+ resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
engines: {node: '>=16'}
- dev: true
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
@@ -13211,17 +12212,7 @@ packages:
- supports-color
/concat-map@0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
-
- /concat-stream@1.6.2:
- resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
- engines: {'0': node >= 0.8}
- dependencies:
- buffer-from: 1.1.2
- inherits: 2.0.4
- readable-stream: 2.3.8
- typedarray: 0.0.6
- dev: true
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
/configstore@5.0.1:
resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
@@ -13247,13 +12238,12 @@ packages:
/consola@3.2.3:
resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
engines: {node: ^14.18.0 || >=16.10.0}
- dev: true
/console-control-strings@1.1.0:
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
/content-disposition@0.5.2:
- resolution: {integrity: sha1-DPaLud318r55YcOoUXjLhdunjLQ=}
+ resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
engines: {node: '>= 0.6'}
dev: false
@@ -13274,10 +12264,10 @@ packages:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
/cookie-signature@1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- /cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ /cookie@0.6.0:
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
/copy-text-to-clipboard@3.2.0:
@@ -13285,7 +12275,7 @@ packages:
engines: {node: '>=12'}
dev: false
- /copy-webpack-plugin@11.0.0(webpack@5.76.1):
+ /copy-webpack-plugin@11.0.0(webpack@5.91.0):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -13297,21 +12287,21 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
- /core-js-compat@3.36.0:
- resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==}
+ /core-js-compat@3.36.1:
+ resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
dependencies:
browserslist: 4.23.0
- /core-js-pure@3.36.0:
- resolution: {integrity: sha512-cN28qmhRNgbMZZMc/RFu5w8pK9VJzpb2rJVR/lHuZJKwmXnoWOpXmMkxqBB514igkp1Hu8WGROsiOAzUcKdHOQ==}
+ /core-js-pure@3.36.1:
+ resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==}
requiresBuild: true
dev: false
- /core-js@3.36.0:
- resolution: {integrity: sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw==}
+ /core-js@3.36.1:
+ resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==}
requiresBuild: true
dev: false
@@ -13324,12 +12314,6 @@ packages:
layout-base: 1.0.2
dev: false
- /cose-base@2.2.0:
- resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==}
- dependencies:
- layout-base: 2.0.1
- dev: false
-
/cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
@@ -13352,23 +12336,7 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig@8.3.6(typescript@4.9.5):
- resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
- engines: {node: '>=14'}
- peerDependencies:
- typescript: '>=4.9.5'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- path-type: 4.0.0
- typescript: 4.9.5
- dev: false
-
- /cosmiconfig@8.3.6(typescript@5.2.2):
+ /cosmiconfig@8.3.6(typescript@5.4.2):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -13381,8 +12349,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.2.2
- dev: true
+ typescript: 5.4.2
/crelt@1.0.6:
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
@@ -13431,23 +12398,23 @@ packages:
which: 2.0.2
/crypt@0.0.2:
- resolution: {integrity: sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=}
+ resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
dev: false
/crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- /css-declaration-sorter@6.4.1(postcss@8.4.35):
+ /css-declaration-sorter@6.4.1(postcss@8.4.38):
resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /css-loader@6.10.0(webpack@5.76.1):
+ /css-loader@6.10.0(webpack@5.91.0):
resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -13459,18 +12426,18 @@ packages:
webpack:
optional: true
dependencies:
- icss-utils: 5.1.0(postcss@8.4.35)
- postcss: 8.4.35
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.35)
- postcss-modules-local-by-default: 4.0.4(postcss@8.4.35)
- postcss-modules-scope: 3.1.1(postcss@8.4.35)
- postcss-modules-values: 4.0.0(postcss@8.4.35)
+ icss-utils: 5.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
+ postcss-modules-local-by-default: 4.0.4(postcss@8.4.38)
+ postcss-modules-scope: 3.1.1(postcss@8.4.38)
+ postcss-modules-values: 4.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
semver: 7.6.0
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
- /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(webpack@5.76.1):
+ /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(webpack@5.91.0):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -13496,13 +12463,13 @@ packages:
optional: true
dependencies:
clean-css: 5.3.3
- cssnano: 5.1.15(postcss@8.4.35)
+ cssnano: 5.1.15(postcss@8.4.38)
jest-worker: 29.7.0
- postcss: 8.4.35
+ postcss: 8.4.38
schema-utils: 4.2.0
serialize-javascript: 6.0.2
source-map: 0.6.1
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
/css-select-base-adapter@0.1.1:
@@ -13556,6 +12523,13 @@ packages:
mdn-data: 2.0.14
source-map: 0.6.1
+ /css-tree@2.3.1:
+ resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ dependencies:
+ mdn-data: 2.0.30
+ source-map-js: 1.2.0
+
/css-what@3.4.2:
resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
engines: {node: '>= 6'}
@@ -13565,82 +12539,86 @@ packages:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
+ /css.escape@1.5.1:
+ resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
+ dev: true
+
/cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-advanced@5.3.10(postcss@8.4.35):
+ /cssnano-preset-advanced@5.3.10(postcss@8.4.38):
resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.18(postcss@8.4.35)
- cssnano-preset-default: 5.2.14(postcss@8.4.35)
- postcss: 8.4.35
- postcss-discard-unused: 5.1.0(postcss@8.4.35)
- postcss-merge-idents: 5.1.1(postcss@8.4.35)
- postcss-reduce-idents: 5.2.0(postcss@8.4.35)
- postcss-zindex: 5.1.0(postcss@8.4.35)
+ autoprefixer: 10.4.19(postcss@8.4.38)
+ cssnano-preset-default: 5.2.14(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-discard-unused: 5.1.0(postcss@8.4.38)
+ postcss-merge-idents: 5.1.1(postcss@8.4.38)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.38)
+ postcss-zindex: 5.1.0(postcss@8.4.38)
dev: false
- /cssnano-preset-default@5.2.14(postcss@8.4.35):
+ /cssnano-preset-default@5.2.14(postcss@8.4.38):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.35)
- cssnano-utils: 3.1.0(postcss@8.4.35)
- postcss: 8.4.35
- postcss-calc: 8.2.4(postcss@8.4.35)
- postcss-colormin: 5.3.1(postcss@8.4.35)
- postcss-convert-values: 5.1.3(postcss@8.4.35)
- postcss-discard-comments: 5.1.2(postcss@8.4.35)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.35)
- postcss-discard-empty: 5.1.1(postcss@8.4.35)
- postcss-discard-overridden: 5.1.0(postcss@8.4.35)
- postcss-merge-longhand: 5.1.7(postcss@8.4.35)
- postcss-merge-rules: 5.1.4(postcss@8.4.35)
- postcss-minify-font-values: 5.1.0(postcss@8.4.35)
- postcss-minify-gradients: 5.1.1(postcss@8.4.35)
- postcss-minify-params: 5.1.4(postcss@8.4.35)
- postcss-minify-selectors: 5.2.1(postcss@8.4.35)
- postcss-normalize-charset: 5.1.0(postcss@8.4.35)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.35)
- postcss-normalize-positions: 5.1.1(postcss@8.4.35)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.35)
- postcss-normalize-string: 5.1.0(postcss@8.4.35)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.35)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.35)
- postcss-normalize-url: 5.1.0(postcss@8.4.35)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.35)
- postcss-ordered-values: 5.1.3(postcss@8.4.35)
- postcss-reduce-initial: 5.1.2(postcss@8.4.35)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.35)
- postcss-svgo: 5.1.0(postcss@8.4.35)
- postcss-unique-selectors: 5.1.1(postcss@8.4.35)
- dev: false
-
- /cssnano-utils@3.1.0(postcss@8.4.35):
+ css-declaration-sorter: 6.4.1(postcss@8.4.38)
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-calc: 8.2.4(postcss@8.4.38)
+ postcss-colormin: 5.3.1(postcss@8.4.38)
+ postcss-convert-values: 5.1.3(postcss@8.4.38)
+ postcss-discard-comments: 5.1.2(postcss@8.4.38)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
+ postcss-discard-empty: 5.1.1(postcss@8.4.38)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.38)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.38)
+ postcss-merge-rules: 5.1.4(postcss@8.4.38)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.38)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.38)
+ postcss-minify-params: 5.1.4(postcss@8.4.38)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.38)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.38)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.38)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.38)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38)
+ postcss-normalize-string: 5.1.0(postcss@8.4.38)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.38)
+ postcss-normalize-url: 5.1.0(postcss@8.4.38)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.38)
+ postcss-ordered-values: 5.1.3(postcss@8.4.38)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.38)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.38)
+ postcss-svgo: 5.1.0(postcss@8.4.38)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.38)
+ dev: false
+
+ /cssnano-utils@3.1.0(postcss@8.4.38):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /cssnano@5.1.15(postcss@8.4.35):
+ /cssnano@5.1.15(postcss@8.4.38):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.35)
+ cssnano-preset-default: 5.2.14(postcss@8.4.38)
lilconfig: 2.1.0
- postcss: 8.4.35
+ postcss: 8.4.38
yaml: 1.10.2
dev: false
@@ -13650,6 +12628,13 @@ packages:
dependencies:
css-tree: 1.1.3
+ /cssstyle@4.0.1:
+ resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ rrweb-cssom: 0.6.0
+ dev: false
+
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
@@ -13675,6 +12660,10 @@ packages:
stream-transform: 2.1.3
dev: true
+ /cuint@0.2.2:
+ resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==}
+ dev: false
+
/cytoscape-cose-bilkent@4.1.0(cytoscape@3.28.1):
resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==}
peerDependencies:
@@ -13684,15 +12673,6 @@ packages:
cytoscape: 3.28.1
dev: false
- /cytoscape-fcose@2.2.0(cytoscape@3.28.1):
- resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==}
- peerDependencies:
- cytoscape: ^3.2.0
- dependencies:
- cose-base: 2.2.0
- cytoscape: 3.28.1
- dev: false
-
/cytoscape@3.28.1:
resolution: {integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==}
engines: {node: '>=0.10'}
@@ -13982,6 +12962,43 @@ packages:
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'}
+ dev: false
+
+ /data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
+ dependencies:
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
+ dev: false
+
+ /data-view-buffer@1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ /data-view-byte-length@1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ /data-view-byte-offset@1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
/dayjs@1.11.10:
resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
dev: false
@@ -14033,6 +13050,10 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ dev: false
+
/decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
dependencies:
@@ -14044,6 +13065,7 @@ packages:
engines: {node: '>=10'}
dependencies:
mimic-response: 3.1.0
+ dev: false
/dedent-js@1.0.1:
resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==}
@@ -14066,7 +13088,6 @@ packages:
engines: {node: '>=6'}
dependencies:
type-detect: 4.0.8
- dev: true
/deep-equal@2.2.3:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
@@ -14136,6 +13157,7 @@ packages:
/defer-to-connect@2.0.1:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
+ dev: false
/define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
@@ -14165,6 +13187,15 @@ packages:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
dev: true
+ /degenerator@5.0.1:
+ resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
+ engines: {node: '>= 14'}
+ dependencies:
+ ast-types: 0.13.4
+ escodegen: 2.1.0
+ esprima: 4.0.1
+ dev: false
+
/del@6.1.1:
resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
@@ -14187,6 +13218,7 @@ packages:
/delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
+ dev: false
/delegates@1.0.0:
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
@@ -14229,8 +13261,8 @@ packages:
hasBin: true
dev: true
- /detect-libc@2.0.2:
- resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ /detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
/detect-newline@3.1.0:
@@ -14238,10 +13270,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /detect-node-es@1.1.0:
- resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
- dev: true
-
/detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
dev: false
@@ -14287,12 +13315,6 @@ packages:
/diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
-
- /diff@4.0.2:
- resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
- engines: {node: '>=0.3.1'}
- dev: true
/diff@5.2.0:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
@@ -14329,6 +13351,10 @@ packages:
resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
dev: true
+ /dom-accessibility-api@0.6.3:
+ resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
+ dev: true
+
/dom-converter@0.2.0:
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
dependencies:
@@ -14384,8 +13410,8 @@ packages:
domelementtype: 2.3.0
dev: false
- /dompurify@3.0.9:
- resolution: {integrity: sha512-uyb4NDIvQ3hRn6NiC+SIFaP4mJ/MdXlvtunaqK9Bn6dD3RuB/1S/gasEjDHD8eiaqdSael2vBv+hOs7Y+jhYOQ==}
+ /dompurify@3.0.11:
+ resolution: {integrity: sha512-Fan4uMuyB26gFV3ovPoEoQbxRRPfTu3CvImyZnhGq5fsIEO+gEFLp45ISFt+kQBWsK5ulDdT0oV28jS1UrwQLg==}
dev: false
/domutils@1.7.0:
@@ -14433,11 +13459,6 @@ packages:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
dev: true
- /dotenv@16.0.1:
- resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==}
- engines: {node: '>=12'}
- dev: true
-
/dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
@@ -14561,11 +13582,11 @@ packages:
jake: 10.8.7
dev: true
- /electron-to-chromium@1.4.702:
- resolution: {integrity: sha512-LYLXyEUsZ3nNSwiOWjI88N1PJUAMU2QphQSgGLVkFnb3FxZxNui2Vzi2PaKPgPWbsWbZstZnh6BMf/VQJamjiQ==}
+ /electron-to-chromium@1.4.715:
+ resolution: {integrity: sha512-XzWNH4ZSa9BwVUQSDorPWAUQ5WGuYz7zJUNpNif40zFCiCl20t8zgylmreNmn26h5kiyw2lg7RfTmeMBsDklqg==}
- /elkjs@0.8.2:
- resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
+ /elkjs@0.9.2:
+ resolution: {integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==}
dev: false
/emittery@0.10.2:
@@ -14606,12 +13627,6 @@ packages:
iconv-lite: 0.6.3
optional: true
- /end-of-stream@1.1.0:
- resolution: {integrity: sha512-EoulkdKF/1xa92q25PbjuDcgJ9RDHYU2Rs3SCIvs2/dSQ3BpmxneNHmA/M7fe60M3PrV7nNGTTNbkK62l6vXiQ==}
- dependencies:
- once: 1.3.3
- dev: true
-
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
@@ -14667,16 +13682,20 @@ packages:
dependencies:
is-arrayish: 0.2.1
- /es-abstract@1.22.5:
- resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==}
+ /es-abstract@1.23.2:
+ resolution: {integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==}
engines: {node: '>= 0.4'}
dependencies:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
available-typed-arrays: 1.0.7
call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
es-define-property: 1.0.0
es-errors: 1.3.0
+ es-object-atoms: 1.0.0
es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
@@ -14691,6 +13710,7 @@ packages:
internal-slot: 1.0.7
is-array-buffer: 3.0.4
is-callable: 1.2.7
+ is-data-view: 1.0.1
is-negative-zero: 2.0.3
is-regex: 1.1.4
is-shared-array-buffer: 1.0.3
@@ -14703,13 +13723,13 @@ packages:
regexp.prototype.flags: 1.5.2
safe-array-concat: 1.1.2
safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
+ string.prototype.trimstart: 1.0.8
typed-array-buffer: 1.0.2
typed-array-byte-length: 1.0.1
typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.5
+ typed-array-length: 1.0.6
unbox-primitive: 1.0.2
which-typed-array: 1.1.15
@@ -14719,7 +13739,7 @@ packages:
dependencies:
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
es-errors: 1.3.0
function-bind: 1.1.2
globalthis: 1.0.3
@@ -14757,6 +13777,16 @@ packages:
/es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
+ dev: true
+
+ /es-module-lexer@1.4.2:
+ resolution: {integrity: sha512-7nOqkomXZEaxUDJw21XZNtRk739QvrPSoZoRtbsEfcii00vdzZUh6zh1CQwHhrib8MdEtJfv5rJiGeb4KuV/vw==}
+
+ /es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
/es-set-tostringtag@2.0.3:
resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
@@ -14766,6 +13796,12 @@ packages:
has-tostringtag: 1.0.2
hasown: 2.0.2
+ /es-shim-unscopables@1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ dependencies:
+ hasown: 2.0.2
+ dev: true
+
/es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
@@ -14781,74 +13817,76 @@ packages:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
dev: true
- /esbuild-register@3.5.0(esbuild@0.18.20):
+ /esbuild-register@3.5.0(esbuild@0.20.2):
resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
peerDependencies:
esbuild: '>=0.12 <1'
dependencies:
debug: 4.3.4
- esbuild: 0.18.20
+ esbuild: 0.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /esbuild@0.17.19:
- resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
+ /esbuild@0.19.12:
+ resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.17.19
- '@esbuild/android-arm64': 0.17.19
- '@esbuild/android-x64': 0.17.19
- '@esbuild/darwin-arm64': 0.17.19
- '@esbuild/darwin-x64': 0.17.19
- '@esbuild/freebsd-arm64': 0.17.19
- '@esbuild/freebsd-x64': 0.17.19
- '@esbuild/linux-arm': 0.17.19
- '@esbuild/linux-arm64': 0.17.19
- '@esbuild/linux-ia32': 0.17.19
- '@esbuild/linux-loong64': 0.17.19
- '@esbuild/linux-mips64el': 0.17.19
- '@esbuild/linux-ppc64': 0.17.19
- '@esbuild/linux-riscv64': 0.17.19
- '@esbuild/linux-s390x': 0.17.19
- '@esbuild/linux-x64': 0.17.19
- '@esbuild/netbsd-x64': 0.17.19
- '@esbuild/openbsd-x64': 0.17.19
- '@esbuild/sunos-x64': 0.17.19
- '@esbuild/win32-arm64': 0.17.19
- '@esbuild/win32-ia32': 0.17.19
- '@esbuild/win32-x64': 0.17.19
-
- /esbuild@0.18.20:
- resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
+ '@esbuild/aix-ppc64': 0.19.12
+ '@esbuild/android-arm': 0.19.12
+ '@esbuild/android-arm64': 0.19.12
+ '@esbuild/android-x64': 0.19.12
+ '@esbuild/darwin-arm64': 0.19.12
+ '@esbuild/darwin-x64': 0.19.12
+ '@esbuild/freebsd-arm64': 0.19.12
+ '@esbuild/freebsd-x64': 0.19.12
+ '@esbuild/linux-arm': 0.19.12
+ '@esbuild/linux-arm64': 0.19.12
+ '@esbuild/linux-ia32': 0.19.12
+ '@esbuild/linux-loong64': 0.19.12
+ '@esbuild/linux-mips64el': 0.19.12
+ '@esbuild/linux-ppc64': 0.19.12
+ '@esbuild/linux-riscv64': 0.19.12
+ '@esbuild/linux-s390x': 0.19.12
+ '@esbuild/linux-x64': 0.19.12
+ '@esbuild/netbsd-x64': 0.19.12
+ '@esbuild/openbsd-x64': 0.19.12
+ '@esbuild/sunos-x64': 0.19.12
+ '@esbuild/win32-arm64': 0.19.12
+ '@esbuild/win32-ia32': 0.19.12
+ '@esbuild/win32-x64': 0.19.12
+
+ /esbuild@0.20.2:
+ resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.18.20
- '@esbuild/android-arm64': 0.18.20
- '@esbuild/android-x64': 0.18.20
- '@esbuild/darwin-arm64': 0.18.20
- '@esbuild/darwin-x64': 0.18.20
- '@esbuild/freebsd-arm64': 0.18.20
- '@esbuild/freebsd-x64': 0.18.20
- '@esbuild/linux-arm': 0.18.20
- '@esbuild/linux-arm64': 0.18.20
- '@esbuild/linux-ia32': 0.18.20
- '@esbuild/linux-loong64': 0.18.20
- '@esbuild/linux-mips64el': 0.18.20
- '@esbuild/linux-ppc64': 0.18.20
- '@esbuild/linux-riscv64': 0.18.20
- '@esbuild/linux-s390x': 0.18.20
- '@esbuild/linux-x64': 0.18.20
- '@esbuild/netbsd-x64': 0.18.20
- '@esbuild/openbsd-x64': 0.18.20
- '@esbuild/sunos-x64': 0.18.20
- '@esbuild/win32-arm64': 0.18.20
- '@esbuild/win32-ia32': 0.18.20
- '@esbuild/win32-x64': 0.18.20
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
+ '@esbuild/linux-riscv64': 0.20.2
+ '@esbuild/linux-s390x': 0.20.2
+ '@esbuild/linux-x64': 0.20.2
+ '@esbuild/netbsd-x64': 0.20.2
+ '@esbuild/openbsd-x64': 0.20.2
+ '@esbuild/sunos-x64': 0.20.2
+ '@esbuild/win32-arm64': 0.20.2
+ '@esbuild/win32-ia32': 0.20.2
+ '@esbuild/win32-x64': 0.20.2
dev: true
/escalade@3.1.2:
@@ -14889,6 +13927,36 @@ packages:
source-map: 0.6.1
dev: false
+ /escodegen@2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ optionalDependencies:
+ source-map: 0.6.1
+ dev: false
+
+ /eslint-compat-utils@0.1.2(eslint@8.45.0):
+ resolution: {integrity: sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ eslint: 8.45.0
+ dev: true
+
+ /eslint-compat-utils@0.1.2(eslint@8.57.0):
+ resolution: {integrity: sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ eslint: 8.57.0
+ dev: false
+
/eslint-config-prettier@8.10.0(eslint@8.45.0):
resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
hasBin: true
@@ -14898,14 +13966,23 @@ packages:
eslint: 8.45.0
dev: true
- /eslint-plugin-storybook@0.6.15(eslint@8.45.0)(typescript@5.2.2):
- resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==}
- engines: {node: 12.x || 14.x || >= 16}
+ /eslint-config-prettier@9.1.0(eslint@8.57.0):
+ resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: 8.57.0
+ dev: false
+
+ /eslint-plugin-storybook@0.8.0(eslint@8.45.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-CZeVO5EzmPY7qghO2t64oaFM+8FTaD4uzOEjHKp516exyTKo+skKAL9GI3QALS2BXhyALJjNtwbmr1XinGE8bA==}
+ engines: {node: '>= 18'}
peerDependencies:
eslint: '>=6'
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@8.45.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.45.0)(typescript@5.4.2)
eslint: 8.45.0
requireindex: 1.2.0
ts-dedent: 2.2.0
@@ -14914,41 +13991,63 @@ packages:
- typescript
dev: true
- /eslint-plugin-svelte3@4.0.0(eslint@8.45.0)(svelte@3.59.2):
- resolution: {integrity: sha512-OIx9lgaNzD02+MDFNLw0GEUbuovNcglg+wnd/UY0fbZmlQSz7GlQiQ1f+yX0XvC07XPcDOnFcichqI3xCwp71g==}
+ /eslint-plugin-svelte@2.35.1(eslint@8.45.0)(svelte@4.2.12):
+ resolution: {integrity: sha512-IF8TpLnROSGy98Z3NrsKXWDSCbNY2ReHDcrYTuXZMbfX7VmESISR78TWgO9zdg4Dht1X8coub5jKwHzP0ExRug==}
+ engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
- eslint: '>=8.0.0'
- svelte: ^3.2.0
+ eslint: ^7.0.0 || ^8.0.0-0
+ svelte: ^3.37.0 || ^4.0.0
+ peerDependenciesMeta:
+ svelte:
+ optional: true
dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0)
+ '@jridgewell/sourcemap-codec': 1.4.15
+ debug: 4.3.4
eslint: 8.45.0
- svelte: 3.59.2
+ eslint-compat-utils: 0.1.2(eslint@8.45.0)
+ esutils: 2.0.3
+ known-css-properties: 0.29.0
+ postcss: 8.4.38
+ postcss-load-config: 3.1.4(postcss@8.4.38)
+ postcss-safe-parser: 6.0.0(postcss@8.4.38)
+ postcss-selector-parser: 6.0.16
+ semver: 7.6.0
+ svelte: 4.2.12
+ svelte-eslint-parser: 0.33.1(svelte@4.2.12)
+ transitivePeerDependencies:
+ - supports-color
+ - ts-node
dev: true
- /eslint-plugin-svelte@2.26.0(eslint@8.45.0)(svelte@3.59.2):
- resolution: {integrity: sha512-EMcHDOMfMvjxoB5aCGASwDhVHOb/yy0Syer5aPm4GDQpjbPMceacs7LdSDL4xsCIHuOGPdOnc0YIjGpmmuKOlQ==}
+ /eslint-plugin-svelte@2.35.1(eslint@8.57.0)(svelte@4.2.12):
+ resolution: {integrity: sha512-IF8TpLnROSGy98Z3NrsKXWDSCbNY2ReHDcrYTuXZMbfX7VmESISR78TWgO9zdg4Dht1X8coub5jKwHzP0ExRug==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0-0
- svelte: ^3.37.0
+ svelte: ^3.37.0 || ^4.0.0
peerDependenciesMeta:
svelte:
optional: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@jridgewell/sourcemap-codec': 1.4.15
debug: 4.3.4
- eslint: 8.45.0
+ eslint: 8.57.0
+ eslint-compat-utils: 0.1.2(eslint@8.57.0)
esutils: 2.0.3
- known-css-properties: 0.27.0
- postcss: 8.4.23
- postcss-load-config: 3.1.4(postcss@8.4.23)
- postcss-safe-parser: 6.0.0(postcss@8.4.23)
- svelte: 3.59.2
- svelte-eslint-parser: 0.26.1(svelte@3.59.2)
+ known-css-properties: 0.29.0
+ postcss: 8.4.38
+ postcss-load-config: 3.1.4(postcss@8.4.38)
+ postcss-safe-parser: 6.0.0(postcss@8.4.38)
+ postcss-selector-parser: 6.0.16
+ semver: 7.6.0
+ svelte: 4.2.12
+ svelte-eslint-parser: 0.33.1(svelte@4.2.12)
transitivePeerDependencies:
- supports-color
- ts-node
- dev: true
+ dev: false
/eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
@@ -15075,6 +14174,53 @@ packages:
transitivePeerDependencies:
- supports-color
+ /eslint@8.57.0:
+ resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@eslint-community/regexpp': 4.10.0
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.57.0
+ '@humanwhocodes/config-array': 0.11.14
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.2.0
+ ajv: 6.12.6
+ chalk: 4.1.0
+ cross-spawn: 7.0.3
+ debug: 4.3.4
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.24.0
+ graphemer: 1.4.0
+ ignore: 5.3.1
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-yaml: 4.1.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.3
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/esm-env@1.0.0:
resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
@@ -15129,12 +14275,17 @@ packages:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: false
+ /estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ dependencies:
+ '@types/estree': 1.0.5
+
/esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- /eta@1.14.2:
- resolution: {integrity: sha512-wZmJAV7EFUG5W8XNXSazIdichnWEhGB1OWg4tnXWPj0CPNUcFdgorGNO6N9p6WBUgoUe4P0OziJYn1+6zxP2aQ==}
+ /eta@2.2.0:
+ resolution: {integrity: sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==}
engines: {node: '>=6.0.0'}
dev: false
@@ -15146,16 +14297,10 @@ packages:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
require-like: 0.1.2
dev: false
- /event-loop-spinner@2.2.0:
- resolution: {integrity: sha512-KB44sV4Mv7uLIkJHJ5qhiZe5um6th2g57nHQL/uqnPHKP2IswoTRWUteEXTJQL4gW++1zqWUni+H2hGkP51c9w==}
- dependencies:
- tslib: 2.4.1
- dev: true
-
/event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
@@ -15213,7 +14358,6 @@ packages:
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- dev: true
/exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
@@ -15255,8 +14399,8 @@ packages:
/export-to-csv@0.2.1:
resolution: {integrity: sha512-KTbrd3CAZ0cFceJEZr1e5uiMasabeCpXq1/5uvVxDl53o4jXJHnltasQoj2NkzrxD8hU9kdwjnMhoir/7nNx/A==}
- /express@4.18.3:
- resolution: {integrity: sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==}
+ /express@4.19.1:
+ resolution: {integrity: sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w==}
engines: {node: '>= 0.10.0'}
dependencies:
accepts: 1.3.8
@@ -15264,7 +14408,7 @@ packages:
body-parser: 1.20.2
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
@@ -15316,18 +14460,6 @@ packages:
tmp: 0.0.33
dev: true
- /extract-zip@1.7.0:
- resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==}
- hasBin: true
- dependencies:
- concat-stream: 1.6.2
- debug: 2.6.9
- mkdirp: 0.5.6
- yauzl: 2.10.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -15352,7 +14484,7 @@ packages:
dev: false
/fast-url-parser@1.1.3:
- resolution: {integrity: sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=}
+ resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
dependencies:
punycode: 1.4.1
dev: false
@@ -15364,8 +14496,8 @@ packages:
strnum: 1.0.5
dev: false
- /fast-xml-parser@4.3.5:
- resolution: {integrity: sha512-sWvP1Pl8H03B8oFJpFR3HE31HUfwtX7Rlf9BNsvdpujD4n7WMhfmu8h9wOV2u+c1k0ZilTADhPqypzx2J690ZQ==}
+ /fast-xml-parser@4.3.6:
+ resolution: {integrity: sha512-M2SovcRxD4+vC493Uc2GZVcZaj66CCJhWurC4viynVSTvrpErCShNcDz1lAho6n9REQKvL/ll4A4/fw6Y9z8nw==}
hasBin: true
dependencies:
strnum: 1.0.5
@@ -15415,12 +14547,6 @@ packages:
- encoding
dev: false
- /fd-slicer@1.1.0:
- resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- dependencies:
- pend: 1.2.0
- dev: true
-
/fecha@4.2.3:
resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
dev: false
@@ -15449,7 +14575,7 @@ packages:
dependencies:
flat-cache: 3.2.0
- /file-loader@6.2.0(webpack@5.76.1):
+ /file-loader@6.2.0(webpack@5.91.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -15457,7 +14583,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
/file-system-cache@2.3.0:
@@ -15548,12 +14674,6 @@ packages:
pkg-dir: 4.2.0
dev: true
- /find-yarn-workspace-root@2.0.0:
- resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==}
- dependencies:
- micromatch: 4.0.5
- dev: false
-
/flat-cache@3.2.0:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -15573,19 +14693,19 @@ packages:
/flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- /flow-parser@0.230.0:
- resolution: {integrity: sha512-ZAfKaarESYYcP/RoLdM91vX0u/1RR7jI5TJaFLnxwRlC2mp0o+Rw7ipIY7J6qpIpQYtAobWb/J6S0XPeu0gO8g==}
+ /flow-parser@0.231.0:
+ resolution: {integrity: sha512-WVzuqwq7ZnvBceCG0DGeTQebZE+iIU0mlk5PmJgYj9DDrt+0isGC2m1ezW9vxL4V+HERJJo9ExppOnwKH2op6Q==}
engines: {node: '>=0.4.0'}
dev: true
- /flux@4.0.4(react@17.0.1):
+ /flux@4.0.4(react@17.0.2):
resolution: {integrity: sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==}
peerDependencies:
react: ^15.0.2 || ^16.0.0 || ^17.0.0
dependencies:
fbemitter: 3.0.0
fbjs: 3.0.5
- react: 17.0.1
+ react: 17.0.2
transitivePeerDependencies:
- encoding
dev: false
@@ -15600,8 +14720,8 @@ packages:
tabbable: 6.2.0
dev: false
- /follow-redirects@1.15.5(debug@3.2.7):
- resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==}
+ /follow-redirects@1.15.6(debug@3.2.7):
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -15623,7 +14743,7 @@ packages:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.45.0)(typescript@4.9.5)(webpack@5.76.1):
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.45.0)(typescript@5.4.2)(webpack@5.91.0):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -15637,10 +14757,10 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
'@types/json-schema': 7.0.15
chalk: 4.1.0
- chokidar: 3.5.3
+ chokidar: 3.6.0
cosmiconfig: 6.0.0
deepmerge: 4.3.1
eslint: 8.45.0
@@ -15651,8 +14771,8 @@ packages:
schema-utils: 2.7.0
semver: 7.6.0
tapable: 1.1.3
- typescript: 4.9.5
- webpack: 5.76.1
+ typescript: 5.4.2
+ webpack: 5.91.0
dev: false
/form-data-encoder@4.0.2:
@@ -15667,6 +14787,7 @@ packages:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
+ dev: false
/formdata-polyfill@4.0.10:
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
@@ -15686,7 +14807,7 @@ packages:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
/fresh@0.5.2:
- resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
/fs-constants@1.0.0:
@@ -15760,6 +14881,14 @@ 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]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -15776,7 +14905,7 @@ packages:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
functions-have-names: 1.2.3
/functional-red-black-tree@1.0.1:
@@ -15886,9 +15015,13 @@ packages:
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
+ /get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ engines: {node: '>=18'}
+ dev: false
+
/get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- dev: true
/get-intrinsic@1.2.4:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
@@ -15900,11 +15033,6 @@ packages:
has-symbols: 1.0.3
hasown: 2.0.2
- /get-nonce@1.0.1:
- resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
- engines: {node: '>=6'}
- dev: true
-
/get-npm-tarball-url@2.1.0:
resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==}
engines: {node: '>=12.17'}
@@ -15924,23 +15052,11 @@ packages:
engines: {node: '>=6'}
dev: true
- /get-port@5.1.1:
- resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
- engines: {node: '>=8'}
- dev: true
-
- /get-port@7.0.0:
- resolution: {integrity: sha512-mDHFgApoQd+azgMdwylJrv2DX47ywGq1i5VFJE7fZ0dttNq3iQMfsU4IvEgBHojA3KqEudyu7Vq+oN8kNaNkWw==}
+ /get-port@7.1.0:
+ resolution: {integrity: sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==}
engines: {node: '>=16'}
dev: true
- /get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
- dependencies:
- pump: 3.0.0
- dev: true
-
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -15957,18 +15073,30 @@ packages:
es-errors: 1.3.0
get-intrinsic: 1.2.4
- /giget@1.2.1:
- resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
+ /get-uri@6.0.3:
+ resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
+ engines: {node: '>= 14'}
+ dependencies:
+ basic-ftp: 5.0.5
+ data-uri-to-buffer: 6.0.2
+ debug: 4.3.4
+ fs-extra: 11.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /giget@1.2.3:
+ resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
dependencies:
citty: 0.1.6
consola: 3.2.3
defu: 6.1.4
- node-fetch-native: 1.6.2
+ node-fetch-native: 1.6.4
nypm: 0.3.8
ohash: 1.1.3
pathe: 1.1.2
- tar: 6.2.0
+ tar: 6.2.1
dev: true
/git-remote-origin-url@4.0.0:
@@ -15984,6 +15112,11 @@ packages:
/github-slugger@1.5.0:
resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
+ dev: false
+
+ /github-slugger@2.0.0:
+ resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
+ dev: true
/glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
@@ -16070,6 +15203,9 @@ packages:
dependencies:
define-properties: 1.2.1
+ /globalyzer@0.1.0:
+ resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
+
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -16092,6 +15228,9 @@ packages:
slash: 4.0.0
dev: false
+ /globrex@0.1.2:
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+
/google-auth-library@8.9.0:
resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==}
engines: {node: '>=12'}
@@ -16110,8 +15249,8 @@ packages:
- supports-color
dev: false
- /google-auth-library@9.6.3:
- resolution: {integrity: sha512-4CacM29MLC2eT9Cey5GDVK4Q8t+MMp8+OEdOaqD9MG6b0dOyLORaaeJMPQ7EESVgm/+z5EKYyFLxgzBJlJgyHQ==}
+ /google-auth-library@9.7.0:
+ resolution: {integrity: sha512-I/AvzBiUXDzLOy4iIZ2W+Zq33W4lcukQv1nl7C8WUA6SQwyQwUwu3waNmWNAvzds//FG8SZ+DnKnW/2k6mQS8A==}
engines: {node: '>=14'}
dependencies:
base64-js: 1.5.1
@@ -16138,23 +15277,6 @@ packages:
dependencies:
get-intrinsic: 1.2.4
- /got@11.8.6:
- resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
- engines: {node: '>=10.19.0'}
- dependencies:
- '@sindresorhus/is': 4.6.0
- '@szmarczak/http-timer': 4.0.6
- '@types/cacheable-request': 6.0.3
- '@types/responselike': 1.0.3
- cacheable-lookup: 5.0.4
- cacheable-request: 7.0.4
- decompress-response: 6.0.0
- http2-wrapper: 1.0.3
- lowercase-keys: 2.0.0
- p-cancelable: 2.1.1
- responselike: 2.0.1
- dev: true
-
/got@14.2.1:
resolution: {integrity: sha512-KOaPMremmsvx6l9BLC04LYE6ZFW4x7e4HkTe3LwBmtuYYQwpeS4XKqzhubTIkaQ1Nr+eXxeori0zuwupXMovBQ==}
engines: {node: '>=20'}
@@ -16327,10 +15449,22 @@ packages:
resolution: {integrity: sha512-X2+RwZIMTMKpXUzlotatPzWj8bspCymtXH3cfG3iQKV+wPF53Vgaqxi/eLqGck0wKq1kS9nvoB1wchbCPEL8sg==}
dev: false
+ /hast-util-heading-rank@3.0.0:
+ resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==}
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: true
+
/hast-util-is-element@1.1.0:
resolution: {integrity: sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==}
dev: false
+ /hast-util-is-element@3.0.0:
+ resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: true
+
/hast-util-parse-selector@2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
dev: false
@@ -16386,6 +15520,12 @@ packages:
'@types/hast': 2.3.10
dev: false
+ /hast-util-to-string@3.0.0:
+ resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: true
+
/hast-util-to-text@2.0.1:
resolution: {integrity: sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ==}
dependencies:
@@ -16417,10 +15557,15 @@ packages:
resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
dev: false
+ /highlight.js@11.9.0:
+ resolution: {integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==}
+ engines: {node: '>=12.0.0'}
+ dev: false
+
/history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.3
@@ -16454,6 +15599,13 @@ packages:
wbuf: 1.7.3
dev: false
+ /html-encoding-sniffer@4.0.0:
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ whatwg-encoding: 3.1.1
+ dev: false
+
/html-entities@2.5.2:
resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
dev: false
@@ -16472,7 +15624,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.29.1
+ terser: 5.29.2
dev: false
/html-tags@3.3.1:
@@ -16484,7 +15636,7 @@ packages:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
dev: false
- /html-webpack-plugin@5.6.0(webpack@5.76.1):
+ /html-webpack-plugin@5.6.0(webpack@5.91.0):
resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -16501,10 +15653,10 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
- /htmlnano@2.1.0(postcss@8.4.35)(svgo@2.8.0)(typescript@5.2.2):
+ /htmlnano@2.1.0(postcss@8.4.38)(svgo@2.8.0)(typescript@5.4.2):
resolution: {integrity: sha512-jVGRE0Ep9byMBKEu0Vxgl8dhXYOUk0iNQ2pjsG+BcRB0u0oDF5A9p/iBGMg/PGKYUyMD0OAGu8dVT5Lzj8S58g==}
peerDependencies:
cssnano: ^6.0.0
@@ -16533,8 +15685,8 @@ packages:
uncss:
optional: true
dependencies:
- cosmiconfig: 8.3.6(typescript@5.2.2)
- postcss: 8.4.35
+ cosmiconfig: 8.3.6(typescript@5.4.2)
+ postcss: 8.4.38
posthtml: 0.16.6
svgo: 2.8.0
timsort: 0.3.0
@@ -16632,6 +15784,16 @@ packages:
transitivePeerDependencies:
- supports-color
+ /http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/http-proxy-middleware@2.0.6(@types/express@4.17.21):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
@@ -16656,19 +15818,11 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.5(debug@3.2.7)
+ follow-redirects: 1.15.6(debug@3.2.7)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
- /http2-wrapper@1.0.3:
- resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
- engines: {node: '>=10.19.0'}
- dependencies:
- quick-lru: 5.1.1
- resolve-alpn: 1.2.1
- dev: true
-
/http2-wrapper@2.2.1:
resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
engines: {node: '>=10.19.0'}
@@ -16677,16 +15831,6 @@ packages:
resolve-alpn: 1.2.1
dev: false
- /https-proxy-agent@4.0.0:
- resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==}
- engines: {node: '>= 6.0.0'}
- dependencies:
- agent-base: 5.1.1
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
@@ -16721,7 +15865,6 @@ packages:
/human-signals@5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- dev: true
/humanize-ms@1.2.1:
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
@@ -16740,13 +15883,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@5.1.0(postcss@8.4.35):
+ /icss-utils@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
/ieee754@1.2.1:
@@ -16801,9 +15944,8 @@ packages:
resolve-cwd: 3.0.0
dev: true
- /import-meta-resolve@2.2.2:
- resolution: {integrity: sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==}
- dev: true
+ /import-meta-resolve@4.0.0:
+ resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==}
/imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -16816,8 +15958,8 @@ packages:
/infer-owner@1.0.4:
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
- /infima@0.2.0-alpha.42:
- resolution: {integrity: sha512-ift8OXNbQQwtbIt6z16KnSWP7uJ/SysSMFI4F87MNRTicypfl4Pv3E2OGVv6N3nSZFJvA8imYulCBS64iyHYww==}
+ /infima@0.2.0-alpha.43:
+ resolution: {integrity: sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==}
engines: {node: '>=12'}
dev: false
@@ -16875,6 +16017,7 @@ packages:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
+ dev: false
/ip-address@9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
@@ -16896,9 +16039,9 @@ packages:
engines: {node: '>= 10'}
dev: false
- /is-absolute-url@3.0.3:
- resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==}
- engines: {node: '>=8'}
+ /is-absolute-url@4.0.1:
+ resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
/is-alphabetical@1.0.4:
@@ -16941,7 +16084,7 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
/is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
@@ -16981,6 +16124,12 @@ packages:
dependencies:
hasown: 2.0.2
+ /is-data-view@1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-typed-array: 1.1.13
+
/is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
@@ -17154,10 +16303,19 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
+ /is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ dev: false
+
/is-property@1.0.2:
resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==}
dev: false
+ /is-reference@3.0.2:
+ resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
+ dependencies:
+ '@types/estree': 1.0.5
+
/is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -17237,6 +16395,11 @@ packages:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
+ /is-unicode-supported@2.0.0:
+ resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
+ engines: {node: '>=18'}
+ dev: false
+
/is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -17278,6 +16441,7 @@ packages:
/is@3.3.0:
resolution: {integrity: sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==}
+ dev: false
/isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
@@ -17307,14 +16471,13 @@ packages:
/istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
- dev: true
/istanbul-lib-instrument@5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.24.0
- '@babel/parser': 7.24.0
+ '@babel/core': 7.24.3
+ '@babel/parser': 7.24.1
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -17329,7 +16492,6 @@ packages:
istanbul-lib-coverage: 3.2.2
make-dir: 4.0.0
supports-color: 7.2.0
- dev: true
/istanbul-lib-source-maps@4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
@@ -17342,13 +16504,23 @@ packages:
- supports-color
dev: true
+ /istanbul-lib-source-maps@5.0.4:
+ resolution: {integrity: sha512-wHOoEsNJTVltaJp8eVkm8w+GVkVNHT2YDYo53YdzQEL2gWm1hBX5cGFR9hQJtuGLebidVX7et3+dmDZrmclduw==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ debug: 4.3.4
+ istanbul-lib-coverage: 3.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/istanbul-reports@3.1.7:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- dev: true
/jackspeak@2.3.6:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
@@ -17385,7 +16557,7 @@ packages:
'@jest/expect': 28.1.3
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
chalk: 4.1.0
co: 4.6.0
dedent: 0.7.0
@@ -17421,7 +16593,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 28.1.3(@types/node@20.8.5)
+ jest-config: 28.1.3(@types/node@20.11.28)
jest-util: 28.1.3
jest-validate: 28.1.3
prompts: 2.4.2
@@ -17432,7 +16604,7 @@ packages:
- ts-node
dev: true
- /jest-config@28.1.3(@types/node@20.8.5):
+ /jest-config@28.1.3(@types/node@20.11.28):
resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -17444,11 +16616,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@jest/test-sequencer': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
- babel-jest: 28.1.3(@babel/core@7.24.0)
+ '@types/node': 20.11.28
+ babel-jest: 28.1.3(@babel/core@7.24.3)
chalk: 4.1.0
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -17516,7 +16688,7 @@ packages:
'@jest/environment': 28.1.3
'@jest/fake-timers': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-mock: 28.1.3
jest-util: 28.1.3
dev: true
@@ -17537,7 +16709,7 @@ packages:
dependencies:
'@jest/types': 28.1.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -17556,7 +16728,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -17601,7 +16773,7 @@ packages:
resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
'@jest/types': 28.1.3
'@types/stack-utils': 2.0.3
chalk: 4.1.0
@@ -17616,7 +16788,7 @@ packages:
resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.0
@@ -17627,20 +16799,12 @@ packages:
stack-utils: 2.0.6
dev: true
- /jest-mock@27.5.1:
- resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- dependencies:
- '@jest/types': 27.5.1
- '@types/node': 20.8.5
- dev: true
-
/jest-mock@28.1.3:
resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
dev: true
/jest-mock@29.7.0:
@@ -17648,7 +16812,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-util: 29.7.0
dev: true
@@ -17708,7 +16872,7 @@ packages:
'@jest/test-result': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
chalk: 4.1.0
emittery: 0.10.2
graceful-fs: 4.2.11
@@ -17762,17 +16926,17 @@ packages:
resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/core': 7.24.0
- '@babel/generator': 7.23.6
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.0)
- '@babel/traverse': 7.24.0
+ '@babel/core': 7.24.3
+ '@babel/generator': 7.24.1
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
'@jest/expect-utils': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
'@types/babel__traverse': 7.20.5
'@types/prettier': 2.7.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3)
chalk: 4.1.0
expect: 28.1.3
graceful-fs: 4.2.11
@@ -17793,15 +16957,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.24.0
- '@babel/generator': 7.23.6
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/generator': 7.24.1
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3)
'@babel/types': 7.24.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3)
chalk: 4.1.0
expect: 29.7.0
graceful-fs: 4.2.11
@@ -17822,7 +16986,7 @@ packages:
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
chalk: 4.1.0
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17834,7 +16998,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
chalk: 4.1.0
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17858,7 +17022,7 @@ packages:
dependencies:
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
ansi-escapes: 4.3.2
chalk: 4.1.0
emittery: 0.10.2
@@ -17870,7 +17034,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -17878,7 +17042,7 @@ packages:
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -17887,7 +17051,7 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.8.5
+ '@types/node': 20.11.28
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -17941,6 +17105,10 @@ packages:
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ /js-tokens@8.0.3:
+ resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
+ dev: false
+
/js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
@@ -17959,9 +17127,9 @@ packages:
dev: false
/jsbn@1.1.0:
- resolution: {integrity: sha1-sBMHyym2GKHtJux56RH4A8TaAEA=}
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
- /jscodeshift@0.15.2(@babel/preset-env@7.24.0):
+ /jscodeshift@0.15.2(@babel/preset-env@7.24.3):
resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
hasBin: true
peerDependencies:
@@ -17970,20 +17138,20 @@ packages:
'@babel/preset-env':
optional: true
dependencies:
- '@babel/core': 7.24.0
- '@babel/parser': 7.24.0
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.0)
- '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
- '@babel/preset-flow': 7.24.0(@babel/core@7.24.0)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.24.0)
- '@babel/register': 7.23.7(@babel/core@7.24.0)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.0)
+ '@babel/core': 7.24.3
+ '@babel/parser': 7.24.1
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-flow': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/register': 7.23.7(@babel/core@7.24.3)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.24.3)
chalk: 4.1.2
- flow-parser: 0.230.0
+ flow-parser: 0.231.0
graceful-fs: 4.2.11
micromatch: 4.0.5
neo-async: 2.6.2
@@ -17995,6 +17163,42 @@ packages:
- supports-color
dev: true
+ /jsdom@23.2.0:
+ resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^2.11.2
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ dependencies:
+ '@asamuzakjp/dom-selector': 2.0.2
+ cssstyle: 4.0.1
+ data-urls: 5.0.0
+ decimal.js: 10.4.3
+ form-data: 4.0.0
+ html-encoding-sniffer: 4.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ is-potential-custom-element-name: 1.0.1
+ parse5: 7.1.2
+ rrweb-cssom: 0.6.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.3
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
+ ws: 8.16.0
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
/jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
@@ -18017,17 +17221,6 @@ packages:
/json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- /json-file-plus@3.3.1:
- resolution: {integrity: sha512-wo0q1UuiV5NsDPQDup1Km8IwEeqe+olr8tkWxeJq9Bjtcp7DZ0l+yrg28fSC3DEtrE311mhTZ54QGS6oiqnZEA==}
- engines: {node: '>= 0.4'}
- dependencies:
- is: 3.3.0
- node.extend: 2.0.3
- object.assign: 4.1.5
- promiseback: 2.0.3
- safer-buffer: 2.1.2
- dev: true
-
/json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
dev: true
@@ -18052,7 +17245,6 @@ packages:
/jsonc-parser@3.2.1:
resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
- dev: true
/jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
@@ -18120,6 +17312,13 @@ packages:
commander: 8.3.0
dev: false
+ /katex@0.16.9:
+ resolution: {integrity: sha512-fsSYjWS0EEOwvy81j3vRA8TEAhQhKiqO+FQaKWp0m39qwOzHVBgAUBIXWj1pB+O2W3fIpNa6Y9KSKCVbfPhyAQ==}
+ hasBin: true
+ dependencies:
+ commander: 8.3.0
+ dev: false
+
/keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
dependencies:
@@ -18133,12 +17332,6 @@ packages:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /klaw-sync@6.0.0:
- resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==}
- dependencies:
- graceful-fs: 4.2.11
- dev: false
-
/kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
@@ -18147,9 +17340,8 @@ packages:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- /known-css-properties@0.27.0:
- resolution: {integrity: sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==}
- dev: true
+ /known-css-properties@0.29.0:
+ resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==}
/kuler@2.0.0:
resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
@@ -18173,10 +17365,6 @@ packages:
resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==}
dev: false
- /layout-base@2.0.1:
- resolution: {integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==}
- dev: false
-
/lazy-universal-dotenv@4.0.0:
resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==}
engines: {node: '>=14.0.0'}
@@ -18205,8 +17393,8 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
- /lightningcss-darwin-arm64@1.24.0:
- resolution: {integrity: sha512-rTNPkEiynOu4CfGdd5ZfVOQe2gd2idfQd4EfX1l2ZUUwd+2SwSdbb7cG4rlwfnZckbzCAygm85xkpekRE5/wFw==}
+ /lightningcss-darwin-arm64@1.24.1:
+ resolution: {integrity: sha512-1jQ12jBy+AE/73uGQWGSafK5GoWgmSiIQOGhSEXiFJSZxzV+OXIx+a9h2EYHxdJfX864M+2TAxWPWb0Vv+8y4w==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
@@ -18214,8 +17402,8 @@ packages:
dev: true
optional: true
- /lightningcss-darwin-x64@1.24.0:
- resolution: {integrity: sha512-4KCeF2RJjzp9xdGY8zIH68CUtptEg8uz8PfkHvsIdrP4t9t5CIgfDBhiB8AmuO75N6SofdmZexDZIKdy9vA7Ww==}
+ /lightningcss-darwin-x64@1.24.1:
+ resolution: {integrity: sha512-R4R1d7VVdq2mG4igMU+Di8GPf0b64ZLnYVkubYnGG0Qxq1KaXQtAzcLI43EkpnoWvB/kUg8JKCWH4S13NfiLcQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
@@ -18223,8 +17411,8 @@ packages:
dev: true
optional: true
- /lightningcss-freebsd-x64@1.24.0:
- resolution: {integrity: sha512-FJAYlek1wXuVTsncNU0C6YD41q126dXcIUm97KAccMn9C4s/JfLSqGWT2gIzAblavPFkyGG2gIADTWp3uWfN1g==}
+ /lightningcss-freebsd-x64@1.24.1:
+ resolution: {integrity: sha512-z6NberUUw5ALES6Ixn2shmjRRrM1cmEn1ZQPiM5IrZ6xHHL5a1lPin9pRv+w6eWfcrEo+qGG6R9XfJrpuY3e4g==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
@@ -18232,8 +17420,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm-gnueabihf@1.24.0:
- resolution: {integrity: sha512-N55K6JqzMx7C0hYUu1YmWqhkHwzEJlkQRMA6phY65noO0I1LOAvP4wBIoFWrzRE+O6zL0RmXJ2xppqyTbk3sYw==}
+ /lightningcss-linux-arm-gnueabihf@1.24.1:
+ resolution: {integrity: sha512-NLQLnBQW/0sSg74qLNI8F8QKQXkNg4/ukSTa+XhtkO7v3BnK19TS1MfCbDHt+TTdSgNEBv0tubRuapcKho2EWw==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
@@ -18241,8 +17429,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm64-gnu@1.24.0:
- resolution: {integrity: sha512-MqqUB2TpYtFWeBvvf5KExDdClU3YGLW5bHKs50uKKootcvG9KoS7wYwd5UichS+W3mYLc5yXUPGD1DNWbLiYKw==}
+ /lightningcss-linux-arm64-gnu@1.24.1:
+ resolution: {integrity: sha512-AQxWU8c9E9JAjAi4Qw9CvX2tDIPjgzCTrZCSXKELfs4mCwzxRkHh2RCxX8sFK19RyJoJAjA/Kw8+LMNRHS5qEg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -18250,8 +17438,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm64-musl@1.24.0:
- resolution: {integrity: sha512-5wn4d9tFwa5bS1ao9mLexYVJdh3nn09HNIipsII6ZF7z9ZA5J4dOEhMgKoeCl891axTGTUYd8Kxn+Hn3XUSYRQ==}
+ /lightningcss-linux-arm64-musl@1.24.1:
+ resolution: {integrity: sha512-JCgH/SrNrhqsguUA0uJUM1PvN5+dVuzPIlXcoWDHSv2OU/BWlj2dUYr3XNzEw748SmNZPfl2NjQrAdzaPOn1lA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -18259,8 +17447,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-x64-gnu@1.24.0:
- resolution: {integrity: sha512-3j5MdTh+LSDF3o6uDwRjRUgw4J+IfDCVtdkUrJvKxL79qBLUujXY7CTe5X3IQDDLKEe/3wu49r8JKgxr0MfjbQ==}
+ /lightningcss-linux-x64-gnu@1.24.1:
+ resolution: {integrity: sha512-TYdEsC63bHV0h47aNRGN3RiK7aIeco3/keN4NkoSQ5T8xk09KHuBdySltWAvKLgT8JvR+ayzq8ZHnL1wKWY0rw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -18268,8 +17456,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-x64-musl@1.24.0:
- resolution: {integrity: sha512-HI+rNnvaLz0o36z6Ki0gyG5igVGrJmzczxA5fznr6eFTj3cHORoR/j2q8ivMzNFR4UKJDkTWUH5LMhacwOHWBA==}
+ /lightningcss-linux-x64-musl@1.24.1:
+ resolution: {integrity: sha512-HLfzVik3RToot6pQ2Rgc3JhfZkGi01hFetHt40HrUMoeKitLoqUUT5owM6yTZPTytTUW9ukLBJ1pc3XNMSvlLw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -18277,8 +17465,8 @@ packages:
dev: true
optional: true
- /lightningcss-win32-x64-msvc@1.24.0:
- resolution: {integrity: sha512-oeije/t7OZ5N9vSs6amyW/34wIYoBCpE6HUlsSKcP2SR1CVgx9oKEM00GtQmtqNnYiMIfsSm7+ppMb4NLtD5vg==}
+ /lightningcss-win32-x64-msvc@1.24.1:
+ resolution: {integrity: sha512-joEupPjYJ7PjZtDsS5lzALtlAudAbgIBMGJPNeFe5HfdmJXFd13ECmEM+5rXNxYVMRHua2w8132R6ab5Z6K9Ow==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
@@ -18286,27 +17474,31 @@ packages:
dev: true
optional: true
- /lightningcss@1.24.0:
- resolution: {integrity: sha512-y36QEEDVx4IM7/yIZNsZJMRREIu26WzTsauIysf5s76YeCmlSbRZS7aC97IGPuoFRnyZ5Wx43OBsQBFB5Ne7ng==}
+ /lightningcss@1.24.1:
+ resolution: {integrity: sha512-kUpHOLiH5GB0ERSv4pxqlL0RYKnOXtgGtVe7shDGfhS0AZ4D1ouKFYAcLcZhql8aMspDNzaUCumGHZ78tb2fTg==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.24.0
- lightningcss-darwin-x64: 1.24.0
- lightningcss-freebsd-x64: 1.24.0
- lightningcss-linux-arm-gnueabihf: 1.24.0
- lightningcss-linux-arm64-gnu: 1.24.0
- lightningcss-linux-arm64-musl: 1.24.0
- lightningcss-linux-x64-gnu: 1.24.0
- lightningcss-linux-x64-musl: 1.24.0
- lightningcss-win32-x64-msvc: 1.24.0
+ lightningcss-darwin-arm64: 1.24.1
+ lightningcss-darwin-x64: 1.24.1
+ lightningcss-freebsd-x64: 1.24.1
+ lightningcss-linux-arm-gnueabihf: 1.24.1
+ lightningcss-linux-arm64-gnu: 1.24.1
+ lightningcss-linux-arm64-musl: 1.24.1
+ lightningcss-linux-x64-gnu: 1.24.1
+ lightningcss-linux-x64-musl: 1.24.1
+ lightningcss-win32-x64-msvc: 1.24.1
dev: true
/lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
+ /lilconfig@3.1.1:
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ engines: {node: '>=14'}
+
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -18322,24 +17514,6 @@ packages:
wrap-ansi: 8.1.0
dev: false
- /lmdb@2.5.2:
- resolution: {integrity: sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==}
- requiresBuild: true
- dependencies:
- msgpackr: 1.10.1
- node-addon-api: 4.3.0
- node-gyp-build-optional-packages: 5.0.3
- ordered-binary: 1.5.1
- weak-lru-cache: 1.2.2
- optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 2.5.2
- '@lmdb/lmdb-darwin-x64': 2.5.2
- '@lmdb/lmdb-linux-arm': 2.5.2
- '@lmdb/lmdb-linux-arm64': 2.5.2
- '@lmdb/lmdb-linux-x64': 2.5.2
- '@lmdb/lmdb-win32-x64': 2.5.2
- dev: true
-
/lmdb@2.7.11:
resolution: {integrity: sha512-x9bD4hVp7PFLUoELL8RglbNXhAMt5CYhkmss+CEau9KlNoilsTzNi9QDsPZb3KMpOGZXG6jmXhW3bBxE2XVztw==}
hasBin: true
@@ -18421,6 +17595,17 @@ packages:
engines: {node: '>=14'}
dev: true
+ /local-pkg@0.5.0:
+ resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ engines: {node: '>=14'}
+ dependencies:
+ mlly: 1.6.1
+ pkg-types: 1.0.3
+ dev: false
+
+ /locate-character@3.0.0:
+ resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
+
/locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -18454,16 +17639,9 @@ packages:
resolution: {integrity: sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==}
dev: false
- /lodash.clone@4.5.0:
- resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
- dev: true
-
/lodash.clonedeep@4.5.0:
resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
-
- /lodash.constant@3.0.0:
- resolution: {integrity: sha512-X5XMrB+SdI1mFa81162NSTo/YNd23SLdLOLzcXTwS4inDZ5YCL8X67UFzZJAH4CqIa6R8cr56CShfA5K5MFiYQ==}
- dev: true
+ dev: false
/lodash.curry@4.1.1:
resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
@@ -18472,26 +17650,10 @@ packages:
/lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.filter@4.6.0:
- resolution: {integrity: sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==}
- dev: true
-
- /lodash.flatmap@4.5.0:
- resolution: {integrity: sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==}
- dev: true
-
/lodash.flow@3.5.0:
resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
dev: false
- /lodash.foreach@4.5.0:
- resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
- dev: true
-
- /lodash.has@4.5.2:
- resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==}
- dev: true
-
/lodash.includes@4.3.0:
resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
dev: false
@@ -18500,18 +17662,6 @@ packages:
resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
dev: false
- /lodash.isempty@4.4.0:
- resolution: {integrity: sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==}
- dev: true
-
- /lodash.isequal@4.5.0:
- resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
- dev: true
-
- /lodash.isfunction@3.0.9:
- resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
- dev: true
-
/lodash.isinteger@4.0.4:
resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
dev: false
@@ -18528,18 +17678,6 @@ packages:
resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
dev: false
- /lodash.isundefined@3.0.1:
- resolution: {integrity: sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==}
- dev: true
-
- /lodash.keys@4.2.0:
- resolution: {integrity: sha512-J79MkJcp7Df5mizHiVNpjoHXLi4HLjh9VLS/M7lQSGoQ+0oQ+lWEigREkqKyizPB1IawvQLLKY8mzEcm1tkyxQ==}
- dev: true
-
- /lodash.map@4.6.0:
- resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==}
- dev: true
-
/lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: false
@@ -18551,38 +17689,14 @@ packages:
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
dev: false
- /lodash.reduce@4.6.0:
- resolution: {integrity: sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==}
- dev: true
-
- /lodash.size@4.2.0:
- resolution: {integrity: sha512-wbu3SF1XC5ijqm0piNxw59yCbuUf2kaShumYBLWUrcCvwh6C8odz6SY/wGVzCWTQTFL/1Ygbvqg2eLtspUVVAQ==}
- dev: true
-
/lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
dev: true
- /lodash.topairs@4.3.0:
- resolution: {integrity: sha512-qrRMbykBSEGdOgQLJJqVSdPWMD7Q+GJJ5jMRfQYb+LTLsw3tYVIabnCzRqTJb2WTo17PG5gNzXuFaZgYH/9SAQ==}
- dev: true
-
- /lodash.transform@4.6.0:
- resolution: {integrity: sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ==}
- dev: true
-
- /lodash.union@4.6.0:
- resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
- dev: true
-
/lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: false
- /lodash.values@4.3.0:
- resolution: {integrity: sha512-r0RwvdCv8id9TUblb/O7rYPwVy6lerCbcawrfdo9iC/1t1wsNMJknO79WNBgwkH0hIeJ08jmvvESbFpNb4jH0Q==}
- dev: true
-
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -18601,6 +17715,14 @@ packages:
chalk: 5.3.0
is-unicode-supported: 1.3.0
+ /log-symbols@6.0.0:
+ resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ engines: {node: '>=18'}
+ dependencies:
+ chalk: 5.3.0
+ is-unicode-supported: 1.3.0
+ dev: false
+
/log-update@5.0.1:
resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -18642,18 +17764,12 @@ packages:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
dependencies:
get-func-name: 2.0.2
- dev: true
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.6.2
- /lowercase-keys@2.0.0:
- resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
- engines: {node: '>=8'}
- dev: true
-
/lowercase-keys@3.0.0:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -18695,6 +17811,17 @@ packages:
hasBin: true
dev: true
+ /lz4@0.6.5:
+ resolution: {integrity: sha512-KSZcJU49QZOlJSItaeIU3p8WoAvkTmD9fJqeahQXNu1iQ/kR0/mQLdbrK8JY9MY8f6AhJoMrihp1nu1xDbscSQ==}
+ engines: {node: '>= 0.10'}
+ requiresBuild: true
+ dependencies:
+ buffer: 5.7.1
+ cuint: 0.2.2
+ nan: 2.19.0
+ xxhashjs: 0.2.2
+ dev: false
+
/magic-string@0.26.7:
resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
engines: {node: '>=12'}
@@ -18702,19 +17829,20 @@ packages:
sourcemap-codec: 1.4.8
dev: false
- /magic-string@0.29.0:
- resolution: {integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==}
- engines: {node: '>=12'}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
-
/magic-string@0.30.8:
resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
+ /magicast@0.3.3:
+ resolution: {integrity: sha512-ZbrP1Qxnpoes8sz47AM0z08U+jW6TyRgZzcWy3Ma3vDhJttwMwAFDMMQFobwdBxByBD46JYmxRzeF7w2+wJEuw==}
+ dependencies:
+ '@babel/parser': 7.24.1
+ '@babel/types': 7.24.0
+ source-map-js: 1.2.0
+ dev: false
+
/make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
@@ -18734,7 +17862,6 @@ packages:
engines: {node: '>=10'}
dependencies:
semver: 7.6.0
- dev: true
/make-fetch-happen@10.2.1:
resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
@@ -18810,13 +17937,13 @@ packages:
/markdown-escapes@1.0.4:
resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
- /markdown-to-jsx@7.4.2(react@17.0.1):
- resolution: {integrity: sha512-xgEwt13t+pM1kmE5vN0Ch64PX3tGDFt5Xa3e36sCknTnWiqPcnskWzIoaO/tGaPKOd0avCO0IwmBSmVxn/ZAcg==}
+ /markdown-to-jsx@7.3.2(react@17.0.2):
+ resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
dependencies:
- react: 17.0.1
+ react: 17.0.2
dev: true
/md5@2.3.0:
@@ -18837,6 +17964,7 @@ packages:
resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==}
dependencies:
unist-util-visit: 2.0.3
+ dev: false
/mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
@@ -18870,10 +17998,6 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /mdast-util-to-string@1.1.0:
- resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==}
- dev: true
-
/mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: false
@@ -18887,19 +18011,22 @@ packages:
/mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ /mdn-data@2.0.30:
+ resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+
/mdn-data@2.0.4:
resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
dev: false
- /mdsvex@0.10.6(svelte@3.55.0):
- resolution: {integrity: sha512-aGRDY0r5jx9+OOgFdyB9Xm3EBr9OUmcrTDPWLB7a7g8VPRxzPy4MOBmcVYgz7ErhAJ7bZ/coUoj6aHio3x/2mA==}
+ /mdsvex@0.11.0(svelte@4.2.12):
+ resolution: {integrity: sha512-gJF1s0N2nCmdxcKn8HDn0LKrN8poStqAicp6bBcsKFd/zkUBGLP5e7vnxu+g0pjBbDFOscUyI1mtHz+YK2TCDw==}
peerDependencies:
- svelte: 3.x
+ svelte: '>=3 <5'
dependencies:
'@types/unist': 2.0.10
prism-svelte: 0.4.7
prismjs: 1.29.0
- svelte: 3.55.0
+ svelte: 4.2.12
vfile-message: 2.0.4
dev: false
@@ -18908,7 +18035,7 @@ packages:
dev: false
/media-typer@0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
/memfs@3.5.3:
@@ -18918,6 +18045,13 @@ packages:
fs-monkey: 1.0.5
dev: false
+ /memfs@4.8.0:
+ resolution: {integrity: sha512-fcs7trFxZlOMadmTw5nyfOwS3il9pr3y+6xzLfXNwmuR/D0i4wz6rJURxArAbcJDGalbpbMvQ/IFI0NojRZgRg==}
+ engines: {node: '>= 4.0.0'}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/memoizerific@1.11.3:
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
dependencies:
@@ -18947,7 +18081,7 @@ packages:
dev: true
/merge-descriptors@1.0.1:
- resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
/merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -18956,21 +18090,21 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /mermaid@10.6.1:
- resolution: {integrity: sha512-Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A==}
+ /mermaid@10.9.0:
+ resolution: {integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==}
dependencies:
'@braintree/sanitize-url': 6.0.4
'@types/d3-scale': 4.0.8
'@types/d3-scale-chromatic': 3.0.3
cytoscape: 3.28.1
cytoscape-cose-bilkent: 4.1.0(cytoscape@3.28.1)
- cytoscape-fcose: 2.2.0(cytoscape@3.28.1)
d3: 7.9.0
d3-sankey: 0.12.3
dagre-d3-es: 7.0.10
dayjs: 1.11.10
- dompurify: 3.0.9
- elkjs: 0.8.2
+ dompurify: 3.0.11
+ elkjs: 0.9.2
+ katex: 0.16.9
khroma: 2.1.0
lodash-es: 4.17.21
mdast-util-from-markdown: 1.3.1
@@ -19196,16 +18330,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
- /mime@2.6.0:
- resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
- dev: true
-
/mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
hasBin: true
+ dev: false
/mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
@@ -19215,14 +18344,10 @@ packages:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- /mimic-response@1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
- dev: true
-
/mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
+ dev: false
/mimic-response@4.0.0:
resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
@@ -19233,7 +18358,7 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- /mini-css-extract-plugin@2.8.1(webpack@5.76.1):
+ /mini-css-extract-plugin@2.8.1(webpack@5.91.0):
resolution: {integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -19241,7 +18366,7 @@ packages:
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
/minimalistic-assert@1.0.1:
@@ -19371,8 +18496,7 @@ packages:
acorn: 8.11.3
pathe: 1.1.2
pkg-types: 1.0.3
- ufo: 1.4.0
- dev: true
+ ufo: 1.5.3
/mock-fs@5.2.0:
resolution: {integrity: sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw==}
@@ -19434,13 +18558,13 @@ packages:
msgpackr-extract: 3.0.2
dev: true
- /mssql@9.1.1:
- resolution: {integrity: sha512-m0yTx9xzUtTvJpWJHqknUXUDPRnJXZYOOFNygnNIXn1PBkLsC/rkXQdquObd+M0ZPlBhGC00Jg28zG0wCl7VWg==}
+ /mssql@9.3.2:
+ resolution: {integrity: sha512-XI5GOGCCSSNL8K2SSXg9HMyugJoCjLmrhiZfcZrJrJ2r3NfTcnz3Cegeg4m+xPkNVd0o3owsSL/NsDCFYfjOlw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@tediousjs/connection-string': 0.4.4
- commander: 9.5.0
+ '@tediousjs/connection-string': 0.5.0
+ commander: 11.1.0
debug: 4.3.4
rfdc: 1.3.1
tarn: 3.0.2
@@ -19457,8 +18581,8 @@ packages:
thunky: 1.1.0
dev: false
- /mysql2@3.8.0:
- resolution: {integrity: sha512-rC9J/Wy9TCaoQWhk/p4J0Jd+WCDYghniuawi7pheDqhQOEJyDfiWGiWOR3iPgTFJaOK3GezC7dmCki7cP1HFkQ==}
+ /mysql2@3.9.2:
+ resolution: {integrity: sha512-3Cwg/UuRkAv/wm6RhtPE5L7JlPB877vwSF6gfLAS68H+zhH+u5oa3AieqEd0D0/kC3W7qIhYbH419f7O9i/5nw==}
engines: {node: '>= 8.0'}
dependencies:
denque: 2.1.0
@@ -19485,6 +18609,10 @@ packages:
lru-cache: 7.18.3
dev: false
+ /nan@2.19.0:
+ resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==}
+ dev: false
+
/nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -19516,6 +18644,11 @@ 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'}
+ dev: false
+
/nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
dev: true
@@ -19563,8 +18696,8 @@ packages:
lodash: 4.17.21
dev: false
- /node-fetch-native@1.6.2:
- resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
+ /node-fetch-native@1.6.4:
+ resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
dev: true
/node-fetch@2.7.0:
@@ -19578,8 +18711,8 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-fetch@3.3.1:
- resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==}
+ /node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
data-uri-to-buffer: 4.0.1
@@ -19591,11 +18724,6 @@ packages:
engines: {node: '>= 6.13.0'}
dev: false
- /node-gyp-build-optional-packages@5.0.3:
- resolution: {integrity: sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==}
- hasBin: true
- dev: true
-
/node-gyp-build-optional-packages@5.0.6:
resolution: {integrity: sha512-2ZJErHG4du9G3/8IWl/l9Bp5BBFy63rno5GVmjQijvTuUZKsl6g8RB4KH/x3NLcV5ZBb4GsXmAuTYr6dRml3Gw==}
hasBin: true
@@ -19612,7 +18740,7 @@ packages:
resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
hasBin: true
dependencies:
- detect-libc: 2.0.2
+ detect-libc: 2.0.3
dev: true
/node-gyp@8.4.1:
@@ -19629,7 +18757,7 @@ packages:
npmlog: 6.0.2
rimraf: 3.0.2
semver: 7.6.0
- tar: 6.2.0
+ tar: 6.2.1
which: 2.0.2
transitivePeerDependencies:
- bluebird
@@ -19651,7 +18779,7 @@ packages:
npmlog: 6.0.2
rimraf: 3.0.2
semver: 7.6.0
- tar: 6.2.0
+ tar: 6.2.1
which: 2.0.2
transitivePeerDependencies:
- bluebird
@@ -19663,14 +18791,6 @@ packages:
/node-releases@2.0.14:
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
- /node.extend@2.0.3:
- resolution: {integrity: sha512-xwADg/okH48PvBmRZyoX8i8GJaKuJ1CqlqotlZOhUio8egD1P5trJupHKBzcPjSF9ifK2gPcEICRBnkfPqQXZw==}
- engines: {node: '>=0.4.0'}
- dependencies:
- hasown: 2.0.2
- is: 3.3.0
- dev: true
-
/non-layered-tidy-tree-layout@2.0.2:
resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==}
dev: false
@@ -19709,6 +18829,7 @@ packages:
/normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
+ dev: false
/normalize-url@8.0.1:
resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
@@ -19755,7 +18876,7 @@ packages:
pidtree: 0.3.1
read-pkg: 3.0.0
shell-quote: 1.8.1
- string.prototype.padend: 3.1.5
+ string.prototype.padend: 3.1.6
dev: true
/npm-run-path@4.0.1:
@@ -19809,7 +18930,7 @@ packages:
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- ufo: 1.4.0
+ ufo: 1.5.3
dev: true
/object-assign@4.1.1:
@@ -19849,24 +18970,26 @@ packages:
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.getownpropertydescriptors@2.1.7:
- resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==}
+ /object.getownpropertydescriptors@2.1.8:
+ resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
engines: {node: '>= 0.8'}
dependencies:
- array.prototype.reduce: 1.0.6
+ array.prototype.reduce: 1.0.7
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
+ es-object-atoms: 1.0.0
+ gopd: 1.0.1
safe-array-concat: 1.1.2
dev: false
- /object.values@1.1.7:
- resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
+ /object.values@1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-object-atoms: 1.0.0
dev: false
/obuf@1.1.2:
@@ -19891,12 +19014,6 @@ packages:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
- /once@1.3.3:
- resolution: {integrity: sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==}
- dependencies:
- wrappy: 1.0.2
- dev: true
-
/once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
@@ -20011,6 +19128,21 @@ packages:
string-width: 6.1.0
strip-ansi: 7.1.0
+ /ora@8.0.1:
+ resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ chalk: 5.3.0
+ cli-cursor: 4.0.0
+ cli-spinners: 2.9.2
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.0.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.1.0
+ strip-ansi: 7.1.0
+ dev: false
+
/ordered-binary@1.5.1:
resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==}
dev: true
@@ -20018,16 +19150,12 @@ packages:
/os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
+ dev: true
/outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
dev: true
- /p-cancelable@2.1.1:
- resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
- engines: {node: '>=8'}
- dev: true
-
/p-cancelable@4.0.1:
resolution: {integrity: sha512-wBowNApzd45EIKdO1LaU+LrMBwAcjfPaYtVzV3lmfM3gf8Z4CHZsiIqlM8TZZ8okYvh5A1cP6gTfCRQtwUpaUg==}
engines: {node: '>=14.16'}
@@ -20071,6 +19199,13 @@ packages:
yocto-queue: 1.0.0
dev: true
+ /p-limit@5.0.0:
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ yocto-queue: 1.0.0
+ dev: false
+
/p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
@@ -20119,6 +19254,30 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ /pac-proxy-agent@7.0.1:
+ resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==}
+ engines: {node: '>= 14'}
+ dependencies:
+ '@tootallnate/quickjs-emscripten': 0.23.0
+ agent-base: 7.1.0
+ debug: 4.3.4
+ get-uri: 6.0.3
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ pac-resolver: 7.0.1
+ socks-proxy-agent: 8.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /pac-resolver@7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
+ engines: {node: '>= 14'}
+ dependencies:
+ degenerator: 5.0.1
+ netmask: 2.0.2
+ dev: false
+
/package-json@6.5.0:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
@@ -20129,10 +19288,6 @@ packages:
semver: 6.3.1
dev: false
- /packageurl-js@1.2.0:
- resolution: {integrity: sha512-JFoZnz1maKB0hTjn0YrmqRLgiU825SkbA370oe9ERcsKsj1EcBpe+CDo1EK9mrHc+18Hi5NmZbmXFQtP7YZEbw==}
- dev: true
-
/packet-reader@1.0.0:
resolution: {integrity: sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==}
dev: false
@@ -20154,29 +19309,30 @@ packages:
tslib: 2.6.2
dev: false
- /parcel@2.8.3(postcss@8.4.35)(typescript@5.2.2):
- resolution: {integrity: sha512-5rMBpbNE72g6jZvkdR5gS2nyhwIXaJy8i65osOqs/+5b7zgf3eMKgjSsDrv6bhz3gzifsba6MBJiZdBckl+vnA==}
+ /parcel@2.12.0(postcss@8.4.38)(typescript@5.4.2):
+ resolution: {integrity: sha512-W+gxAq7aQ9dJIg/XLKGcRT0cvnStFAQHPaI0pvD0U2l6IVLueUAm3nwN7lkY62zZNmlvNx6jNtE4wlbS+CyqSg==}
engines: {node: '>= 12.0.0'}
hasBin: true
peerDependenciesMeta:
'@parcel/core':
optional: true
dependencies:
- '@parcel/config-default': 2.8.3(@parcel/core@2.8.3)(postcss@8.4.35)(typescript@5.2.2)
- '@parcel/core': 2.8.3
- '@parcel/diagnostic': 2.8.3
- '@parcel/events': 2.8.3
- '@parcel/fs': 2.8.3(@parcel/core@2.8.3)
- '@parcel/logger': 2.8.3
- '@parcel/package-manager': 2.8.3(@parcel/core@2.8.3)
- '@parcel/reporter-cli': 2.8.3(@parcel/core@2.8.3)
- '@parcel/reporter-dev-server': 2.8.3(@parcel/core@2.8.3)
- '@parcel/utils': 2.8.3
+ '@parcel/config-default': 2.12.0(@parcel/core@2.12.0)(postcss@8.4.38)(typescript@5.4.2)
+ '@parcel/core': 2.12.0
+ '@parcel/diagnostic': 2.12.0
+ '@parcel/events': 2.12.0
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/logger': 2.12.0
+ '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/reporter-cli': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/reporter-tracer': 2.12.0(@parcel/core@2.12.0)
+ '@parcel/utils': 2.12.0
chalk: 4.1.0
commander: 7.2.0
get-port: 4.2.0
- v8-compile-cache: 2.4.0
transitivePeerDependencies:
+ - '@swc/helpers'
- cssnano
- postcss
- purgecss
@@ -20219,7 +19375,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -20260,27 +19416,6 @@ packages:
no-case: 3.0.4
tslib: 2.6.2
- /patch-package@7.0.2:
- resolution: {integrity: sha512-PMYfL8LXxGIRmxXLqlEaBxzKPu7/SdP13ld6GSfAUJUZRmBDPp8chZs0dpzaAFn9TSPnFiMwkC6PJt6pBiAl8Q==}
- engines: {node: '>=14', npm: '>5'}
- hasBin: true
- dependencies:
- '@yarnpkg/lockfile': 1.1.0
- chalk: 4.1.2
- ci-info: 3.9.0
- cross-spawn: 7.0.3
- find-yarn-workspace-root: 2.0.0
- fs-extra: 9.1.0
- klaw-sync: 6.0.0
- minimist: 1.2.8
- open: 7.4.2
- rimraf: 2.7.1
- semver: 7.6.0
- slash: 2.0.0
- tmp: 0.0.33
- yaml: 2.4.1
- dev: false
-
/path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -20294,7 +19429,7 @@ packages:
engines: {node: '>=0.10.0'}
/path-is-inside@1.0.2:
- resolution: {integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=}
+ resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
dev: false
/path-key@2.0.1:
@@ -20346,11 +19481,9 @@ packages:
/pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
- dev: true
/pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
- dev: true
/peek-stream@1.1.3:
resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==}
@@ -20360,9 +19493,16 @@ packages:
through2: 2.0.5
dev: true
- /pend@1.2.0:
- resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- dev: true
+ /perfect-debounce@1.0.0:
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+ dev: false
+
+ /periscopic@3.1.0:
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 3.0.3
+ is-reference: 3.0.2
/pg-cloudflare@1.1.1:
resolution: {integrity: sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==}
@@ -20509,7 +19649,6 @@ packages:
jsonc-parser: 3.2.1
mlly: 1.6.1
pathe: 1.1.2
- dev: true
/pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
@@ -20518,39 +19657,44 @@ packages:
find-up: 3.0.0
dev: false
- /playwright-core@1.30.0:
- resolution: {integrity: sha512-7AnRmTCf+GVYhHbLJsGUtskWTE33SwMZkybJ0v6rqR1boxq2x36U7p1vDRV7HO2IwTZgmycracLxPEJI49wu4g==}
- engines: {node: '>=14'}
+ /playwright-core@1.42.1:
+ resolution: {integrity: sha512-mxz6zclokgrke9p1vtdy/COWBH+eOZgYUVVU34C73M+4j4HLlQJHtfcqiqqxpP0o8HhMkflvfbquLX5dg6wlfA==}
+ engines: {node: '>=16'}
hasBin: true
dev: true
- /pluralize@7.0.0:
- resolution: {integrity: sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==}
- engines: {node: '>=4'}
+ /playwright@1.42.1:
+ resolution: {integrity: sha512-PgwB03s2DZBcNRoW+1w9E+VkLBxweib6KTXM0M3tkiT4jVxKSi6PmVJ591J+0u10LUrgxB7dLRbiJqO5s2QPMg==}
+ engines: {node: '>=16'}
+ hasBin: true
+ dependencies:
+ playwright-core: 1.42.1
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
/polished@4.3.1:
resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
dev: true
/possible-typed-array-names@1.0.0:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
- /postcss-calc@8.2.4(postcss@8.4.35):
+ /postcss-calc@8.2.4(postcss@8.4.38):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin@5.3.1(postcss@8.4.35):
+ /postcss-colormin@5.3.1(postcss@8.4.38):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -20559,126 +19703,88 @@ packages:
browserslist: 4.23.0
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values@5.1.3(postcss@8.4.35):
+ /postcss-convert-values@5.1.3(postcss@8.4.38):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.23.0
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-discard-comments@5.1.2(postcss@8.4.35):
+ /postcss-discard-comments@5.1.2(postcss@8.4.38):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-discard-duplicates@5.1.0(postcss@8.4.35):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-discard-empty@5.1.1(postcss@8.4.35):
+ /postcss-discard-empty@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-discard-overridden@5.1.0(postcss@8.4.35):
+ /postcss-discard-overridden@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-discard-unused@5.1.0(postcss@8.4.35):
+ /postcss-discard-unused@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-import@14.1.0(postcss@8.4.23):
- resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.0.0
- dependencies:
- postcss: 8.4.23
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.8
-
- /postcss-import@14.1.0(postcss@8.4.35):
- resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
- engines: {node: '>=10.0.0'}
+ /postcss-import@15.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- dev: false
- /postcss-js@4.0.1(postcss@8.4.23):
+ /postcss-js@4.0.1(postcss@8.4.38):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.23
-
- /postcss-js@4.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
- engines: {node: ^12 || ^14 || >= 16}
- peerDependencies:
- postcss: ^8.4.21
- dependencies:
- camelcase-css: 2.0.1
- postcss: 8.4.35
- dev: false
-
- /postcss-load-config@3.1.4(postcss@8.4.23):
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
- engines: {node: '>= 10'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
- dependencies:
- lilconfig: 2.1.0
- postcss: 8.4.23
- yaml: 1.10.2
+ postcss: 8.4.38
- /postcss-load-config@3.1.4(postcss@8.4.35):
+ /postcss-load-config@3.1.4(postcss@8.4.38):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -20691,12 +19797,11 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.35
+ postcss: 8.4.38
yaml: 1.10.2
- dev: false
- /postcss-load-config@4.0.1(postcss@8.4.23):
- resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ /postcss-load-config@4.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
@@ -20707,49 +19812,49 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.1.0
- postcss: 8.4.23
+ lilconfig: 3.1.1
+ postcss: 8.4.38
yaml: 2.4.1
- /postcss-loader@7.3.4(postcss@8.4.35)(typescript@4.9.5)(webpack@5.76.1):
+ /postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.2)(webpack@5.91.0):
resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 8.3.6(typescript@4.9.5)
+ cosmiconfig: 8.3.6(typescript@5.4.2)
jiti: 1.21.0
- postcss: 8.4.35
+ postcss: 8.4.38
semver: 7.6.0
- webpack: 5.76.1
+ webpack: 5.91.0
transitivePeerDependencies:
- typescript
dev: false
- /postcss-merge-idents@5.1.1(postcss@8.4.35):
+ /postcss-merge-idents@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand@5.1.7(postcss@8.4.35):
+ /postcss-merge-longhand@5.1.7(postcss@8.4.38):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.35)
+ stylehacks: 5.1.1(postcss@8.4.38)
dev: false
- /postcss-merge-rules@5.1.4(postcss@8.4.35):
+ /postcss-merge-rules@5.1.4(postcss@8.4.38):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -20757,228 +19862,218 @@ packages:
dependencies:
browserslist: 4.23.0
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.35)
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-minify-font-values@5.1.0(postcss@8.4.35):
+ /postcss-minify-font-values@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients@5.1.1(postcss@8.4.35):
+ /postcss-minify-gradients@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params@5.1.4(postcss@8.4.35):
+ /postcss-minify-params@5.1.4(postcss@8.4.38):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.23.0
- cssnano-utils: 3.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors@5.2.1(postcss@8.4.35):
+ /postcss-minify-selectors@5.2.1(postcss@8.4.38):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.35):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-modules-local-by-default@4.0.4(postcss@8.4.35):
+ /postcss-modules-local-by-default@4.0.4(postcss@8.4.38):
resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.35)
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ icss-utils: 5.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope@3.1.1(postcss@8.4.35):
+ /postcss-modules-scope@3.1.1(postcss@8.4.38):
resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-modules-values@4.0.0(postcss@8.4.35):
+ /postcss-modules-values@4.0.0(postcss@8.4.38):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ icss-utils: 5.1.0(postcss@8.4.38)
+ postcss: 8.4.38
dev: false
- /postcss-nested@6.0.0(postcss@8.4.23):
- resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
+ /postcss-nested@6.0.1(postcss@8.4.38):
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.23
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
- /postcss-nested@6.0.0(postcss@8.4.35):
- resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
- dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
- dev: false
-
- /postcss-normalize-charset@5.1.0(postcss@8.4.35):
+ /postcss-normalize-charset@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-normalize-display-values@5.1.0(postcss@8.4.35):
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions@5.1.1(postcss@8.4.35):
+ /postcss-normalize-positions@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style@5.1.1(postcss@8.4.35):
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string@5.1.0(postcss@8.4.35):
+ /postcss-normalize-string@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions@5.1.0(postcss@8.4.35):
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode@5.1.1(postcss@8.4.35):
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.23.0
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url@5.1.0(postcss@8.4.35):
+ /postcss-normalize-url@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace@5.1.1(postcss@8.4.35):
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values@5.1.3(postcss@8.4.35):
+ /postcss-ordered-values@5.1.3(postcss@8.4.38):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-idents@5.2.0(postcss@8.4.35):
+ /postcss-reduce-idents@5.2.0(postcss@8.4.38):
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial@5.1.2(postcss@8.4.35):
+ /postcss-reduce-initial@5.1.2(postcss@8.4.38):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -20986,93 +20081,92 @@ packages:
dependencies:
browserslist: 4.23.0
caniuse-api: 3.0.0
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss-reduce-transforms@5.1.0(postcss@8.4.35):
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-safe-parser@6.0.0(postcss@8.4.23):
+ /postcss-safe-parser@6.0.0(postcss@8.4.38):
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.3.3
dependencies:
- postcss: 8.4.23
- dev: true
+ postcss: 8.4.38
+
+ /postcss-scss@4.0.9(postcss@8.4.38):
+ resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.4.29
+ dependencies:
+ postcss: 8.4.38
- /postcss-selector-parser@6.0.15:
- resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
+ /postcss-selector-parser@6.0.16:
+ resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-sort-media-queries@4.4.1(postcss@8.4.35):
+ /postcss-sort-media-queries@4.4.1(postcss@8.4.38):
resolution: {integrity: sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.16
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
sort-css-media-queries: 2.1.0
dev: false
- /postcss-svgo@5.1.0(postcss@8.4.35):
+ /postcss-svgo@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: false
- /postcss-unique-selectors@5.1.1(postcss@8.4.35):
+ /postcss-unique-selectors@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss-zindex@5.1.0(postcss@8.4.35):
+ /postcss-zindex@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
dev: false
- /postcss@8.4.23:
- resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
-
- /postcss@8.4.35:
- resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
+ /postcss@8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
/postgres-array@2.0.0:
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
@@ -21151,8 +20245,8 @@ packages:
posthtml-render: 3.0.0
dev: true
- /preact@10.19.6:
- resolution: {integrity: sha512-gympg+T2Z1fG1unB8NH29yHJwnEaCH37Z32diPDku316OTnRPeMbiRV9kTrfZpocXjdfnWuFUl/Mj4BHaf6gnw==}
+ /preact@10.20.0:
+ resolution: {integrity: sha512-wU7iZw2BjsaKDal3pDRDy/HpPB6cuFOnVUCcw9aIPKG98+ZrXx3F+szkos8BVME5bquyKDKvRlOJFG8kMkcAbg==}
dev: false
/preferred-pm@3.1.3:
@@ -21178,16 +20272,25 @@ packages:
resolution: {integrity: sha512-EL+oiqnMnGF8iPzAOiuZi5Ja7D2zIQkYZ9iJy+Ddwjapw3SZ6AzP71gN4KhqbM/9WLCFW8WxexqbWc//4L5kpg==}
dev: false
- /prettier-plugin-svelte@2.10.1(prettier@2.8.8)(svelte@3.59.2):
+ /prettier-plugin-svelte@2.10.1(prettier@2.8.8)(svelte@4.2.12):
resolution: {integrity: sha512-Wlq7Z5v2ueCubWo0TZzKc9XHcm7TDxqcuzRuGd0gcENfzfT4JZ9yDlCbEgxWgiPmLHkBjfOtpAWkcT28MCDpUQ==}
peerDependencies:
prettier: ^1.16.4 || ^2.0.0
svelte: ^3.2.0 || ^4.0.0-next.0
dependencies:
prettier: 2.8.8
- svelte: 3.59.2
+ svelte: 4.2.12
dev: true
+ /prettier-plugin-svelte@3.2.2(prettier@3.2.5)(svelte@4.2.12):
+ resolution: {integrity: sha512-ZzzE/wMuf48/1+Lf2Ffko0uDa6pyCfgHV6+uAhtg2U0AAXGrhCSW88vEJNAkAxW5qyrFY1y1zZ4J8TgHrjW++Q==}
+ peerDependencies:
+ prettier: ^3.0.0
+ svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
+ dependencies:
+ prettier: 3.2.5
+ svelte: 4.2.12
+
/prettier@1.19.1:
resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==}
engines: {node: '>=4'}
@@ -21200,10 +20303,10 @@ packages:
hasBin: true
dev: true
- /pretty-bytes@5.6.0:
- resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
- engines: {node: '>=6'}
- dev: true
+ /prettier@3.2.5:
+ resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ engines: {node: '>=14'}
+ hasBin: true
/pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
@@ -21238,7 +20341,6 @@ packages:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.2.0
- dev: true
/pretty-hrtime@1.0.3:
resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
@@ -21250,12 +20352,12 @@ packages:
engines: {node: '>=4'}
dev: false
- /prism-react-renderer@1.3.5(react@17.0.1):
+ /prism-react-renderer@1.3.5(react@17.0.2):
resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
peerDependencies:
react: '>=0.14.9'
dependencies:
- react: 17.0.1
+ react: 17.0.2
dev: false
/prism-svelte@0.4.7:
@@ -21278,13 +20380,6 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
- /promise-deferred@2.0.4:
- resolution: {integrity: sha512-clITUrRNue0lRawJPyHwCtgcPryJBtGXN6map89kM268+bKgSfh/1ZXOD51+VfDsihzF66m2PBmNOIHETfko4Q==}
- engines: {node: '>= 0.4'}
- dependencies:
- promise: 8.3.0
- dev: true
-
/promise-inflight@1.0.1:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
@@ -21306,20 +20401,6 @@ packages:
asap: 2.0.6
dev: false
- /promise@8.3.0:
- resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
- dependencies:
- asap: 2.0.6
- dev: true
-
- /promiseback@2.0.3:
- resolution: {integrity: sha512-VZXdCwS0ppVNTIRfNsCvVwJAaP2b+pxQF7lM8DMWfmpNWyTxB6O5YNbzs+8z0ki/KIBHKHk308NTIl4kJUem3w==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.7
- promise-deferred: 2.0.4
- dev: true
-
/prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
@@ -21352,15 +20433,36 @@ packages:
forwarded: 0.2.0
ipaddr.js: 1.9.1
+ /proxy-agent@6.4.0:
+ resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ lru-cache: 7.18.3
+ pac-proxy-agent: 7.0.1
+ proxy-from-env: 1.1.0
+ socks-proxy-agent: 8.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ dev: false
/pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: true
- /publint@0.1.9:
- resolution: {integrity: sha512-O53y7vbePxuGFmEjgcrafMSlDpOJwOkj8YdexOt7yWlv7SB3rXoT3mHknyMJ3lf2UFH5Bmt6tnIkHcOTR6dEoA==}
+ /psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ dev: false
+
+ /publint@0.1.16:
+ resolution: {integrity: sha512-wJgk7HnXDT5Ap0DjFYbGz78kPkN44iQvDiaq8P63IEEyNU9mYXvaMd2cAyIM6OgqXM/IA3CK6XWIsRq+wjNpgw==}
engines: {node: '>=16'}
hasBin: true
dependencies:
@@ -21406,26 +20508,6 @@ packages:
escape-goat: 2.1.1
dev: false
- /puppeteer-core@2.1.1:
- resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==}
- engines: {node: '>=8.16.0'}
- dependencies:
- '@types/mime-types': 2.1.4
- debug: 4.3.4
- extract-zip: 1.7.0
- https-proxy-agent: 4.0.0
- mime: 2.6.0
- mime-types: 2.1.35
- progress: 2.0.3
- proxy-from-env: 1.1.0
- rimraf: 2.7.1
- ws: 6.2.2
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
/pure-color@1.3.0:
resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==}
dev: false
@@ -21454,6 +20536,10 @@ packages:
side-channel: 1.0.6
dev: true
+ /querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+ dev: false
+
/queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
@@ -21471,6 +20557,7 @@ packages:
/quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
+ dev: false
/ramda@0.29.0:
resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==}
@@ -21518,17 +20605,17 @@ packages:
pure-color: 1.3.0
dev: false
- /react-colorful@5.6.1(react-dom@17.0.1)(react@17.0.1):
+ /react-colorful@5.6.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
dev: true
- /react-dev-utils@12.0.1(eslint@8.45.0)(typescript@4.9.5)(webpack@5.76.1):
+ /react-dev-utils@12.0.1(eslint@8.45.0)(typescript@5.4.2)(webpack@5.91.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -21538,7 +20625,7 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
address: 1.2.2
browserslist: 4.23.0
chalk: 4.1.2
@@ -21547,7 +20634,7 @@ packages:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.45.0)(typescript@4.9.5)(webpack@5.76.1)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.45.0)(typescript@5.4.2)(webpack@5.91.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -21562,22 +20649,22 @@ packages:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 4.9.5
- webpack: 5.76.1
+ typescript: 5.4.2
+ webpack: 5.91.0
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
dev: false
- /react-dom@17.0.1(react@17.0.1):
- resolution: {integrity: sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==}
+ /react-dom@17.0.2(react@17.0.2):
+ resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
- react: 17.0.1
+ react: 17.0.2
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- react: 17.0.1
+ react: 17.0.2
scheduler: 0.20.2
/react-error-overlay@6.0.11:
@@ -21592,30 +20679,30 @@ packages:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
dev: false
- /react-helmet-async@1.3.0(react-dom@17.0.1)(react@17.0.1):
+ /react-helmet-async@1.3.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
peerDependencies:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
invariant: 2.2.4
prop-types: 15.8.1
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
react-fast-compare: 3.2.2
shallowequal: 1.1.0
dev: false
- /react-helmet-async@2.0.4(react-dom@17.0.1)(react@17.0.1):
+ /react-helmet-async@2.0.4(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-yxjQMWposw+akRfvpl5+8xejl4JtUlHnEBcji6u8/e6oc7ozT+P9PNTWMhCbz2y9tc5zPegw2BvKjQA+NwdEjQ==}
peerDependencies:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
invariant: 2.2.4
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
react-fast-compare: 3.2.2
shallowequal: 1.1.0
dev: false
@@ -21630,20 +20717,19 @@ packages:
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- dev: true
- /react-json-view@1.21.3(react-dom@17.0.1)(react@17.0.1):
+ /react-json-view@1.21.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4
dependencies:
- flux: 4.0.4(react@17.0.1)
- react: 17.0.1
+ flux: 4.0.4(react@17.0.2)
+ react: 17.0.2
react-base16-styling: 0.6.0
- react-dom: 17.0.1(react@17.0.1)
+ react-dom: 17.0.2(react@17.0.2)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.5.3(react@17.0.1)
+ react-textarea-autosize: 8.5.3(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
- encoding
@@ -21653,16 +20739,16 @@ packages:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.1):
+ /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0):
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.24.0
- react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.1)
- webpack: 5.76.1
+ '@babel/runtime': 7.24.1
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2)
+ webpack: 5.91.0
dev: false
/react-refresh@0.9.0:
@@ -21670,114 +20756,65 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar@2.3.5(react@17.0.1):
- resolution: {integrity: sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- react: 17.0.1
- react-style-singleton: 2.2.1(react@17.0.1)
- tslib: 2.4.1
- dev: true
-
- /react-remove-scroll@2.5.5(react@17.0.1):
- resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- react: 17.0.1
- react-remove-scroll-bar: 2.3.5(react@17.0.1)
- react-style-singleton: 2.2.1(react@17.0.1)
- tslib: 2.4.1
- use-callback-ref: 1.3.1(react@17.0.1)
- use-sidecar: 1.1.2(react@17.0.1)
- dev: true
-
- /react-router-config@5.1.1(react-router@5.3.4)(react@17.0.1):
+ /react-router-config@5.1.1(react-router@5.3.4)(react@17.0.2):
resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==}
peerDependencies:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- react-router: 5.3.4(react@17.0.1)
+ '@babel/runtime': 7.24.1
+ react: 17.0.2
+ react-router: 5.3.4(react@17.0.2)
dev: false
- /react-router-dom@5.3.4(react@17.0.1):
+ /react-router-dom@5.3.4(react@17.0.2):
resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 17.0.1
- react-router: 5.3.4(react@17.0.1)
+ react: 17.0.2
+ react-router: 5.3.4(react@17.0.2)
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
- /react-router@5.3.4(react@17.0.1):
+ /react-router@5.3.4(react@17.0.2):
resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
path-to-regexp: 1.8.0
prop-types: 15.8.1
- react: 17.0.1
+ react: 17.0.2
react-is: 16.13.1
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
- /react-style-singleton@2.2.1(react@17.0.1):
- resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- get-nonce: 1.0.1
- invariant: 2.2.4
- react: 17.0.1
- tslib: 2.4.1
- dev: true
-
- /react-textarea-autosize@8.5.3(react@17.0.1):
+ /react-textarea-autosize@8.5.3(react@17.0.2):
resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
engines: {node: '>=10'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.24.0
- react: 17.0.1
- use-composed-ref: 1.3.0(react@17.0.1)
- use-latest: 1.2.1(react@17.0.1)
+ '@babel/runtime': 7.24.1
+ react: 17.0.2
+ use-composed-ref: 1.3.0(react@17.0.2)
+ use-latest: 1.2.1(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
dev: false
- /react@17.0.1:
- resolution: {integrity: sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==}
+ /react@17.0.2:
+ resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
@@ -21874,8 +20911,7 @@ packages:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.4.1
- dev: true
+ tslib: 2.6.2
/rechoir@0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
@@ -21918,7 +20954,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
/regexp.prototype.flags@1.5.2:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
@@ -21965,6 +21001,17 @@ packages:
dependencies:
jsesc: 0.5.0
+ /rehype-external-links@3.0.0:
+ resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
+ dependencies:
+ '@types/hast': 3.0.4
+ '@ungap/structured-clone': 1.2.0
+ hast-util-is-element: 3.0.0
+ is-absolute-url: 4.0.1
+ space-separated-tokens: 2.0.2
+ unist-util-visit: 5.0.0
+ dev: true
+
/rehype-katex@5.0.0:
resolution: {integrity: sha512-ksSuEKCql/IiIadOHiKRMjypva9BLhuwQNascMqaoGLDVd0k2NlE2wMvgZ3rpItzRKCd6vs8s7MFbb8pcR0AEg==}
dependencies:
@@ -21983,6 +21030,16 @@ packages:
parse5: 6.0.1
dev: false
+ /rehype-slug@6.0.0:
+ resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
+ dependencies:
+ '@types/hast': 3.0.4
+ github-slugger: 2.0.0
+ hast-util-heading-rank: 3.0.0
+ hast-util-to-string: 3.0.0
+ unist-util-visit: 5.0.0
+ dev: true
+
/relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
@@ -21996,22 +21053,12 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /remark-external-links@8.0.0:
- resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==}
- dependencies:
- extend: 3.0.2
- is-absolute-url: 3.0.3
- mdast-util-definitions: 4.0.0
- space-separated-tokens: 1.1.5
- unist-util-visit: 2.0.3
- dev: true
-
/remark-footnotes@2.0.0:
resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
dev: false
- /remark-math@3.0.0:
- resolution: {integrity: sha512-1ptXVKQaxexoS1pywvbtoRofKenkulyWa7trXUh2LR5NCdzmqfUlM/aA8qyke7h63BGMFXVjPNjOZmD8oWkKDg==}
+ /remark-math@3.0.1:
+ resolution: {integrity: sha512-epT77R/HK0x7NqrWHdSV75uNLwn8g9qTyMqCRCDujL0vj/6T6+yhdrR7mjELWtkse+Fw02kijAaBuVcHBor1+Q==}
dev: false
/remark-mdx@1.6.22:
@@ -22066,17 +21113,9 @@ packages:
trim-trailing-lines: 1.1.4
unherit: 1.1.3
unist-util-remove-position: 2.0.1
- vfile-location: 3.2.0
- xtend: 4.0.2
- dev: false
-
- /remark-slug@6.1.0:
- resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==}
- dependencies:
- github-slugger: 1.5.0
- mdast-util-to-string: 1.1.0
- unist-util-visit: 2.0.3
- dev: true
+ vfile-location: 3.2.0
+ xtend: 4.0.2
+ dev: false
/remark-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
@@ -22130,6 +21169,7 @@ packages:
/resolve-alpn@1.2.1:
resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
+ dev: false
/resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
@@ -22164,12 +21204,6 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /responselike@2.0.1:
- resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
- dependencies:
- lowercase-keys: 2.0.0
- dev: true
-
/responselike@3.0.0:
resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
engines: {node: '>=14.16'}
@@ -22242,13 +21276,32 @@ packages:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
dev: false
- /rollup@3.29.4:
- resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ /rollup@4.13.0:
+ resolution: {integrity: sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ dependencies:
+ '@types/estree': 1.0.5
optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.13.0
+ '@rollup/rollup-android-arm64': 4.13.0
+ '@rollup/rollup-darwin-arm64': 4.13.0
+ '@rollup/rollup-darwin-x64': 4.13.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.13.0
+ '@rollup/rollup-linux-arm64-gnu': 4.13.0
+ '@rollup/rollup-linux-arm64-musl': 4.13.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.13.0
+ '@rollup/rollup-linux-x64-gnu': 4.13.0
+ '@rollup/rollup-linux-x64-musl': 4.13.0
+ '@rollup/rollup-win32-arm64-msvc': 4.13.0
+ '@rollup/rollup-win32-ia32-msvc': 4.13.0
+ '@rollup/rollup-win32-x64-msvc': 4.13.0
fsevents: 2.3.3
+ /rrweb-cssom@0.6.0:
+ resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+ dev: false
+
/rtl-detect@1.1.2:
resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==}
dev: false
@@ -22259,7 +21312,7 @@ packages:
dependencies:
find-up: 5.0.0
picocolors: 1.0.0
- postcss: 8.4.35
+ postcss: 8.4.38
strip-json-comments: 3.1.1
dev: false
@@ -22337,6 +21390,13 @@ packages:
resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
dev: false
+ /saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+ dependencies:
+ xmlchars: 2.2.0
+ dev: false
+
/scheduler@0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
@@ -22590,7 +21650,6 @@ packages:
/siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
- dev: true
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -22609,13 +21668,6 @@ packages:
is-arrayish: 0.3.2
dev: false
- /simple-update-notifier@2.0.0:
- resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
- engines: {node: '>=10'}
- dependencies:
- semver: 7.6.0
- dev: true
-
/sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
@@ -22638,11 +21690,6 @@ packages:
sax: 1.3.0
dev: false
- /slash@2.0.0:
- resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
- engines: {node: '>=6'}
- dev: false
-
/slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -22676,17 +21723,30 @@ packages:
yargs: 15.4.1
dev: true
- /snowflake-sdk@1.9.0(asn1.js@5.0.0):
+ /smartwrap@2.0.2:
+ resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ array.prototype.flat: 1.3.2
+ breakword: 1.0.6
+ grapheme-splitter: 1.0.4
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ yargs: 15.4.1
+ dev: true
+
+ /snowflake-sdk@1.9.0(asn1.js@5.4.1):
resolution: {integrity: sha512-RtFRV2KC+ebQk/kOUg8WV42LnAu9puoan2wMXykgrAj1u4sGP/GgQyQhsAfLGwXWzn+J9JAwij07h3+6HYBmFw==}
dependencies:
- '@aws-sdk/client-s3': 3.529.1
+ '@aws-sdk/client-s3': 3.537.0
'@azure/storage-blob': 12.17.0
'@google-cloud/storage': 6.12.0
'@techteamer/ocsp': 1.0.0
agent-base: 6.0.2
- asn1.js-rfc2560: 5.0.1(asn1.js@5.0.0)
+ asn1.js-rfc2560: 5.0.1(asn1.js@5.4.1)
asn1.js-rfc5280: 3.0.0
- axios: 1.6.7(debug@3.2.7)
+ axios: 1.6.8(debug@3.2.7)
big-integer: 1.6.52
bignumber.js: 2.4.0
binascii: 0.0.2
@@ -22695,7 +21755,7 @@ packages:
debug: 3.2.7
expand-tilde: 2.0.2
extend: 3.0.2
- fast-xml-parser: 4.3.5
+ fast-xml-parser: 4.3.6
generic-pool: 3.9.0
glob: 7.2.3
https-proxy-agent: 5.0.1
@@ -22718,42 +21778,6 @@ packages:
- supports-color
dev: false
- /snyk-config@5.3.0:
- resolution: {integrity: sha512-YPxhYZXBXgnYdvovwlKf5JYcOp+nxB7lel3tWLarYqZ4hwxN118FodIFb8nSqMrepsPdyOaQYKKnrTYqvQeaJA==}
- dependencies:
- async: 3.2.5
- debug: 4.3.4
- lodash.merge: 4.6.2
- minimist: 1.2.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /snyk-nodejs-lockfile-parser@1.52.11:
- resolution: {integrity: sha512-soI7Qv+xezGuAd//SJzEHQrosbEBUPXu5Mqu9e8Djhj22gM9h2CE7Ov6qw4HgrSjKNJjYIVXy6I8MD6WEbwMOA==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- '@snyk/dep-graph': 2.8.1
- '@snyk/graphlib': 2.1.9-patch.3
- '@yarnpkg/core': 2.4.0
- '@yarnpkg/lockfile': 1.1.0
- event-loop-spinner: 2.2.0
- js-yaml: 4.1.0
- lodash.clonedeep: 4.5.0
- lodash.flatmap: 4.5.0
- lodash.isempty: 4.4.0
- lodash.topairs: 4.3.0
- micromatch: 4.0.5
- p-map: 4.0.0
- semver: 7.6.0
- snyk-config: 5.3.0
- tslib: 1.14.1
- uuid: 8.3.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
@@ -22785,6 +21809,17 @@ packages:
transitivePeerDependencies:
- supports-color
+ /socks-proxy-agent@8.0.2:
+ resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ socks: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/socks@2.8.1:
resolution: {integrity: sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==}
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
@@ -22806,8 +21841,8 @@ packages:
engines: {node: '>= 6.3.0'}
dev: false
- /source-map-js@1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
+ /source-map-js@1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
/source-map-support@0.5.13:
@@ -22839,10 +21874,10 @@ packages:
/space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
+ dev: false
/space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- dev: false
/spawndamnit@2.0.0:
resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
@@ -22919,7 +21954,7 @@ packages:
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
node-addon-api: 4.3.0
- tar: 6.2.0
+ tar: 6.2.1
optionalDependencies:
node-gyp: 8.4.1
transitivePeerDependencies:
@@ -22980,7 +22015,6 @@ packages:
/stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
- dev: true
/state-toggle@1.0.3:
resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
@@ -23009,6 +22043,11 @@ packages:
dependencies:
bl: 5.1.0
+ /stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
+ dev: false
+
/stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
@@ -23025,23 +22064,21 @@ packages:
resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
dev: true
- /storybook@7.6.6:
- resolution: {integrity: sha512-PmJxpjGdLvDOHaRzqLOvcJ3ALQPaNeW6D5Lv7rPPVbuO24wdDzd/75dPRP7gJKYcGE0NnDZ6cLQq3UlCfbkIBA==}
+ /storybook@8.0.4(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-FUr3Uc2dSAQ80jINH5fSXz7zD7Ncn08OthROjwRtHAH+jMf4wxyZ+RhF3heFy9xLot2/HXOLIWyHyzZZMtGhxg==}
hasBin: true
dependencies:
- '@storybook/cli': 7.6.6
+ '@storybook/cli': 8.0.4(react-dom@17.0.2)(react@17.0.2)
transitivePeerDependencies:
+ - '@babel/preset-env'
- bufferutil
- encoding
+ - react
+ - react-dom
- supports-color
- utf-8-validate
dev: true
- /stream-buffers@3.0.2:
- resolution: {integrity: sha512-DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ==}
- engines: {node: '>= 0.10.0'}
- dev: true
-
/stream-events@1.0.5:
resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==}
dependencies:
@@ -23055,30 +22092,12 @@ packages:
/stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
- /stream-to-array@2.3.0:
- resolution: {integrity: sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA==}
- dependencies:
- any-promise: 1.3.0
- dev: true
-
- /stream-to-promise@2.2.0:
- resolution: {integrity: sha512-HAGUASw8NT0k8JvIVutB2Y/9iBk7gpgEyAudXwNJmZERdMITGdajOa4VJfD/kNiA3TppQpTP4J+CtcHwdzKBAw==}
- dependencies:
- any-promise: 1.3.0
- end-of-stream: 1.1.0
- stream-to-array: 2.3.0
- dev: true
-
/stream-transform@2.1.3:
resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==}
dependencies:
mixme: 0.5.10
dev: true
- /streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
-
/string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
@@ -23116,36 +22135,48 @@ packages:
emoji-regex: 10.3.0
strip-ansi: 7.1.0
- /string.prototype.padend@3.1.5:
- resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==}
+ /string-width@7.1.0:
+ resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==}
+ engines: {node: '>=18'}
+ dependencies:
+ emoji-regex: 10.3.0
+ get-east-asian-width: 1.2.0
+ strip-ansi: 7.1.0
+ dev: false
+
+ /string.prototype.padend@3.1.6:
+ resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
+ es-object-atoms: 1.0.0
dev: true
- /string.prototype.trim@1.2.8:
- resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
+ /string.prototype.trim@1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
+ es-object-atoms: 1.0.0
- /string.prototype.trimend@1.0.7:
- resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
+ /string.prototype.trimend@1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-object-atoms: 1.0.0
- /string.prototype.trimstart@1.0.7:
- resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
+ /string.prototype.trimstart@1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-object-atoms: 1.0.0
/string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -23222,6 +22253,12 @@ packages:
acorn: 8.11.3
dev: true
+ /strip-literal@2.0.0:
+ resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
+ dependencies:
+ js-tokens: 8.0.3
+ dev: false
+
/strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
dev: false
@@ -23240,15 +22277,15 @@ packages:
inline-style-parser: 0.1.1
dev: false
- /stylehacks@5.1.1(postcss@8.4.35):
+ /stylehacks@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.23.0
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
/stylis@4.3.1:
@@ -23298,21 +22335,21 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svelte-check@3.0.1(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2):
- resolution: {integrity: sha512-7YpHYWv6V2qhcvVeAlXixUPAlpLCXB1nZEQK0EItB3PtuYmENhKclbc5uKSJTodTwWR1y+4stKGcbH30k6A3Yw==}
+ /svelte-check@3.6.7(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12):
+ resolution: {integrity: sha512-tKEjemK9FYCySAseCaIt+ps5o0XRvLC7ECjyJXXtO7vOQhR9E6JavgoUbGP1PCulD2OTcB/fi9RjV3nyF1AROw==}
hasBin: true
peerDependencies:
- svelte: ^3.55.0
+ svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- chokidar: 3.5.3
+ chokidar: 3.6.0
fast-glob: 3.3.2
import-fresh: 3.3.0
picocolors: 1.0.0
sade: 1.8.1
- svelte: 3.59.2
- svelte-preprocess: 5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@4.9.5)
- typescript: 4.9.5
+ svelte: 4.2.12
+ svelte-preprocess: 5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- '@babel/core'
- coffeescript
@@ -23325,11 +22362,11 @@ packages:
- sugarss
dev: true
- /svelte-eslint-parser@0.26.1(svelte@3.59.2):
- resolution: {integrity: sha512-9amXrcFVhv9xrEdCnuIxai22NFQe/NwWVoD8cHGUHPhcU/yXlIHdhZX1L+0iLJszIPdK+iAgImC9IF572OXVWQ==}
+ /svelte-eslint-parser@0.33.1(svelte@4.2.12):
+ resolution: {integrity: sha512-vo7xPGTlKBGdLH8T5L64FipvTrqv3OQRx9d2z5X05KKZDlF4rQk8KViZO4flKERY+5BiVdOh7zZ7JGJWo5P0uA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
- svelte: ^3.37.0
+ svelte: ^3.37.0 || ^4.0.0
peerDependenciesMeta:
svelte:
optional: true
@@ -23337,178 +22374,22 @@ packages:
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- svelte: 3.59.2
- dev: true
+ postcss: 8.4.38
+ postcss-scss: 4.0.9(postcss@8.4.38)
+ svelte: 4.2.12
- /svelte-hmr@0.15.3(svelte@3.55.0):
+ /svelte-hmr@0.15.3(svelte@4.2.12):
resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==}
engines: {node: ^12.20 || ^14.13.1 || >= 16}
peerDependencies:
svelte: ^3.19.0 || ^4.0.0
dependencies:
- svelte: 3.55.0
-
- /svelte-hmr@0.15.3(svelte@3.59.2):
- resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==}
- engines: {node: ^12.20 || ^14.13.1 || >= 16}
- peerDependencies:
- svelte: ^3.19.0 || ^4.0.0
- dependencies:
- svelte: 3.59.2
+ svelte: 4.2.12
/svelte-icons@2.1.0:
resolution: {integrity: sha512-rHPQjweEc9fGSnvM0/4gA3pDHwyZyYsC5KhttCZRhSMJfLttJST5Uq0B16Czhw+HQ+HbSOk8kLigMlPs7gZtfg==}
- /svelte-preprocess@5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@4.9.5):
- resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==}
- engines: {node: '>= 16.0.0', pnpm: ^8.0.0}
- requiresBuild: true
- peerDependencies:
- '@babel/core': ^7.10.2
- coffeescript: ^2.5.1
- less: ^3.11.3 || ^4.0.0
- postcss: ^7 || ^8
- postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- pug: ^3.0.0
- sass: ^1.26.8
- stylus: ^0.55.0
- sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
- svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
- typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- coffeescript:
- optional: true
- less:
- optional: true
- postcss:
- optional: true
- postcss-load-config:
- optional: true
- pug:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- typescript:
- optional: true
- dependencies:
- '@babel/core': 7.24.0
- '@types/pug': 2.0.10
- detect-indent: 6.1.0
- magic-string: 0.30.8
- postcss: 8.4.23
- postcss-load-config: 4.0.1(postcss@8.4.23)
- sorcery: 0.11.0
- strip-indent: 3.0.0
- svelte: 3.59.2
- typescript: 4.9.5
- dev: true
-
- /svelte-preprocess@5.1.3(@babel/core@7.24.0)(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.59.2)(typescript@5.2.2):
- resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==}
- engines: {node: '>= 16.0.0', pnpm: ^8.0.0}
- requiresBuild: true
- peerDependencies:
- '@babel/core': ^7.10.2
- coffeescript: ^2.5.1
- less: ^3.11.3 || ^4.0.0
- postcss: ^7 || ^8
- postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- pug: ^3.0.0
- sass: ^1.26.8
- stylus: ^0.55.0
- sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
- svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
- typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- coffeescript:
- optional: true
- less:
- optional: true
- postcss:
- optional: true
- postcss-load-config:
- optional: true
- pug:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- typescript:
- optional: true
- dependencies:
- '@babel/core': 7.24.0
- '@types/pug': 2.0.10
- detect-indent: 6.1.0
- magic-string: 0.30.8
- postcss: 8.4.23
- postcss-load-config: 4.0.1(postcss@8.4.23)
- sorcery: 0.11.0
- strip-indent: 3.0.0
- svelte: 3.59.2
- typescript: 5.2.2
- dev: true
-
- /svelte-preprocess@5.1.3(postcss-load-config@4.0.1)(postcss@8.4.23)(svelte@3.55.0)(typescript@4.9.5):
- resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==}
- engines: {node: '>= 16.0.0', pnpm: ^8.0.0}
- requiresBuild: true
- peerDependencies:
- '@babel/core': ^7.10.2
- coffeescript: ^2.5.1
- less: ^3.11.3 || ^4.0.0
- postcss: ^7 || ^8
- postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- pug: ^3.0.0
- sass: ^1.26.8
- stylus: ^0.55.0
- sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
- svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
- typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- coffeescript:
- optional: true
- less:
- optional: true
- postcss:
- optional: true
- postcss-load-config:
- optional: true
- pug:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- typescript:
- optional: true
- dependencies:
- '@types/pug': 2.0.10
- detect-indent: 6.1.0
- magic-string: 0.30.8
- postcss: 8.4.23
- postcss-load-config: 4.0.1(postcss@8.4.23)
- sorcery: 0.11.0
- strip-indent: 3.0.0
- svelte: 3.55.0
- typescript: 4.9.5
- dev: false
-
- /svelte-preprocess@5.1.3(svelte@3.55.0)(typescript@5.2.2):
+ /svelte-preprocess@5.1.3(@babel/core@7.24.3)(postcss-load-config@4.0.2)(postcss@8.4.38)(svelte@4.2.12)(typescript@5.4.2):
resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==}
engines: {node: '>= 16.0.0', pnpm: ^8.0.0}
requiresBuild: true
@@ -23546,52 +22427,26 @@ packages:
typescript:
optional: true
dependencies:
+ '@babel/core': 7.24.3
'@types/pug': 2.0.10
detect-indent: 6.1.0
magic-string: 0.30.8
+ postcss: 8.4.38
+ postcss-load-config: 4.0.2(postcss@8.4.38)
sorcery: 0.11.0
strip-indent: 3.0.0
- svelte: 3.55.0
- typescript: 5.2.2
- dev: false
-
- /svelte2tsx@0.6.0(svelte@3.55.0)(typescript@4.9.5):
- resolution: {integrity: sha512-TrxfQkO7CKi8Pu2eC/FyteDCdk3OOeQV5u6z7OjYAsOhsd0ClzAKqxJdvp6xxNQLrbFzf/XvCi9Fy8MQ1MleFA==}
- peerDependencies:
- svelte: ^3.55
- typescript: ^4.9.4
- dependencies:
- dedent-js: 1.0.1
- pascal-case: 3.1.2
- svelte: 3.55.0
- typescript: 4.9.5
- dev: false
-
- /svelte2tsx@0.6.0(svelte@3.59.2)(typescript@4.9.5):
- resolution: {integrity: sha512-TrxfQkO7CKi8Pu2eC/FyteDCdk3OOeQV5u6z7OjYAsOhsd0ClzAKqxJdvp6xxNQLrbFzf/XvCi9Fy8MQ1MleFA==}
- peerDependencies:
- svelte: ^3.55
- typescript: ^4.9.4
- dependencies:
- dedent-js: 1.0.1
- pascal-case: 3.1.2
- svelte: 3.59.2
- typescript: 4.9.5
- dev: true
+ svelte: 4.2.12
+ typescript: 5.4.2
- /svelte2tsx@0.7.4(svelte@3.59.2)(typescript@4.9.5):
- resolution: {integrity: sha512-zAtbQD7JmeKe0JWdKO6l38t7P6wFP0+YTc0LLFdtzWdHEddcE+/VMvJquQI9NNsnrinUbtS9JF3kosPNeglMcQ==}
- peerDependencies:
- svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0
- typescript: ^4.9.4 || ^5.0.0
- dependencies:
- dedent-js: 1.0.1
- pascal-case: 3.1.2
- svelte: 3.59.2
- typescript: 4.9.5
- dev: true
+ /svelte-sequential-preprocessor@2.0.1:
+ resolution: {integrity: sha512-N5JqlBni6BzElxmuFrOPxOJnjsxh1cFDACLEVKs8OHBcx8ZNRO1p5SxuQex1m3qbLzAC8G99EHeWcxGkjyKjLQ==}
+ engines: {node: '>=16'}
+ dependencies:
+ svelte: 4.2.12
+ tslib: 2.6.2
+ dev: false
- /svelte2tsx@0.7.4(svelte@3.59.2)(typescript@5.2.2):
+ /svelte2tsx@0.7.4(svelte@4.2.12)(typescript@5.4.2):
resolution: {integrity: sha512-zAtbQD7JmeKe0JWdKO6l38t7P6wFP0+YTc0LLFdtzWdHEddcE+/VMvJquQI9NNsnrinUbtS9JF3kosPNeglMcQ==}
peerDependencies:
svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0
@@ -23599,17 +22454,27 @@ packages:
dependencies:
dedent-js: 1.0.1
pascal-case: 3.1.2
- svelte: 3.59.2
- typescript: 5.2.2
- dev: true
+ svelte: 4.2.12
+ typescript: 5.4.2
- /svelte@3.55.0:
- resolution: {integrity: sha512-uGu2FVMlOuey4JoKHKrpZFkoYyj0VLjJdz47zX5+gVK5odxHM40RVhar9/iK2YFRVxvfg9FkhfVlR0sjeIrOiA==}
- engines: {node: '>= 8'}
-
- /svelte@3.59.2:
- resolution: {integrity: sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==}
- engines: {node: '>= 8'}
+ /svelte@4.2.12:
+ resolution: {integrity: sha512-d8+wsh5TfPwqVzbm4/HCXC783/KPHV60NvwitJnyTA5lWn1elhXMNWhXGCJ7PwPa8qFUnyJNIyuIRt2mT0WMug==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
+ '@types/estree': 1.0.5
+ acorn: 8.11.3
+ aria-query: 5.3.0
+ axobject-query: 4.0.0
+ code-red: 1.0.4
+ css-tree: 2.3.1
+ estree-walker: 3.0.3
+ is-reference: 3.0.2
+ locate-character: 3.0.0
+ magic-string: 0.30.8
+ periscopic: 3.1.0
/sveltedoc-parser@4.2.1:
resolution: {integrity: sha512-sWJRa4qOfRdSORSVw9GhfDEwsbsYsegnDzBevUCF6k/Eis/QqCu9lJ6I0+d/E2wOWCjOhlcJ3+jl/Iur+5mmCw==}
@@ -23622,13 +22487,15 @@ packages:
- supports-color
dev: true
- /sveltekit-autoimport@1.7.0:
- resolution: {integrity: sha512-oqXpdxr7BTpl8xRvfajysSVCFet0BnF259bNMD8c5uhfKKh4/DAXZP4ElnhcTkuEoVfaj2AxFEewBoQlWPqH0g==}
+ /sveltekit-autoimport@1.8.0(@sveltejs/kit@2.5.4):
+ resolution: {integrity: sha512-gowKUDMz7Qlb09EU6gfVDbxuHgGzpJ6C0i2z2DNxAFvTXO3roCUm+fjFzbt28uzjjEglGTveR9FvyZB8IQwdMQ==}
+ peerDependencies:
+ '@sveltejs/kit': '>=1.0.0'
dependencies:
'@rollup/pluginutils': 4.2.1
+ '@sveltejs/kit': 2.5.4(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.2.12)(vite@5.1.6)
estree-walker: 2.0.2
magic-string: 0.26.7
- svelte: 3.59.2
dev: false
/svg-parser@2.0.4:
@@ -23649,7 +22516,7 @@ packages:
csso: 4.2.0
js-yaml: 3.14.1
mkdirp: 0.5.6
- object.values: 1.1.7
+ object.values: 1.2.0
sax: 1.2.4
stable: 0.1.8
unquote: 1.1.1
@@ -23669,9 +22536,9 @@ packages:
picocolors: 1.0.0
stable: 0.1.8
- /synchronous-promise@2.0.17:
- resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==}
- dev: true
+ /symbol-tree@3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+ dev: false
/tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
@@ -23694,66 +22561,30 @@ packages:
resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
dev: false
- /tailwind-merge@2.2.0:
- resolution: {integrity: sha512-SqqhhaL0T06SW59+JVNfAqKdqLs0497esifRrZ7jOaefP3o64fdFNDMrAQWZFMxTLJPiHVjRLUywT8uFz1xNWQ==}
+ /tailwind-merge@2.2.2:
+ resolution: {integrity: sha512-tWANXsnmJzgw6mQ07nE3aCDkCK4QdT3ThPMCzawoYA2Pws7vSTCvz3Vrjg61jVUGfFZPJzxEP+NimbcW+EdaDw==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.1
dev: false
- /tailwind-variants@0.1.19(tailwindcss@3.3.1):
- resolution: {integrity: sha512-D9Yf5WqsxodnCtjZt6KifEoKwW8rTURXQV03KRKlojITQM5gV1vPVWufWNiIvd/ptC3QybYFpwmHK9cs4Ei08Q==}
+ /tailwind-variants@0.1.20(tailwindcss@3.4.1):
+ resolution: {integrity: sha512-AMh7x313t/V+eTySKB0Dal08RHY7ggYK0MSn/ad8wKWOrDUIzyiWNayRUm2PIJ4VRkvRnfNuyRuKbLV3EN+ewQ==}
engines: {node: '>=16.x', pnpm: '>=7.x'}
peerDependencies:
tailwindcss: '*'
dependencies:
tailwind-merge: 1.14.0
- tailwindcss: 3.3.1(postcss@8.4.23)
+ tailwindcss: 3.4.1
dev: false
- /tailwindcss@3.3.1(postcss@8.4.23):
- resolution: {integrity: sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==}
- engines: {node: '>=12.13.0'}
- hasBin: true
- peerDependencies:
- postcss: ^8.0.9
- dependencies:
- arg: 5.0.2
- chokidar: 3.5.3
- color-name: 1.1.4
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.0
- lilconfig: 2.1.0
- micromatch: 4.0.5
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.23
- postcss-import: 14.1.0(postcss@8.4.23)
- postcss-js: 4.0.1(postcss@8.4.23)
- postcss-load-config: 3.1.4(postcss@8.4.23)
- postcss-nested: 6.0.0(postcss@8.4.23)
- postcss-selector-parser: 6.0.15
- postcss-value-parser: 4.2.0
- quick-lru: 5.1.1
- resolve: 1.22.8
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
-
- /tailwindcss@3.3.1(postcss@8.4.35):
- resolution: {integrity: sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==}
- engines: {node: '>=12.13.0'}
+ /tailwindcss@3.4.1:
+ resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==}
+ engines: {node: '>=14.0.0'}
hasBin: true
- peerDependencies:
- postcss: ^8.0.9
dependencies:
+ '@alloc/quick-lru': 5.2.0
arg: 5.0.2
- chokidar: 3.5.3
- color-name: 1.1.4
+ chokidar: 3.6.0
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.3.2
@@ -23765,19 +22596,16 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.35
- postcss-import: 14.1.0(postcss@8.4.35)
- postcss-js: 4.0.1(postcss@8.4.35)
- postcss-load-config: 3.1.4(postcss@8.4.35)
- postcss-nested: 6.0.0(postcss@8.4.35)
- postcss-selector-parser: 6.0.15
- postcss-value-parser: 4.2.0
- quick-lru: 5.1.1
+ postcss: 8.4.38
+ postcss-import: 15.1.0(postcss@8.4.38)
+ postcss-js: 4.0.1(postcss@8.4.38)
+ postcss-load-config: 4.0.2(postcss@8.4.38)
+ postcss-nested: 6.0.1(postcss@8.4.38)
+ postcss-selector-parser: 6.0.16
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- dev: false
/tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
@@ -23808,8 +22636,8 @@ packages:
readable-stream: 3.6.2
dev: true
- /tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ /tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
@@ -23830,7 +22658,7 @@ packages:
dependencies:
'@azure/identity': 2.1.0
'@azure/keyvault-keys': 4.8.0
- '@js-joda/core': 5.6.1
+ '@js-joda/core': 5.6.2
bl: 5.1.0
es-aggregate-error: 1.0.12
iconv-lite: 0.6.3
@@ -23900,7 +22728,7 @@ packages:
supports-hyperlinks: 2.3.0
dev: true
- /terser-webpack-plugin@5.3.10(webpack@5.76.1):
+ /terser-webpack-plugin@5.3.10(webpack@5.91.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -23920,11 +22748,11 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.29.1
- webpack: 5.76.1
+ terser: 5.29.2
+ webpack: 5.91.0
- /terser@5.29.1:
- resolution: {integrity: sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==}
+ /terser@5.29.2:
+ resolution: {integrity: sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -23940,7 +22768,6 @@ packages:
'@istanbuljs/schema': 0.1.3
glob: 7.2.3
minimatch: 3.1.2
- dev: true
/text-hex@1.0.0:
resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
@@ -23949,16 +22776,16 @@ packages:
/text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- /thememirror@2.0.1(@codemirror/language@6.10.0)(@codemirror/state@6.4.1)(@codemirror/view@6.23.0):
+ /thememirror@2.0.1(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.0):
resolution: {integrity: sha512-d5i6FVvWWPkwrm4cHLI3t9AT1OrkAt7Ig8dtdYSofgF7C/eiyNuq6zQzSTusWTde3jpW9WLvA9J/fzNKMUsd0w==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
dependencies:
- '@codemirror/language': 6.10.0
+ '@codemirror/language': 6.10.1
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.26.0
dev: false
/thenify-all@1.6.0:
@@ -24001,6 +22828,12 @@ packages:
resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
dev: true
+ /tiny-glob@0.2.9:
+ resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
+ dependencies:
+ globalyzer: 0.1.0
+ globrex: 0.1.2
+
/tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
@@ -24010,17 +22843,20 @@ packages:
/tinybench@2.6.0:
resolution: {integrity: sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA==}
- dev: true
/tinypool@0.7.0:
resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==}
engines: {node: '>=14.0.0'}
dev: true
+ /tinypool@0.8.2:
+ resolution: {integrity: sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==}
+ engines: {node: '>=14.0.0'}
+ dev: false
+
/tinyspy@2.2.1:
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
- dev: true
/titleize@3.0.0:
resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
@@ -24031,6 +22867,7 @@ packages:
engines: {node: '>=0.6.0'}
dependencies:
os-tmpdir: 1.0.2
+ dev: true
/tmp@0.2.3:
resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
@@ -24067,13 +22904,25 @@ packages:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
+ /tough-cookie@4.1.3:
+ resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
+ engines: {node: '>=6'}
+ dependencies:
+ psl: 1.9.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
+ dev: false
+
/tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- /treeify@1.1.0:
- resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==}
- engines: {node: '>=0.6'}
- dev: true
+ /tr46@5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
+ dependencies:
+ punycode: 2.3.1
+ dev: false
/trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
@@ -24095,6 +22944,15 @@ packages:
/trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
+ /ts-api-utils@1.3.0(typescript@5.4.2):
+ resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+ dependencies:
+ typescript: 5.4.2
+ dev: false
+
/ts-dedent@2.2.0:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
@@ -24111,20 +22969,17 @@ packages:
/tslib@2.3.0:
resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
- /tslib@2.4.1:
- resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
-
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- /tsutils@3.21.0(typescript@5.2.2):
+ /tsutils@3.21.0(typescript@5.4.2):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.2.2
+ typescript: 5.4.2
dev: true
/tty-table@2.8.13:
@@ -24140,13 +22995,28 @@ packages:
yargs: 15.4.1
dev: true
- /tua-body-scroll-lock@1.4.0:
- resolution: {integrity: sha512-pbl411d7RSxjYXt5pB5GdBQ5BraVg1PMvr8BSUXc4buCMeK1OYu7L10PuOU8EhdfWoxGiAfvLrioSQe6Cr9m1g==}
+ /tty-table@4.2.3:
+ resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==}
+ engines: {node: '>=8.0.0'}
+ hasBin: true
+ dependencies:
+ chalk: 4.1.2
+ csv: 5.5.3
+ kleur: 4.1.5
+ smartwrap: 2.0.2
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ yargs: 17.7.2
+ dev: true
+
+ /tua-body-scroll-lock@1.4.1:
+ resolution: {integrity: sha512-3W8+asPBR/U+jDfVrnoir6TpNjLDTCPeQwNq+j6UERs6+3KeIZlmnsXQeEyM5YkriplH1lJ7R5sKcj5Ji6tF6w==}
dev: false
/tunnel@0.0.6:
resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
+ dev: false
/type-check@0.3.2:
resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
@@ -24164,7 +23034,6 @@ packages:
/type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- dev: true
/type-fest@0.13.1:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
@@ -24240,8 +23109,8 @@ packages:
has-proto: 1.0.3
is-typed-array: 1.1.13
- /typed-array-length@1.0.5:
- resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==}
+ /typed-array-length@1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
@@ -24257,17 +23126,8 @@ packages:
is-typedarray: 1.0.0
dev: false
- /typedarray@0.0.6:
- resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- dev: true
-
- /typescript@4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
- hasBin: true
-
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ /typescript@5.4.2:
+ resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
engines: {node: '>=14.17'}
hasBin: true
@@ -24283,9 +23143,8 @@ packages:
resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
dev: false
- /ufo@1.4.0:
- resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==}
- dev: true
+ /ufo@1.5.3:
+ resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
/uglify-js@3.17.4:
resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
@@ -24303,18 +23162,8 @@ packages:
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- /undici-types@5.25.3:
- resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==}
-
/undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- dev: true
-
- /undici@5.22.1:
- resolution: {integrity: sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==}
- engines: {node: '>=14.0'}
- dependencies:
- busboy: 1.6.0
/unherit@1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
@@ -24432,6 +23281,12 @@ packages:
dependencies:
'@types/unist': 2.0.10
+ /unist-util-is@6.0.0:
+ resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
+ dependencies:
+ '@types/unist': 3.0.2
+ dev: true
+
/unist-util-position@3.1.0:
resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==}
dev: false
@@ -24470,6 +23325,13 @@ packages:
'@types/unist': 2.0.10
unist-util-is: 5.2.1
+ /unist-util-visit-parents@6.0.1:
+ resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
+ dependencies:
+ '@types/unist': 3.0.2
+ unist-util-is: 6.0.0
+ dev: true
+
/unist-util-visit@2.0.3:
resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
dependencies:
@@ -24484,11 +23346,24 @@ packages:
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
+ /unist-util-visit@5.0.0:
+ resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
+ dependencies:
+ '@types/unist': 3.0.2
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+ dev: true
+
/universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
dev: true
+ /universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+ dev: false
+
/universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -24497,8 +23372,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- /unplugin@1.9.0:
- resolution: {integrity: sha512-14PslvMY3gNbXnQtNIRB566Q057L5Fe7f5LDEamxVi0QQVxoz5hrveBwwZLcKyHtZ09ysmipxRRj5Lv+BGz2Iw==}
+ /unplugin@1.10.0:
+ resolution: {integrity: sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==}
engines: {node: '>=14.0.0'}
dependencies:
acorn: 8.11.3
@@ -24550,7 +23425,7 @@ packages:
dependencies:
punycode: 2.3.1
- /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.76.1):
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.91.0):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -24560,36 +23435,29 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0(webpack@5.76.1)
+ file-loader: 6.2.0(webpack@5.91.0)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
- /use-callback-ref@1.3.1(react@17.0.1):
- resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ /url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
- react: 17.0.1
- tslib: 2.4.1
- dev: true
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: false
- /use-composed-ref@1.3.0(react@17.0.1):
+ /use-composed-ref@1.3.0(react@17.0.2):
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 17.0.1
+ react: 17.0.2
dev: false
- /use-isomorphic-layout-effect@1.1.2(react@17.0.1):
+ /use-isomorphic-layout-effect@1.1.2(react@17.0.2):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -24598,10 +23466,10 @@ packages:
'@types/react':
optional: true
dependencies:
- react: 17.0.1
+ react: 17.0.2
dev: false
- /use-latest@1.2.1(react@17.0.1):
+ /use-latest@1.2.1(react@17.0.2):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -24610,35 +23478,17 @@ packages:
'@types/react':
optional: true
dependencies:
- react: 17.0.1
- use-isomorphic-layout-effect: 1.1.2(react@17.0.1)
+ react: 17.0.2
+ use-isomorphic-layout-effect: 1.1.2(react@17.0.2)
dev: false
- /use-resize-observer@9.1.0(react-dom@17.0.1)(react@17.0.1):
- resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==}
- peerDependencies:
- react: 16.8.0 - 18
- react-dom: 16.8.0 - 18
- dependencies:
- '@juggle/resize-observer': 3.4.0
- react: 17.0.1
- react-dom: 17.0.1(react@17.0.1)
- dev: true
-
- /use-sidecar@1.1.2(react@17.0.1):
- resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
- engines: {node: '>=10'}
+ /use-sync-external-store@1.2.0(react@17.0.2):
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
- '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
dependencies:
- detect-node-es: 1.1.0
- react: 17.0.1
- tslib: 2.4.1
- dev: true
+ react: 17.0.2
+ dev: false
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -24647,9 +23497,9 @@ packages:
resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==}
dependencies:
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.2
has-symbols: 1.0.3
- object.getownpropertydescriptors: 2.1.7
+ object.getownpropertydescriptors: 2.1.8
dev: false
/util@0.12.5:
@@ -24671,12 +23521,13 @@ packages:
engines: {node: '>= 4'}
/utils-merge@1.0.1:
- resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
/uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
+ dev: false
/uuid@9.0.1:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
@@ -24704,7 +23555,6 @@ packages:
'@jridgewell/trace-mapping': 0.3.25
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
- dev: true
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
@@ -24738,8 +23588,8 @@ packages:
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- /vite-node@0.34.2(@types/node@20.8.5):
- resolution: {integrity: sha512-JtW249Zm3FB+F7pQfH56uWSdlltCo1IOkZW5oHBzeQo0iX4jtC7o1t9aILMGd9kVekXBP2lfJBEQt9rBh07ebA==}
+ /vite-node@0.34.6(@types/node@20.11.28):
+ resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
engines: {node: '>=v14.18.0'}
hasBin: true
dependencies:
@@ -24748,10 +23598,11 @@ packages:
mlly: 1.6.1
pathe: 1.1.2
picocolors: 1.0.0
- vite: 4.3.9(@types/node@20.8.5)
+ vite: 5.1.6(@types/node@20.11.28)
transitivePeerDependencies:
- '@types/node'
- less
+ - lightningcss
- sass
- stylus
- sugarss
@@ -24759,44 +23610,35 @@ packages:
- terser
dev: true
- /vite@4.3.9:
- resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /vite-node@1.4.0(@types/node@20.11.28):
+ resolution: {integrity: sha512-VZDAseqjrHgNd4Kh8icYHWzTKSCZMhia7GyHfhtzLW33fZlG9SwsB6CEhgyVOWkJfJ2pFLrp/Gj1FSfAiqH9Lw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
dependencies:
- esbuild: 0.17.19
- postcss: 8.4.23
- rollup: 3.29.4
- optionalDependencies:
- fsevents: 2.3.3
+ cac: 6.7.14
+ debug: 4.3.4
+ pathe: 1.1.2
+ picocolors: 1.0.0
+ vite: 5.1.6(@types/node@20.11.28)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: false
- /vite@4.3.9(@types/node@20.8.5):
- resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /vite@5.1.6(@types/node@20.11.28):
+ resolution: {integrity: sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- '@types/node': '>= 14'
+ '@types/node': ^18.0.0 || >=20.0.0
less: '*'
+ lightningcss: ^1.21.0
sass: '*'
stylus: '*'
sugarss: '*'
@@ -24806,6 +23648,8 @@ packages:
optional: true
less:
optional: true
+ lightningcss:
+ optional: true
sass:
optional: true
stylus:
@@ -24815,14 +23659,14 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.8.5
- esbuild: 0.17.19
- postcss: 8.4.35
- rollup: 3.29.4
+ '@types/node': 20.11.28
+ esbuild: 0.19.12
+ postcss: 8.4.38
+ rollup: 4.13.0
optionalDependencies:
fsevents: 2.3.3
- /vitefu@0.2.5(vite@4.3.9):
+ /vitefu@0.2.5(vite@5.1.6):
resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
@@ -24830,10 +23674,10 @@ packages:
vite:
optional: true
dependencies:
- vite: 4.3.9
+ vite: 5.1.6(@types/node@20.11.28)
- /vitest@0.34.2:
- resolution: {integrity: sha512-WgaIvBbjsSYMq/oiMlXUI7KflELmzM43BEvkdC/8b5CAod4ryAiY2z8uR6Crbi5Pjnu5oOmhKa9sy7uk6paBxQ==}
+ /vitest@0.34.6:
+ resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==}
engines: {node: '>=v14.18.0'}
hasBin: true
peerDependencies:
@@ -24863,14 +23707,14 @@ packages:
webdriverio:
optional: true
dependencies:
- '@types/chai': 4.3.12
+ '@types/chai': 4.3.14
'@types/chai-subset': 1.3.5
- '@types/node': 20.8.5
- '@vitest/expect': 0.34.2
- '@vitest/runner': 0.34.2
- '@vitest/snapshot': 0.34.2
- '@vitest/spy': 0.34.2
- '@vitest/utils': 0.34.2
+ '@types/node': 20.11.28
+ '@vitest/expect': 0.34.6
+ '@vitest/runner': 0.34.6
+ '@vitest/snapshot': 0.34.6
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
acorn: 8.11.3
acorn-walk: 8.3.2
cac: 6.7.14
@@ -24884,11 +23728,12 @@ packages:
strip-literal: 1.3.0
tinybench: 2.6.0
tinypool: 0.7.0
- vite: 4.3.9(@types/node@20.8.5)
- vite-node: 0.34.2(@types/node@20.8.5)
+ vite: 5.1.6(@types/node@20.11.28)
+ vite-node: 0.34.6(@types/node@20.11.28)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
+ - lightningcss
- sass
- stylus
- sugarss
@@ -24896,10 +23741,74 @@ packages:
- terser
dev: true
+ /vitest@1.4.0(@types/node@20.11.28)(jsdom@23.2.0):
+ resolution: {integrity: sha512-gujzn0g7fmwf83/WzrDTnncZt2UiXP41mHuFYFrdwaLRVQ6JYQEiME2IfEjU3vcFL3VKa75XhI3lFgn+hfVsQw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.4.0
+ '@vitest/ui': 1.4.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ dependencies:
+ '@types/node': 20.11.28
+ '@vitest/expect': 1.4.0
+ '@vitest/runner': 1.4.0
+ '@vitest/snapshot': 1.4.0
+ '@vitest/spy': 1.4.0
+ '@vitest/utils': 1.4.0
+ acorn-walk: 8.3.2
+ chai: 4.4.1
+ debug: 4.3.4
+ execa: 8.0.1
+ jsdom: 23.2.0
+ local-pkg: 0.5.0
+ magic-string: 0.30.8
+ pathe: 1.1.2
+ picocolors: 1.0.0
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ tinybench: 2.6.0
+ tinypool: 0.8.2
+ vite: 5.1.6(@types/node@20.11.28)
+ vite-node: 1.4.0(@types/node@20.11.28)
+ why-is-node-running: 2.2.2
+ transitivePeerDependencies:
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: false
+
/w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
dev: false
+ /w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
+ dependencies:
+ xml-name-validator: 5.0.0
+ dev: false
+
/wait-on@6.0.1:
resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==}
engines: {node: '>=10.0.0'}
@@ -24920,8 +23829,8 @@ packages:
makeerror: 1.0.12
dev: true
- /watchpack@2.4.0:
- resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
+ /watchpack@2.4.1:
+ resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
@@ -24951,10 +23860,6 @@ packages:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
- /web-worker@1.2.0:
- resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==}
- dev: false
-
/web-worker@1.3.0:
resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==}
dev: false
@@ -24962,6 +23867,11 @@ packages:
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ /webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+ dev: false
+
/webpack-bundle-analyzer@4.10.1:
resolution: {integrity: sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==}
engines: {node: '>= 10.13.0'}
@@ -24985,8 +23895,8 @@ packages:
- utf-8-validate
dev: false
- /webpack-dev-middleware@5.3.3(webpack@5.76.1):
- resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
+ /webpack-dev-middleware@5.3.4(webpack@5.91.0):
+ resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
@@ -24996,11 +23906,11 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
- /webpack-dev-server@4.15.1(webpack@5.76.1):
- resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
+ /webpack-dev-server@4.15.2(webpack@5.91.0):
+ resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==}
engines: {node: '>= 12.13.0'}
hasBin: true
peerDependencies:
@@ -25021,12 +23931,12 @@ packages:
'@types/ws': 8.5.10
ansi-html-community: 0.0.8
bonjour-service: 1.2.1
- chokidar: 3.5.3
+ chokidar: 3.6.0
colorette: 2.0.20
compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.18.3
+ express: 4.19.1
graceful-fs: 4.2.11
html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/express@4.17.21)
@@ -25040,8 +23950,8 @@ packages:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.76.1
- webpack-dev-middleware: 5.3.3(webpack@5.76.1)
+ webpack: 5.91.0
+ webpack-dev-middleware: 5.3.4(webpack@5.91.0)
ws: 8.16.0
transitivePeerDependencies:
- bufferutil
@@ -25067,8 +23977,8 @@ packages:
resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
dev: true
- /webpack@5.76.1:
- resolution: {integrity: sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==}
+ /webpack@5.91.0:
+ resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -25078,16 +23988,16 @@ packages:
optional: true
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
+ '@types/estree': 1.0.5
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.11.3
acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.0
chrome-trace-event: 1.0.3
enhanced-resolve: 5.16.0
- es-module-lexer: 0.9.3
+ es-module-lexer: 1.4.2
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -25098,15 +24008,15 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.76.1)
- watchpack: 2.4.0
+ terser-webpack-plugin: 5.3.10(webpack@5.91.0)
+ watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- /webpackbar@5.0.2(webpack@5.76.1):
+ /webpackbar@5.0.2(webpack@5.91.0):
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -25116,7 +24026,7 @@ packages:
consola: 2.15.3
pretty-time: 1.1.0
std-env: 3.7.0
- webpack: 5.76.1
+ webpack: 5.91.0
dev: false
/websocket-driver@0.7.4:
@@ -25133,6 +24043,26 @@ packages:
engines: {node: '>=0.8.0'}
dev: false
+ /whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ iconv-lite: 0.6.3
+ dev: false
+
+ /whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /whatwg-url@14.0.0:
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ engines: {node: '>=18'}
+ dependencies:
+ tr46: 5.0.0
+ webidl-conversions: 7.0.0
+ dev: false
+
/whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
@@ -25200,7 +24130,6 @@ packages:
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
- dev: true
/wide-align@1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
@@ -25331,20 +24260,6 @@ packages:
async-limiter: 1.0.1
dev: false
- /ws@6.2.2:
- resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dependencies:
- async-limiter: 1.0.1
- dev: true
-
/ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
@@ -25382,6 +24297,11 @@ packages:
sax: 1.3.0
dev: false
+ /xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+ dev: false
+
/xml2js@0.5.0:
resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
engines: {node: '>=4.0.0'}
@@ -25395,6 +24315,10 @@ packages:
engines: {node: '>=4.0'}
dev: false
+ /xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+ dev: false
+
/xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
@@ -25403,6 +24327,12 @@ packages:
resolution: {integrity: sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==}
dev: true
+ /xxhashjs@0.2.2:
+ resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==}
+ dependencies:
+ cuint: 0.2.2
+ dev: false
+
/y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
dev: true
@@ -25426,11 +24356,6 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yaml@2.3.4:
- resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
- engines: {node: '>= 14'}
- dev: false
-
/yaml@2.4.1:
resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
engines: {node: '>= 14'}
@@ -25479,13 +24404,6 @@ packages:
yargs-parser: 21.1.1
dev: true
- /yauzl@2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
- dependencies:
- buffer-crc32: 0.2.13
- fd-slicer: 1.1.0
- dev: true
-
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -25493,7 +24411,6 @@ packages:
/yocto-queue@1.0.0:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
engines: {node: '>=12.20'}
- dev: true
/zod@3.22.4:
resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index b7faa2fef3..a112bf9f4f 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,4 +1,5 @@
packages:
+ - 'packages/**/*'
- 'packages/*'
- 'sites/*'
- 'tests'
diff --git a/sites/docs/docs/components/button-group.md b/sites/docs/docs/components/button-group.md
index e94204adc9..40b013afb4 100644
--- a/sites/docs/docs/components/button-group.md
+++ b/sites/docs/docs/components/button-group.md
@@ -56,7 +56,7 @@ To see how to filter a query using a Button Group, see [Filters](/core-concepts/
value=column_name
title="Select a Category"
>
-
+
````
diff --git a/sites/docs/docs/components/fullscreen.md b/sites/docs/docs/components/fullscreen.md
new file mode 100644
index 0000000000..1e581d0896
--- /dev/null
+++ b/sites/docs/docs/components/fullscreen.md
@@ -0,0 +1,24 @@
+---
+title: Fullscreen
+sidebar_position: 30
+---
+
+
+
+```markdown
+
+
+
+```
+
+The `Fullscren` component allows you to easily create a fullscreen modal. This is useful for displaying charts or other content in a larger format. In the above example, the `BarChart` component is displayed in a fullscreen modal when the `isOpen` variable is set to `true`.
+
+## Options
+
+| Name | Description | Required? | Options | Default|
+| ---------- | ----------- | --------- |---------| -------|
+| open | Whether or not the component is open. For most use cases, this should be a binding attached to a button or similar input. | Yes | -| false
diff --git a/sites/docs/docs/core-concepts/data-sources/index.md b/sites/docs/docs/core-concepts/data-sources/index.md
index 4696107a28..20a0747770 100644
--- a/sites/docs/docs/core-concepts/data-sources/index.md
+++ b/sites/docs/docs/core-concepts/data-sources/index.md
@@ -264,6 +264,8 @@ You can find the credentials to connect to Cube on the BI Integrations page unde
### Google Sheets
+The Google Sheets data source is a plugin, you first need to [install the plugin](https://github.com/evidence-dev/datasources/tree/main/gsheets#adding-the-adapter-to-evidence).
+
Adding data from Google Sheets requires a a [service account](https://cloud.google.com/iam/docs/service-accounts).
To create a service account, see the [BigQuery instructions](#bigquery).
diff --git a/sites/docs/package.json b/sites/docs/package.json
index 3f6f48e6cc..942dc21646 100644
--- a/sites/docs/package.json
+++ b/sites/docs/package.json
@@ -32,7 +32,7 @@
"url-loader": "^4.1.1"
},
"devDependencies": {
- "typescript": "4.9.5",
+ "typescript": "5.4.2",
"webpack": "^5.76.1"
},
"browserslist": {
diff --git a/sites/docs/static/img/fullscreen.png b/sites/docs/static/img/fullscreen.png
new file mode 100644
index 0000000000..789cbafae0
Binary files /dev/null and b/sites/docs/static/img/fullscreen.png differ
diff --git a/sites/example-project/package.json b/sites/example-project/package.json
index 0db79ac545..34782cb5bc 100644
--- a/sites/example-project/package.json
+++ b/sites/example-project/package.json
@@ -18,6 +18,7 @@
"@evidence-dev/mssql": "workspace:*",
"@evidence-dev/mysql": "workspace:*",
"@evidence-dev/plugin-connector": "workspace:*",
+ "@evidence-dev/preprocess": "workspace:*",
"@evidence-dev/postgres": "workspace:*",
"@evidence-dev/query-store": "workspace:*",
"@evidence-dev/snowflake": "workspace:*",
@@ -26,10 +27,10 @@
"@evidence-dev/trino": "workspace:*",
"@evidence-dev/universal-sql": "workspace:*",
"@fontsource/spectral": "^5.0.3",
- "@steeze-ui/simple-icons": "^1.5.0",
- "@steeze-ui/svelte-icon": "^1.4.1",
- "@steeze-ui/tabler-icons": "^2.1.0",
- "@sveltejs/kit": "1.22.3",
+ "@steeze-ui/simple-icons": "^1.7.1",
+ "@steeze-ui/svelte-icon": "1.5.0",
+ "@steeze-ui/tabler-icons": "2.1.1",
+ "@sveltejs/kit": "2.5.4",
"@tidyjs/tidy": "2.5.2",
"chroma-js": "^2.4.2",
"cross-env": "^7.0.3",
@@ -45,21 +46,21 @@
"prismjs": "1.29.0",
"remark-parse": "8.0.2",
"ssf": "^0.11.2",
- "svelte": "3.59.2",
+ "svelte": "4.2.12",
"svelte-icons": "2.1.0",
- "typescript": "4.9.5",
+ "typescript": "5.4.2",
"unified": "9.1.0",
"unist-util-visit": "4.1.2"
},
"devDependencies": {
"@sveltejs/package": "2.2.7",
- "@sveltejs/vite-plugin-svelte": "^2.0.3",
+ "@sveltejs/vite-plugin-svelte": "3.0.2",
"@types/esm": "^3.2.0",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^3.3.1",
- "vite": "4.3.9"
+ "vite": "5.1.6"
}
}
diff --git a/sites/example-project/src/app.html b/sites/example-project/src/app.html
index 0a88d0ff80..13cc829bc6 100644
--- a/sites/example-project/src/app.html
+++ b/sites/example-project/src/app.html
@@ -1,4 +1,4 @@
-
+
diff --git a/sites/example-project/src/pages/api/pagesManifest.json/+server.js b/sites/example-project/src/pages/api/pagesManifest.json/+server.js
index 903c640740..dca08ec11f 100644
--- a/sites/example-project/src/pages/api/pagesManifest.json/+server.js
+++ b/sites/example-project/src/pages/api/pagesManifest.json/+server.js
@@ -54,16 +54,8 @@ export async function GET() {
let absolutePath = path.join(process.cwd(), 'src', 'pages', pagePath);
let pageContent = fs.readFileSync(absolutePath, 'utf-8');
let frontMatter = preprocess.parseFrontmatter(pageContent);
- let queries = preprocess.extractQueries(
- preprocess.injectPartials(pageContent),
- absolutePath
- );
- return (
- (r['href'] = href),
- (r['frontMatter'] = frontMatter),
- (r['queries'] = queries),
- (r['content'] = pageContent)
- );
+
+ return (r['href'] = href), (r['frontMatter'] = frontMatter);
} else {
let label = e.includes('[') ? undefined : e.replace(/_/g, ' ').replace(/-/g, ' ');
r.isTemplated = e.includes('[');
diff --git a/sites/example-project/src/pages/input-components/button-group/+page.md b/sites/example-project/src/pages/input-components/button-group/+page.md
index d59647c2d4..9a2a42e300 100644
--- a/sites/example-project/src/pages/input-components/button-group/+page.md
+++ b/sites/example-project/src/pages/input-components/button-group/+page.md
@@ -7,28 +7,26 @@ queries:
## From a Query
-
+
-
-
-{inputs.category_name}
+{inputs.first_category_name}
## With Title
-{inputs.category_name}
+{inputs.second_category_name}
## Hardcoded Options
-
+
@@ -38,7 +36,7 @@ queries:
## With a Default Value
-
+
{inputs.category_name_with_extras}
@@ -51,8 +49,8 @@ queries:
## Setting a Default Value `defaultValue=1`
-
-
+
+
@@ -75,4 +73,4 @@ from ${categories}
label=abbrev
/>
-{inputs.alternative_labels}
\ No newline at end of file
+{inputs.alternative_labels}
diff --git a/sites/example-project/src/pages/t/+page.md b/sites/example-project/src/pages/t/+page.md
new file mode 100644
index 0000000000..27506ac548
--- /dev/null
+++ b/sites/example-project/src/pages/t/+page.md
@@ -0,0 +1,16 @@
+---
+title: Hello World!!!
+queries:
+- orders_by_category: orders_by_category.sql
+---
+
+Hello World
+
+
+This page is accompanied by a `test.js` file that preprocesses it and writes the result to `page.svelte`.
+It _only_ uses the `@evidence-dev/preprocess` package, but is useful for viewing the result of the preprocessor for a given case.
+
+
+```sql test_query
+SELECT 5
+```
\ No newline at end of file
diff --git a/sites/example-project/src/pages/t/.gitignore b/sites/example-project/src/pages/t/.gitignore
new file mode 100644
index 0000000000..c253c6c0b9
--- /dev/null
+++ b/sites/example-project/src/pages/t/.gitignore
@@ -0,0 +1 @@
+page.svelte
diff --git a/sites/example-project/src/pages/t/test.js b/sites/example-project/src/pages/t/test.js
new file mode 100644
index 0000000000..ae6ac35027
--- /dev/null
+++ b/sites/example-project/src/pages/t/test.js
@@ -0,0 +1,15 @@
+import preprocess from '@evidence-dev/preprocess';
+import * as svelte from 'svelte/compiler';
+import fs from 'fs';
+import path from 'path';
+
+const dir = path.dirname(import.meta.url.substring('file://'.length));
+
+const page = fs.readFileSync(path.join(dir, '+page.md'), 'utf-8');
+
+svelte.preprocess(page, preprocess(), { filename: path.join(dir, '+page.md') }).then((output) => {
+ fs.writeFileSync(path.join(dir, 'page.svelte'), output.code);
+
+ // Checks the validity of the file
+ svelte.parse(output.code, { filename: path.join(dir, 'page.svelte') });
+});
diff --git a/sites/example-project/svelte.config.js b/sites/example-project/svelte.config.js
index c4852e98c7..f20f7138a6 100644
--- a/sites/example-project/svelte.config.js
+++ b/sites/example-project/svelte.config.js
@@ -2,17 +2,18 @@ import preprocess from 'svelte-preprocess';
import evidencePreprocess from '@evidence-dev/preprocess';
import adapter from '@sveltejs/adapter-static';
import { evidencePlugins } from '@evidence-dev/plugin-connector';
-/** @type {import('@sveltejs/kit').Config} */
-
/**
* Handles errors generated in the Svelte Vite plugin. Temporary approach until this plugin allows errors to be passed through to the browser
* @param {{ message: string }} warning - The warning object from the Svelte Vite plugin.
* @throws {Error}
*/
function errorHandler(warning) {
- throw new Error(warning.message, { cause: warning });
+ if (warning.message.includes('defined') || warning.message.includes('Empty Block')) {
+ throw new Error(warning.message, { cause: warning });
+ }
}
+/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.md'],
preprocess: [
diff --git a/sites/test-env/pages/button-range.md b/sites/test-env/pages/button-range.md
new file mode 100644
index 0000000000..e4183b6075
--- /dev/null
+++ b/sites/test-env/pages/button-range.md
@@ -0,0 +1,75 @@
+```categories
+select category from needful_things.orders group by category
+```
+
+# Button Group
+
+## From a Query
+
+
+
+{inputs.first_category_name}
+
+## With Title
+
+
+
+{inputs.second_category_name}
+
+## Hardcoded Options
+
+
+
+
+
+
+
+{inputs.option_name}
+
+
+## With a Default Value
+
+
+
+
+
+{inputs.category_name_with_extras}
+
+## Using a Preset `preset=dates`
+
+
+
+{inputs.preset_input}
+
+## Setting a Default Value `defaultValue=1`
+
+
+
+
+
+
+
+{inputs.default_value_input}
+
+## Using Alternative Labels
+
+```sql category_lookup
+select
+ category,
+ upper(left(category,3)) as abbrev
+from ${categories}
+```
+
+
+
+{inputs.alternative_labels}
diff --git a/sites/test-env/pages/categories/[category]/index.md b/sites/test-env/pages/categories/[category]/index.md
new file mode 100644
index 0000000000..27c1d03712
--- /dev/null
+++ b/sites/test-env/pages/categories/[category]/index.md
@@ -0,0 +1,19 @@
+```dates
+SELECT DISTINCT(order_month) FROM orders
+```
+
+```items
+SELECT * FROM orders WHERE category = '${params.category}' AND order_month BETWEEN '${inputs.range.start}'::DATE AND '${inputs.range.end}'::DATE - INTERVAL 7 DAY
+```
+
+```total
+SELECT SUM(sales) as total FROM ${items}
+```
+
+
+
+Sales from {inputs.range.start} to {inputs.range.end} in the category {params.category} last month were .
+
+General Overview:
+
+
diff --git a/sites/test-env/pages/categories/index.md b/sites/test-env/pages/categories/index.md
new file mode 100644
index 0000000000..658a716d39
--- /dev/null
+++ b/sites/test-env/pages/categories/index.md
@@ -0,0 +1,11 @@
+```categories
+SELECT DISTINCT(category) FROM orders
+```
+
+
+{#each categories as { category }}
+ -
+ {category}
+
+{/each}
+
diff --git a/sites/test-env/pages/fullscreen.md b/sites/test-env/pages/fullscreen.md
new file mode 100644
index 0000000000..7cc8abf78c
--- /dev/null
+++ b/sites/test-env/pages/fullscreen.md
@@ -0,0 +1,29 @@
+
+
+```orders
+SELECT * FROM orders LIMIT 1000
+```
+
+
+
+```sql items
+select
+ item,
+ sum(sales) as sales,
+from orders
+group by item
+order by sales desc
+```
+
+
+
+
+
+
diff --git a/sites/test-env/pages/single-value.md b/sites/test-env/pages/single-value.md
new file mode 100644
index 0000000000..94c132193f
--- /dev/null
+++ b/sites/test-env/pages/single-value.md
@@ -0,0 +1,28 @@
+
+
+## BigValues
+
+{#each datas as row}
+
+{/each}
+
+## Values
+
+
+{#each datas as row, i}
+ -
+ {i+1}:
+
+{/each}
+
+
+## Random DataTable
+
+
diff --git a/sites/test-env/pages/social-media/flicker.md b/sites/test-env/pages/social-media/flicker.md
index 18560dae8f..8f4b0f3212 100644
--- a/sites/test-env/pages/social-media/flicker.md
+++ b/sites/test-env/pages/social-media/flicker.md
@@ -1,19 +1,19 @@
# Flicker Reproduction
-
```sql hashtags
-SELECT * FROM hashtags
+SELECT *
+FROM hashtags
```
-{inputs.selected_tag}
-
```sql hashtag
-SELECT * FROM hashtags WHERE id = ${inputs.selected_tag}
+SELECT *
+FROM hashtags
+WHERE id = ${inputs.selected_tag}
```
diff --git a/sites/test-env/pages/source-hmr.md b/sites/test-env/pages/source-hmr.md
deleted file mode 100644
index dce20b7008..0000000000
--- a/sites/test-env/pages/source-hmr.md
+++ /dev/null
@@ -1,5 +0,0 @@
-```orders
-SELECT * FROM orders
-```
-
-