diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
new file mode 100644
index 0000000..e23e35f
--- /dev/null
+++ b/.github/workflows/checks.yml
@@ -0,0 +1,62 @@
+name: Checks
+
+on:
+ pull_request:
+ push:
+ branches:
+ - main
+
+jobs:
+ checks:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Read Node version from mise.toml
+ id: node
+ run: echo "version=$(grep -E '^node\s*=' mise.toml | sed -E 's/.*"([^"]+)".*/\1/')" >> "$GITHUB_OUTPUT"
+
+ - name: Install package manager (from package.json)
+ run: |
+ corepack enable
+ corepack install
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: ${{ steps.node.outputs.version }}
+
+ - name: Resolve yarn cache folder
+ id: yarn-config
+ run: echo "cacheFolder=$(yarn config get cacheFolder)" >> "$GITHUB_OUTPUT"
+
+ - name: Restore yarn install cache (node_modules + cacheFolder + install-state)
+ id: yarn-cache
+ uses: actions/cache@v4
+ with:
+ path: |
+ node_modules
+ ${{ steps.yarn-config.outputs.cacheFolder }}
+ .yarn/install-state.gz
+ key: yarn-${{ runner.os }}-node${{ steps.node.outputs.version }}-${{ hashFiles('yarn.lock') }}
+ restore-keys: |
+ yarn-${{ runner.os }}-node${{ steps.node.outputs.version }}-
+
+ - name: Install deps
+ env:
+ YARN_ENABLE_HARDENED_MODE: 'false'
+ run: |
+ case "$(yarn --version)" in 1.*) echo 'expected up-to-date yarn version'; exit 1 ;; esac
+ yarn install --immutable
+
+ - name: Format
+ run: yarn format:check
+
+ - name: Lint
+ run: yarn lint
+
+ - name: Typecheck
+ run: yarn typecheck
+
+ - name: Test
+ run: yarn coverage
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 65207d7..ac479d6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Install rust deps
run: |
@@ -23,11 +23,7 @@ jobs:
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install rust toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
+ uses: dtolnay/rust-toolchain@stable
- name: Cache
uses: swatinem/rust-cache@v2
@@ -36,10 +32,7 @@ jobs:
shared-key: ${{ runner.os }}-base
- name: Cargo check
- uses: actions-rs/cargo@v1
- with:
- command: check
- args: --manifest-path ./src-tauri/Cargo.toml
+ run: cargo check --manifest-path ./src-tauri/Cargo.toml
testRust:
name: Test Rust
@@ -48,7 +41,7 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Install rust deps
run: |
@@ -56,11 +49,7 @@ jobs:
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install rust toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
+ uses: dtolnay/rust-toolchain@stable
- name: Cache
uses: swatinem/rust-cache@v2
@@ -69,22 +58,18 @@ jobs:
shared-key: ${{ runner.os }}-test
- name: Cargo test
- uses: actions-rs/cargo@v1
- with:
- command: test
- args: --manifest-path ./src-tauri/Cargo.toml
+ run: cargo test --manifest-path ./src-tauri/Cargo.toml
testTypescript:
name: Test Typescript
runs-on: ubuntu-22.04
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Read Node version from mise.toml
id: node
- run:
- echo "version=$(grep -E '^node\\s*=' mise.toml | sed -E 's/.*"([^"]+)".*/\\1/')" >>
+ run: echo "version=$(grep -E '^node\\s*=' mise.toml | sed -E 's/.*"([^"]+)".*/\\1/')" >>
"$GITHUB_OUTPUT"
- name: Install package manager (from package.json)
@@ -130,7 +115,7 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Install rust deps
run: |
@@ -138,20 +123,13 @@ jobs:
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install rust toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
+ uses: dtolnay/rust-toolchain@stable
- name: Install rustfmt
run: rustup component add rustfmt
- name: Cargo fmt
- uses: actions-rs/cargo@v1
- with:
- command: fmt
- args: --manifest-path ./src-tauri/Cargo.toml --all -- --check
+ run: cargo fmt --manifest-path ./src-tauri/Cargo.toml --all -- --check
clippy:
name: Clippy
@@ -160,7 +138,7 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Install rust deps
run: |
@@ -168,11 +146,7 @@ jobs:
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install rust toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
+ uses: dtolnay/rust-toolchain@stable
- name: Install clippy
run: rustup component add clippy
@@ -184,7 +158,4 @@ jobs:
shared-key: ${{ runner.os }}-base
- name: Cargo clippy
- uses: actions-rs/cargo@v1
- with:
- command: clippy
- args: --manifest-path ./src-tauri/Cargo.toml -- -D warnings
+ run: cargo clippy --manifest-path ./src-tauri/Cargo.toml -- -D warnings
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 6a70b03..bf3ac92 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -14,13 +14,12 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- name: Read Node version from mise.toml
id: node
shell: bash
- run:
- echo "version=$(grep -E '^node\\s*=' mise.toml | sed -E 's/.*"([^"]+)".*/\\1/')" >>
+ run: echo "version=$(grep -E '^node\\s*=' mise.toml | sed -E 's/.*"([^"]+)".*/\\1/')" >>
"$GITHUB_OUTPUT"
- name: Install package manager (from package.json)
@@ -33,9 +32,7 @@ jobs:
node-version: ${{ steps.node.outputs.version }}
- name: Rust setup
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
+ uses: dtolnay/rust-toolchain@stable
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
diff --git a/.husky/pre-commit b/.husky/pre-commit
new file mode 100755
index 0000000..01e5b18
--- /dev/null
+++ b/.husky/pre-commit
@@ -0,0 +1,14 @@
+#!/usr/bin/env sh
+yarn lint-staged
+yarn typecheck
+
+# Tauri/Rust check only when src-tauri files are staged.
+if git diff --cached --name-only --diff-filter=ACM | grep -qE '^src-tauri/.+\.(rs|toml)$|^src-tauri/Cargo\.lock$'; then
+ if command -v cargo >/dev/null 2>&1; then
+ (cd src-tauri && cargo check)
+ fi
+fi
+
+if command -v gitleaks >/dev/null 2>&1; then
+ gitleaks protect --staged --no-banner --redact
+fi
diff --git a/.oxfmtrc.json b/.oxfmtrc.json
new file mode 100644
index 0000000..63fd1a7
--- /dev/null
+++ b/.oxfmtrc.json
@@ -0,0 +1,16 @@
+{
+ "semi": false,
+ "singleQuote": true,
+ "trailingComma": "all",
+ "printWidth": 100,
+ "proseWrap": "preserve",
+ "sortPackageJson": false,
+ "ignorePatterns": [
+ "**/node_modules/**",
+ "**/dist/**",
+ "**/build/**",
+ "**/coverage/**",
+ "**/.yarn/**",
+ "src-tauri/target/**"
+ ]
+}
diff --git a/.oxlintrc.json b/.oxlintrc.json
new file mode 100644
index 0000000..0ecb5b8
--- /dev/null
+++ b/.oxlintrc.json
@@ -0,0 +1,58 @@
+{
+ "$schema": "./node_modules/oxlint/configuration_schema.json",
+ "plugins": ["typescript", "react", "vitest", "jsx-a11y", "unicorn", "oxc"],
+ "categories": {
+ "correctness": "error",
+ "suspicious": "error",
+ "perf": "error"
+ },
+ "rules": {
+ "vitest/require-mock-type-parameters": "off",
+ "vitest/valid-title": "off",
+ "typescript/no-explicit-any": "warn",
+ "typescript/ban-ts-comment": "off",
+ "typescript/no-extraneous-class": "off",
+ "react/react-in-jsx-scope": "off",
+ "no-bitwise": "off",
+ "no-shadow": "off",
+ "no-empty-pattern": "off",
+ "no-await-in-loop": "off",
+ "unicorn/consistent-function-scoping": "off",
+ "unicorn/no-array-sort": "off",
+ "unicorn/prefer-set-has": "off",
+ "oxc/no-map-spread": "warn",
+ "react-hooks/exhaustive-deps": "warn",
+ "jsx-a11y/no-static-element-interactions": "warn",
+ "jsx-a11y/click-events-have-key-events": "warn",
+ "jsx-a11y/anchor-is-valid": "warn"
+ },
+ "overrides": [
+ {
+ "files": ["**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"],
+ "rules": {
+ "typescript/no-explicit-any": "off",
+ "no-unused-vars": "off"
+ }
+ },
+ {
+ "files": ["src/init.ts"],
+ "rules": {
+ "no-extend-native": "off"
+ }
+ }
+ ],
+ "env": {
+ "browser": true,
+ "node": true,
+ "es2024": true,
+ "vitest/globals": true
+ },
+ "ignorePatterns": [
+ "**/node_modules/**",
+ "**/dist/**",
+ "**/build/**",
+ "**/coverage/**",
+ "**/.yarn/**",
+ "src-tauri/**"
+ ]
+}
diff --git a/.yarnrc.yml b/.yarnrc.yml
index 9d44707..e002c33 100644
--- a/.yarnrc.yml
+++ b/.yarnrc.yml
@@ -1,5 +1,5 @@
approvedGitRepositories:
- - "**"
+ - '**'
compressionLevel: mixed
@@ -7,5 +7,4 @@ enableGlobalCache: false
enableHardenedMode: false
-
nodeLinker: node-modules
diff --git a/README.md b/README.md
index e3ee216..d697f57 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,21 @@
# Webber's Map Editor 2D
- Load or create a new map
-- Select your sprites' folder (recursively).
+- Select your sprites' folder (recursively).
- Drag your sprites to the canvas to create instances.
- On the canvas, adjust instances:
- - ๐ Name
+ - ๐ Name
- ๐ชง Position (x, y)
- ๐ Z-Index
- ๐ Rotation
- ๐ Scale
- Save map as a JSON file (includes relative paths to the files).
-[//]: # ( Possible future features )
-[//]: # ( - Flip)
-[//]: # ( - Color)
-[//]: # ( - Opacity)
-[//]: # ( - Blend mode)
+[//]: # ' Possible future features '
+[//]: # ' - Flip'
+[//]: # ' - Color'
+[//]: # ' - Opacity'
+[//]: # ' - Blend mode'
## Demo
@@ -23,7 +23,7 @@ https://user-images.githubusercontent.com/20756439/198751508-4094773d-8660-42f8-
## Limitations
-- Currently only works with files in your home directory, for your own security.
+- Currently only works with files in your home directory, for your own security.
_Limitations will be lifted in [v2](https://github.com/webbertakken/map-editor-2d/issues/10)._
diff --git a/index.html b/index.html
index 86e8126..4ba83ee 100644
--- a/index.html
+++ b/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/mise.toml b/mise.toml
index 19efa19..dcd76de 100644
--- a/mise.toml
+++ b/mise.toml
@@ -1,3 +1,6 @@
[tools]
node = "20.11.1"
yarn = "4.14.1"
+actionlint = "latest"
+shellcheck = "latest"
+gitleaks = "latest"
diff --git a/package.json b/package.json
index 53c15e5..78f3166 100644
--- a/package.json
+++ b/package.json
@@ -4,16 +4,33 @@
"version": "1.0.0",
"type": "module",
"scripts": {
- "dev": "tauri dev",
+ "dev": "node scripts/ensure-husky.mjs && tauri dev",
"build": "tauri build --debug",
"preview": "vite preview",
"clippy": "cargo clippy --manifest-path ./src-tauri/Cargo.toml -- -D warnings",
"tauri": "tauri",
- "test": "echo \"No tests specified\" && exit 0",
- "cargo-test": "cd src-tauri && cargo test && cd ..",
- "step-ci-test": "echo \"No tests specified\" && exit 0",
+ "test": "node scripts/ensure-husky.mjs && vitest run",
+ "test:watch": "vitest",
+ "coverage": "vitest run --coverage",
+ "cargo-test": "cd src-tauri && cargo test",
+ "step-ci-test": "yarn coverage",
"step-rust-dev": "vite",
- "step-rust-build": "tsc && vite build"
+ "step-rust-build": "tsgo --noEmit && vite build",
+ "lint": "yarn oxlint --report-unused-disable-directives",
+ "format": "oxfmt --write",
+ "format:check": "oxfmt --check",
+ "typecheck": "tsgo --noEmit",
+ "typecheck:tsc": "tsc --noEmit",
+ "setup:hooks": "node scripts/ensure-husky.mjs",
+ "prepare": "husky"
+ },
+ "lint-staged": {
+ "*.@(ts|tsx|mts|js|jsx|mjs|cjs)": [
+ "oxlint --fix --quiet",
+ "oxfmt --write"
+ ],
+ "*.@(json|jsonc|json5|md|mdx|yaml|yml|css|scss|sass|html|toml)": "oxfmt --write",
+ ".github/workflows/*.@(yml|yaml)": "actionlint"
},
"dependencies": {
"@tauri-apps/api": "^1.1.0",
@@ -33,21 +50,37 @@
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.0",
+ "@testing-library/jest-dom": "^6.9.1",
+ "@testing-library/react": "^16.3.2",
"@types/lodash": "^4.14.186",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
- "@types/react-modal": "^3.13.1",
+ "@types/react-modal": "^3.16.3",
"@types/semver": "^7.3.12",
"@types/uuid": "^8.3.4",
- "@vitejs/plugin-react": "^2.0.0",
- "typescript": "^4.6.4",
- "vite": "^3.0.2"
+ "@typescript/native-preview": "^7.0.0-dev.20260505.1",
+ "@vitejs/plugin-react-swc": "^4.3.0",
+ "@vitest/coverage-istanbul": "^3",
+ "eslint": "^10.3.0",
+ "eslint-plugin-unicorn": "^64.0.0",
+ "happy-dom": "^20.9.0",
+ "husky": "9",
+ "lint-staged": "^16.4.0",
+ "oxfmt": "^0.48.0",
+ "oxlint": "^1.63.0",
+ "typescript": "^5",
+ "vite": "^6",
+ "vitest": "^3"
},
"packageManager": "yarn@4.14.1",
"dependenciesMeta": {
"esbuild": {
"built": true
}
+ },
+ "resolutions": {
+ "@types/react": "^18",
+ "@types/react-dom": "^18"
}
}
diff --git a/scripts/ensure-husky.mjs b/scripts/ensure-husky.mjs
new file mode 100755
index 0000000..ada6323
--- /dev/null
+++ b/scripts/ensure-husky.mjs
@@ -0,0 +1,55 @@
+#!/usr/bin/env node
+// Self-heals husky git hooks before local dev workflows.
+//
+// Why this exists: Yarn 4 skips lifecycle scripts (`prepare`, `postinstall`) on
+// no-op installs, so `yarn install --immutable` does NOT reinstall hooks once
+// `.husky/_/` has been wiped. `.husky/_/` is gitignored, so it is also missing
+// in fresh worktrees and after `git clean -fdx`. Without this guard, commits
+// silently skip the pre-commit hook (git treats a missing hook file as "no hook").
+//
+// Behaviour: ~20 ms no-op when hooks are already installed. Skipped in CI and
+// when HUSKY=0. Fails loudly (non-zero exit) on real install errors so the
+// caller stops before commits are made without hooks.
+
+import { execSync } from 'node:child_process'
+import { existsSync } from 'node:fs'
+
+if (process.env.CI || process.env.HUSKY === '0') process.exit(0)
+
+const expectedHooksPath = '.husky/_'
+const sentinelHook = '.husky/_/pre-commit'
+// husky 9.1+ ships bin.js; husky 9.0 ships bin.mjs. Try both.
+const huskyBin = ['node_modules/husky/bin.js', 'node_modules/husky/bin.mjs'].find(existsSync)
+
+let configuredHooksPath = ''
+try {
+ configuredHooksPath = execSync('git config --get core.hooksPath', {
+ encoding: 'utf8',
+ stdio: ['ignore', 'pipe', 'ignore'],
+ }).trim()
+} catch {
+ // not a git repo or config unset โ fall through and try to install
+}
+
+if (configuredHooksPath === expectedHooksPath && existsSync(sentinelHook)) {
+ process.exit(0)
+}
+
+if (!huskyBin) {
+ // husky not installed yet (yarn install hasn't run) โ silent no-op
+ process.exit(0)
+}
+
+console.log('ยท installing git hooks (husky self-heal)โฆ')
+try {
+ execSync(`node ${huskyBin}`, { stdio: 'inherit' })
+} catch (error) {
+ const message = error instanceof Error ? error.message : String(error)
+ console.error(
+ `\nโ husky install failed: ${message}\n\n` +
+ ` git pre-commit hooks are NOT installed; commits will skip lint/format/tests.\n` +
+ ` Fix the underlying error above, then run \`yarn setup:hooks\` to retry.\n` +
+ ` To bypass this guard temporarily (NOT recommended): HUSKY=0 yarn .\n`,
+ )
+ process.exit(1)
+}
diff --git a/src/components/atoms/ExternalLink.tsx b/src/components/atoms/ExternalLink.tsx
index df7a591..50be82b 100644
--- a/src/components/atoms/ExternalLink.tsx
+++ b/src/components/atoms/ExternalLink.tsx
@@ -5,7 +5,7 @@ interface Props {
href: string
}
-const ExternalLink = ({ title, href }: Props): JSX.Element => {
+const ExternalLink = ({ title, href: _href }: Props): JSX.Element => {
return (
{
+ // eslint-disable-next-line no-unused-vars -- ref-style binding written by react-modal
let subtitle: HTMLHeadingElement | null
function openModal() {
diff --git a/src/components/canvas/Canvas.tsx b/src/components/canvas/Canvas.tsx
index 6afdca0..f3c02f7 100644
--- a/src/components/canvas/Canvas.tsx
+++ b/src/components/canvas/Canvas.tsx
@@ -57,7 +57,7 @@ export const Canvas = () => {
dragAndDropRef.current = null
}
- const onClick = (e: Konva.KonvaEventObject) => {
+ const onClick = (_e: Konva.KonvaEventObject) => {
setSelectedSpriteIds([])
}
diff --git a/src/components/canvas/objects/CanvasSprite.tsx b/src/components/canvas/objects/CanvasSprite.tsx
index e2b91f3..bb33b04 100644
--- a/src/components/canvas/objects/CanvasSprite.tsx
+++ b/src/components/canvas/objects/CanvasSprite.tsx
@@ -1,5 +1,5 @@
import useImage from 'use-image'
-import { Image as KonvaImage, Transformer } from 'react-konva'
+import { Image as KonvaImage } from 'react-konva'
import React, { useEffect } from 'react'
import { KonvaNodeEvents } from 'react-konva/ReactKonvaCore'
import { ImageConfig } from 'konva/lib/shapes/Image'
@@ -41,7 +41,7 @@ export const CanvasSprite = ({ id, ...props }: Props) => {
setSpriteMeta((meta) => ({ ...meta, spriteWidth: width, spriteHeight: height }))
}, [width, height])
- const onDragStart = (e: Konva.KonvaEventObject) => {
+ const onDragStart = (_e: Konva.KonvaEventObject) => {
setSpriteMeta((meta) => ({ ...meta, isDragging: true }))
}
@@ -74,7 +74,7 @@ export const CanvasSprite = ({ id, ...props }: Props) => {
}
}
- const onTransformEnd = (e: Konva.KonvaEventObject) => {
+ const onTransformEnd = (_e: Konva.KonvaEventObject) => {
const node = ref.current
if (!node) return
diff --git a/src/components/menu/scene/SaveScene.tsx b/src/components/menu/scene/SaveScene.tsx
index d25383b..8cc3c79 100644
--- a/src/components/menu/scene/SaveScene.tsx
+++ b/src/components/menu/scene/SaveScene.tsx
@@ -1,7 +1,6 @@
import React, { useEffect } from 'react'
import {
isSceneLoadedState,
- isSceneOpenState,
sceneAbsoluteFilePath,
sceneFileDataSelector,
} from '../../../state/SceneState'
diff --git a/src/components/sidebars/inspector/InspectorSection.tsx b/src/components/sidebars/inspector/InspectorSection.tsx
index c2f95ce..ed62f5c 100644
--- a/src/components/sidebars/inspector/InspectorSection.tsx
+++ b/src/components/sidebars/inspector/InspectorSection.tsx
@@ -1,4 +1,4 @@
-import React, { HTMLInputTypeAttribute } from 'react'
+import React from 'react'
import { useRecoilState, useRecoilValue } from 'recoil'
import {
selectedSpriteIdsState,
diff --git a/src/core/observable.test.ts b/src/core/observable.test.ts
new file mode 100644
index 0000000..8c399da
--- /dev/null
+++ b/src/core/observable.test.ts
@@ -0,0 +1,56 @@
+import { describe, expect, it, vi } from 'vitest'
+
+import { createObservable } from './observable'
+
+describe('createObservable', () => {
+ it('returns a frozen observable with notify/subscribe/unsubscribe', () => {
+ const obs = createObservable()
+ expect(typeof obs.notify).toBe('function')
+ expect(typeof obs.subscribe).toBe('function')
+ expect(typeof obs.unsubscribe).toBe('function')
+ expect(Object.isFrozen(obs)).toBe(true)
+ })
+
+ it('notify forwards the value and id to every subscribed listener', () => {
+ const obs = createObservable()
+ const a = vi.fn()
+ const b = vi.fn()
+ obs.subscribe(a)
+ obs.subscribe(b)
+ obs.notify('payload', 'event-1')
+ expect(a).toHaveBeenCalledWith('payload', 'event-1')
+ expect(b).toHaveBeenCalledWith('payload', 'event-1')
+ })
+
+ it('does nothing when notify is called with no subscribers', () => {
+ const obs = createObservable()
+ expect(() => obs.notify(1, 'x')).not.toThrow()
+ })
+
+ it('unsubscribe stops a specific listener from receiving future notifications', () => {
+ const obs = createObservable()
+ const keep = vi.fn()
+ const drop = vi.fn()
+ obs.subscribe(keep)
+ obs.subscribe(drop)
+ obs.unsubscribe(drop)
+ obs.notify(42, 'event')
+ expect(keep).toHaveBeenCalledWith(42, 'event')
+ expect(drop).not.toHaveBeenCalled()
+ })
+
+ it('unsubscribing an unknown listener is a no-op', () => {
+ const obs = createObservable()
+ const stranger = vi.fn()
+ expect(() => obs.unsubscribe(stranger)).not.toThrow()
+ })
+
+ it('the same listener subscribed twice receives notifications twice', () => {
+ const obs = createObservable()
+ const fn = vi.fn()
+ obs.subscribe(fn)
+ obs.subscribe(fn)
+ obs.notify(1, 'event')
+ expect(fn).toHaveBeenCalledTimes(2)
+ })
+})
diff --git a/src/hooks/useGlobalHotkeys.ts b/src/hooks/useGlobalHotkeys.ts
index eb64a06..568b2f1 100644
--- a/src/hooks/useGlobalHotkeys.ts
+++ b/src/hooks/useGlobalHotkeys.ts
@@ -12,7 +12,8 @@ export function useGlobalHotkeys() {
const deactivate = () => setActive(false)
useEffect(() => {
- active ? hotkeys.activate() : hotkeys.deactivate()
+ if (active) hotkeys.activate()
+ else hotkeys.deactivate()
}, [active])
return [activate, deactivate, active] as const
diff --git a/src/model/AssetPath.test.ts b/src/model/AssetPath.test.ts
new file mode 100644
index 0000000..2cbaaea
--- /dev/null
+++ b/src/model/AssetPath.test.ts
@@ -0,0 +1,43 @@
+import { describe, expect, it } from 'vitest'
+
+import { AssetPath } from './AssetPath'
+
+describe('AssetPath.isInsideScenePath', () => {
+ it('returns true when assets are in the same directory as the scene file', () => {
+ expect(AssetPath.isInsideScenePath('/project/scene.json', '/project/sprite.png')).toBe(true)
+ })
+
+ it('returns true when assets are nested under the scene directory', () => {
+ expect(AssetPath.isInsideScenePath('/project/scene.json', '/project/assets/sprite.png')).toBe(
+ true,
+ )
+ })
+
+ it('returns false when assets live outside the scene directory', () => {
+ expect(AssetPath.isInsideScenePath('/project/scene.json', '/elsewhere/sprite.png')).toBe(false)
+ })
+})
+
+describe('AssetPath.toRelative', () => {
+ it('returns an empty string when the asset is at the scene path itself', () => {
+ expect(AssetPath.toRelative('/project', '/project')).toBe('')
+ })
+
+ it('strips the scene path prefix to produce a relative path', () => {
+ expect(AssetPath.toRelative('/project', '/project/assets/sprite.png')).toBe('assets/sprite.png')
+ })
+
+ it('strips leading slashes from the resulting relative path', () => {
+ expect(AssetPath.toRelative('/project', '/project/sprite.png')).toBe('sprite.png')
+ })
+})
+
+describe('AssetPath.toAbsolute', () => {
+ it('joins the scene absolute path with the asset relative path', () => {
+ expect(AssetPath.toAbsolute('/project', 'assets/sprite.png')).toBe('/project/assets/sprite.png')
+ })
+
+ it('handles an empty relative path (asset directly in the scene dir)', () => {
+ expect(AssetPath.toAbsolute('/project', '')).toBe('/project/')
+ })
+})
diff --git a/src/state/SceneState.ts b/src/state/SceneState.ts
index ea53c82..911e4c1 100644
--- a/src/state/SceneState.ts
+++ b/src/state/SceneState.ts
@@ -31,7 +31,7 @@ export const sceneAbsoluteFilePath = selector({
export const isSceneLoadedState = selector({
key: 'hasLoadedScene',
get: ({ get }) => get(sceneMetaState).hasLoaded,
- set: ({ set, get }, hasLoaded) => {
+ set: ({ set }, hasLoaded) => {
set(sceneMetaState, (oldValue) => {
if (hasLoaded instanceof DefaultValue) {
return { ...oldValue, hasLoaded: false }
diff --git a/src/test/setup.ts b/src/test/setup.ts
new file mode 100644
index 0000000..a9d0dd3
--- /dev/null
+++ b/src/test/setup.ts
@@ -0,0 +1 @@
+import '@testing-library/jest-dom/vitest'
diff --git a/tsconfig.json b/tsconfig.json
index 3d0a51a..a777cbe 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,21 +1,23 @@
{
"compilerOptions": {
- "target": "ESNext",
+ "target": "es2022",
"useDefineForClassFields": true,
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
+ "lib": ["DOM", "DOM.Iterable", "esnext"],
"allowJs": false,
"skipLibCheck": true,
- "esModuleInterop": false,
+ "esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "Node",
+ "module": "esnext",
+ "moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
- "jsx": "react-jsx"
+ "jsx": "react-jsx",
+ "types": ["node", "vitest/globals"]
},
"include": ["src"],
+ "exclude": ["node_modules", "dist", "src-tauri"],
"references": [{ "path": "./tsconfig.node.json" }]
}
diff --git a/vite.config.ts b/vite.config.ts
index db75d21..7eb05f9 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,5 +1,5 @@
-import { defineConfig } from "vite";
-import react from "@vitejs/plugin-react";
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
@@ -15,13 +15,13 @@ export default defineConfig({
},
// to make use of `TAURI_DEBUG` and other env variables
// https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
- envPrefix: ["VITE_", "TAURI_"],
+ envPrefix: ['VITE_', 'TAURI_'],
build: {
// Tauri supports es2021
- target: ["es2021", "chrome100", "safari13"],
+ target: ['es2021', 'chrome100', 'safari13'],
// don't minify for debug builds
- minify: !process.env.TAURI_DEBUG ? "esbuild" : false,
+ minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
// produce sourcemaps for debug builds
sourcemap: !!process.env.TAURI_DEBUG,
},
-});
+})
diff --git a/vitest.config.mts b/vitest.config.mts
new file mode 100644
index 0000000..032c6ee
--- /dev/null
+++ b/vitest.config.mts
@@ -0,0 +1,19 @@
+import react from '@vitejs/plugin-react-swc'
+import { defineConfig } from 'vitest/config'
+
+export default defineConfig({
+ plugins: [react()],
+ test: {
+ environment: 'happy-dom',
+ setupFiles: ['./src/test/setup.ts'],
+ globals: false,
+ include: ['src/**/*.test.ts', 'src/**/*.test.tsx'],
+ exclude: ['**/node_modules/**', '**/dist/**', '**/src-tauri/**'],
+ coverage: {
+ provider: 'istanbul',
+ reporter: ['text', 'html', 'lcov'],
+ include: ['src/core/**/*.ts', 'src/model/**/*.ts'],
+ exclude: ['src/**/*.test.ts'],
+ },
+ },
+})
diff --git a/yarn.lock b/yarn.lock
index 5cceeea..22c4bcc 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5,6 +5,13 @@ __metadata:
version: 9
cacheKey: 10
+"@adobe/css-tools@npm:^4.4.0":
+ version: 4.4.4
+ resolution: "@adobe/css-tools@npm:4.4.4"
+ checksum: 10/0abd4715737877e5aa5d730d6ec2cffae2131102ddc8310ac5ba3f457ffb2ef453324dbb5b927e3cbc3f81bdd29ce485754014c6e64f4577a49540c76e26ac6b
+ languageName: node
+ linkType: hard
+
"@babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
@@ -23,7 +30,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/core@npm:^7.19.6":
+"@babel/core@npm:^7.23.9":
version: 7.29.0
resolution: "@babel/core@npm:7.29.0"
dependencies:
@@ -59,15 +66,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-annotate-as-pure@npm:^7.27.3":
- version: 7.27.3
- resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
- dependencies:
- "@babel/types": "npm:^7.27.3"
- checksum: 10/63863a5c936ef82b546ca289c9d1b18fabfc24da5c4ee382830b124e2e79b68d626207febc8d4bffc720f50b2ee65691d7d12cc0308679dee2cd6bdc926b7190
- languageName: node
- linkType: hard
-
"@babel/helper-compilation-targets@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
@@ -111,13 +109,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.28.6":
- version: 7.28.6
- resolution: "@babel/helper-plugin-utils@npm:7.28.6"
- checksum: 10/21c853bbc13dbdddf03309c9a0477270124ad48989e1ad6524b83e83a77524b333f92edd2caae645c5a7ecf264ec6d04a9ebe15aeb54c7f33c037b71ec521e4a
- languageName: node
- linkType: hard
-
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
@@ -149,7 +140,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0":
+"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0":
version: 7.29.3
resolution: "@babel/parser@npm:7.29.3"
dependencies:
@@ -160,62 +151,10 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-jsx@npm:^7.28.6":
- version: 7.28.6
- resolution: "@babel/plugin-syntax-jsx@npm:7.28.6"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.28.6"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10/572e38f5c1bb4b8124300e7e3dd13e82ae84a21f90d3f0786c98cd05e63c78ca1f32d1cfe462dfbaf5e7d5102fa7cd8fd741dfe4f3afc2e01a3b2877dcc8c866
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-react-jsx-development@npm:^7.18.6":
- version: 7.27.1
- resolution: "@babel/plugin-transform-react-jsx-development@npm:7.27.1"
- dependencies:
- "@babel/plugin-transform-react-jsx": "npm:^7.27.1"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10/b88865d5b8c018992f2332da939faa15c4d4a864c9435a5937beaff3fe43781432cc42e0a5d5631098e0bd4066fc33f5fa72203b388b074c3545fe7aaa21e474
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-react-jsx-self@npm:^7.18.6":
- version: 7.27.1
- resolution: "@babel/plugin-transform-react-jsx-self@npm:7.27.1"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.27.1"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10/72cbae66a58c6c36f7e12e8ed79f292192d858dd4bb00e9e89d8b695e4c5cb6ef48eec84bffff421a5db93fd10412c581f1cccdb00264065df76f121995bdb68
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-react-jsx-source@npm:^7.19.6":
- version: 7.27.1
- resolution: "@babel/plugin-transform-react-jsx-source@npm:7.27.1"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.27.1"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10/e2843362adb53692be5ee9fa07a386d2d8883daad2063a3575b3c373fc14cdf4ea7978c67a183cb631b4c9c8d77b2f48c24c088f8e65cc3600cb8e97d72a7161
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-react-jsx@npm:^7.19.0, @babel/plugin-transform-react-jsx@npm:^7.27.1":
- version: 7.28.6
- resolution: "@babel/plugin-transform-react-jsx@npm:7.28.6"
- dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.27.3"
- "@babel/helper-module-imports": "npm:^7.28.6"
- "@babel/helper-plugin-utils": "npm:^7.28.6"
- "@babel/plugin-syntax-jsx": "npm:^7.28.6"
- "@babel/types": "npm:^7.28.6"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10/c6eade7309f0710b6aac9e747f8c3305633801c035a35efc5e2436742cc466e457ed5848d3dd5dade36e34332cfc50ac92d69a33f7803d66ae2d72f13a76c3bc
+"@babel/runtime@npm:^7.12.5":
+ version: 7.29.2
+ resolution: "@babel/runtime@npm:7.29.2"
+ checksum: 10/f55ba4052aa0255055b34371a145fbe69c29b37b49eaea14805b095bfb4153701486416e89392fd27ec8abafa53868be86e960b9f8f959fff91f2c8ac2a14b02
languageName: node
linkType: hard
@@ -245,7 +184,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.27.3, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0":
+"@babel/types@npm:^7.25.4, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
@@ -255,323 +194,1788 @@ __metadata:
languageName: node
linkType: hard
-"@esbuild/android-arm@npm:0.15.18":
- version: 0.15.18
- resolution: "@esbuild/android-arm@npm:0.15.18"
- conditions: os=android & cpu=arm
+"@esbuild/aix-ppc64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/aix-ppc64@npm:0.25.12"
+ conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
-"@esbuild/linux-loong64@npm:0.15.18":
- version: 0.15.18
- resolution: "@esbuild/linux-loong64@npm:0.15.18"
- conditions: os=linux & cpu=loong64
+"@esbuild/aix-ppc64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/aix-ppc64@npm:0.27.7"
+ conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
-"@isaacs/fs-minipass@npm:^4.0.0":
- version: 4.0.1
- resolution: "@isaacs/fs-minipass@npm:4.0.1"
- dependencies:
- minipass: "npm:^7.0.4"
- checksum: 10/4412e9e6713c89c1e66d80bb0bb5a2a93192f10477623a27d08f228ba0316bb880affabc5bfe7f838f58a34d26c2c190da726e576cdfc18c49a72e89adabdcf5
+"@esbuild/android-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/android-arm64@npm:0.25.12"
+ conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5":
- version: 0.3.13
- resolution: "@jridgewell/gen-mapping@npm:0.3.13"
- dependencies:
- "@jridgewell/sourcemap-codec": "npm:^1.5.0"
- "@jridgewell/trace-mapping": "npm:^0.3.24"
- checksum: 10/902f8261dcf450b4af7b93f9656918e02eec80a2169e155000cb2059f90113dd98f3ccf6efc6072cee1dd84cac48cade51da236972d942babc40e4c23da4d62a
+"@esbuild/android-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/android-arm64@npm:0.27.7"
+ conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@jridgewell/remapping@npm:^2.3.5":
- version: 2.3.5
- resolution: "@jridgewell/remapping@npm:2.3.5"
- dependencies:
- "@jridgewell/gen-mapping": "npm:^0.3.5"
- "@jridgewell/trace-mapping": "npm:^0.3.24"
- checksum: 10/c2bb01856e65b506d439455f28aceacf130d6c023d1d4e3b48705e88def3571753e1a887daa04b078b562316c92d26ce36408a60534bceca3f830aec88a339ad
+"@esbuild/android-arm@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/android-arm@npm:0.25.12"
+ conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@jridgewell/resolve-uri@npm:^3.1.0":
- version: 3.1.2
- resolution: "@jridgewell/resolve-uri@npm:3.1.2"
- checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
+"@esbuild/android-arm@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/android-arm@npm:0.27.7"
+ conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
- version: 1.5.5
- resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
- checksum: 10/5d9d207b462c11e322d71911e55e21a4e2772f71ffe8d6f1221b8eb5ae6774458c1d242f897fb0814e8714ca9a6b498abfa74dfe4f434493342902b1a48b33a5
+"@esbuild/android-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/android-x64@npm:0.25.12"
+ conditions: os=android & cpu=x64
languageName: node
linkType: hard
-"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.28":
- version: 0.3.31
- resolution: "@jridgewell/trace-mapping@npm:0.3.31"
- dependencies:
- "@jridgewell/resolve-uri": "npm:^3.1.0"
- "@jridgewell/sourcemap-codec": "npm:^1.4.14"
- checksum: 10/da0283270e691bdb5543806077548532791608e52386cfbbf3b9e8fb00457859d1bd01d512851161c886eb3a2f3ce6fd9bcf25db8edf3bddedd275bd4a88d606
+"@esbuild/android-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/android-x64@npm:0.27.7"
+ conditions: os=android & cpu=x64
languageName: node
linkType: hard
-"@tauri-apps/api@npm:^1.1.0":
- version: 1.6.0
- resolution: "@tauri-apps/api@npm:1.6.0"
- checksum: 10/98015a9391587baac9970aaa52d47fe7dd9a552d4332e4e9702a83f2da0e4aa88493d5d97929dc1cfda436038a8bd61070651ec2b82da5ab761edcca277038e6
+"@esbuild/darwin-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/darwin-arm64@npm:0.25.12"
+ conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@tauri-apps/cli-darwin-arm64@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-darwin-arm64@npm:1.6.3"
+"@esbuild/darwin-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/darwin-arm64@npm:0.27.7"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@tauri-apps/cli-darwin-x64@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-darwin-x64@npm:1.6.3"
+"@esbuild/darwin-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/darwin-x64@npm:0.25.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@tauri-apps/cli-linux-arm-gnueabihf@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-linux-arm-gnueabihf@npm:1.6.3"
- conditions: os=linux & cpu=arm
+"@esbuild/darwin-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/darwin-x64@npm:0.27.7"
+ conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@tauri-apps/cli-linux-arm64-gnu@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-linux-arm64-gnu@npm:1.6.3"
- conditions: os=linux & cpu=arm64 & libc=glibc
+"@esbuild/freebsd-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/freebsd-arm64@npm:0.25.12"
+ conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@tauri-apps/cli-linux-arm64-musl@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-linux-arm64-musl@npm:1.6.3"
- conditions: os=linux & cpu=arm64 & libc=musl
+"@esbuild/freebsd-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/freebsd-arm64@npm:0.27.7"
+ conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@tauri-apps/cli-linux-x64-gnu@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-linux-x64-gnu@npm:1.6.3"
- conditions: os=linux & cpu=x64 & libc=glibc
+"@esbuild/freebsd-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/freebsd-x64@npm:0.25.12"
+ conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@tauri-apps/cli-linux-x64-musl@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-linux-x64-musl@npm:1.6.3"
- conditions: os=linux & cpu=x64 & libc=musl
+"@esbuild/freebsd-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/freebsd-x64@npm:0.27.7"
+ conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@tauri-apps/cli-win32-arm64-msvc@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-win32-arm64-msvc@npm:1.6.3"
- conditions: os=win32 & cpu=arm64
+"@esbuild/linux-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-arm64@npm:0.25.12"
+ conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
-"@tauri-apps/cli-win32-ia32-msvc@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-win32-ia32-msvc@npm:1.6.3"
- conditions: os=win32 & cpu=ia32
+"@esbuild/linux-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-arm64@npm:0.27.7"
+ conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
-"@tauri-apps/cli-win32-x64-msvc@npm:1.6.3":
- version: 1.6.3
- resolution: "@tauri-apps/cli-win32-x64-msvc@npm:1.6.3"
- conditions: os=win32 & cpu=x64
+"@esbuild/linux-arm@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-arm@npm:0.25.12"
+ conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@tauri-apps/cli@npm:^1.1.0":
- version: 1.6.3
- resolution: "@tauri-apps/cli@npm:1.6.3"
- dependencies:
- "@tauri-apps/cli-darwin-arm64": "npm:1.6.3"
- "@tauri-apps/cli-darwin-x64": "npm:1.6.3"
- "@tauri-apps/cli-linux-arm-gnueabihf": "npm:1.6.3"
- "@tauri-apps/cli-linux-arm64-gnu": "npm:1.6.3"
- "@tauri-apps/cli-linux-arm64-musl": "npm:1.6.3"
- "@tauri-apps/cli-linux-x64-gnu": "npm:1.6.3"
- "@tauri-apps/cli-linux-x64-musl": "npm:1.6.3"
- "@tauri-apps/cli-win32-arm64-msvc": "npm:1.6.3"
- "@tauri-apps/cli-win32-ia32-msvc": "npm:1.6.3"
- "@tauri-apps/cli-win32-x64-msvc": "npm:1.6.3"
- semver: "npm:>=7.5.2"
- dependenciesMeta:
- "@tauri-apps/cli-darwin-arm64":
- optional: true
- "@tauri-apps/cli-darwin-x64":
- optional: true
- "@tauri-apps/cli-linux-arm-gnueabihf":
- optional: true
- "@tauri-apps/cli-linux-arm64-gnu":
- optional: true
- "@tauri-apps/cli-linux-arm64-musl":
- optional: true
- "@tauri-apps/cli-linux-x64-gnu":
- optional: true
- "@tauri-apps/cli-linux-x64-musl":
- optional: true
- "@tauri-apps/cli-win32-arm64-msvc":
- optional: true
- "@tauri-apps/cli-win32-ia32-msvc":
- optional: true
- "@tauri-apps/cli-win32-x64-msvc":
- optional: true
- bin:
- tauri: tauri.js
- checksum: 10/b02b2814cd232c2ba4e5dbdfe97aea306dd950fa8fd741b263bd391bd6eaba92b9e0cc2c3b2046cb3eef9a9fa439957386cbc95b890beba702cfc18734b54819
+"@esbuild/linux-arm@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-arm@npm:0.27.7"
+ conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@types/lodash@npm:^4.14.186":
- version: 4.17.24
- resolution: "@types/lodash@npm:4.17.24"
- checksum: 10/0f2082565f60f9787eefc046edc38458054512be5a8b3584ef0bad5fd9e85d0ab55ec5a1fbfae1ed6ba015cf1f9e837d5fb4da1f99fc60b8f74b2a46146fb00f
+"@esbuild/linux-ia32@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-ia32@npm:0.25.12"
+ conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
-"@types/node@npm:^18.7.10":
- version: 18.19.130
- resolution: "@types/node@npm:18.19.130"
- dependencies:
- undici-types: "npm:~5.26.4"
- checksum: 10/ebb85c6edcec78df926de27d828ecbeb1b3d77c165ceef95bfc26e171edbc1924245db4eb2d7d6230206fe6b1a1f7665714fe1c70739e9f5980d8ce31af6ef82
+"@esbuild/linux-ia32@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-ia32@npm:0.27.7"
+ conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
-"@types/prop-types@npm:*":
- version: 15.7.15
- resolution: "@types/prop-types@npm:15.7.15"
- checksum: 10/31aa2f59b28f24da6fb4f1d70807dae2aedfce090ec63eaf9ea01727a9533ef6eaf017de5bff99fbccad7d1c9e644f52c6c2ba30869465dd22b1a7221c29f356
+"@esbuild/linux-loong64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-loong64@npm:0.25.12"
+ conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
-"@types/react-dom@npm:^18.0.6":
- version: 18.3.7
- resolution: "@types/react-dom@npm:18.3.7"
- peerDependencies:
- "@types/react": ^18.0.0
- checksum: 10/317569219366d487a3103ba1e5e47154e95a002915fdcf73a44162c48fe49c3a57fcf7f57fc6979e70d447112681e6b13c6c3c1df289db8b544df4aab2d318f3
+"@esbuild/linux-loong64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-loong64@npm:0.27.7"
+ conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
-"@types/react-modal@npm:^3.13.1":
- version: 3.16.3
- resolution: "@types/react-modal@npm:3.16.3"
- dependencies:
- "@types/react": "npm:*"
- checksum: 10/9622d1983ade28864a85baffcf068722b24f02ac3ec1485dab6a9005a2e0b2f8af78f860be494523d90ba5e182744d1151461a4cc42120a32ed57ec3b7a4cab9
+"@esbuild/linux-mips64el@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-mips64el@npm:0.25.12"
+ conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
-"@types/react-reconciler@npm:^0.28.0, @types/react-reconciler@npm:^0.28.2":
- version: 0.28.9
- resolution: "@types/react-reconciler@npm:0.28.9"
- peerDependencies:
- "@types/react": "*"
- checksum: 10/2450e3df6169fb887591f2a949ca8f08439ac76c756124feeee7370f1a79b5060ba8e5f612302dc70169433e043da7f617dd7ea3b14a3c2bb39559d66b7a0986
+"@esbuild/linux-mips64el@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-mips64el@npm:0.27.7"
+ conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
-"@types/react@npm:*":
- version: 19.2.14
- resolution: "@types/react@npm:19.2.14"
- dependencies:
- csstype: "npm:^3.2.2"
- checksum: 10/fbff239089ee64b6bd9b00543594db498278b06de527ef1b0f71bb0eb09cc4445a71b5dd3c0d3d0257255c4eed94406be40a74ad4a987ade8a8d5dd65c82bc5f
+"@esbuild/linux-ppc64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-ppc64@npm:0.25.12"
+ conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
-"@types/react@npm:^18.0.15":
- version: 18.3.28
- resolution: "@types/react@npm:18.3.28"
- dependencies:
- "@types/prop-types": "npm:*"
- csstype: "npm:^3.2.2"
- checksum: 10/6db7bb7f19957ee9f530baa7d143527f8befedad1585b064eb80777be0d84621157de75aba4f499ff429b10c5ef0c7d13e89be6bca3296ef71c80472894ff0eb
+"@esbuild/linux-ppc64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-ppc64@npm:0.27.7"
+ conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
-"@types/semver@npm:^7.3.12":
- version: 7.7.1
- resolution: "@types/semver@npm:7.7.1"
- checksum: 10/8f09e7e6ca3ded67d78ba7a8f7535c8d9cf8ced83c52e7f3ac3c281fe8c689c3fe475d199d94390dc04fc681d51f2358b430bb7b2e21c62de24f2bee2c719068
+"@esbuild/linux-riscv64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-riscv64@npm:0.25.12"
+ conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
-"@types/uuid@npm:^8.3.4":
- version: 8.3.4
- resolution: "@types/uuid@npm:8.3.4"
- checksum: 10/6f11f3ff70f30210edaa8071422d405e9c1d4e53abbe50fdce365150d3c698fe7bbff65c1e71ae080cbfb8fded860dbb5e174da96fdbbdfcaa3fb3daa474d20f
+"@esbuild/linux-riscv64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-riscv64@npm:0.27.7"
+ conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
-"@vitejs/plugin-react@npm:^2.0.0":
- version: 2.2.0
- resolution: "@vitejs/plugin-react@npm:2.2.0"
- dependencies:
- "@babel/core": "npm:^7.19.6"
- "@babel/plugin-transform-react-jsx": "npm:^7.19.0"
- "@babel/plugin-transform-react-jsx-development": "npm:^7.18.6"
- "@babel/plugin-transform-react-jsx-self": "npm:^7.18.6"
- "@babel/plugin-transform-react-jsx-source": "npm:^7.19.6"
- magic-string: "npm:^0.26.7"
- react-refresh: "npm:^0.14.0"
- peerDependencies:
- vite: ^3.0.0
- checksum: 10/743c40dd2a84b73ddb28bc5ea9bdb5871ea5f4a917d67eb8bd5e794b5762ece31cdb74632ffd54313b54d2587a8708558104b8d1646fb296beffc2d266fa3741
+"@esbuild/linux-s390x@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-s390x@npm:0.25.12"
+ conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
-"abbrev@npm:^4.0.0":
- version: 4.0.0
- resolution: "abbrev@npm:4.0.0"
- checksum: 10/e2f0c6a6708ad738b3e8f50233f4800de31ad41a6cdc50e0cbe51b76fed69fd0213516d92c15ce1a9985fca71a14606a9be22bf00f8475a58987b9bfb671c582
+"@esbuild/linux-s390x@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-s390x@npm:0.27.7"
+ conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
-"base64-js@npm:^1.3.1":
- version: 1.5.1
- resolution: "base64-js@npm:1.5.1"
- checksum: 10/669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005
+"@esbuild/linux-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-x64@npm:0.25.12"
+ conditions: os=linux & cpu=x64
languageName: node
linkType: hard
-"baseline-browser-mapping@npm:^2.10.12":
- version: 2.10.27
- resolution: "baseline-browser-mapping@npm:2.10.27"
- bin:
- baseline-browser-mapping: dist/cli.cjs
- checksum: 10/4f28c994592d92ab70479f6fb802c219922a72876e20001a39ae0a0d2fef8c86197ebc830c32c23be3a7ee99e5eababf992c0883461ef5af56a075e8c66079ee
+"@esbuild/linux-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/linux-x64@npm:0.27.7"
+ conditions: os=linux & cpu=x64
languageName: node
linkType: hard
-"browserslist@npm:^4.24.0":
- version: 4.28.2
- resolution: "browserslist@npm:4.28.2"
- dependencies:
- baseline-browser-mapping: "npm:^2.10.12"
- caniuse-lite: "npm:^1.0.30001782"
- electron-to-chromium: "npm:^1.5.328"
- node-releases: "npm:^2.0.36"
+"@esbuild/netbsd-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/netbsd-arm64@npm:0.25.12"
+ conditions: os=netbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/netbsd-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/netbsd-arm64@npm:0.27.7"
+ conditions: os=netbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/netbsd-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/netbsd-x64@npm:0.25.12"
+ conditions: os=netbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/netbsd-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/netbsd-x64@npm:0.27.7"
+ conditions: os=netbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openbsd-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/openbsd-arm64@npm:0.25.12"
+ conditions: os=openbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openbsd-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/openbsd-arm64@npm:0.27.7"
+ conditions: os=openbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openbsd-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/openbsd-x64@npm:0.25.12"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openbsd-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/openbsd-x64@npm:0.27.7"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openharmony-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/openharmony-arm64@npm:0.25.12"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openharmony-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/openharmony-arm64@npm:0.27.7"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/sunos-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/sunos-x64@npm:0.25.12"
+ conditions: os=sunos & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/sunos-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/sunos-x64@npm:0.27.7"
+ conditions: os=sunos & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/win32-arm64@npm:0.25.12"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-arm64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/win32-arm64@npm:0.27.7"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-ia32@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/win32-ia32@npm:0.25.12"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-ia32@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/win32-ia32@npm:0.27.7"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/win32-x64@npm:0.25.12"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-x64@npm:0.27.7":
+ version: 0.27.7
+ resolution: "@esbuild/win32-x64@npm:0.27.7"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@eslint-community/eslint-utils@npm:^4.8.0, @eslint-community/eslint-utils@npm:^4.9.1":
+ version: 4.9.1
+ resolution: "@eslint-community/eslint-utils@npm:4.9.1"
+ dependencies:
+ eslint-visitor-keys: "npm:^3.4.3"
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ checksum: 10/863b5467868551c9ae34d03eefe634633d08f623fc7b19d860f8f26eb6f303c1a5934253124163bee96181e45ed22bf27473dccc295937c3078493a4a8c9eddd
+ languageName: node
+ linkType: hard
+
+"@eslint-community/regexpp@npm:^4.12.2":
+ version: 4.12.2
+ resolution: "@eslint-community/regexpp@npm:4.12.2"
+ checksum: 10/049b280fddf71dd325514e0a520024969431dc3a8b02fa77476e6820e9122f28ab4c9168c11821f91a27982d2453bcd7a66193356ea84e84fb7c8d793be1ba0c
+ languageName: node
+ linkType: hard
+
+"@eslint/config-array@npm:^0.23.5":
+ version: 0.23.5
+ resolution: "@eslint/config-array@npm:0.23.5"
+ dependencies:
+ "@eslint/object-schema": "npm:^3.0.5"
+ debug: "npm:^4.3.1"
+ minimatch: "npm:^10.2.4"
+ checksum: 10/0e05be2b5c8b9f9fb8094948fd2d35591a32091b9d39205181f2ed9bec0e2c8b2969f019f40a0388755a025408b98929e2d0beccb4fbd6609c1c0d6c9e9a14f0
+ languageName: node
+ linkType: hard
+
+"@eslint/config-helpers@npm:^0.5.5":
+ version: 0.5.5
+ resolution: "@eslint/config-helpers@npm:0.5.5"
+ dependencies:
+ "@eslint/core": "npm:^1.2.1"
+ checksum: 10/19072449502b928a716df87b2d9b13c7befb21974b0f93fdbea705ddba098792142808105170ef2183c28ce13ac9fa1713ef0599749f8469434ac2b914fc8f4d
+ languageName: node
+ linkType: hard
+
+"@eslint/core@npm:^1.2.1":
+ version: 1.2.1
+ resolution: "@eslint/core@npm:1.2.1"
+ dependencies:
+ "@types/json-schema": "npm:^7.0.15"
+ checksum: 10/e1f9f5534f495b74a4c13c372e8f2feaf0c67f5dd666111c849c97c221d4ba730c98333a2ca94dd28cd7c24e3b1016bd868ca03c42e070732c047053f854cb13
+ languageName: node
+ linkType: hard
+
+"@eslint/object-schema@npm:^3.0.5":
+ version: 3.0.5
+ resolution: "@eslint/object-schema@npm:3.0.5"
+ checksum: 10/42e9ec2551d7cafe1825f20494576c9a867dfd26e728b66620f55d954cd5c4c9c4987755d147893985b8d39b49dace31117e59e7bc9564eb411b397e579a50e7
+ languageName: node
+ linkType: hard
+
+"@eslint/plugin-kit@npm:^0.7.1":
+ version: 0.7.1
+ resolution: "@eslint/plugin-kit@npm:0.7.1"
+ dependencies:
+ "@eslint/core": "npm:^1.2.1"
+ levn: "npm:^0.4.1"
+ checksum: 10/8f923f4cdadadd215e0c2028e6a53101bb148a7780cdb4dc8cd69b0c77fc88496742e87e0605b12905ff715e2c7ad6cbd2d92c5653cdbf91cca1e229b5022c1f
+ languageName: node
+ linkType: hard
+
+"@humanfs/core@npm:^0.19.2":
+ version: 0.19.2
+ resolution: "@humanfs/core@npm:0.19.2"
+ dependencies:
+ "@humanfs/types": "npm:^0.15.0"
+ checksum: 10/c6c0273721ec8df3d36a57c390a11a168d0a2f513d78bceb25165bded4fcb73609b1a317edc6c8f331cefd4b47285dde0b1e6679e08ef7f062232ec14fe05312
+ languageName: node
+ linkType: hard
+
+"@humanfs/node@npm:^0.16.6":
+ version: 0.16.8
+ resolution: "@humanfs/node@npm:0.16.8"
+ dependencies:
+ "@humanfs/core": "npm:^0.19.2"
+ "@humanfs/types": "npm:^0.15.0"
+ "@humanwhocodes/retry": "npm:^0.4.0"
+ checksum: 10/ed01b3c066d9cec7526d139b9e71ca00ee4a30b3b5f5f5c198eb069c3509a3e167e180ba7e1e5a83b9571e906c4908bd20402b47586887452311af7354995e95
+ languageName: node
+ linkType: hard
+
+"@humanfs/types@npm:^0.15.0":
+ version: 0.15.0
+ resolution: "@humanfs/types@npm:0.15.0"
+ checksum: 10/dea3cc7fd8f8d4d088ed8d0a9921cf12bd8e1cdf40a6133106b03a6e2aebcc9a6f1771b3643b7ec71baae90d08245db34069dfcc861da8d678662741e6c3c986
+ languageName: node
+ linkType: hard
+
+"@humanwhocodes/module-importer@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "@humanwhocodes/module-importer@npm:1.0.1"
+ checksum: 10/e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
+ languageName: node
+ linkType: hard
+
+"@humanwhocodes/retry@npm:^0.4.0, @humanwhocodes/retry@npm:^0.4.2":
+ version: 0.4.3
+ resolution: "@humanwhocodes/retry@npm:0.4.3"
+ checksum: 10/0b32cfd362bea7a30fbf80bb38dcaf77fee9c2cae477ee80b460871d03590110ac9c77d654f04ec5beaf71b6f6a89851bdf6c1e34ccdf2f686bd86fcd97d9e61
+ languageName: node
+ linkType: hard
+
+"@isaacs/cliui@npm:^8.0.2":
+ version: 8.0.2
+ resolution: "@isaacs/cliui@npm:8.0.2"
+ dependencies:
+ string-width: "npm:^5.1.2"
+ string-width-cjs: "npm:string-width@^4.2.0"
+ strip-ansi: "npm:^7.0.1"
+ strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
+ wrap-ansi: "npm:^8.1.0"
+ wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
+ checksum: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
+ languageName: node
+ linkType: hard
+
+"@isaacs/fs-minipass@npm:^4.0.0":
+ version: 4.0.1
+ resolution: "@isaacs/fs-minipass@npm:4.0.1"
+ dependencies:
+ minipass: "npm:^7.0.4"
+ checksum: 10/4412e9e6713c89c1e66d80bb0bb5a2a93192f10477623a27d08f228ba0316bb880affabc5bfe7f838f58a34d26c2c190da726e576cdfc18c49a72e89adabdcf5
+ languageName: node
+ linkType: hard
+
+"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3":
+ version: 0.1.6
+ resolution: "@istanbuljs/schema@npm:0.1.6"
+ checksum: 10/966e1a80b0e52170d4b3b9fa75e1aa5f2cf01138416c828c249dcfc75706a32b13022dc8d06b7aab6ea6a80b63927d3e546ad04f005188fef20b3d2cbbf2b229
+ languageName: node
+ linkType: hard
+
+"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5":
+ version: 0.3.13
+ resolution: "@jridgewell/gen-mapping@npm:0.3.13"
+ dependencies:
+ "@jridgewell/sourcemap-codec": "npm:^1.5.0"
+ "@jridgewell/trace-mapping": "npm:^0.3.24"
+ checksum: 10/902f8261dcf450b4af7b93f9656918e02eec80a2169e155000cb2059f90113dd98f3ccf6efc6072cee1dd84cac48cade51da236972d942babc40e4c23da4d62a
+ languageName: node
+ linkType: hard
+
+"@jridgewell/remapping@npm:^2.3.5":
+ version: 2.3.5
+ resolution: "@jridgewell/remapping@npm:2.3.5"
+ dependencies:
+ "@jridgewell/gen-mapping": "npm:^0.3.5"
+ "@jridgewell/trace-mapping": "npm:^0.3.24"
+ checksum: 10/c2bb01856e65b506d439455f28aceacf130d6c023d1d4e3b48705e88def3571753e1a887daa04b078b562316c92d26ce36408a60534bceca3f830aec88a339ad
+ languageName: node
+ linkType: hard
+
+"@jridgewell/resolve-uri@npm:^3.1.0":
+ version: 3.1.2
+ resolution: "@jridgewell/resolve-uri@npm:3.1.2"
+ checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
+ languageName: node
+ linkType: hard
+
+"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
+ version: 1.5.5
+ resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
+ checksum: 10/5d9d207b462c11e322d71911e55e21a4e2772f71ffe8d6f1221b8eb5ae6774458c1d242f897fb0814e8714ca9a6b498abfa74dfe4f434493342902b1a48b33a5
+ languageName: node
+ linkType: hard
+
+"@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.28":
+ version: 0.3.31
+ resolution: "@jridgewell/trace-mapping@npm:0.3.31"
+ dependencies:
+ "@jridgewell/resolve-uri": "npm:^3.1.0"
+ "@jridgewell/sourcemap-codec": "npm:^1.4.14"
+ checksum: 10/da0283270e691bdb5543806077548532791608e52386cfbbf3b9e8fb00457859d1bd01d512851161c886eb3a2f3ce6fd9bcf25db8edf3bddedd275bd4a88d606
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-android-arm-eabi@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-android-arm-eabi@npm:0.48.0"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-android-arm64@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-android-arm64@npm:0.48.0"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-darwin-arm64@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-darwin-arm64@npm:0.48.0"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-darwin-x64@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-darwin-x64@npm:0.48.0"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-freebsd-x64@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-freebsd-x64@npm:0.48.0"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-arm-gnueabihf@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-arm-gnueabihf@npm:0.48.0"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-arm-musleabihf@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-arm-musleabihf@npm:0.48.0"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-arm64-gnu@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-arm64-gnu@npm:0.48.0"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-arm64-musl@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-arm64-musl@npm:0.48.0"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-ppc64-gnu@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-ppc64-gnu@npm:0.48.0"
+ conditions: os=linux & cpu=ppc64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-riscv64-gnu@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-riscv64-gnu@npm:0.48.0"
+ conditions: os=linux & cpu=riscv64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-riscv64-musl@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-riscv64-musl@npm:0.48.0"
+ conditions: os=linux & cpu=riscv64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-s390x-gnu@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-s390x-gnu@npm:0.48.0"
+ conditions: os=linux & cpu=s390x & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-x64-gnu@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-x64-gnu@npm:0.48.0"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-linux-x64-musl@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-linux-x64-musl@npm:0.48.0"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-openharmony-arm64@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-openharmony-arm64@npm:0.48.0"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-win32-arm64-msvc@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-win32-arm64-msvc@npm:0.48.0"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-win32-ia32-msvc@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-win32-ia32-msvc@npm:0.48.0"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@oxfmt/binding-win32-x64-msvc@npm:0.48.0":
+ version: 0.48.0
+ resolution: "@oxfmt/binding-win32-x64-msvc@npm:0.48.0"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-android-arm-eabi@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-android-arm-eabi@npm:1.63.0"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-android-arm64@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-android-arm64@npm:1.63.0"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-darwin-arm64@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-darwin-arm64@npm:1.63.0"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-darwin-x64@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-darwin-x64@npm:1.63.0"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-freebsd-x64@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-freebsd-x64@npm:1.63.0"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-arm-gnueabihf@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-arm-gnueabihf@npm:1.63.0"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-arm-musleabihf@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-arm-musleabihf@npm:1.63.0"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-arm64-gnu@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-arm64-gnu@npm:1.63.0"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-arm64-musl@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-arm64-musl@npm:1.63.0"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-ppc64-gnu@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-ppc64-gnu@npm:1.63.0"
+ conditions: os=linux & cpu=ppc64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-riscv64-gnu@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-riscv64-gnu@npm:1.63.0"
+ conditions: os=linux & cpu=riscv64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-riscv64-musl@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-riscv64-musl@npm:1.63.0"
+ conditions: os=linux & cpu=riscv64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-s390x-gnu@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-s390x-gnu@npm:1.63.0"
+ conditions: os=linux & cpu=s390x & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-x64-gnu@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-x64-gnu@npm:1.63.0"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-linux-x64-musl@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-linux-x64-musl@npm:1.63.0"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-openharmony-arm64@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-openharmony-arm64@npm:1.63.0"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-win32-arm64-msvc@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-win32-arm64-msvc@npm:1.63.0"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-win32-ia32-msvc@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-win32-ia32-msvc@npm:1.63.0"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@oxlint/binding-win32-x64-msvc@npm:1.63.0":
+ version: 1.63.0
+ resolution: "@oxlint/binding-win32-x64-msvc@npm:1.63.0"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@pkgjs/parseargs@npm:^0.11.0":
+ version: 0.11.0
+ resolution: "@pkgjs/parseargs@npm:0.11.0"
+ checksum: 10/115e8ceeec6bc69dff2048b35c0ab4f8bbee12d8bb6c1f4af758604586d802b6e669dcb02dda61d078de42c2b4ddce41b3d9e726d7daa6b4b850f4adbf7333ff
+ languageName: node
+ linkType: hard
+
+"@rolldown/pluginutils@npm:1.0.0-rc.7":
+ version: 1.0.0-rc.7
+ resolution: "@rolldown/pluginutils@npm:1.0.0-rc.7"
+ checksum: 10/92853a53b75d665da0b4cc3f855c87e606dda6b8d55e929fd08b4428b68ea833afbb140ba25c6c1f9856a739e419fd2929ef15ac0fd05b44e904705be34efe1f
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-android-arm-eabi@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.60.3"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-android-arm64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-android-arm64@npm:4.60.3"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-darwin-arm64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.60.3"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-darwin-x64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-darwin-x64@npm:4.60.3"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-freebsd-arm64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.60.3"
+ conditions: os=freebsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-freebsd-x64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.60.3"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-arm-gnueabihf@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.60.3"
+ conditions: os=linux & cpu=arm & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-arm-musleabihf@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.60.3"
+ conditions: os=linux & cpu=arm & libc=musl
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-arm64-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.60.3"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-arm64-musl@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.60.3"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-loong64-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.60.3"
+ conditions: os=linux & cpu=loong64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-loong64-musl@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-loong64-musl@npm:4.60.3"
+ conditions: os=linux & cpu=loong64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-ppc64-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.60.3"
+ conditions: os=linux & cpu=ppc64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-ppc64-musl@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.60.3"
+ conditions: os=linux & cpu=ppc64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-riscv64-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.60.3"
+ conditions: os=linux & cpu=riscv64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-riscv64-musl@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.60.3"
+ conditions: os=linux & cpu=riscv64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-s390x-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.60.3"
+ conditions: os=linux & cpu=s390x & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-x64-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.60.3"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-linux-x64-musl@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.60.3"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-openbsd-x64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-openbsd-x64@npm:4.60.3"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-openharmony-arm64@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-openharmony-arm64@npm:4.60.3"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-win32-arm64-msvc@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.60.3"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-win32-ia32-msvc@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.60.3"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-win32-x64-gnu@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-win32-x64-gnu@npm:4.60.3"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@rollup/rollup-win32-x64-msvc@npm:4.60.3":
+ version: 4.60.3
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.60.3"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@swc/core-darwin-arm64@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-darwin-arm64@npm:1.15.33"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@swc/core-darwin-x64@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-darwin-x64@npm:1.15.33"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-arm-gnueabihf@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.33"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-arm64-gnu@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-arm64-gnu@npm:1.15.33"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-arm64-musl@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-arm64-musl@npm:1.15.33"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-ppc64-gnu@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.33"
+ conditions: os=linux & cpu=ppc64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-s390x-gnu@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-s390x-gnu@npm:1.15.33"
+ conditions: os=linux & cpu=s390x & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-x64-gnu@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-x64-gnu@npm:1.15.33"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@swc/core-linux-x64-musl@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-linux-x64-musl@npm:1.15.33"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@swc/core-win32-arm64-msvc@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-win32-arm64-msvc@npm:1.15.33"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@swc/core-win32-ia32-msvc@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-win32-ia32-msvc@npm:1.15.33"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@swc/core-win32-x64-msvc@npm:1.15.33":
+ version: 1.15.33
+ resolution: "@swc/core-win32-x64-msvc@npm:1.15.33"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@swc/core@npm:^1.15.11":
+ version: 1.15.33
+ resolution: "@swc/core@npm:1.15.33"
+ dependencies:
+ "@swc/core-darwin-arm64": "npm:1.15.33"
+ "@swc/core-darwin-x64": "npm:1.15.33"
+ "@swc/core-linux-arm-gnueabihf": "npm:1.15.33"
+ "@swc/core-linux-arm64-gnu": "npm:1.15.33"
+ "@swc/core-linux-arm64-musl": "npm:1.15.33"
+ "@swc/core-linux-ppc64-gnu": "npm:1.15.33"
+ "@swc/core-linux-s390x-gnu": "npm:1.15.33"
+ "@swc/core-linux-x64-gnu": "npm:1.15.33"
+ "@swc/core-linux-x64-musl": "npm:1.15.33"
+ "@swc/core-win32-arm64-msvc": "npm:1.15.33"
+ "@swc/core-win32-ia32-msvc": "npm:1.15.33"
+ "@swc/core-win32-x64-msvc": "npm:1.15.33"
+ "@swc/counter": "npm:^0.1.3"
+ "@swc/types": "npm:^0.1.26"
+ peerDependencies:
+ "@swc/helpers": ">=0.5.17"
+ dependenciesMeta:
+ "@swc/core-darwin-arm64":
+ optional: true
+ "@swc/core-darwin-x64":
+ optional: true
+ "@swc/core-linux-arm-gnueabihf":
+ optional: true
+ "@swc/core-linux-arm64-gnu":
+ optional: true
+ "@swc/core-linux-arm64-musl":
+ optional: true
+ "@swc/core-linux-ppc64-gnu":
+ optional: true
+ "@swc/core-linux-s390x-gnu":
+ optional: true
+ "@swc/core-linux-x64-gnu":
+ optional: true
+ "@swc/core-linux-x64-musl":
+ optional: true
+ "@swc/core-win32-arm64-msvc":
+ optional: true
+ "@swc/core-win32-ia32-msvc":
+ optional: true
+ "@swc/core-win32-x64-msvc":
+ optional: true
+ peerDependenciesMeta:
+ "@swc/helpers":
+ optional: true
+ checksum: 10/825e3660d762465327a5c59d62f220dfad45849923a11d84d93a336691315078e4ca51c3e2958e04d9e5e227800e3e23e5458747398d05ec15ca6778716febb9
+ languageName: node
+ linkType: hard
+
+"@swc/counter@npm:^0.1.3":
+ version: 0.1.3
+ resolution: "@swc/counter@npm:0.1.3"
+ checksum: 10/df8f9cfba9904d3d60f511664c70d23bb323b3a0803ec9890f60133954173047ba9bdeabce28cd70ba89ccd3fd6c71c7b0bd58be85f611e1ffbe5d5c18616598
+ languageName: node
+ linkType: hard
+
+"@swc/types@npm:^0.1.26":
+ version: 0.1.26
+ resolution: "@swc/types@npm:0.1.26"
+ dependencies:
+ "@swc/counter": "npm:^0.1.3"
+ checksum: 10/07de03b9da3928cdf69bda70bf2c809dd86f16ef23e357759e577bbd975529cb20218c2e54e72b00585abae2b5e04e39b8947cea7a6f4de2d40a7633be441919
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/api@npm:^1.1.0":
+ version: 1.6.0
+ resolution: "@tauri-apps/api@npm:1.6.0"
+ checksum: 10/98015a9391587baac9970aaa52d47fe7dd9a552d4332e4e9702a83f2da0e4aa88493d5d97929dc1cfda436038a8bd61070651ec2b82da5ab761edcca277038e6
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-darwin-arm64@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-darwin-arm64@npm:1.6.3"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-darwin-x64@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-darwin-x64@npm:1.6.3"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-linux-arm-gnueabihf@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-linux-arm-gnueabihf@npm:1.6.3"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-linux-arm64-gnu@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-linux-arm64-gnu@npm:1.6.3"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-linux-arm64-musl@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-linux-arm64-musl@npm:1.6.3"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-linux-x64-gnu@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-linux-x64-gnu@npm:1.6.3"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-linux-x64-musl@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-linux-x64-musl@npm:1.6.3"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-win32-arm64-msvc@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-win32-arm64-msvc@npm:1.6.3"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-win32-ia32-msvc@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-win32-ia32-msvc@npm:1.6.3"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli-win32-x64-msvc@npm:1.6.3":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli-win32-x64-msvc@npm:1.6.3"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@tauri-apps/cli@npm:^1.1.0":
+ version: 1.6.3
+ resolution: "@tauri-apps/cli@npm:1.6.3"
+ dependencies:
+ "@tauri-apps/cli-darwin-arm64": "npm:1.6.3"
+ "@tauri-apps/cli-darwin-x64": "npm:1.6.3"
+ "@tauri-apps/cli-linux-arm-gnueabihf": "npm:1.6.3"
+ "@tauri-apps/cli-linux-arm64-gnu": "npm:1.6.3"
+ "@tauri-apps/cli-linux-arm64-musl": "npm:1.6.3"
+ "@tauri-apps/cli-linux-x64-gnu": "npm:1.6.3"
+ "@tauri-apps/cli-linux-x64-musl": "npm:1.6.3"
+ "@tauri-apps/cli-win32-arm64-msvc": "npm:1.6.3"
+ "@tauri-apps/cli-win32-ia32-msvc": "npm:1.6.3"
+ "@tauri-apps/cli-win32-x64-msvc": "npm:1.6.3"
+ semver: "npm:>=7.5.2"
+ dependenciesMeta:
+ "@tauri-apps/cli-darwin-arm64":
+ optional: true
+ "@tauri-apps/cli-darwin-x64":
+ optional: true
+ "@tauri-apps/cli-linux-arm-gnueabihf":
+ optional: true
+ "@tauri-apps/cli-linux-arm64-gnu":
+ optional: true
+ "@tauri-apps/cli-linux-arm64-musl":
+ optional: true
+ "@tauri-apps/cli-linux-x64-gnu":
+ optional: true
+ "@tauri-apps/cli-linux-x64-musl":
+ optional: true
+ "@tauri-apps/cli-win32-arm64-msvc":
+ optional: true
+ "@tauri-apps/cli-win32-ia32-msvc":
+ optional: true
+ "@tauri-apps/cli-win32-x64-msvc":
+ optional: true
+ bin:
+ tauri: tauri.js
+ checksum: 10/b02b2814cd232c2ba4e5dbdfe97aea306dd950fa8fd741b263bd391bd6eaba92b9e0cc2c3b2046cb3eef9a9fa439957386cbc95b890beba702cfc18734b54819
+ languageName: node
+ linkType: hard
+
+"@testing-library/jest-dom@npm:^6.9.1":
+ version: 6.9.1
+ resolution: "@testing-library/jest-dom@npm:6.9.1"
+ dependencies:
+ "@adobe/css-tools": "npm:^4.4.0"
+ aria-query: "npm:^5.0.0"
+ css.escape: "npm:^1.5.1"
+ dom-accessibility-api: "npm:^0.6.3"
+ picocolors: "npm:^1.1.1"
+ redent: "npm:^3.0.0"
+ checksum: 10/409b4f519e4c68f4d31e3b0317338cc19098b9029513fca61aa2af8270086ae3956a1eaedd19bbce2d2c9e2cf9ff27a616c06556be7a26e101c0d529a0062233
+ languageName: node
+ linkType: hard
+
+"@testing-library/react@npm:^16.3.2":
+ version: 16.3.2
+ resolution: "@testing-library/react@npm:16.3.2"
+ dependencies:
+ "@babel/runtime": "npm:^7.12.5"
+ peerDependencies:
+ "@testing-library/dom": ^10.0.0
+ "@types/react": ^18.0.0 || ^19.0.0
+ "@types/react-dom": ^18.0.0 || ^19.0.0
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+ "@types/react-dom":
+ optional: true
+ checksum: 10/0ca88c6f672d00c2afd1bdedeff9b5382dd8157038efeb9762dc016731030075624be7106b92d2b5e5c52812faea85263e69272c14b6f8700eb48a4a8af6feef
+ languageName: node
+ linkType: hard
+
+"@types/chai@npm:^5.2.2":
+ version: 5.2.3
+ resolution: "@types/chai@npm:5.2.3"
+ dependencies:
+ "@types/deep-eql": "npm:*"
+ assertion-error: "npm:^2.0.1"
+ checksum: 10/e79947307dc235953622e65f83d2683835212357ca261389116ab90bed369ac862ba28b146b4fed08b503ae1e1a12cb93ce783f24bb8d562950469f4320e1c7c
+ languageName: node
+ linkType: hard
+
+"@types/deep-eql@npm:*":
+ version: 4.0.2
+ resolution: "@types/deep-eql@npm:4.0.2"
+ checksum: 10/249a27b0bb22f6aa28461db56afa21ec044fa0e303221a62dff81831b20c8530502175f1a49060f7099e7be06181078548ac47c668de79ff9880241968d43d0c
+ languageName: node
+ linkType: hard
+
+"@types/esrecurse@npm:^4.3.1":
+ version: 4.3.1
+ resolution: "@types/esrecurse@npm:4.3.1"
+ checksum: 10/ada5798554b76ac466e90fff26a769b65f905666f32988dcd1b6cf8288896e0fb53080843fd644bf731d16719a6e09b155d623ce36545b75abdd99bb6dcec114
+ languageName: node
+ linkType: hard
+
+"@types/estree@npm:1.0.8, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.6, @types/estree@npm:^1.0.8":
+ version: 1.0.8
+ resolution: "@types/estree@npm:1.0.8"
+ checksum: 10/25a4c16a6752538ffde2826c2cc0c6491d90e69cd6187bef4a006dd2c3c45469f049e643d7e516c515f21484dc3d48fd5c870be158a5beb72f5baf3dc43e4099
+ languageName: node
+ linkType: hard
+
+"@types/json-schema@npm:^7.0.15":
+ version: 7.0.15
+ resolution: "@types/json-schema@npm:7.0.15"
+ checksum: 10/1a3c3e06236e4c4aab89499c428d585527ce50c24fe8259e8b3926d3df4cfbbbcf306cfc73ddfb66cbafc973116efd15967020b0f738f63e09e64c7d260519e7
+ languageName: node
+ linkType: hard
+
+"@types/lodash@npm:^4.14.186":
+ version: 4.17.24
+ resolution: "@types/lodash@npm:4.17.24"
+ checksum: 10/0f2082565f60f9787eefc046edc38458054512be5a8b3584ef0bad5fd9e85d0ab55ec5a1fbfae1ed6ba015cf1f9e837d5fb4da1f99fc60b8f74b2a46146fb00f
+ languageName: node
+ linkType: hard
+
+"@types/node@npm:*, @types/node@npm:>=20.0.0":
+ version: 25.6.0
+ resolution: "@types/node@npm:25.6.0"
+ dependencies:
+ undici-types: "npm:~7.19.0"
+ checksum: 10/99b18690a4be55904cbf8f6a6ac8eed5ec5b8d791fdd8ee2ae598b46c0fa9b83cda7b70dd7f00dbfb18189dcfc67648fdc7fdd3fcced2619a5a6453d9aec107d
+ languageName: node
+ linkType: hard
+
+"@types/node@npm:^18.7.10":
+ version: 18.19.130
+ resolution: "@types/node@npm:18.19.130"
+ dependencies:
+ undici-types: "npm:~5.26.4"
+ checksum: 10/ebb85c6edcec78df926de27d828ecbeb1b3d77c165ceef95bfc26e171edbc1924245db4eb2d7d6230206fe6b1a1f7665714fe1c70739e9f5980d8ce31af6ef82
+ languageName: node
+ linkType: hard
+
+"@types/prop-types@npm:*":
+ version: 15.7.15
+ resolution: "@types/prop-types@npm:15.7.15"
+ checksum: 10/31aa2f59b28f24da6fb4f1d70807dae2aedfce090ec63eaf9ea01727a9533ef6eaf017de5bff99fbccad7d1c9e644f52c6c2ba30869465dd22b1a7221c29f356
+ languageName: node
+ linkType: hard
+
+"@types/react-dom@npm:^18":
+ version: 18.3.7
+ resolution: "@types/react-dom@npm:18.3.7"
+ peerDependencies:
+ "@types/react": ^18.0.0
+ checksum: 10/317569219366d487a3103ba1e5e47154e95a002915fdcf73a44162c48fe49c3a57fcf7f57fc6979e70d447112681e6b13c6c3c1df289db8b544df4aab2d318f3
+ languageName: node
+ linkType: hard
+
+"@types/react-modal@npm:^3.16.3":
+ version: 3.16.3
+ resolution: "@types/react-modal@npm:3.16.3"
+ dependencies:
+ "@types/react": "npm:*"
+ checksum: 10/9622d1983ade28864a85baffcf068722b24f02ac3ec1485dab6a9005a2e0b2f8af78f860be494523d90ba5e182744d1151461a4cc42120a32ed57ec3b7a4cab9
+ languageName: node
+ linkType: hard
+
+"@types/react-reconciler@npm:^0.28.0, @types/react-reconciler@npm:^0.28.2":
+ version: 0.28.9
+ resolution: "@types/react-reconciler@npm:0.28.9"
+ peerDependencies:
+ "@types/react": "*"
+ checksum: 10/2450e3df6169fb887591f2a949ca8f08439ac76c756124feeee7370f1a79b5060ba8e5f612302dc70169433e043da7f617dd7ea3b14a3c2bb39559d66b7a0986
+ languageName: node
+ linkType: hard
+
+"@types/react@npm:^18":
+ version: 18.3.28
+ resolution: "@types/react@npm:18.3.28"
+ dependencies:
+ "@types/prop-types": "npm:*"
+ csstype: "npm:^3.2.2"
+ checksum: 10/6db7bb7f19957ee9f530baa7d143527f8befedad1585b064eb80777be0d84621157de75aba4f499ff429b10c5ef0c7d13e89be6bca3296ef71c80472894ff0eb
+ languageName: node
+ linkType: hard
+
+"@types/semver@npm:^7.3.12":
+ version: 7.7.1
+ resolution: "@types/semver@npm:7.7.1"
+ checksum: 10/8f09e7e6ca3ded67d78ba7a8f7535c8d9cf8ced83c52e7f3ac3c281fe8c689c3fe475d199d94390dc04fc681d51f2358b430bb7b2e21c62de24f2bee2c719068
+ languageName: node
+ linkType: hard
+
+"@types/uuid@npm:^8.3.4":
+ version: 8.3.4
+ resolution: "@types/uuid@npm:8.3.4"
+ checksum: 10/6f11f3ff70f30210edaa8071422d405e9c1d4e53abbe50fdce365150d3c698fe7bbff65c1e71ae080cbfb8fded860dbb5e174da96fdbbdfcaa3fb3daa474d20f
+ languageName: node
+ linkType: hard
+
+"@types/whatwg-mimetype@npm:^3.0.2":
+ version: 3.0.2
+ resolution: "@types/whatwg-mimetype@npm:3.0.2"
+ checksum: 10/609607beeaa8b50b9e00541d8f571880d651b26b6b006103370099aba00784037de54433627c9fe775a5558e3d1fc09c2a48f54c8af91988e9bebeaf6a698eeb
+ languageName: node
+ linkType: hard
+
+"@types/ws@npm:^8.18.1":
+ version: 8.18.1
+ resolution: "@types/ws@npm:8.18.1"
+ dependencies:
+ "@types/node": "npm:*"
+ checksum: 10/1ce05e3174dcacf28dae0e9b854ef1c9a12da44c7ed73617ab6897c5cbe4fccbb155a20be5508ae9a7dde2f83bd80f5cf3baa386b934fc4b40889ec963e94f3a
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-darwin-arm64@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-darwin-arm64@npm:7.0.0-dev.20260505.1"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-darwin-x64@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-darwin-x64@npm:7.0.0-dev.20260505.1"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-linux-arm64@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-linux-arm64@npm:7.0.0-dev.20260505.1"
+ conditions: os=linux & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-linux-arm@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-linux-arm@npm:7.0.0-dev.20260505.1"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-linux-x64@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-linux-x64@npm:7.0.0-dev.20260505.1"
+ conditions: os=linux & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-win32-arm64@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-win32-arm64@npm:7.0.0-dev.20260505.1"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview-win32-x64@npm:7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview-win32-x64@npm:7.0.0-dev.20260505.1"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@typescript/native-preview@npm:^7.0.0-dev.20260505.1":
+ version: 7.0.0-dev.20260505.1
+ resolution: "@typescript/native-preview@npm:7.0.0-dev.20260505.1"
+ dependencies:
+ "@typescript/native-preview-darwin-arm64": "npm:7.0.0-dev.20260505.1"
+ "@typescript/native-preview-darwin-x64": "npm:7.0.0-dev.20260505.1"
+ "@typescript/native-preview-linux-arm": "npm:7.0.0-dev.20260505.1"
+ "@typescript/native-preview-linux-arm64": "npm:7.0.0-dev.20260505.1"
+ "@typescript/native-preview-linux-x64": "npm:7.0.0-dev.20260505.1"
+ "@typescript/native-preview-win32-arm64": "npm:7.0.0-dev.20260505.1"
+ "@typescript/native-preview-win32-x64": "npm:7.0.0-dev.20260505.1"
+ dependenciesMeta:
+ "@typescript/native-preview-darwin-arm64":
+ optional: true
+ "@typescript/native-preview-darwin-x64":
+ optional: true
+ "@typescript/native-preview-linux-arm":
+ optional: true
+ "@typescript/native-preview-linux-arm64":
+ optional: true
+ "@typescript/native-preview-linux-x64":
+ optional: true
+ "@typescript/native-preview-win32-arm64":
+ optional: true
+ "@typescript/native-preview-win32-x64":
+ optional: true
+ bin:
+ tsgo: bin/tsgo.js
+ checksum: 10/fe73acd54b19881feb26e42097f829ed5cdcaf1336fd81a6296abb749148185844710f42eb24e65f160ccd9c765dc1d326e0e1e226094eed35f263214d76919e
+ languageName: node
+ linkType: hard
+
+"@vitejs/plugin-react-swc@npm:^4.3.0":
+ version: 4.3.0
+ resolution: "@vitejs/plugin-react-swc@npm:4.3.0"
+ dependencies:
+ "@rolldown/pluginutils": "npm:1.0.0-rc.7"
+ "@swc/core": "npm:^1.15.11"
+ peerDependencies:
+ vite: ^4 || ^5 || ^6 || ^7 || ^8
+ checksum: 10/a4b010ec9f93fe8e3dd2172a8712812592c7ad271dcf9f5887685ac74673448ecd82772ba3f8595a0a09d358789b3425a509cf80c92454ba09d164c9472c5248
+ languageName: node
+ linkType: hard
+
+"@vitest/coverage-istanbul@npm:^3":
+ version: 3.2.4
+ resolution: "@vitest/coverage-istanbul@npm:3.2.4"
+ dependencies:
+ "@istanbuljs/schema": "npm:^0.1.3"
+ debug: "npm:^4.4.1"
+ istanbul-lib-coverage: "npm:^3.2.2"
+ istanbul-lib-instrument: "npm:^6.0.3"
+ istanbul-lib-report: "npm:^3.0.1"
+ istanbul-lib-source-maps: "npm:^5.0.6"
+ istanbul-reports: "npm:^3.1.7"
+ magicast: "npm:^0.3.5"
+ test-exclude: "npm:^7.0.1"
+ tinyrainbow: "npm:^2.0.0"
+ peerDependencies:
+ vitest: 3.2.4
+ checksum: 10/c260db2c3d913bc13fc7c768b424f72d93043b5e187f93bc5efd513d8987658a8cea07294a71b6864e84cf9478c639d5c4b07e9f5767933c09e2bdfc6f9fd3aa
+ languageName: node
+ linkType: hard
+
+"@vitest/expect@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/expect@npm:3.2.4"
+ dependencies:
+ "@types/chai": "npm:^5.2.2"
+ "@vitest/spy": "npm:3.2.4"
+ "@vitest/utils": "npm:3.2.4"
+ chai: "npm:^5.2.0"
+ tinyrainbow: "npm:^2.0.0"
+ checksum: 10/dc69ce886c13714dfbbff78f2d2cb7eb536017e82301a73c42d573a9e9d2bf91005ac7abd9b977adf0a3bd431209f45a8ac2418029b68b0a377e092607c843ce
+ languageName: node
+ linkType: hard
+
+"@vitest/mocker@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/mocker@npm:3.2.4"
+ dependencies:
+ "@vitest/spy": "npm:3.2.4"
+ estree-walker: "npm:^3.0.3"
+ magic-string: "npm:^0.30.17"
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+ checksum: 10/5e92431b6ed9fc1679060e4caef3e4623f4750542a5d7cd944774f8217c4d231e273202e8aea00bab33260a5a9222ecb7005d80da0348c3c829bd37d123071a8
+ languageName: node
+ linkType: hard
+
+"@vitest/pretty-format@npm:3.2.4, @vitest/pretty-format@npm:^3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/pretty-format@npm:3.2.4"
+ dependencies:
+ tinyrainbow: "npm:^2.0.0"
+ checksum: 10/8dd30cbf956e01fbab042fe651fb5175d9f0cd00b7b569a46cd98df89c4fec47dab12916201ad6e09a4f25f2a2ec8927a4bfdc61118593097f759c90b18a51d4
+ languageName: node
+ linkType: hard
+
+"@vitest/runner@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/runner@npm:3.2.4"
+ dependencies:
+ "@vitest/utils": "npm:3.2.4"
+ pathe: "npm:^2.0.3"
+ strip-literal: "npm:^3.0.0"
+ checksum: 10/197bd55def519ef202f990b7c1618c212380831827c116240871033e4973decb780503c705ba9245a12bd8121f3ac4086ffcb3e302148b62d9bd77fd18dd1deb
+ languageName: node
+ linkType: hard
+
+"@vitest/snapshot@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/snapshot@npm:3.2.4"
+ dependencies:
+ "@vitest/pretty-format": "npm:3.2.4"
+ magic-string: "npm:^0.30.17"
+ pathe: "npm:^2.0.3"
+ checksum: 10/acfb682491b9ca9345bf9fed02c2779dec43e0455a380c1966b0aad8dd81c79960902cf34621ab48fe80a0eaf8c61cc42dec186a1321dc3c9897ef2ebd5f1bc4
+ languageName: node
+ linkType: hard
+
+"@vitest/spy@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/spy@npm:3.2.4"
+ dependencies:
+ tinyspy: "npm:^4.0.3"
+ checksum: 10/7d38c299f42a8c7e5e41652b203af98ca54e63df69c3b072d0e401d5a57fbbba3e39d8538ac1b3022c26718a6388d0bcc222bc2f07faab75942543b9247c007d
+ languageName: node
+ linkType: hard
+
+"@vitest/utils@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/utils@npm:3.2.4"
+ dependencies:
+ "@vitest/pretty-format": "npm:3.2.4"
+ loupe: "npm:^3.1.4"
+ tinyrainbow: "npm:^2.0.0"
+ checksum: 10/7f12ef63bd8ee13957744d1f336b0405f164ade4358bf9dfa531f75bbb58ffac02bf61aba65724311ddbc50b12ba54853a169e59c6b837c16086173b9a480710
+ languageName: node
+ linkType: hard
+
+"abbrev@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "abbrev@npm:4.0.0"
+ checksum: 10/e2f0c6a6708ad738b3e8f50233f4800de31ad41a6cdc50e0cbe51b76fed69fd0213516d92c15ce1a9985fca71a14606a9be22bf00f8475a58987b9bfb671c582
+ languageName: node
+ linkType: hard
+
+"acorn-jsx@npm:^5.3.2":
+ version: 5.3.2
+ resolution: "acorn-jsx@npm:5.3.2"
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ checksum: 10/d4371eaef7995530b5b5ca4183ff6f062ca17901a6d3f673c9ac011b01ede37e7a1f7f61f8f5cfe709e88054757bb8f3277dc4061087cdf4f2a1f90ccbcdb977
+ languageName: node
+ linkType: hard
+
+"acorn@npm:^8.16.0":
+ version: 8.16.0
+ resolution: "acorn@npm:8.16.0"
+ bin:
+ acorn: bin/acorn
+ checksum: 10/690c673bb4d61b38ef82795fab58526471ad7f7e67c0e40c4ff1e10ecd80ce5312554ef633c9995bfc4e6d170cef165711f9ca9e49040b62c0c66fbf2dd3df2b
+ languageName: node
+ linkType: hard
+
+"ajv@npm:^6.14.0":
+ version: 6.15.0
+ resolution: "ajv@npm:6.15.0"
+ dependencies:
+ fast-deep-equal: "npm:^3.1.1"
+ fast-json-stable-stringify: "npm:^2.0.0"
+ json-schema-traverse: "npm:^0.4.1"
+ uri-js: "npm:^4.2.2"
+ checksum: 10/0916dda09c152fb5857bc1cc7ce61718e9cec5b7faeff44a74f5e324eed8a556e1a84856724ea322a067b436ecad9f74ac8295fd395449788cca52f0c25bd5fb
+ languageName: node
+ linkType: hard
+
+"ansi-escapes@npm:^7.0.0":
+ version: 7.3.0
+ resolution: "ansi-escapes@npm:7.3.0"
+ dependencies:
+ environment: "npm:^1.0.0"
+ checksum: 10/189e23e75aacf00ee647ba0545687456cc4bc62547dd0cf6c7728f91fce88854c8e885d5819a278b39981bb846d9427693d2380c562aecdb0cf91d3342141e93
+ languageName: node
+ linkType: hard
+
+"ansi-regex@npm:^5.0.1":
+ version: 5.0.1
+ resolution: "ansi-regex@npm:5.0.1"
+ checksum: 10/2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b
+ languageName: node
+ linkType: hard
+
+"ansi-regex@npm:^6.2.2":
+ version: 6.2.2
+ resolution: "ansi-regex@npm:6.2.2"
+ checksum: 10/9b17ce2c6daecc75bcd5966b9ad672c23b184dc3ed9bf3c98a0702f0d2f736c15c10d461913568f2cf527a5e64291c7473358885dd493305c84a1cfed66ba94f
+ languageName: node
+ linkType: hard
+
+"ansi-styles@npm:^4.0.0":
+ version: 4.3.0
+ resolution: "ansi-styles@npm:4.3.0"
+ dependencies:
+ color-convert: "npm:^2.0.1"
+ checksum: 10/b4494dfbfc7e4591b4711a396bd27e540f8153914123dccb4cdbbcb514015ada63a3809f362b9d8d4f6b17a706f1d7bea3c6f974b15fa5ae76b5b502070889ff
+ languageName: node
+ linkType: hard
+
+"ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1, ansi-styles@npm:^6.2.3":
+ version: 6.2.3
+ resolution: "ansi-styles@npm:6.2.3"
+ checksum: 10/c49dad7639f3e48859bd51824c93b9eb0db628afc243c51c3dd2410c4a15ede1a83881c6c7341aa2b159c4f90c11befb38f2ba848c07c66c9f9de4bcd7cb9f30
+ languageName: node
+ linkType: hard
+
+"aria-query@npm:^5.0.0":
+ version: 5.3.2
+ resolution: "aria-query@npm:5.3.2"
+ checksum: 10/b2fe9bc98bd401bc322ccb99717c1ae2aaf53ea0d468d6e7aebdc02fac736e4a99b46971ee05b783b08ade23c675b2d8b60e4a1222a95f6e27bc4d2a0bfdcc03
+ languageName: node
+ linkType: hard
+
+"assertion-error@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "assertion-error@npm:2.0.1"
+ checksum: 10/a0789dd882211b87116e81e2648ccb7f60340b34f19877dd020b39ebb4714e475eb943e14ba3e22201c221ef6645b7bfe10297e76b6ac95b48a9898c1211ce66
+ languageName: node
+ linkType: hard
+
+"balanced-match@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "balanced-match@npm:1.0.2"
+ checksum: 10/9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65
+ languageName: node
+ linkType: hard
+
+"balanced-match@npm:^4.0.2":
+ version: 4.0.4
+ resolution: "balanced-match@npm:4.0.4"
+ checksum: 10/fb07bb66a0959c2843fc055838047e2a95ccebb837c519614afb067ebfdf2fa967ca8d712c35ced07f2cd26fc6f07964230b094891315ad74f11eba3d53178a0
+ languageName: node
+ linkType: hard
+
+"base64-js@npm:^1.3.1":
+ version: 1.5.1
+ resolution: "base64-js@npm:1.5.1"
+ checksum: 10/669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005
+ languageName: node
+ linkType: hard
+
+"baseline-browser-mapping@npm:^2.10.12":
+ version: 2.10.27
+ resolution: "baseline-browser-mapping@npm:2.10.27"
+ bin:
+ baseline-browser-mapping: dist/cli.cjs
+ checksum: 10/4f28c994592d92ab70479f6fb802c219922a72876e20001a39ae0a0d2fef8c86197ebc830c32c23be3a7ee99e5eababf992c0883461ef5af56a075e8c66079ee
+ languageName: node
+ linkType: hard
+
+"brace-expansion@npm:^2.0.2":
+ version: 2.1.0
+ resolution: "brace-expansion@npm:2.1.0"
+ dependencies:
+ balanced-match: "npm:^1.0.0"
+ checksum: 10/c77a7a64aabf94b8d5913955adb4f36957917565374461355bb4276830c027a313d981f32410cea9e38f52573e7eb776d02fe05091c3a79a061958d97e4d2b43
+ languageName: node
+ linkType: hard
+
+"brace-expansion@npm:^5.0.5":
+ version: 5.0.5
+ resolution: "brace-expansion@npm:5.0.5"
+ dependencies:
+ balanced-match: "npm:^4.0.2"
+ checksum: 10/f259b2ddf04489da9512ad637ba6b4ef2d77abd4445d20f7f1714585f153435200a53fa6a2e4a5ee974df14ddad4cd16421f6f803e96e8b452bd48598878d0ee
+ languageName: node
+ linkType: hard
+
+"browserslist@npm:^4.24.0, browserslist@npm:^4.28.1":
+ version: 4.28.2
+ resolution: "browserslist@npm:4.28.2"
+ dependencies:
+ baseline-browser-mapping: "npm:^2.10.12"
+ caniuse-lite: "npm:^1.0.30001782"
+ electron-to-chromium: "npm:^1.5.328"
+ node-releases: "npm:^2.0.36"
update-browserslist-db: "npm:^1.2.3"
bin:
browserslist: cli.js
@@ -589,6 +1993,20 @@ __metadata:
languageName: node
linkType: hard
+"builtin-modules@npm:^5.0.0":
+ version: 5.1.0
+ resolution: "builtin-modules@npm:5.1.0"
+ checksum: 10/6a2a28a0a9bf524c882112907e3bff326d29c7c1f73f28113cb0fdfbaac0513ef21c3fe580af4d129142d5dff023974d94f70b82d699ff37dd867ef39e01226f
+ languageName: node
+ linkType: hard
+
+"cac@npm:^6.7.14":
+ version: 6.7.14
+ resolution: "cac@npm:6.7.14"
+ checksum: 10/002769a0fbfc51c062acd2a59df465a2a947916b02ac50b56c69ec6c018ee99ac3e7f4dd7366334ea847f1ecacf4defaa61bcd2ac283db50156ce1f1d8c8ad42
+ languageName: node
+ linkType: hard
+
"caniuse-lite@npm:^1.0.30001782":
version: 1.0.30001791
resolution: "caniuse-lite@npm:1.0.30001791"
@@ -596,6 +2014,33 @@ __metadata:
languageName: node
linkType: hard
+"chai@npm:^5.2.0":
+ version: 5.3.3
+ resolution: "chai@npm:5.3.3"
+ dependencies:
+ assertion-error: "npm:^2.0.1"
+ check-error: "npm:^2.1.1"
+ deep-eql: "npm:^5.0.1"
+ loupe: "npm:^3.1.0"
+ pathval: "npm:^2.0.0"
+ checksum: 10/0d0ef63106083b05c7ba510697cd9991a02b8df5984a7d010ab4af10205c7a1f27d1c06bfa4679540894295ac4dcc22aa2a281e2e4cfe5133c1db379626689a2
+ languageName: node
+ linkType: hard
+
+"change-case@npm:^5.4.4":
+ version: 5.4.4
+ resolution: "change-case@npm:5.4.4"
+ checksum: 10/446e5573f3c854290a91292afef92b957d2e43a928260c91989b482aa860caaa29711b6725fc40c200af68061cbab357b033446d16a17bc5c553636994074e92
+ languageName: node
+ linkType: hard
+
+"check-error@npm:^2.1.1":
+ version: 2.1.3
+ resolution: "check-error@npm:2.1.3"
+ checksum: 10/f1868d3db60f5a7da92e140ccf33e9152bf6124161fa9b7a4ae8eafdb05e66e1f13570401e56f314f037b0f1b71eaf38ad0c7256310d82c6105e9d85ded0f202
+ languageName: node
+ linkType: hard
+
"chownr@npm:^3.0.0":
version: 3.0.0
resolution: "chownr@npm:3.0.0"
@@ -603,6 +2048,13 @@ __metadata:
languageName: node
linkType: hard
+"ci-info@npm:^4.4.0":
+ version: 4.4.0
+ resolution: "ci-info@npm:4.4.0"
+ checksum: 10/dfded0c630267d89660c8abb988ac8395a382bdfefedcc03e3e2858523312c5207db777c239c34774e3fcff11f015477c19d2ac8a58ea58aa476614a2e64f434
+ languageName: node
+ linkType: hard
+
"classnames@npm:^2.2.6":
version: 2.5.1
resolution: "classnames@npm:2.5.1"
@@ -610,280 +2062,389 @@ __metadata:
languageName: node
linkType: hard
-"convert-source-map@npm:^2.0.0":
- version: 2.0.0
- resolution: "convert-source-map@npm:2.0.0"
- checksum: 10/c987be3ec061348cdb3c2bfb924bec86dea1eacad10550a85ca23edb0fe3556c3a61c7399114f3331ccb3499d7fd0285ab24566e5745929412983494c3926e15
+"clean-regexp@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "clean-regexp@npm:1.0.0"
+ dependencies:
+ escape-string-regexp: "npm:^1.0.5"
+ checksum: 10/0b1ce281b07da2463c6882ea2e8409119b6cabbd9f687cdbdcee942c45b2b9049a2084f7b5f228c63ef9f21e722963ae0bfe56a735dbdbdd92512867625a7e40
languageName: node
linkType: hard
-"csstype@npm:^3.1.3, csstype@npm:^3.2.2":
- version: 3.2.3
- resolution: "csstype@npm:3.2.3"
- checksum: 10/ad41baf7e2ffac65ab544d79107bf7cd1a4bb9bab9ac3302f59ab4ba655d5e30942a8ae46e10ba160c6f4ecea464cc95b975ca2fefbdeeacd6ac63f12f99fe1f
+"cli-cursor@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "cli-cursor@npm:5.0.0"
+ dependencies:
+ restore-cursor: "npm:^5.0.0"
+ checksum: 10/1eb9a3f878b31addfe8d82c6d915ec2330cec8447ab1f117f4aa34f0137fbb3137ec3466e1c9a65bcb7557f6e486d343f2da57f253a2f668d691372dfa15c090
languageName: node
linkType: hard
-"debug@npm:^4.1.0, debug@npm:^4.3.1":
- version: 4.4.3
- resolution: "debug@npm:4.4.3"
+"cli-truncate@npm:^5.0.0":
+ version: 5.2.0
+ resolution: "cli-truncate@npm:5.2.0"
dependencies:
- ms: "npm:^2.1.3"
- peerDependenciesMeta:
- supports-color:
- optional: true
- checksum: 10/9ada3434ea2993800bd9a1e320bd4aa7af69659fb51cca685d390949434bc0a8873c21ed7c9b852af6f2455a55c6d050aa3937d52b3c69f796dab666f762acad
+ slice-ansi: "npm:^8.0.0"
+ string-width: "npm:^8.2.0"
+ checksum: 10/b789b6c2caff1560259aedeb6aaafcf41167d478df418d718a8c92edd6bc5a0ece272b8fb7e7911fbd31cef7b1ac8a30f2b21d90c3174b55a018fe3f2604a137
languageName: node
linkType: hard
-"dracula-ui@npm:^1.0.3":
- version: 1.0.6
- resolution: "dracula-ui@npm:1.0.6"
+"color-convert@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "color-convert@npm:2.0.1"
dependencies:
- classnames: "npm:^2.2.6"
- lodash: "npm:^4.17.20"
- lodash-es: "npm:^4.17.21"
- peerDependencies:
- react: ">=16"
- checksum: 10/6ba9d89096f8c5b46974838de8161fc5ae2099b0307ee014626fdebda0ed00b322ab7e304f451a4783ec3b38d75b2d5f055270adb244758d52c8c9f2de93f48c
+ color-name: "npm:~1.1.4"
+ checksum: 10/fa00c91b4332b294de06b443923246bccebe9fab1b253f7fe1772d37b06a2269b4039a85e309abe1fe11b267b11c08d1d0473fda3badd6167f57313af2887a64
languageName: node
linkType: hard
-"electron-to-chromium@npm:^1.5.328":
- version: 1.5.349
- resolution: "electron-to-chromium@npm:1.5.349"
- checksum: 10/f4247aae718e9bfd94d4ba0e5c77929d94d4d211a2f71c07b76fbeba8391fa2b979b7ccb9dab75c398e885c12128b22d6b4234c2a88c85e5cc5d3fe37530c945
+"color-name@npm:~1.1.4":
+ version: 1.1.4
+ resolution: "color-name@npm:1.1.4"
+ checksum: 10/b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610
languageName: node
linkType: hard
-"env-paths@npm:^2.2.0":
- version: 2.2.1
- resolution: "env-paths@npm:2.2.1"
- checksum: 10/65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e
+"colorette@npm:^2.0.20":
+ version: 2.0.20
+ resolution: "colorette@npm:2.0.20"
+ checksum: 10/0b8de48bfa5d10afc160b8eaa2b9938f34a892530b2f7d7897e0458d9535a066e3998b49da9d21161c78225b272df19ae3a64d6df28b4c9734c0e55bbd02406f
languageName: node
linkType: hard
-"es-errors@npm:^1.3.0":
- version: 1.3.0
- resolution: "es-errors@npm:1.3.0"
- checksum: 10/96e65d640156f91b707517e8cdc454dd7d47c32833aa3e85d79f24f9eb7ea85f39b63e36216ef0114996581969b59fe609a94e30316b08f5f4df1d44134cf8d5
+"commander@npm:^14.0.3":
+ version: 14.0.3
+ resolution: "commander@npm:14.0.3"
+ checksum: 10/dfa9ebe2a433d277de5cb0252d23b10a543d245d892db858d23b516336a835c50fd4f52bee4cd13c705cc8acb6f03dc632c73dd806f7d06d3353eb09953dd17a
languageName: node
linkType: hard
-"esbuild-android-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-android-64@npm:0.15.18"
- conditions: os=android & cpu=x64
+"convert-source-map@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "convert-source-map@npm:2.0.0"
+ checksum: 10/c987be3ec061348cdb3c2bfb924bec86dea1eacad10550a85ca23edb0fe3556c3a61c7399114f3331ccb3499d7fd0285ab24566e5745929412983494c3926e15
languageName: node
linkType: hard
-"esbuild-android-arm64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-android-arm64@npm:0.15.18"
- conditions: os=android & cpu=arm64
+"core-js-compat@npm:^3.49.0":
+ version: 3.49.0
+ resolution: "core-js-compat@npm:3.49.0"
+ dependencies:
+ browserslist: "npm:^4.28.1"
+ checksum: 10/eb35ad9b31a613092d32e5eb0c9fecb695e680bb29509fe04ae297ef790cea47d06864ef8939c8f5f189cce0bd2807fef8b2d6450f7eeb917ffaaf38a775dece
languageName: node
linkType: hard
-"esbuild-darwin-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-darwin-64@npm:0.15.18"
- conditions: os=darwin & cpu=x64
+"cross-spawn@npm:^7.0.6":
+ version: 7.0.6
+ resolution: "cross-spawn@npm:7.0.6"
+ dependencies:
+ path-key: "npm:^3.1.0"
+ shebang-command: "npm:^2.0.0"
+ which: "npm:^2.0.1"
+ checksum: 10/0d52657d7ae36eb130999dffff1168ec348687b48dd38e2ff59992ed916c88d328cf1d07ff4a4a10bc78de5e1c23f04b306d569e42f7a2293915c081e4dfee86
languageName: node
linkType: hard
-"esbuild-darwin-arm64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-darwin-arm64@npm:0.15.18"
- conditions: os=darwin & cpu=arm64
+"css.escape@npm:^1.5.1":
+ version: 1.5.1
+ resolution: "css.escape@npm:1.5.1"
+ checksum: 10/f6d38088d870a961794a2580b2b2af1027731bb43261cfdce14f19238a88664b351cc8978abc20f06cc6bbde725699dec8deb6fe9816b139fc3f2af28719e774
languageName: node
linkType: hard
-"esbuild-freebsd-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-freebsd-64@npm:0.15.18"
- conditions: os=freebsd & cpu=x64
+"csstype@npm:^3.1.3, csstype@npm:^3.2.2":
+ version: 3.2.3
+ resolution: "csstype@npm:3.2.3"
+ checksum: 10/ad41baf7e2ffac65ab544d79107bf7cd1a4bb9bab9ac3302f59ab4ba655d5e30942a8ae46e10ba160c6f4ecea464cc95b975ca2fefbdeeacd6ac63f12f99fe1f
languageName: node
linkType: hard
-"esbuild-freebsd-arm64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-freebsd-arm64@npm:0.15.18"
- conditions: os=freebsd & cpu=arm64
+"debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.4.1":
+ version: 4.4.3
+ resolution: "debug@npm:4.4.3"
+ dependencies:
+ ms: "npm:^2.1.3"
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ checksum: 10/9ada3434ea2993800bd9a1e320bd4aa7af69659fb51cca685d390949434bc0a8873c21ed7c9b852af6f2455a55c6d050aa3937d52b3c69f796dab666f762acad
languageName: node
linkType: hard
-"esbuild-linux-32@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-32@npm:0.15.18"
- conditions: os=linux & cpu=ia32
+"deep-eql@npm:^5.0.1":
+ version: 5.0.2
+ resolution: "deep-eql@npm:5.0.2"
+ checksum: 10/a529b81e2ef8821621d20a36959a0328873a3e49d393ad11f8efe8559f31239494c2eb889b80342808674c475802ba95b9d6c4c27641b9a029405104c1b59fcf
languageName: node
linkType: hard
-"esbuild-linux-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-64@npm:0.15.18"
- conditions: os=linux & cpu=x64
+"deep-is@npm:^0.1.3":
+ version: 0.1.4
+ resolution: "deep-is@npm:0.1.4"
+ checksum: 10/ec12d074aef5ae5e81fa470b9317c313142c9e8e2afe3f8efa124db309720db96d1d222b82b84c834e5f87e7a614b44a4684b6683583118b87c833b3be40d4d8
languageName: node
linkType: hard
-"esbuild-linux-arm64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-arm64@npm:0.15.18"
- conditions: os=linux & cpu=arm64
+"dom-accessibility-api@npm:^0.6.3":
+ version: 0.6.3
+ resolution: "dom-accessibility-api@npm:0.6.3"
+ checksum: 10/83d3371f8226487fbad36e160d44f1d9017fb26d46faba6a06fcad15f34633fc827b8c3e99d49f71d5f3253d866e2131826866fd0a3c86626f8eccfc361881ff
languageName: node
linkType: hard
-"esbuild-linux-arm@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-arm@npm:0.15.18"
- conditions: os=linux & cpu=arm
+"dracula-ui@npm:^1.0.3":
+ version: 1.0.6
+ resolution: "dracula-ui@npm:1.0.6"
+ dependencies:
+ classnames: "npm:^2.2.6"
+ lodash: "npm:^4.17.20"
+ lodash-es: "npm:^4.17.21"
+ peerDependencies:
+ react: ">=16"
+ checksum: 10/6ba9d89096f8c5b46974838de8161fc5ae2099b0307ee014626fdebda0ed00b322ab7e304f451a4783ec3b38d75b2d5f055270adb244758d52c8c9f2de93f48c
languageName: node
linkType: hard
-"esbuild-linux-mips64le@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-mips64le@npm:0.15.18"
- conditions: os=linux & cpu=mips64el
+"eastasianwidth@npm:^0.2.0":
+ version: 0.2.0
+ resolution: "eastasianwidth@npm:0.2.0"
+ checksum: 10/9b1d3e1baefeaf7d70799db8774149cef33b97183a6addceeba0cf6b85ba23ee2686f302f14482006df32df75d32b17c509c143a3689627929e4a8efaf483952
languageName: node
linkType: hard
-"esbuild-linux-ppc64le@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-ppc64le@npm:0.15.18"
- conditions: os=linux & cpu=ppc64
+"electron-to-chromium@npm:^1.5.328":
+ version: 1.5.349
+ resolution: "electron-to-chromium@npm:1.5.349"
+ checksum: 10/f4247aae718e9bfd94d4ba0e5c77929d94d4d211a2f71c07b76fbeba8391fa2b979b7ccb9dab75c398e885c12128b22d6b4234c2a88c85e5cc5d3fe37530c945
languageName: node
linkType: hard
-"esbuild-linux-riscv64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-riscv64@npm:0.15.18"
- conditions: os=linux & cpu=riscv64
+"emoji-regex@npm:^10.3.0":
+ version: 10.6.0
+ resolution: "emoji-regex@npm:10.6.0"
+ checksum: 10/98cc0b0e1daed1ed25afbf69dcb921fee00f712f51aab93aa1547e4e4e8171725cc4f0098aaa645b4f611a19da11ec9f4623eb6ff2b72314b39a8f2ae7c12bf2
languageName: node
linkType: hard
-"esbuild-linux-s390x@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-linux-s390x@npm:0.15.18"
- conditions: os=linux & cpu=s390x
+"emoji-regex@npm:^8.0.0":
+ version: 8.0.0
+ resolution: "emoji-regex@npm:8.0.0"
+ checksum: 10/c72d67a6821be15ec11997877c437491c313d924306b8da5d87d2a2bcc2cec9903cb5b04ee1a088460501d8e5b44f10df82fdc93c444101a7610b80c8b6938e1
languageName: node
linkType: hard
-"esbuild-netbsd-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-netbsd-64@npm:0.15.18"
- conditions: os=netbsd & cpu=x64
+"emoji-regex@npm:^9.2.2":
+ version: 9.2.2
+ resolution: "emoji-regex@npm:9.2.2"
+ checksum: 10/915acf859cea7131dac1b2b5c9c8e35c4849e325a1d114c30adb8cd615970f6dca0e27f64f3a4949d7d6ed86ecd79a1c5c63f02e697513cddd7b5835c90948b8
languageName: node
linkType: hard
-"esbuild-openbsd-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-openbsd-64@npm:0.15.18"
- conditions: os=openbsd & cpu=x64
+"entities@npm:^7.0.1":
+ version: 7.0.1
+ resolution: "entities@npm:7.0.1"
+ checksum: 10/3c0c58d869c45148463e96d21dee2d1b801bd3fe4cf47aa470cd26dfe81d59e9e0a9be92ae083fa02fa441283c883a471486e94538dcfb8544428aa80a55271b
languageName: node
linkType: hard
-"esbuild-sunos-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-sunos-64@npm:0.15.18"
- conditions: os=sunos & cpu=x64
+"env-paths@npm:^2.2.0":
+ version: 2.2.1
+ resolution: "env-paths@npm:2.2.1"
+ checksum: 10/65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e
languageName: node
linkType: hard
-"esbuild-windows-32@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-windows-32@npm:0.15.18"
- conditions: os=win32 & cpu=ia32
+"environment@npm:^1.0.0":
+ version: 1.1.0
+ resolution: "environment@npm:1.1.0"
+ checksum: 10/dd3c1b9825e7f71f1e72b03c2344799ac73f2e9ef81b78ea8b373e55db021786c6b9f3858ea43a436a2c4611052670ec0afe85bc029c384cc71165feee2f4ba6
languageName: node
linkType: hard
-"esbuild-windows-64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-windows-64@npm:0.15.18"
- conditions: os=win32 & cpu=x64
+"es-module-lexer@npm:^1.7.0":
+ version: 1.7.0
+ resolution: "es-module-lexer@npm:1.7.0"
+ checksum: 10/b6f3e576a3fed4d82b0d0ad4bbf6b3a5ad694d2e7ce8c4a069560da3db6399381eaba703616a182b16dde50ce998af64e07dcf49f2ae48153b9e07be3f107087
languageName: node
linkType: hard
-"esbuild-windows-arm64@npm:0.15.18":
- version: 0.15.18
- resolution: "esbuild-windows-arm64@npm:0.15.18"
- conditions: os=win32 & cpu=arm64
+"esbuild@npm:^0.25.0":
+ version: 0.25.12
+ resolution: "esbuild@npm:0.25.12"
+ dependencies:
+ "@esbuild/aix-ppc64": "npm:0.25.12"
+ "@esbuild/android-arm": "npm:0.25.12"
+ "@esbuild/android-arm64": "npm:0.25.12"
+ "@esbuild/android-x64": "npm:0.25.12"
+ "@esbuild/darwin-arm64": "npm:0.25.12"
+ "@esbuild/darwin-x64": "npm:0.25.12"
+ "@esbuild/freebsd-arm64": "npm:0.25.12"
+ "@esbuild/freebsd-x64": "npm:0.25.12"
+ "@esbuild/linux-arm": "npm:0.25.12"
+ "@esbuild/linux-arm64": "npm:0.25.12"
+ "@esbuild/linux-ia32": "npm:0.25.12"
+ "@esbuild/linux-loong64": "npm:0.25.12"
+ "@esbuild/linux-mips64el": "npm:0.25.12"
+ "@esbuild/linux-ppc64": "npm:0.25.12"
+ "@esbuild/linux-riscv64": "npm:0.25.12"
+ "@esbuild/linux-s390x": "npm:0.25.12"
+ "@esbuild/linux-x64": "npm:0.25.12"
+ "@esbuild/netbsd-arm64": "npm:0.25.12"
+ "@esbuild/netbsd-x64": "npm:0.25.12"
+ "@esbuild/openbsd-arm64": "npm:0.25.12"
+ "@esbuild/openbsd-x64": "npm:0.25.12"
+ "@esbuild/openharmony-arm64": "npm:0.25.12"
+ "@esbuild/sunos-x64": "npm:0.25.12"
+ "@esbuild/win32-arm64": "npm:0.25.12"
+ "@esbuild/win32-ia32": "npm:0.25.12"
+ "@esbuild/win32-x64": "npm:0.25.12"
+ dependenciesMeta:
+ "@esbuild/aix-ppc64":
+ optional: true
+ "@esbuild/android-arm":
+ optional: true
+ "@esbuild/android-arm64":
+ optional: true
+ "@esbuild/android-x64":
+ optional: true
+ "@esbuild/darwin-arm64":
+ optional: true
+ "@esbuild/darwin-x64":
+ optional: true
+ "@esbuild/freebsd-arm64":
+ optional: true
+ "@esbuild/freebsd-x64":
+ optional: true
+ "@esbuild/linux-arm":
+ optional: true
+ "@esbuild/linux-arm64":
+ optional: true
+ "@esbuild/linux-ia32":
+ optional: true
+ "@esbuild/linux-loong64":
+ optional: true
+ "@esbuild/linux-mips64el":
+ optional: true
+ "@esbuild/linux-ppc64":
+ optional: true
+ "@esbuild/linux-riscv64":
+ optional: true
+ "@esbuild/linux-s390x":
+ optional: true
+ "@esbuild/linux-x64":
+ optional: true
+ "@esbuild/netbsd-arm64":
+ optional: true
+ "@esbuild/netbsd-x64":
+ optional: true
+ "@esbuild/openbsd-arm64":
+ optional: true
+ "@esbuild/openbsd-x64":
+ optional: true
+ "@esbuild/openharmony-arm64":
+ optional: true
+ "@esbuild/sunos-x64":
+ optional: true
+ "@esbuild/win32-arm64":
+ optional: true
+ "@esbuild/win32-ia32":
+ optional: true
+ "@esbuild/win32-x64":
+ optional: true
+ bin:
+ esbuild: bin/esbuild
+ checksum: 10/bc9c03d64e96a0632a926662c9d29decafb13a40e5c91790f632f02939bc568edc9abe0ee5d8055085a2819a00139eb12e223cfb8126dbf89bbc569f125d91fd
languageName: node
linkType: hard
-"esbuild@npm:^0.15.9":
- version: 0.15.18
- resolution: "esbuild@npm:0.15.18"
- dependencies:
- "@esbuild/android-arm": "npm:0.15.18"
- "@esbuild/linux-loong64": "npm:0.15.18"
- esbuild-android-64: "npm:0.15.18"
- esbuild-android-arm64: "npm:0.15.18"
- esbuild-darwin-64: "npm:0.15.18"
- esbuild-darwin-arm64: "npm:0.15.18"
- esbuild-freebsd-64: "npm:0.15.18"
- esbuild-freebsd-arm64: "npm:0.15.18"
- esbuild-linux-32: "npm:0.15.18"
- esbuild-linux-64: "npm:0.15.18"
- esbuild-linux-arm: "npm:0.15.18"
- esbuild-linux-arm64: "npm:0.15.18"
- esbuild-linux-mips64le: "npm:0.15.18"
- esbuild-linux-ppc64le: "npm:0.15.18"
- esbuild-linux-riscv64: "npm:0.15.18"
- esbuild-linux-s390x: "npm:0.15.18"
- esbuild-netbsd-64: "npm:0.15.18"
- esbuild-openbsd-64: "npm:0.15.18"
- esbuild-sunos-64: "npm:0.15.18"
- esbuild-windows-32: "npm:0.15.18"
- esbuild-windows-64: "npm:0.15.18"
- esbuild-windows-arm64: "npm:0.15.18"
+"esbuild@npm:^0.27.0":
+ version: 0.27.7
+ resolution: "esbuild@npm:0.27.7"
+ dependencies:
+ "@esbuild/aix-ppc64": "npm:0.27.7"
+ "@esbuild/android-arm": "npm:0.27.7"
+ "@esbuild/android-arm64": "npm:0.27.7"
+ "@esbuild/android-x64": "npm:0.27.7"
+ "@esbuild/darwin-arm64": "npm:0.27.7"
+ "@esbuild/darwin-x64": "npm:0.27.7"
+ "@esbuild/freebsd-arm64": "npm:0.27.7"
+ "@esbuild/freebsd-x64": "npm:0.27.7"
+ "@esbuild/linux-arm": "npm:0.27.7"
+ "@esbuild/linux-arm64": "npm:0.27.7"
+ "@esbuild/linux-ia32": "npm:0.27.7"
+ "@esbuild/linux-loong64": "npm:0.27.7"
+ "@esbuild/linux-mips64el": "npm:0.27.7"
+ "@esbuild/linux-ppc64": "npm:0.27.7"
+ "@esbuild/linux-riscv64": "npm:0.27.7"
+ "@esbuild/linux-s390x": "npm:0.27.7"
+ "@esbuild/linux-x64": "npm:0.27.7"
+ "@esbuild/netbsd-arm64": "npm:0.27.7"
+ "@esbuild/netbsd-x64": "npm:0.27.7"
+ "@esbuild/openbsd-arm64": "npm:0.27.7"
+ "@esbuild/openbsd-x64": "npm:0.27.7"
+ "@esbuild/openharmony-arm64": "npm:0.27.7"
+ "@esbuild/sunos-x64": "npm:0.27.7"
+ "@esbuild/win32-arm64": "npm:0.27.7"
+ "@esbuild/win32-ia32": "npm:0.27.7"
+ "@esbuild/win32-x64": "npm:0.27.7"
dependenciesMeta:
+ "@esbuild/aix-ppc64":
+ optional: true
"@esbuild/android-arm":
optional: true
- "@esbuild/linux-loong64":
+ "@esbuild/android-arm64":
optional: true
- esbuild-android-64:
+ "@esbuild/android-x64":
optional: true
- esbuild-android-arm64:
+ "@esbuild/darwin-arm64":
optional: true
- esbuild-darwin-64:
+ "@esbuild/darwin-x64":
optional: true
- esbuild-darwin-arm64:
+ "@esbuild/freebsd-arm64":
optional: true
- esbuild-freebsd-64:
+ "@esbuild/freebsd-x64":
optional: true
- esbuild-freebsd-arm64:
+ "@esbuild/linux-arm":
optional: true
- esbuild-linux-32:
+ "@esbuild/linux-arm64":
optional: true
- esbuild-linux-64:
+ "@esbuild/linux-ia32":
optional: true
- esbuild-linux-arm:
+ "@esbuild/linux-loong64":
+ optional: true
+ "@esbuild/linux-mips64el":
+ optional: true
+ "@esbuild/linux-ppc64":
+ optional: true
+ "@esbuild/linux-riscv64":
optional: true
- esbuild-linux-arm64:
+ "@esbuild/linux-s390x":
optional: true
- esbuild-linux-mips64le:
+ "@esbuild/linux-x64":
optional: true
- esbuild-linux-ppc64le:
+ "@esbuild/netbsd-arm64":
optional: true
- esbuild-linux-riscv64:
+ "@esbuild/netbsd-x64":
optional: true
- esbuild-linux-s390x:
+ "@esbuild/openbsd-arm64":
optional: true
- esbuild-netbsd-64:
+ "@esbuild/openbsd-x64":
optional: true
- esbuild-openbsd-64:
+ "@esbuild/openharmony-arm64":
optional: true
- esbuild-sunos-64:
+ "@esbuild/sunos-x64":
optional: true
- esbuild-windows-32:
+ "@esbuild/win32-arm64":
optional: true
- esbuild-windows-64:
+ "@esbuild/win32-ia32":
optional: true
- esbuild-windows-arm64:
+ "@esbuild/win32-x64":
optional: true
bin:
esbuild: bin/esbuild
- checksum: 10/8cf0b134b4f3d623b35f874ac97de7b7bd9d0184717f298a226d607dcfbcd029be438c1d0d60804944e8486604833de3c0b8ddd5eb3598a5ee70f8121ad50aee
+ checksum: 10/262b16c4a33cb70e9f054759a7ce420541649315eef7b064172c795021ccce322e56c3f5fd52e8842873f1c23745f3ab62311a24860950bd5406ba77b36b8529
languageName: node
linkType: hard
@@ -894,6 +2455,176 @@ __metadata:
languageName: node
linkType: hard
+"escape-string-regexp@npm:^1.0.5":
+ version: 1.0.5
+ resolution: "escape-string-regexp@npm:1.0.5"
+ checksum: 10/6092fda75c63b110c706b6a9bfde8a612ad595b628f0bd2147eea1d3406723020810e591effc7db1da91d80a71a737a313567c5abb3813e8d9c71f4aa595b410
+ languageName: node
+ linkType: hard
+
+"escape-string-regexp@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "escape-string-regexp@npm:4.0.0"
+ checksum: 10/98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5
+ languageName: node
+ linkType: hard
+
+"eslint-plugin-unicorn@npm:^64.0.0":
+ version: 64.0.0
+ resolution: "eslint-plugin-unicorn@npm:64.0.0"
+ dependencies:
+ "@babel/helper-validator-identifier": "npm:^7.28.5"
+ "@eslint-community/eslint-utils": "npm:^4.9.1"
+ change-case: "npm:^5.4.4"
+ ci-info: "npm:^4.4.0"
+ clean-regexp: "npm:^1.0.0"
+ core-js-compat: "npm:^3.49.0"
+ find-up-simple: "npm:^1.0.1"
+ globals: "npm:^17.4.0"
+ indent-string: "npm:^5.0.0"
+ is-builtin-module: "npm:^5.0.0"
+ jsesc: "npm:^3.1.0"
+ pluralize: "npm:^8.0.0"
+ regexp-tree: "npm:^0.1.27"
+ regjsparser: "npm:^0.13.0"
+ semver: "npm:^7.7.4"
+ strip-indent: "npm:^4.1.1"
+ peerDependencies:
+ eslint: ">=9.38.0"
+ checksum: 10/3211dadefe8ec43526372a302e48503da42f5e1d3b45d8e20bc29e30dd142b442d70d22ea8617a4ca5494b184b36656d0e81c1e299d12a8e991ac1a86ed35e42
+ languageName: node
+ linkType: hard
+
+"eslint-scope@npm:^9.1.2":
+ version: 9.1.2
+ resolution: "eslint-scope@npm:9.1.2"
+ dependencies:
+ "@types/esrecurse": "npm:^4.3.1"
+ "@types/estree": "npm:^1.0.8"
+ esrecurse: "npm:^4.3.0"
+ estraverse: "npm:^5.2.0"
+ checksum: 10/d102a22525020be99a6897c0d5570b16a387b251e661ba70cedb4f983536d5acd45b9ea2ee05b63ab04f6c35e4f2ed00a113d1c6fb5f61ff879d92e46d0c2f15
+ languageName: node
+ linkType: hard
+
+"eslint-visitor-keys@npm:^3.4.3":
+ version: 3.4.3
+ resolution: "eslint-visitor-keys@npm:3.4.3"
+ checksum: 10/3f357c554a9ea794b094a09bd4187e5eacd1bc0d0653c3adeb87962c548e6a1ab8f982b86963ae1337f5d976004146536dcee5d0e2806665b193fbfbf1a9231b
+ languageName: node
+ linkType: hard
+
+"eslint-visitor-keys@npm:^5.0.1":
+ version: 5.0.1
+ resolution: "eslint-visitor-keys@npm:5.0.1"
+ checksum: 10/f9cc1a57b75e0ef949545cac33d01e8367e302de4c1483266ed4d8646ee5c306376660196bbb38b004e767b7043d1e661cb4336b49eff634a1bbe75c1db709ec
+ languageName: node
+ linkType: hard
+
+"eslint@npm:^10.3.0":
+ version: 10.3.0
+ resolution: "eslint@npm:10.3.0"
+ dependencies:
+ "@eslint-community/eslint-utils": "npm:^4.8.0"
+ "@eslint-community/regexpp": "npm:^4.12.2"
+ "@eslint/config-array": "npm:^0.23.5"
+ "@eslint/config-helpers": "npm:^0.5.5"
+ "@eslint/core": "npm:^1.2.1"
+ "@eslint/plugin-kit": "npm:^0.7.1"
+ "@humanfs/node": "npm:^0.16.6"
+ "@humanwhocodes/module-importer": "npm:^1.0.1"
+ "@humanwhocodes/retry": "npm:^0.4.2"
+ "@types/estree": "npm:^1.0.6"
+ ajv: "npm:^6.14.0"
+ cross-spawn: "npm:^7.0.6"
+ debug: "npm:^4.3.2"
+ escape-string-regexp: "npm:^4.0.0"
+ eslint-scope: "npm:^9.1.2"
+ eslint-visitor-keys: "npm:^5.0.1"
+ espree: "npm:^11.2.0"
+ esquery: "npm:^1.7.0"
+ esutils: "npm:^2.0.2"
+ fast-deep-equal: "npm:^3.1.3"
+ file-entry-cache: "npm:^8.0.0"
+ find-up: "npm:^5.0.0"
+ glob-parent: "npm:^6.0.2"
+ ignore: "npm:^5.2.0"
+ imurmurhash: "npm:^0.1.4"
+ is-glob: "npm:^4.0.0"
+ json-stable-stringify-without-jsonify: "npm:^1.0.1"
+ minimatch: "npm:^10.2.4"
+ natural-compare: "npm:^1.4.0"
+ optionator: "npm:^0.9.3"
+ peerDependencies:
+ jiti: "*"
+ peerDependenciesMeta:
+ jiti:
+ optional: true
+ bin:
+ eslint: bin/eslint.js
+ checksum: 10/7d8131e5ef65754f61afd807d875377403f1c89b5f5529f23506776c2df504ba0d53d378b8aeec1996c66c6d428ea3e2ea5c04b226474ce89b6e28443fd3b7b6
+ languageName: node
+ linkType: hard
+
+"espree@npm:^11.2.0":
+ version: 11.2.0
+ resolution: "espree@npm:11.2.0"
+ dependencies:
+ acorn: "npm:^8.16.0"
+ acorn-jsx: "npm:^5.3.2"
+ eslint-visitor-keys: "npm:^5.0.1"
+ checksum: 10/5cc4233b8f150010c70713669ef8231f07fe9b6391870cfa0a292a07f723ed5c2922064b978e627f7cabf7753280e64c5bde41d3840caaa40946989df7009a51
+ languageName: node
+ linkType: hard
+
+"esquery@npm:^1.7.0":
+ version: 1.7.0
+ resolution: "esquery@npm:1.7.0"
+ dependencies:
+ estraverse: "npm:^5.1.0"
+ checksum: 10/4afaf3089367e1f5885caa116ef386dffd8bfd64da21fd3d0e56e938d2667cfb2e5400ab4a825aa70e799bb3741e5b5d63c0b94d86e2d4cf3095c9e64b2f5a15
+ languageName: node
+ linkType: hard
+
+"esrecurse@npm:^4.3.0":
+ version: 4.3.0
+ resolution: "esrecurse@npm:4.3.0"
+ dependencies:
+ estraverse: "npm:^5.2.0"
+ checksum: 10/44ffcd89e714ea6b30143e7f119b104fc4d75e77ee913f34d59076b40ef2d21967f84e019f84e1fd0465b42cdbf725db449f232b5e47f29df29ed76194db8e16
+ languageName: node
+ linkType: hard
+
+"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0":
+ version: 5.3.0
+ resolution: "estraverse@npm:5.3.0"
+ checksum: 10/37cbe6e9a68014d34dbdc039f90d0baf72436809d02edffcc06ba3c2a12eb298048f877511353b130153e532aac8d68ba78430c0dd2f44806ebc7c014b01585e
+ languageName: node
+ linkType: hard
+
+"estree-walker@npm:^3.0.3":
+ version: 3.0.3
+ resolution: "estree-walker@npm:3.0.3"
+ dependencies:
+ "@types/estree": "npm:^1.0.0"
+ checksum: 10/a65728d5727b71de172c5df323385755a16c0fdab8234dc756c3854cfee343261ddfbb72a809a5660fac8c75d960bb3e21aa898c2d7e9b19bb298482ca58a3af
+ languageName: node
+ linkType: hard
+
+"esutils@npm:^2.0.2":
+ version: 2.0.3
+ resolution: "esutils@npm:2.0.3"
+ checksum: 10/b23acd24791db11d8f65be5ea58fd9a6ce2df5120ae2da65c16cfc5331ff59d5ac4ef50af66cd4bde238881503ec839928a0135b99a036a9cdfa22d17fd56cdb
+ languageName: node
+ linkType: hard
+
+"eventemitter3@npm:^5.0.1":
+ version: 5.0.4
+ resolution: "eventemitter3@npm:5.0.4"
+ checksum: 10/54f5c8c543650d65f92d03dbef1bb73a682a920490c44699ad8f863a6b19bbca42fb7409aa09ca09cb98a44149d9a7bc1dffd55ca88a740bd928c7be0ad666a0
+ languageName: node
+ linkType: hard
+
"exenv@npm:^1.2.0":
version: 1.2.2
resolution: "exenv@npm:1.2.2"
@@ -901,6 +2632,13 @@ __metadata:
languageName: node
linkType: hard
+"expect-type@npm:^1.2.1":
+ version: 1.3.0
+ resolution: "expect-type@npm:1.3.0"
+ checksum: 10/a5fada3d0c621649261f886e7d93e6bf80ce26d8a86e5d517e38301b8baec8450ab2cb94ba6e7a0a6bf2fc9ee55f54e1b06938ef1efa52ddcfeffbfa01acbbcc
+ languageName: node
+ linkType: hard
+
"exponential-backoff@npm:^3.1.1":
version: 3.1.3
resolution: "exponential-backoff@npm:3.1.3"
@@ -908,7 +2646,28 @@ __metadata:
languageName: node
linkType: hard
-"fdir@npm:^6.5.0":
+"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3":
+ version: 3.1.3
+ resolution: "fast-deep-equal@npm:3.1.3"
+ checksum: 10/e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d
+ languageName: node
+ linkType: hard
+
+"fast-json-stable-stringify@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "fast-json-stable-stringify@npm:2.1.0"
+ checksum: 10/2c20055c1fa43c922428f16ca8bb29f2807de63e5c851f665f7ac9790176c01c3b40335257736b299764a8d383388dabc73c8083b8e1bc3d99f0a941444ec60e
+ languageName: node
+ linkType: hard
+
+"fast-levenshtein@npm:^2.0.6":
+ version: 2.0.6
+ resolution: "fast-levenshtein@npm:2.0.6"
+ checksum: 10/eb7e220ecf2bab5159d157350b81d01f75726a4382f5a9266f42b9150c4523b9795f7f5d9fbbbeaeac09a441b2369f05ee02db48ea938584205530fe5693cfe1
+ languageName: node
+ linkType: hard
+
+"fdir@npm:^6.4.4, fdir@npm:^6.5.0":
version: 6.5.0
resolution: "fdir@npm:6.5.0"
peerDependencies:
@@ -920,7 +2679,60 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@npm:~2.3.2":
+"file-entry-cache@npm:^8.0.0":
+ version: 8.0.0
+ resolution: "file-entry-cache@npm:8.0.0"
+ dependencies:
+ flat-cache: "npm:^4.0.0"
+ checksum: 10/afe55c4de4e0d226a23c1eae62a7219aafb390859122608a89fa4df6addf55c7fd3f1a2da6f5b41e7cdff496e4cf28bbd215d53eab5c817afa96d2b40c81bfb0
+ languageName: node
+ linkType: hard
+
+"find-up-simple@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "find-up-simple@npm:1.0.1"
+ checksum: 10/6e374bffda9f8425314eab47ef79752b6e77dcc95c0ad17d257aef48c32fe07bbc41bcafbd22941c25bb94fffaaaa8e178d928867d844c58100c7fe19ec82f72
+ languageName: node
+ linkType: hard
+
+"find-up@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "find-up@npm:5.0.0"
+ dependencies:
+ locate-path: "npm:^6.0.0"
+ path-exists: "npm:^4.0.0"
+ checksum: 10/07955e357348f34660bde7920783204ff5a26ac2cafcaa28bace494027158a97b9f56faaf2d89a6106211a8174db650dd9f503f9c0d526b1202d5554a00b9095
+ languageName: node
+ linkType: hard
+
+"flat-cache@npm:^4.0.0":
+ version: 4.0.1
+ resolution: "flat-cache@npm:4.0.1"
+ dependencies:
+ flatted: "npm:^3.2.9"
+ keyv: "npm:^4.5.4"
+ checksum: 10/58ce851d9045fffc7871ce2bd718bc485ad7e777bf748c054904b87c351ff1080c2c11da00788d78738bfb51b71e4d5ea12d13b98eb36e3358851ffe495b62dc
+ languageName: node
+ linkType: hard
+
+"flatted@npm:^3.2.9":
+ version: 3.4.2
+ resolution: "flatted@npm:3.4.2"
+ checksum: 10/a9e78fe5c2c1fcd98209a015ccee3a6caa953e01729778e83c1fe92e68601a63e1e69cd4e573010ca99eaf585a581b80ccf1018b99283e6cbc2117bcba1e030f
+ languageName: node
+ linkType: hard
+
+"foreground-child@npm:^3.1.0":
+ version: 3.3.1
+ resolution: "foreground-child@npm:3.3.1"
+ dependencies:
+ cross-spawn: "npm:^7.0.6"
+ signal-exit: "npm:^4.0.1"
+ checksum: 10/427b33f997a98073c0424e5c07169264a62cda806d8d2ded159b5b903fdfc8f0a1457e06b5fc35506497acb3f1e353f025edee796300209ac6231e80edece835
+ languageName: node
+ linkType: hard
+
+"fsevents@npm:~2.3.2, fsevents@npm:~2.3.3":
version: 2.3.3
resolution: "fsevents@npm:2.3.3"
dependencies:
@@ -930,26 +2742,58 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin":
- version: 2.3.3
- resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"
+"fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin":
+ version: 2.3.3
+ resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"
+ dependencies:
+ node-gyp: "npm:latest"
+ conditions: os=darwin
+ languageName: node
+ linkType: hard
+
+"gensync@npm:^1.0.0-beta.2":
+ version: 1.0.0-beta.2
+ resolution: "gensync@npm:1.0.0-beta.2"
+ checksum: 10/17d8333460204fbf1f9160d067e1e77f908a5447febb49424b8ab043026049835c9ef3974445c57dbd39161f4d2b04356d7de12b2eecaa27a7a7ea7d871cbedd
+ languageName: node
+ linkType: hard
+
+"get-east-asian-width@npm:^1.0.0, get-east-asian-width@npm:^1.3.1, get-east-asian-width@npm:^1.5.0":
+ version: 1.5.0
+ resolution: "get-east-asian-width@npm:1.5.0"
+ checksum: 10/60bc34cd1e975055ab99f0f177e31bed3e516ff7cee9c536474383954a976abaa6b94a51d99ad158ef1e372790fa096cab7d07f166bb0778f6587954c0fbe946
+ languageName: node
+ linkType: hard
+
+"glob-parent@npm:^6.0.2":
+ version: 6.0.2
+ resolution: "glob-parent@npm:6.0.2"
dependencies:
- node-gyp: "npm:latest"
- conditions: os=darwin
+ is-glob: "npm:^4.0.3"
+ checksum: 10/c13ee97978bef4f55106b71e66428eb1512e71a7466ba49025fc2aec59a5bfb0954d5abd58fc5ee6c9b076eef4e1f6d3375c2e964b88466ca390da4419a786a8
languageName: node
linkType: hard
-"function-bind@npm:^1.1.2":
- version: 1.1.2
- resolution: "function-bind@npm:1.1.2"
- checksum: 10/185e20d20f10c8d661d59aac0f3b63b31132d492e1b11fcc2a93cb2c47257ebaee7407c38513efd2b35cafdf972d9beb2ea4593c1e0f3bf8f2744836928d7454
+"glob@npm:^10.4.1":
+ version: 10.5.0
+ resolution: "glob@npm:10.5.0"
+ dependencies:
+ foreground-child: "npm:^3.1.0"
+ jackspeak: "npm:^3.1.2"
+ minimatch: "npm:^9.0.4"
+ minipass: "npm:^7.1.2"
+ package-json-from-dist: "npm:^1.0.0"
+ path-scurry: "npm:^1.11.1"
+ bin:
+ glob: dist/esm/bin.mjs
+ checksum: 10/ab3bccfefcc0afaedbd1f480cd0c4a2c0e322eb3f0aa7ceaa31b3f00b825069f17cf0f1fc8b6f256795074b903f37c0ade37ddda6a176aa57f1c2bbfe7240653
languageName: node
linkType: hard
-"gensync@npm:^1.0.0-beta.2":
- version: 1.0.0-beta.2
- resolution: "gensync@npm:1.0.0-beta.2"
- checksum: 10/17d8333460204fbf1f9160d067e1e77f908a5447febb49424b8ab043026049835c9ef3974445c57dbd39161f4d2b04356d7de12b2eecaa27a7a7ea7d871cbedd
+"globals@npm:^17.4.0":
+ version: 17.6.0
+ resolution: "globals@npm:17.6.0"
+ checksum: 10/2bf0febf31c942edee6f4eca7e939a9c885f8ecfb767048b1c4dd2a32008d0ab136e6076665d76b44b29c2571bbbc1681371caab05fd8ee0067c7618e841b89d
languageName: node
linkType: hard
@@ -976,12 +2820,40 @@ __metadata:
languageName: node
linkType: hard
-"hasown@npm:^2.0.2":
- version: 2.0.3
- resolution: "hasown@npm:2.0.3"
+"happy-dom@npm:^20.9.0":
+ version: 20.9.0
+ resolution: "happy-dom@npm:20.9.0"
dependencies:
- function-bind: "npm:^1.1.2"
- checksum: 10/619526379cda755409d856cbf3c65b82ea342151719a0a550920cf7d6a7f58f7cf079e5a78f3acd162324fc784a3d3d6f6f61aff613b47a0163c16fbe09ea89f
+ "@types/node": "npm:>=20.0.0"
+ "@types/whatwg-mimetype": "npm:^3.0.2"
+ "@types/ws": "npm:^8.18.1"
+ entities: "npm:^7.0.1"
+ whatwg-mimetype: "npm:^3.0.0"
+ ws: "npm:^8.18.3"
+ checksum: 10/5b54d641b467a8826de995a4541e55d79f58e3513e78209c5ff7ef8aa598c201550a8c2975aad465d5605bcf2788314164402f350eaa9014c0d6d6f896cc30c7
+ languageName: node
+ linkType: hard
+
+"has-flag@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "has-flag@npm:4.0.0"
+ checksum: 10/261a1357037ead75e338156b1f9452c016a37dcd3283a972a30d9e4a87441ba372c8b81f818cd0fbcd9c0354b4ae7e18b9e1afa1971164aef6d18c2b6095a8ad
+ languageName: node
+ linkType: hard
+
+"html-escaper@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "html-escaper@npm:2.0.2"
+ checksum: 10/034d74029dcca544a34fb6135e98d427acd73019796ffc17383eaa3ec2fe1c0471dcbbc8f8ed39e46e86d43ccd753a160631615e4048285e313569609b66d5b7
+ languageName: node
+ linkType: hard
+
+"husky@npm:9":
+ version: 9.1.7
+ resolution: "husky@npm:9.1.7"
+ bin:
+ husky: bin.js
+ checksum: 10/c2412753f15695db369634ba70f50f5c0b7e5cb13b673d0826c411ec1bd9ddef08c1dad89ea154f57da2521d2605bd64308af748749b27d08c5f563bcd89975f
languageName: node
linkType: hard
@@ -992,12 +2864,79 @@ __metadata:
languageName: node
linkType: hard
-"is-core-module@npm:^2.16.1":
- version: 2.16.1
- resolution: "is-core-module@npm:2.16.1"
+"ignore@npm:^5.2.0":
+ version: 5.3.2
+ resolution: "ignore@npm:5.3.2"
+ checksum: 10/cceb6a457000f8f6a50e1196429750d782afce5680dd878aa4221bd79972d68b3a55b4b1458fc682be978f4d3c6a249046aa0880637367216444ab7b014cfc98
+ languageName: node
+ linkType: hard
+
+"imurmurhash@npm:^0.1.4":
+ version: 0.1.4
+ resolution: "imurmurhash@npm:0.1.4"
+ checksum: 10/2d30b157a91fe1c1d7c6f653cbf263f039be6c5bfa959245a16d4ee191fc0f2af86c08545b6e6beeb041c56b574d2d5b9f95343d378ab49c0f37394d541e7fc8
+ languageName: node
+ linkType: hard
+
+"indent-string@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "indent-string@npm:4.0.0"
+ checksum: 10/cd3f5cbc9ca2d624c6a1f53f12e6b341659aba0e2d3254ae2b4464aaea8b4294cdb09616abbc59458f980531f2429784ed6a420d48d245bcad0811980c9efae9
+ languageName: node
+ linkType: hard
+
+"indent-string@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "indent-string@npm:5.0.0"
+ checksum: 10/e466c27b6373440e6d84fbc19e750219ce25865cb82d578e41a6053d727e5520dc5725217d6eb1cc76005a1bb1696a0f106d84ce7ebda3033b963a38583fb3b3
+ languageName: node
+ linkType: hard
+
+"is-builtin-module@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "is-builtin-module@npm:5.0.0"
+ dependencies:
+ builtin-modules: "npm:^5.0.0"
+ checksum: 10/fcb1e458fa08e6d7e8763abaa84bc539ca943b298e15448ba92b79ab8f08c382664b8b1d5e32c59358e87026fed7b1e56e457b955436d7cc860cf0653002e4c6
+ languageName: node
+ linkType: hard
+
+"is-extglob@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "is-extglob@npm:2.1.1"
+ checksum: 10/df033653d06d0eb567461e58a7a8c9f940bd8c22274b94bf7671ab36df5719791aae15eef6d83bbb5e23283967f2f984b8914559d4449efda578c775c4be6f85
+ languageName: node
+ linkType: hard
+
+"is-fullwidth-code-point@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "is-fullwidth-code-point@npm:3.0.0"
+ checksum: 10/44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348
+ languageName: node
+ linkType: hard
+
+"is-fullwidth-code-point@npm:^5.0.0, is-fullwidth-code-point@npm:^5.1.0":
+ version: 5.1.0
+ resolution: "is-fullwidth-code-point@npm:5.1.0"
+ dependencies:
+ get-east-asian-width: "npm:^1.3.1"
+ checksum: 10/4700d8a82cb71bd2a2955587b2823c36dc4660eadd4047bfbd070821ddbce8504fc5f9b28725567ecddf405b1e06c6692c9b719f65df6af9ec5262bc11393a6a
+ languageName: node
+ linkType: hard
+
+"is-glob@npm:^4.0.0, is-glob@npm:^4.0.3":
+ version: 4.0.3
+ resolution: "is-glob@npm:4.0.3"
dependencies:
- hasown: "npm:^2.0.2"
- checksum: 10/452b2c2fb7f889cbbf7e54609ef92cf6c24637c568acc7e63d166812a0fb365ae8a504c333a29add8bdb1686704068caa7f4e4b639b650dde4f00a038b8941fb
+ is-extglob: "npm:^2.1.1"
+ checksum: 10/3ed74f2b0cdf4f401f38edb0442ddfde3092d79d7d35c9919c86641efdbcbb32e45aa3c0f70ce5eecc946896cd5a0f26e4188b9f2b881876f7cb6c505b82da11
+ languageName: node
+ linkType: hard
+
+"isexe@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "isexe@npm:2.0.0"
+ checksum: 10/7c9f715c03aff08f35e98b1fadae1b9267b38f0615d501824f9743f3aab99ef10e303ce7db3f186763a0b70a19de5791ebfc854ff884d5a8c4d92211f642ec92
languageName: node
linkType: hard
@@ -1008,6 +2947,58 @@ __metadata:
languageName: node
linkType: hard
+"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0, istanbul-lib-coverage@npm:^3.2.2":
+ version: 3.2.2
+ resolution: "istanbul-lib-coverage@npm:3.2.2"
+ checksum: 10/40bbdd1e937dfd8c830fa286d0f665e81b7a78bdabcd4565f6d5667c99828bda3db7fb7ac6b96a3e2e8a2461ddbc5452d9f8bc7d00cb00075fa6a3e99f5b6a81
+ languageName: node
+ linkType: hard
+
+"istanbul-lib-instrument@npm:^6.0.3":
+ version: 6.0.3
+ resolution: "istanbul-lib-instrument@npm:6.0.3"
+ dependencies:
+ "@babel/core": "npm:^7.23.9"
+ "@babel/parser": "npm:^7.23.9"
+ "@istanbuljs/schema": "npm:^0.1.3"
+ istanbul-lib-coverage: "npm:^3.2.0"
+ semver: "npm:^7.5.4"
+ checksum: 10/aa5271c0008dfa71b6ecc9ba1e801bf77b49dc05524e8c30d58aaf5b9505e0cd12f25f93165464d4266a518c5c75284ecb598fbd89fec081ae77d2c9d3327695
+ languageName: node
+ linkType: hard
+
+"istanbul-lib-report@npm:^3.0.0, istanbul-lib-report@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "istanbul-lib-report@npm:3.0.1"
+ dependencies:
+ istanbul-lib-coverage: "npm:^3.0.0"
+ make-dir: "npm:^4.0.0"
+ supports-color: "npm:^7.1.0"
+ checksum: 10/86a83421ca1cf2109a9f6d193c06c31ef04a45e72a74579b11060b1e7bb9b6337a4e6f04abfb8857e2d569c271273c65e855ee429376a0d7c91ad91db42accd1
+ languageName: node
+ linkType: hard
+
+"istanbul-lib-source-maps@npm:^5.0.6":
+ version: 5.0.6
+ resolution: "istanbul-lib-source-maps@npm:5.0.6"
+ dependencies:
+ "@jridgewell/trace-mapping": "npm:^0.3.23"
+ debug: "npm:^4.1.1"
+ istanbul-lib-coverage: "npm:^3.0.0"
+ checksum: 10/569dd0a392ee3464b1fe1accbaef5cc26de3479eacb5b91d8c67ebb7b425d39fd02247d85649c3a0e9c29b600809fa60b5af5a281a75a89c01f385b1e24823a2
+ languageName: node
+ linkType: hard
+
+"istanbul-reports@npm:^3.1.7":
+ version: 3.2.0
+ resolution: "istanbul-reports@npm:3.2.0"
+ dependencies:
+ html-escaper: "npm:^2.0.0"
+ istanbul-lib-report: "npm:^3.0.0"
+ checksum: 10/6773a1d5c7d47eeec75b317144fe2a3b1da84a44b6282bebdc856e09667865e58c9b025b75b3d87f5bc62939126cbba4c871ee84254537d934ba5da5d4c4ec4e
+ languageName: node
+ linkType: hard
+
"its-fine@npm:^1.1.1":
version: 1.2.5
resolution: "its-fine@npm:1.2.5"
@@ -1019,6 +3010,19 @@ __metadata:
languageName: node
linkType: hard
+"jackspeak@npm:^3.1.2":
+ version: 3.4.3
+ resolution: "jackspeak@npm:3.4.3"
+ dependencies:
+ "@isaacs/cliui": "npm:^8.0.2"
+ "@pkgjs/parseargs": "npm:^0.11.0"
+ dependenciesMeta:
+ "@pkgjs/parseargs":
+ optional: true
+ checksum: 10/96f8786eaab98e4bf5b2a5d6d9588ea46c4d06bbc4f2eb861fdd7b6b182b16f71d8a70e79820f335d52653b16d4843b29dd9cdcf38ae80406756db9199497cf3
+ languageName: node
+ linkType: hard
+
"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0":
version: 4.0.0
resolution: "js-tokens@npm:4.0.0"
@@ -1026,7 +3030,14 @@ __metadata:
languageName: node
linkType: hard
-"jsesc@npm:^3.0.2":
+"js-tokens@npm:^9.0.1":
+ version: 9.0.1
+ resolution: "js-tokens@npm:9.0.1"
+ checksum: 10/3288ba73bb2023adf59501979fb4890feb6669cc167b13771b226814fde96a1583de3989249880e3f4d674040d1815685db9a9880db9153307480d39dc760365
+ languageName: node
+ linkType: hard
+
+"jsesc@npm:^3.0.2, jsesc@npm:^3.1.0, jsesc@npm:~3.1.0":
version: 3.1.0
resolution: "jsesc@npm:3.1.0"
bin:
@@ -1035,6 +3046,27 @@ __metadata:
languageName: node
linkType: hard
+"json-buffer@npm:3.0.1":
+ version: 3.0.1
+ resolution: "json-buffer@npm:3.0.1"
+ checksum: 10/82876154521b7b68ba71c4f969b91572d1beabadd87bd3a6b236f85fbc7dc4695089191ed60bb59f9340993c51b33d479f45b6ba9f3548beb519705281c32c3c
+ languageName: node
+ linkType: hard
+
+"json-schema-traverse@npm:^0.4.1":
+ version: 0.4.1
+ resolution: "json-schema-traverse@npm:0.4.1"
+ checksum: 10/7486074d3ba247769fda17d5181b345c9fb7d12e0da98b22d1d71a5db9698d8b4bd900a3ec1a4ffdd60846fc2556274a5c894d0c48795f14cb03aeae7b55260b
+ languageName: node
+ linkType: hard
+
+"json-stable-stringify-without-jsonify@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "json-stable-stringify-without-jsonify@npm:1.0.1"
+ checksum: 10/12786c2e2f22c27439e6db0532ba321f1d0617c27ad8cb1c352a0e9249a50182fd1ba8b52a18899291604b0c32eafa8afd09e51203f19109a0537f68db2b652d
+ languageName: node
+ linkType: hard
+
"json5@npm:^2.2.3":
version: 2.2.3
resolution: "json5@npm:2.2.3"
@@ -1044,6 +3076,15 @@ __metadata:
languageName: node
linkType: hard
+"keyv@npm:^4.5.4":
+ version: 4.5.4
+ resolution: "keyv@npm:4.5.4"
+ dependencies:
+ json-buffer: "npm:3.0.1"
+ checksum: 10/167eb6ef64cc84b6fa0780ee50c9de456b422a1e18802209234f7c2cf7eae648c7741f32e50d7e24ccb22b24c13154070b01563d642755b156c357431a191e75
+ languageName: node
+ linkType: hard
+
"konva@npm:^8.3.13":
version: 8.4.3
resolution: "konva@npm:8.4.3"
@@ -1051,6 +3092,55 @@ __metadata:
languageName: node
linkType: hard
+"levn@npm:^0.4.1":
+ version: 0.4.1
+ resolution: "levn@npm:0.4.1"
+ dependencies:
+ prelude-ls: "npm:^1.2.1"
+ type-check: "npm:~0.4.0"
+ checksum: 10/2e4720ff79f21ae08d42374b0a5c2f664c5be8b6c8f565bb4e1315c96ed3a8acaa9de788ffed82d7f2378cf36958573de07ef92336cb5255ed74d08b8318c9ee
+ languageName: node
+ linkType: hard
+
+"lint-staged@npm:^16.4.0":
+ version: 16.4.0
+ resolution: "lint-staged@npm:16.4.0"
+ dependencies:
+ commander: "npm:^14.0.3"
+ listr2: "npm:^9.0.5"
+ picomatch: "npm:^4.0.3"
+ string-argv: "npm:^0.3.2"
+ tinyexec: "npm:^1.0.4"
+ yaml: "npm:^2.8.2"
+ bin:
+ lint-staged: bin/lint-staged.js
+ checksum: 10/eb7aa0d43e321bbf282ce0c693a3db762aa9b8e5bf29419a49c8877a247cd3a14cf8d519f914f8c8dcd2aea73ac83c0bb44fadb97a30004219e060a780dda74e
+ languageName: node
+ linkType: hard
+
+"listr2@npm:^9.0.5":
+ version: 9.0.5
+ resolution: "listr2@npm:9.0.5"
+ dependencies:
+ cli-truncate: "npm:^5.0.0"
+ colorette: "npm:^2.0.20"
+ eventemitter3: "npm:^5.0.1"
+ log-update: "npm:^6.1.0"
+ rfdc: "npm:^1.4.1"
+ wrap-ansi: "npm:^9.0.0"
+ checksum: 10/b78ffd60443aed9a8e0fc9162eb941ea4d63210700d61a895eb29348f23fc668327e26bbca87a9e6a6208e7fa96c475fe1f1c6c19b46f376f547e0cba3b935ae
+ languageName: node
+ linkType: hard
+
+"locate-path@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "locate-path@npm:6.0.0"
+ dependencies:
+ p-locate: "npm:^5.0.0"
+ checksum: 10/72eb661788a0368c099a184c59d2fee760b3831c9c1c33955e8a19ae4a21b4116e53fa736dc086cdeb9fce9f7cc508f2f92d2d3aae516f133e16a2bb59a39f5a
+ languageName: node
+ linkType: hard
+
"lodash-es@npm:^4.17.21":
version: 4.18.1
resolution: "lodash-es@npm:4.18.1"
@@ -1065,6 +3155,19 @@ __metadata:
languageName: node
linkType: hard
+"log-update@npm:^6.1.0":
+ version: 6.1.0
+ resolution: "log-update@npm:6.1.0"
+ dependencies:
+ ansi-escapes: "npm:^7.0.0"
+ cli-cursor: "npm:^5.0.0"
+ slice-ansi: "npm:^7.1.0"
+ strip-ansi: "npm:^7.1.0"
+ wrap-ansi: "npm:^9.0.0"
+ checksum: 10/5abb4131e33b1e7f8416bb194fe17a3603d83e4657c5bf5bb81ce4187f3b00ea481643b85c3d5cefe6037a452cdcf7f1391ab8ea0d9c23e75d19589830ec4f11
+ languageName: node
+ linkType: hard
+
"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0":
version: 1.4.0
resolution: "loose-envify@npm:1.4.0"
@@ -1076,6 +3179,20 @@ __metadata:
languageName: node
linkType: hard
+"loupe@npm:^3.1.0, loupe@npm:^3.1.4":
+ version: 3.2.1
+ resolution: "loupe@npm:3.2.1"
+ checksum: 10/a4d78ec758aaa04e0e35d5cd1c15e970beb9cdbfd3d0f34f98b9bcda489f896a7190b3b6cc40b7a6dcb8e97e82e96eafaae10096aaa469804acdba6f7c2bde5f
+ languageName: node
+ linkType: hard
+
+"lru-cache@npm:^10.2.0":
+ version: 10.4.3
+ resolution: "lru-cache@npm:10.4.3"
+ checksum: 10/e6e90267360476720fa8e83cc168aa2bf0311f3f2eea20a6ba78b90a885ae72071d9db132f40fda4129c803e7dcec3a6b6a6fbb44ca90b081630b810b5d6a41a
+ languageName: node
+ linkType: hard
+
"lru-cache@npm:^5.1.1":
version: 5.1.1
resolution: "lru-cache@npm:5.1.1"
@@ -1085,12 +3202,32 @@ __metadata:
languageName: node
linkType: hard
-"magic-string@npm:^0.26.7":
- version: 0.26.7
- resolution: "magic-string@npm:0.26.7"
+"magic-string@npm:^0.30.17":
+ version: 0.30.21
+ resolution: "magic-string@npm:0.30.21"
+ dependencies:
+ "@jridgewell/sourcemap-codec": "npm:^1.5.5"
+ checksum: 10/57d5691f41ed40d962d8bd300148114f53db67fadbff336207db10a99f2bdf4a1be9cac3a68ee85dba575912ee1d4402e4396408196ec2d3afd043b076156221
+ languageName: node
+ linkType: hard
+
+"magicast@npm:^0.3.5":
+ version: 0.3.5
+ resolution: "magicast@npm:0.3.5"
+ dependencies:
+ "@babel/parser": "npm:^7.25.4"
+ "@babel/types": "npm:^7.25.4"
+ source-map-js: "npm:^1.2.0"
+ checksum: 10/3a2dba6b0bdde957797361d09c7931ebdc1b30231705360eeb40ed458d28e1c3112841c3ed4e1b87ceb28f741e333c7673cd961193aa9fdb4f4946b202e6205a
+ languageName: node
+ linkType: hard
+
+"make-dir@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "make-dir@npm:4.0.0"
dependencies:
- sourcemap-codec: "npm:^1.4.8"
- checksum: 10/2bb371d956bec4f0ae5725dab1a1a47eeb76b00bd01c37afc6a3363713d262e531208bbcc60cea1a00de604fa60d437409c870acecc9536ea77005683191ef5c
+ semver: "npm:^7.5.3"
+ checksum: 10/bf0731a2dd3aab4db6f3de1585cea0b746bb73eb5a02e3d8d72757e376e64e6ada190b1eddcde5b2f24a81b688a9897efd5018737d05e02e2a671dda9cff8a8a
languageName: node
linkType: hard
@@ -1100,18 +3237,29 @@ __metadata:
dependencies:
"@tauri-apps/api": "npm:^1.1.0"
"@tauri-apps/cli": "npm:^1.1.0"
+ "@testing-library/jest-dom": "npm:^6.9.1"
+ "@testing-library/react": "npm:^16.3.2"
"@types/lodash": "npm:^4.14.186"
"@types/node": "npm:^18.7.10"
"@types/react": "npm:^18.0.15"
"@types/react-dom": "npm:^18.0.6"
- "@types/react-modal": "npm:^3.13.1"
+ "@types/react-modal": "npm:^3.16.3"
"@types/semver": "npm:^7.3.12"
"@types/uuid": "npm:^8.3.4"
- "@vitejs/plugin-react": "npm:^2.0.0"
+ "@typescript/native-preview": "npm:^7.0.0-dev.20260505.1"
+ "@vitejs/plugin-react-swc": "npm:^4.3.0"
+ "@vitest/coverage-istanbul": "npm:^3"
buffer: "npm:^6.0.3"
dracula-ui: "npm:^1.0.3"
+ eslint: "npm:^10.3.0"
+ eslint-plugin-unicorn: "npm:^64.0.0"
+ happy-dom: "npm:^20.9.0"
+ husky: "npm:9"
konva: "npm:^8.3.13"
+ lint-staged: "npm:^16.4.0"
lodash: "npm:^4.17.21"
+ oxfmt: "npm:^0.48.0"
+ oxlint: "npm:^1.63.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
react-hot-toast: "npm:^2.4.0"
@@ -1119,17 +3267,50 @@ __metadata:
react-modal: "npm:^3.16.1"
recoil: "npm:^0.7.6"
semver: "npm:^7.3.8"
- typescript: "npm:^4.6.4"
+ typescript: "npm:^5"
use-image: "npm:^1.1.0"
uuid: "npm:^9.0.0"
- vite: "npm:^3.0.2"
+ vite: "npm:^6"
+ vitest: "npm:^3"
dependenciesMeta:
esbuild:
built: true
languageName: unknown
linkType: soft
-"minipass@npm:^7.0.4, minipass@npm:^7.1.2":
+"mimic-function@npm:^5.0.0":
+ version: 5.0.1
+ resolution: "mimic-function@npm:5.0.1"
+ checksum: 10/eb5893c99e902ccebbc267c6c6b83092966af84682957f79313311edb95e8bb5f39fb048d77132b700474d1c86d90ccc211e99bae0935447a4834eb4c882982c
+ languageName: node
+ linkType: hard
+
+"min-indent@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "min-indent@npm:1.0.1"
+ checksum: 10/bfc6dd03c5eaf623a4963ebd94d087f6f4bbbfd8c41329a7f09706b0cb66969c4ddd336abeb587bc44bc6f08e13bf90f0b374f9d71f9f01e04adc2cd6f083ef1
+ languageName: node
+ linkType: hard
+
+"minimatch@npm:^10.2.2, minimatch@npm:^10.2.4":
+ version: 10.2.5
+ resolution: "minimatch@npm:10.2.5"
+ dependencies:
+ brace-expansion: "npm:^5.0.5"
+ checksum: 10/19e87a931aff60ee7b9d80f39f817b8bfc54f61f8356ee3549fbf636dbccacacfec8d803eac73293955c4527cd085247dfc064bce4a5e349f8f3b85e2bf5da0f
+ languageName: node
+ linkType: hard
+
+"minimatch@npm:^9.0.4":
+ version: 9.0.9
+ resolution: "minimatch@npm:9.0.9"
+ dependencies:
+ brace-expansion: "npm:^2.0.2"
+ checksum: 10/b91fad937deaffb68a45a2cb731ff3cff1c3baf9b6469c879477ed16f15c8f4ce39d63a3f75c2455107c2fdff0f3ab597d97dc09e2e93b883aafcf926ef0c8f9
+ languageName: node
+ linkType: hard
+
+"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.4, minipass@npm:^7.1.2":
version: 7.1.3
resolution: "minipass@npm:7.1.3"
checksum: 10/175e4d5e20980c3cd316ae82d2c031c42f6c746467d8b1905b51060a0ba4461441a0c25bb67c025fd9617f9a3873e152c7b543c6b5ac83a1846be8ade80dffd6
@@ -1161,6 +3342,13 @@ __metadata:
languageName: node
linkType: hard
+"natural-compare@npm:^1.4.0":
+ version: 1.4.0
+ resolution: "natural-compare@npm:1.4.0"
+ checksum: 10/23ad088b08f898fc9b53011d7bb78ec48e79de7627e01ab5518e806033861bef68d5b0cd0e2205c2f36690ac9571ff6bcb05eb777ced2eeda8d4ac5b44592c3d
+ languageName: node
+ linkType: hard
+
"node-gyp@npm:latest":
version: 12.3.0
resolution: "node-gyp@npm:12.3.0"
@@ -1206,10 +3394,231 @@ __metadata:
languageName: node
linkType: hard
-"path-parse@npm:^1.0.7":
- version: 1.0.7
- resolution: "path-parse@npm:1.0.7"
- checksum: 10/49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a
+"onetime@npm:^7.0.0":
+ version: 7.0.0
+ resolution: "onetime@npm:7.0.0"
+ dependencies:
+ mimic-function: "npm:^5.0.0"
+ checksum: 10/eb08d2da9339819e2f9d52cab9caf2557d80e9af8c7d1ae86e1a0fef027d00a88e9f5bd67494d350df360f7c559fbb44e800b32f310fb989c860214eacbb561c
+ languageName: node
+ linkType: hard
+
+"optionator@npm:^0.9.3":
+ version: 0.9.4
+ resolution: "optionator@npm:0.9.4"
+ dependencies:
+ deep-is: "npm:^0.1.3"
+ fast-levenshtein: "npm:^2.0.6"
+ levn: "npm:^0.4.1"
+ prelude-ls: "npm:^1.2.1"
+ type-check: "npm:^0.4.0"
+ word-wrap: "npm:^1.2.5"
+ checksum: 10/a8398559c60aef88d7f353a4f98dcdff6090a4e70f874c827302bf1213d9106a1c4d5fcb68dacb1feb3c30a04c4102f41047aa55d4c576b863d6fc876e001af6
+ languageName: node
+ linkType: hard
+
+"oxfmt@npm:^0.48.0":
+ version: 0.48.0
+ resolution: "oxfmt@npm:0.48.0"
+ dependencies:
+ "@oxfmt/binding-android-arm-eabi": "npm:0.48.0"
+ "@oxfmt/binding-android-arm64": "npm:0.48.0"
+ "@oxfmt/binding-darwin-arm64": "npm:0.48.0"
+ "@oxfmt/binding-darwin-x64": "npm:0.48.0"
+ "@oxfmt/binding-freebsd-x64": "npm:0.48.0"
+ "@oxfmt/binding-linux-arm-gnueabihf": "npm:0.48.0"
+ "@oxfmt/binding-linux-arm-musleabihf": "npm:0.48.0"
+ "@oxfmt/binding-linux-arm64-gnu": "npm:0.48.0"
+ "@oxfmt/binding-linux-arm64-musl": "npm:0.48.0"
+ "@oxfmt/binding-linux-ppc64-gnu": "npm:0.48.0"
+ "@oxfmt/binding-linux-riscv64-gnu": "npm:0.48.0"
+ "@oxfmt/binding-linux-riscv64-musl": "npm:0.48.0"
+ "@oxfmt/binding-linux-s390x-gnu": "npm:0.48.0"
+ "@oxfmt/binding-linux-x64-gnu": "npm:0.48.0"
+ "@oxfmt/binding-linux-x64-musl": "npm:0.48.0"
+ "@oxfmt/binding-openharmony-arm64": "npm:0.48.0"
+ "@oxfmt/binding-win32-arm64-msvc": "npm:0.48.0"
+ "@oxfmt/binding-win32-ia32-msvc": "npm:0.48.0"
+ "@oxfmt/binding-win32-x64-msvc": "npm:0.48.0"
+ tinypool: "npm:2.1.0"
+ dependenciesMeta:
+ "@oxfmt/binding-android-arm-eabi":
+ optional: true
+ "@oxfmt/binding-android-arm64":
+ optional: true
+ "@oxfmt/binding-darwin-arm64":
+ optional: true
+ "@oxfmt/binding-darwin-x64":
+ optional: true
+ "@oxfmt/binding-freebsd-x64":
+ optional: true
+ "@oxfmt/binding-linux-arm-gnueabihf":
+ optional: true
+ "@oxfmt/binding-linux-arm-musleabihf":
+ optional: true
+ "@oxfmt/binding-linux-arm64-gnu":
+ optional: true
+ "@oxfmt/binding-linux-arm64-musl":
+ optional: true
+ "@oxfmt/binding-linux-ppc64-gnu":
+ optional: true
+ "@oxfmt/binding-linux-riscv64-gnu":
+ optional: true
+ "@oxfmt/binding-linux-riscv64-musl":
+ optional: true
+ "@oxfmt/binding-linux-s390x-gnu":
+ optional: true
+ "@oxfmt/binding-linux-x64-gnu":
+ optional: true
+ "@oxfmt/binding-linux-x64-musl":
+ optional: true
+ "@oxfmt/binding-openharmony-arm64":
+ optional: true
+ "@oxfmt/binding-win32-arm64-msvc":
+ optional: true
+ "@oxfmt/binding-win32-ia32-msvc":
+ optional: true
+ "@oxfmt/binding-win32-x64-msvc":
+ optional: true
+ bin:
+ oxfmt: bin/oxfmt
+ checksum: 10/629b2659cc4452a579972a6f230c8f9aa63fdbdd5b95eea7991804c24797db49f14d9471a68cb1dbc6a43d1bad2c5238779a75862c7df668ab31f7af08381988
+ languageName: node
+ linkType: hard
+
+"oxlint@npm:^1.63.0":
+ version: 1.63.0
+ resolution: "oxlint@npm:1.63.0"
+ dependencies:
+ "@oxlint/binding-android-arm-eabi": "npm:1.63.0"
+ "@oxlint/binding-android-arm64": "npm:1.63.0"
+ "@oxlint/binding-darwin-arm64": "npm:1.63.0"
+ "@oxlint/binding-darwin-x64": "npm:1.63.0"
+ "@oxlint/binding-freebsd-x64": "npm:1.63.0"
+ "@oxlint/binding-linux-arm-gnueabihf": "npm:1.63.0"
+ "@oxlint/binding-linux-arm-musleabihf": "npm:1.63.0"
+ "@oxlint/binding-linux-arm64-gnu": "npm:1.63.0"
+ "@oxlint/binding-linux-arm64-musl": "npm:1.63.0"
+ "@oxlint/binding-linux-ppc64-gnu": "npm:1.63.0"
+ "@oxlint/binding-linux-riscv64-gnu": "npm:1.63.0"
+ "@oxlint/binding-linux-riscv64-musl": "npm:1.63.0"
+ "@oxlint/binding-linux-s390x-gnu": "npm:1.63.0"
+ "@oxlint/binding-linux-x64-gnu": "npm:1.63.0"
+ "@oxlint/binding-linux-x64-musl": "npm:1.63.0"
+ "@oxlint/binding-openharmony-arm64": "npm:1.63.0"
+ "@oxlint/binding-win32-arm64-msvc": "npm:1.63.0"
+ "@oxlint/binding-win32-ia32-msvc": "npm:1.63.0"
+ "@oxlint/binding-win32-x64-msvc": "npm:1.63.0"
+ peerDependencies:
+ oxlint-tsgolint: ">=0.22.1"
+ dependenciesMeta:
+ "@oxlint/binding-android-arm-eabi":
+ optional: true
+ "@oxlint/binding-android-arm64":
+ optional: true
+ "@oxlint/binding-darwin-arm64":
+ optional: true
+ "@oxlint/binding-darwin-x64":
+ optional: true
+ "@oxlint/binding-freebsd-x64":
+ optional: true
+ "@oxlint/binding-linux-arm-gnueabihf":
+ optional: true
+ "@oxlint/binding-linux-arm-musleabihf":
+ optional: true
+ "@oxlint/binding-linux-arm64-gnu":
+ optional: true
+ "@oxlint/binding-linux-arm64-musl":
+ optional: true
+ "@oxlint/binding-linux-ppc64-gnu":
+ optional: true
+ "@oxlint/binding-linux-riscv64-gnu":
+ optional: true
+ "@oxlint/binding-linux-riscv64-musl":
+ optional: true
+ "@oxlint/binding-linux-s390x-gnu":
+ optional: true
+ "@oxlint/binding-linux-x64-gnu":
+ optional: true
+ "@oxlint/binding-linux-x64-musl":
+ optional: true
+ "@oxlint/binding-openharmony-arm64":
+ optional: true
+ "@oxlint/binding-win32-arm64-msvc":
+ optional: true
+ "@oxlint/binding-win32-ia32-msvc":
+ optional: true
+ "@oxlint/binding-win32-x64-msvc":
+ optional: true
+ peerDependenciesMeta:
+ oxlint-tsgolint:
+ optional: true
+ bin:
+ oxlint: bin/oxlint
+ checksum: 10/60832d486c850c2a16ca70c63770cc995acfb9d1fe1e39cab1a7ad0b9d7076083954c4fba294e3a545c7ca57ca06bc889e11b7d2f2c27f26026fac1bbb74c82d
+ languageName: node
+ linkType: hard
+
+"p-limit@npm:^3.0.2":
+ version: 3.1.0
+ resolution: "p-limit@npm:3.1.0"
+ dependencies:
+ yocto-queue: "npm:^0.1.0"
+ checksum: 10/7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360
+ languageName: node
+ linkType: hard
+
+"p-locate@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "p-locate@npm:5.0.0"
+ dependencies:
+ p-limit: "npm:^3.0.2"
+ checksum: 10/1623088f36cf1cbca58e9b61c4e62bf0c60a07af5ae1ca99a720837356b5b6c5ba3eb1b2127e47a06865fee59dd0453cad7cc844cda9d5a62ac1a5a51b7c86d3
+ languageName: node
+ linkType: hard
+
+"package-json-from-dist@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "package-json-from-dist@npm:1.0.1"
+ checksum: 10/58ee9538f2f762988433da00e26acc788036914d57c71c246bf0be1b60cdbd77dd60b6a3e1a30465f0b248aeb80079e0b34cb6050b1dfa18c06953bb1cbc7602
+ languageName: node
+ linkType: hard
+
+"path-exists@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "path-exists@npm:4.0.0"
+ checksum: 10/505807199dfb7c50737b057dd8d351b82c033029ab94cb10a657609e00c1bc53b951cfdbccab8de04c5584d5eff31128ce6afd3db79281874a5ef2adbba55ed1
+ languageName: node
+ linkType: hard
+
+"path-key@npm:^3.1.0":
+ version: 3.1.1
+ resolution: "path-key@npm:3.1.1"
+ checksum: 10/55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020
+ languageName: node
+ linkType: hard
+
+"path-scurry@npm:^1.11.1":
+ version: 1.11.1
+ resolution: "path-scurry@npm:1.11.1"
+ dependencies:
+ lru-cache: "npm:^10.2.0"
+ minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0"
+ checksum: 10/5e8845c159261adda6f09814d7725683257fcc85a18f329880ab4d7cc1d12830967eae5d5894e453f341710d5484b8fdbbd4d75181b4d6e1eb2f4dc7aeadc434
+ languageName: node
+ linkType: hard
+
+"pathe@npm:^2.0.3":
+ version: 2.0.3
+ resolution: "pathe@npm:2.0.3"
+ checksum: 10/01e9a69928f39087d96e1751ce7d6d50da8c39abf9a12e0ac2389c42c83bc76f78c45a475bd9026a02e6a6f79be63acc75667df855862fe567d99a00a540d23d
+ languageName: node
+ linkType: hard
+
+"pathval@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "pathval@npm:2.0.1"
+ checksum: 10/f5e8b82f6b988a5bba197970af050268fd800780d0f9ee026e6f0b544ac4b17ab52bebeabccb790d63a794530a1641ae399ad07ecfc67ad337504c85dc9e5693
languageName: node
linkType: hard
@@ -1220,21 +3629,35 @@ __metadata:
languageName: node
linkType: hard
-"picomatch@npm:^4.0.4":
+"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4":
version: 4.0.4
resolution: "picomatch@npm:4.0.4"
checksum: 10/f6ef80a3590827ce20378ae110ac78209cc4f74d39236370f1780f957b7ee41c12acde0e4651b90f39983506fd2f5e449994716f516db2e9752924aff8de93ce
languageName: node
linkType: hard
-"postcss@npm:^8.4.18":
- version: 8.5.13
- resolution: "postcss@npm:8.5.13"
+"pluralize@npm:^8.0.0":
+ version: 8.0.0
+ resolution: "pluralize@npm:8.0.0"
+ checksum: 10/17877fdfdb7ddb3639ce257ad73a7c51a30a966091e40f56ea9f2f545b5727ce548d4928f8cb3ce38e7dc0c5150407d318af6a4ed0ea5265d378473b4c2c61ec
+ languageName: node
+ linkType: hard
+
+"postcss@npm:^8.5.3, postcss@npm:^8.5.6":
+ version: 8.5.14
+ resolution: "postcss@npm:8.5.14"
dependencies:
nanoid: "npm:^3.3.11"
picocolors: "npm:^1.1.1"
source-map-js: "npm:^1.2.1"
- checksum: 10/4763873c0a39a6f71fc552d0046fedb80dca889ed0b85e36217285f754a3bd003a906f6088feb266b1f53b0ad20483a475dce4cc1c756f05e27940c51e40ebd8
+ checksum: 10/2e3f4dea69692918fe9df5402beb0e54df84499995a094f2fbf63d1a9e38bc1b7a42854df47f09e02593213e01a5eb0627b1d1bd6d1b0ea90767b2e072f7167c
+ languageName: node
+ linkType: hard
+
+"prelude-ls@npm:^1.2.1":
+ version: 1.2.1
+ resolution: "prelude-ls@npm:1.2.1"
+ checksum: 10/0b9d2c76801ca652a7f64892dd37b7e3fab149a37d2424920099bf894acccc62abb4424af2155ab36dea8744843060a2d8ddc983518d0b1e22265a22324b72ed
languageName: node
linkType: hard
@@ -1256,6 +3679,13 @@ __metadata:
languageName: node
linkType: hard
+"punycode@npm:^2.1.0":
+ version: 2.3.1
+ resolution: "punycode@npm:2.3.1"
+ checksum: 10/febdc4362bead22f9e2608ff0171713230b57aff9dddc1c273aa2a651fbd366f94b7d6a71d78342a7c0819906750351ca7f2edd26ea41b626d87d6a13d1bd059
+ languageName: node
+ linkType: hard
+
"react-dom@npm:^18.2.0":
version: 18.3.1
resolution: "react-dom@npm:18.3.1"
@@ -1338,13 +3768,6 @@ __metadata:
languageName: node
linkType: hard
-"react-refresh@npm:^0.14.0":
- version: 0.14.2
- resolution: "react-refresh@npm:0.14.2"
- checksum: 10/512abf97271ab8623486061be04b608c39d932e3709f9af1720b41573415fa4993d0009fa5138b6705b60a98f4102f744d4e26c952b14f41a0e455521c6be4cc
- languageName: node
- linkType: hard
-
"react@npm:^18.2.0":
version: 18.3.1
resolution: "react@npm:18.3.1"
@@ -1370,45 +3793,140 @@ __metadata:
languageName: node
linkType: hard
-"resolve@npm:^1.22.1":
- version: 1.22.12
- resolution: "resolve@npm:1.22.12"
+"redent@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "redent@npm:3.0.0"
dependencies:
- es-errors: "npm:^1.3.0"
- is-core-module: "npm:^2.16.1"
- path-parse: "npm:^1.0.7"
- supports-preserve-symlinks-flag: "npm:^1.0.0"
+ indent-string: "npm:^4.0.0"
+ strip-indent: "npm:^3.0.0"
+ checksum: 10/fa1ef20404a2d399235e83cc80bd55a956642e37dd197b4b612ba7327bf87fa32745aeb4a1634b2bab25467164ab4ed9c15be2c307923dd08b0fe7c52431ae6b
+ languageName: node
+ linkType: hard
+
+"regexp-tree@npm:^0.1.27":
+ version: 0.1.27
+ resolution: "regexp-tree@npm:0.1.27"
bin:
- resolve: bin/resolve
- checksum: 10/1d2a081e4b7198e2a70abd7bbbf8aea5380c2d074b6c870035aab50ebfb7312b6492b3588e752faef83a75147862a3d3e09b222bc9afd536804181fd3a515ef9
+ regexp-tree: bin/regexp-tree
+ checksum: 10/08c70c8adb5a0d4af1061bf9eb05d3b6e1d948c433d6b7008e4b5eb12a49429c2d6ca8e9106339a432aa0d07bd6e1bccc638d8f4ab0d045f3adad22182b300a2
languageName: node
linkType: hard
-"resolve@patch:resolve@npm%3A^1.22.1#optional!builtin":
- version: 1.22.12
- resolution: "resolve@patch:resolve@npm%3A1.22.12#optional!builtin::version=1.22.12&hash=c3c19d"
+"regjsparser@npm:^0.13.0":
+ version: 0.13.1
+ resolution: "regjsparser@npm:0.13.1"
dependencies:
- es-errors: "npm:^1.3.0"
- is-core-module: "npm:^2.16.1"
- path-parse: "npm:^1.0.7"
- supports-preserve-symlinks-flag: "npm:^1.0.0"
+ jsesc: "npm:~3.1.0"
bin:
- resolve: bin/resolve
- checksum: 10/f80ad2c2b6820331cbe079198a184ffce322cfeca140065118066276bc08b03d5fa2c1ce652aeb584ec74050d1f656f46f034cc0dd9300452c5ab7866907f8c0
+ regjsparser: bin/parser
+ checksum: 10/3383e9dab8bc8cd09efcd9538191b1e194b1921438ca69fce833d1a447d0625635229464cbc6cb03f33e5d342f2d343e2738fdac9132e2470bca621e480c02ec
+ languageName: node
+ linkType: hard
+
+"restore-cursor@npm:^5.0.0":
+ version: 5.1.0
+ resolution: "restore-cursor@npm:5.1.0"
+ dependencies:
+ onetime: "npm:^7.0.0"
+ signal-exit: "npm:^4.1.0"
+ checksum: 10/838dd54e458d89cfbc1a923b343c1b0f170a04100b4ce1733e97531842d7b440463967e521216e8ab6c6f8e89df877acc7b7f4c18ec76e99fb9bf5a60d358d2c
+ languageName: node
+ linkType: hard
+
+"rfdc@npm:^1.4.1":
+ version: 1.4.1
+ resolution: "rfdc@npm:1.4.1"
+ checksum: 10/2f3d11d3d8929b4bfeefc9acb03aae90f971401de0add5ae6c5e38fec14f0405e6a4aad8fdb76344bfdd20c5193110e3750cbbd28ba86d73729d222b6cf4a729
languageName: node
linkType: hard
-"rollup@npm:^2.79.1":
- version: 2.80.0
- resolution: "rollup@npm:2.80.0"
+"rollup@npm:^4.34.9, rollup@npm:^4.43.0":
+ version: 4.60.3
+ resolution: "rollup@npm:4.60.3"
dependencies:
+ "@rollup/rollup-android-arm-eabi": "npm:4.60.3"
+ "@rollup/rollup-android-arm64": "npm:4.60.3"
+ "@rollup/rollup-darwin-arm64": "npm:4.60.3"
+ "@rollup/rollup-darwin-x64": "npm:4.60.3"
+ "@rollup/rollup-freebsd-arm64": "npm:4.60.3"
+ "@rollup/rollup-freebsd-x64": "npm:4.60.3"
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.60.3"
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.60.3"
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.60.3"
+ "@rollup/rollup-linux-arm64-musl": "npm:4.60.3"
+ "@rollup/rollup-linux-loong64-gnu": "npm:4.60.3"
+ "@rollup/rollup-linux-loong64-musl": "npm:4.60.3"
+ "@rollup/rollup-linux-ppc64-gnu": "npm:4.60.3"
+ "@rollup/rollup-linux-ppc64-musl": "npm:4.60.3"
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.60.3"
+ "@rollup/rollup-linux-riscv64-musl": "npm:4.60.3"
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.60.3"
+ "@rollup/rollup-linux-x64-gnu": "npm:4.60.3"
+ "@rollup/rollup-linux-x64-musl": "npm:4.60.3"
+ "@rollup/rollup-openbsd-x64": "npm:4.60.3"
+ "@rollup/rollup-openharmony-arm64": "npm:4.60.3"
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.60.3"
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.60.3"
+ "@rollup/rollup-win32-x64-gnu": "npm:4.60.3"
+ "@rollup/rollup-win32-x64-msvc": "npm:4.60.3"
+ "@types/estree": "npm:1.0.8"
fsevents: "npm:~2.3.2"
dependenciesMeta:
+ "@rollup/rollup-android-arm-eabi":
+ optional: true
+ "@rollup/rollup-android-arm64":
+ optional: true
+ "@rollup/rollup-darwin-arm64":
+ optional: true
+ "@rollup/rollup-darwin-x64":
+ optional: true
+ "@rollup/rollup-freebsd-arm64":
+ optional: true
+ "@rollup/rollup-freebsd-x64":
+ optional: true
+ "@rollup/rollup-linux-arm-gnueabihf":
+ optional: true
+ "@rollup/rollup-linux-arm-musleabihf":
+ optional: true
+ "@rollup/rollup-linux-arm64-gnu":
+ optional: true
+ "@rollup/rollup-linux-arm64-musl":
+ optional: true
+ "@rollup/rollup-linux-loong64-gnu":
+ optional: true
+ "@rollup/rollup-linux-loong64-musl":
+ optional: true
+ "@rollup/rollup-linux-ppc64-gnu":
+ optional: true
+ "@rollup/rollup-linux-ppc64-musl":
+ optional: true
+ "@rollup/rollup-linux-riscv64-gnu":
+ optional: true
+ "@rollup/rollup-linux-riscv64-musl":
+ optional: true
+ "@rollup/rollup-linux-s390x-gnu":
+ optional: true
+ "@rollup/rollup-linux-x64-gnu":
+ optional: true
+ "@rollup/rollup-linux-x64-musl":
+ optional: true
+ "@rollup/rollup-openbsd-x64":
+ optional: true
+ "@rollup/rollup-openharmony-arm64":
+ optional: true
+ "@rollup/rollup-win32-arm64-msvc":
+ optional: true
+ "@rollup/rollup-win32-ia32-msvc":
+ optional: true
+ "@rollup/rollup-win32-x64-gnu":
+ optional: true
+ "@rollup/rollup-win32-x64-msvc":
+ optional: true
fsevents:
optional: true
bin:
rollup: dist/bin/rollup
- checksum: 10/1150ab0f71d59e25a0fe6c0d07e49615ada1e9deba1754073be527c48c558a019fcd31d4d927a9c172593b7dc9c7c3c6871ef07fe1e575371ee24400a7c58213
+ checksum: 10/576a68253d3d8ad6ae390e4ad70e13726923ed5d0dc8e74f663ce691fa862dc326c3855a296ebf79a95d28761a62556af956e5ec14aa743f1c701e97eda60636
languageName: node
linkType: hard
@@ -1421,7 +3939,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:>=7.5.2, semver@npm:^7.3.5, semver@npm:^7.3.8":
+"semver@npm:>=7.5.2, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.7.4":
version: 7.7.4
resolution: "semver@npm:7.7.4"
bin:
@@ -1439,24 +3957,176 @@ __metadata:
languageName: node
linkType: hard
-"source-map-js@npm:^1.2.1":
+"shebang-command@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "shebang-command@npm:2.0.0"
+ dependencies:
+ shebang-regex: "npm:^3.0.0"
+ checksum: 10/6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa
+ languageName: node
+ linkType: hard
+
+"shebang-regex@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "shebang-regex@npm:3.0.0"
+ checksum: 10/1a2bcae50de99034fcd92ad4212d8e01eedf52c7ec7830eedcf886622804fe36884278f2be8be0ea5fde3fd1c23911643a4e0f726c8685b61871c8908af01222
+ languageName: node
+ linkType: hard
+
+"siginfo@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "siginfo@npm:2.0.0"
+ checksum: 10/e93ff66c6531a079af8fb217240df01f980155b5dc408d2d7bebc398dd284e383eb318153bf8acd4db3c4fe799aa5b9a641e38b0ba3b1975700b1c89547ea4e7
+ languageName: node
+ linkType: hard
+
+"signal-exit@npm:^4.0.1, signal-exit@npm:^4.1.0":
+ version: 4.1.0
+ resolution: "signal-exit@npm:4.1.0"
+ checksum: 10/c9fa63bbbd7431066174a48ba2dd9986dfd930c3a8b59de9c29d7b6854ec1c12a80d15310869ea5166d413b99f041bfa3dd80a7947bcd44ea8e6eb3ffeabfa1f
+ languageName: node
+ linkType: hard
+
+"slice-ansi@npm:^7.1.0":
+ version: 7.1.2
+ resolution: "slice-ansi@npm:7.1.2"
+ dependencies:
+ ansi-styles: "npm:^6.2.1"
+ is-fullwidth-code-point: "npm:^5.0.0"
+ checksum: 10/75f61e1285c294b18c88521a0cdb22cdcbe9b0fd5e8e26f649be804cc43122aa7751bd960a968e3ed7f5aa7f3c67ac605c939019eae916870ec288e878b6fafb
+ languageName: node
+ linkType: hard
+
+"slice-ansi@npm:^8.0.0":
+ version: 8.0.0
+ resolution: "slice-ansi@npm:8.0.0"
+ dependencies:
+ ansi-styles: "npm:^6.2.3"
+ is-fullwidth-code-point: "npm:^5.1.0"
+ checksum: 10/6a7e146852047e26dd5857b35c767e52906549c580cce0ad2287cc32f54f5a582494f674817fc9ac21b2e4ac1ddeaa85b3dee409782681b465330278890c73a8
+ languageName: node
+ linkType: hard
+
+"source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1":
version: 1.2.1
resolution: "source-map-js@npm:1.2.1"
checksum: 10/ff9d8c8bf096d534a5b7707e0382ef827b4dd360a577d3f34d2b9f48e12c9d230b5747974ee7c607f0df65113732711bb701fe9ece3c7edbd43cb2294d707df3
languageName: node
linkType: hard
-"sourcemap-codec@npm:^1.4.8":
- version: 1.4.8
- resolution: "sourcemap-codec@npm:1.4.8"
- checksum: 10/6fc57a151e982b5c9468362690c6d062f3a0d4d8520beb68a82f319c79e7a4d7027eeb1e396de0ecc2cd19491e1d602b2d06fd444feac9b63dd43fea4c55a857
+"stackback@npm:0.0.2":
+ version: 0.0.2
+ resolution: "stackback@npm:0.0.2"
+ checksum: 10/2d4dc4e64e2db796de4a3c856d5943daccdfa3dd092e452a1ce059c81e9a9c29e0b9badba91b43ef0d5ff5c04ee62feb3bcc559a804e16faf447bac2d883aa99
languageName: node
linkType: hard
-"supports-preserve-symlinks-flag@npm:^1.0.0":
- version: 1.0.0
- resolution: "supports-preserve-symlinks-flag@npm:1.0.0"
- checksum: 10/a9dc19ae2220c952bd2231d08ddeecb1b0328b61e72071ff4000c8384e145cc07c1c0bdb3b5a1cb06e186a7b2790f1dee793418b332f6ddf320de25d9125be7e
+"std-env@npm:^3.9.0":
+ version: 3.10.0
+ resolution: "std-env@npm:3.10.0"
+ checksum: 10/19c9cda4f370b1ffae2b8b08c72167d8c3e5cfa972aaf5c6873f85d0ed2faa729407f5abb194dc33380708c00315002febb6f1e1b484736bfcf9361ad366013a
+ languageName: node
+ linkType: hard
+
+"string-argv@npm:^0.3.2":
+ version: 0.3.2
+ resolution: "string-argv@npm:0.3.2"
+ checksum: 10/f9d3addf887026b4b5f997a271149e93bf71efc8692e7dc0816e8807f960b18bcb9787b45beedf0f97ff459575ee389af3f189d8b649834cac602f2e857e75af
+ languageName: node
+ linkType: hard
+
+"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0":
+ version: 4.2.3
+ resolution: "string-width@npm:4.2.3"
+ dependencies:
+ emoji-regex: "npm:^8.0.0"
+ is-fullwidth-code-point: "npm:^3.0.0"
+ strip-ansi: "npm:^6.0.1"
+ checksum: 10/e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb
+ languageName: node
+ linkType: hard
+
+"string-width@npm:^5.0.1, string-width@npm:^5.1.2":
+ version: 5.1.2
+ resolution: "string-width@npm:5.1.2"
+ dependencies:
+ eastasianwidth: "npm:^0.2.0"
+ emoji-regex: "npm:^9.2.2"
+ strip-ansi: "npm:^7.0.1"
+ checksum: 10/7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193
+ languageName: node
+ linkType: hard
+
+"string-width@npm:^7.0.0":
+ version: 7.2.0
+ resolution: "string-width@npm:7.2.0"
+ dependencies:
+ emoji-regex: "npm:^10.3.0"
+ get-east-asian-width: "npm:^1.0.0"
+ strip-ansi: "npm:^7.1.0"
+ checksum: 10/42f9e82f61314904a81393f6ef75b832c39f39761797250de68c041d8ba4df2ef80db49ab6cd3a292923a6f0f409b8c9980d120f7d32c820b4a8a84a2598a295
+ languageName: node
+ linkType: hard
+
+"string-width@npm:^8.2.0":
+ version: 8.2.1
+ resolution: "string-width@npm:8.2.1"
+ dependencies:
+ get-east-asian-width: "npm:^1.5.0"
+ strip-ansi: "npm:^7.1.2"
+ checksum: 10/cfadcc454b357d1a2ef88afb85068c7605900c9920362a16df9b4c320cf411983cee51b9832b70772d138674c2851d506f39c7e669c961a1cdd1258207580805
+ languageName: node
+ linkType: hard
+
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
+ version: 6.0.1
+ resolution: "strip-ansi@npm:6.0.1"
+ dependencies:
+ ansi-regex: "npm:^5.0.1"
+ checksum: 10/ae3b5436d34fadeb6096367626ce987057713c566e1e7768818797e00ac5d62023d0f198c4e681eae9e20701721980b26a64a8f5b91238869592a9c6800719a2
+ languageName: node
+ linkType: hard
+
+"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0, strip-ansi@npm:^7.1.2":
+ version: 7.2.0
+ resolution: "strip-ansi@npm:7.2.0"
+ dependencies:
+ ansi-regex: "npm:^6.2.2"
+ checksum: 10/96da3bc6d73cfba1218625a3d66cf7d37a69bf0920d8735b28f9eeaafcdb6c1fe8440e1ae9eb1ba0ca355dbe8702da872e105e2e939fa93e7851b3cb5dd7d316
+ languageName: node
+ linkType: hard
+
+"strip-indent@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "strip-indent@npm:3.0.0"
+ dependencies:
+ min-indent: "npm:^1.0.0"
+ checksum: 10/18f045d57d9d0d90cd16f72b2313d6364fd2cb4bf85b9f593523ad431c8720011a4d5f08b6591c9d580f446e78855c5334a30fb91aa1560f5d9f95ed1b4a0530
+ languageName: node
+ linkType: hard
+
+"strip-indent@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "strip-indent@npm:4.1.1"
+ checksum: 10/d322bfdc59855006791a4aebe2a66e0892eab7004a5c064d74b86a0c6ecff2818974c9a5eda54b16d8af6aadbc90a6c02635ffcbec11ab33dd8979b1a6346fc0
+ languageName: node
+ linkType: hard
+
+"strip-literal@npm:^3.0.0":
+ version: 3.1.0
+ resolution: "strip-literal@npm:3.1.0"
+ dependencies:
+ js-tokens: "npm:^9.0.1"
+ checksum: 10/6eb00906a1c343a1050579d1d6023e067a2d72152edb92e64cad49535115beb2e77905ace24aa459f29b66e75edba75ef9d8eca90575b0322640d64a5d37e131
+ languageName: node
+ linkType: hard
+
+"supports-color@npm:^7.1.0":
+ version: 7.2.0
+ resolution: "supports-color@npm:7.2.0"
+ dependencies:
+ has-flag: "npm:^4.0.0"
+ checksum: 10/c8bb7afd564e3b26b50ca6ee47572c217526a1389fe018d00345856d4a9b08ffbd61fadaf283a87368d94c3dcdb8f5ffe2650a5a65863e21ad2730ca0f05210a
languageName: node
linkType: hard
@@ -1473,7 +4143,39 @@ __metadata:
languageName: node
linkType: hard
-"tinyglobby@npm:^0.2.12":
+"test-exclude@npm:^7.0.1":
+ version: 7.0.2
+ resolution: "test-exclude@npm:7.0.2"
+ dependencies:
+ "@istanbuljs/schema": "npm:^0.1.2"
+ glob: "npm:^10.4.1"
+ minimatch: "npm:^10.2.2"
+ checksum: 10/45920af7556a58333c75c3d5011b4087f7ac41366319fb0f6ccc4ac8d0e9d2c81442d7ebf6efd13813dcf18c135eda3c52e4ad3e00407a3ee041d8dec6bfd753
+ languageName: node
+ linkType: hard
+
+"tinybench@npm:^2.9.0":
+ version: 2.9.0
+ resolution: "tinybench@npm:2.9.0"
+ checksum: 10/cfa1e1418e91289219501703c4693c70708c91ffb7f040fd318d24aef419fb5a43e0c0160df9471499191968b2451d8da7f8087b08c3133c251c40d24aced06c
+ languageName: node
+ linkType: hard
+
+"tinyexec@npm:^0.3.2":
+ version: 0.3.2
+ resolution: "tinyexec@npm:0.3.2"
+ checksum: 10/b9d5fed3166fb1acd1e7f9a89afcd97ccbe18b9c1af0278e429455f6976d69271ba2d21797e7c36d57d6b05025e525d2882d88c2ab435b60d1ddf2fea361de57
+ languageName: node
+ linkType: hard
+
+"tinyexec@npm:^1.0.4":
+ version: 1.1.2
+ resolution: "tinyexec@npm:1.1.2"
+ checksum: 10/2bbe37f9001c6f5723ab39eb8dc1e88f77e830d7cf2e8f34bb75019eb505fcfe3b061b4799c502ff31fa63aa1a9adc649add5ff1e17b7fbd8c16e1afb75d0b9e
+ languageName: node
+ linkType: hard
+
+"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15":
version: 0.2.16
resolution: "tinyglobby@npm:0.2.16"
dependencies:
@@ -1483,23 +4185,60 @@ __metadata:
languageName: node
linkType: hard
-"typescript@npm:^4.6.4":
- version: 4.9.5
- resolution: "typescript@npm:4.9.5"
+"tinypool@npm:2.1.0":
+ version: 2.1.0
+ resolution: "tinypool@npm:2.1.0"
+ checksum: 10/c11cfe84e8147d5bf198fe04ea789c068dfa8656c7f3483c76a7408c02d108b2e07d7301458021a0a98952d4a760efb6212ab49a01bac085c4aed3d6ee40ab2d
+ languageName: node
+ linkType: hard
+
+"tinypool@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "tinypool@npm:1.1.1"
+ checksum: 10/0d54139e9dbc6ef33349768fa78890a4d708d16a7ab68e4e4ef3bb740609ddf0f9fd13292c2f413fbba756166c97051a657181c8f7ae92ade690604f183cc01d
+ languageName: node
+ linkType: hard
+
+"tinyrainbow@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "tinyrainbow@npm:2.0.0"
+ checksum: 10/94d4e16246972614a5601eeb169ba94f1d49752426312d3cf8cc4f2cc663a2e354ffc653aa4de4eebccbf9eeebdd0caef52d1150271fdfde65d7ae7f3dcb9eb5
+ languageName: node
+ linkType: hard
+
+"tinyspy@npm:^4.0.3":
+ version: 4.0.4
+ resolution: "tinyspy@npm:4.0.4"
+ checksum: 10/858a99e3ded2fba8fe7c243099d9e58e926d6525af03d19cdf86c1a9a30398161fb830b4f77890d266bcc1c69df08fa6f4baf29d089385e4cdaa98d7b6296e7c
+ languageName: node
+ linkType: hard
+
+"type-check@npm:^0.4.0, type-check@npm:~0.4.0":
+ version: 0.4.0
+ resolution: "type-check@npm:0.4.0"
+ dependencies:
+ prelude-ls: "npm:^1.2.1"
+ checksum: 10/14687776479d048e3c1dbfe58a2409e00367810d6960c0f619b33793271ff2a27f81b52461f14a162f1f89a9b1d8da1b237fc7c99b0e1fdcec28ec63a86b1fec
+ languageName: node
+ linkType: hard
+
+"typescript@npm:^5":
+ version: 5.9.3
+ resolution: "typescript@npm:5.9.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 10/458f7220ab11e0fc191514cc41be1707645ec9a8c2d609448a448e18c522cef9646f58728f6811185a4c35613dacdf6c98cf8965c88b3541d0288c47291e4300
+ checksum: 10/c089d9d3da2729fd4ac517f9b0e0485914c4b3c26f80dc0cffcb5de1719a17951e92425d55db59515c1a7ddab65808466debb864d0d56dcf43f27007d0709594
languageName: node
linkType: hard
-"typescript@patch:typescript@npm%3A^4.6.4#optional!builtin":
- version: 4.9.5
- resolution: "typescript@patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587"
+"typescript@patch:typescript@npm%3A^5#optional!builtin":
+ version: 5.9.3
+ resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 10/5659316360b5cc2d6f5931b346401fa534107b68b60179cf14970e27978f0936c1d5c46f4b5b8175f8cba0430f522b3ce355b4b724c0ea36ce6c0347fab25afd
+ checksum: 10/696e1b017bc2635f4e0c94eb4435357701008e2f272f553d06e35b494b8ddc60aa221145e286c28ace0c89ee32827a28c2040e3a69bdc108b1a5dc8fb40b72e3
languageName: node
linkType: hard
@@ -1510,6 +4249,13 @@ __metadata:
languageName: node
linkType: hard
+"undici-types@npm:~7.19.0":
+ version: 7.19.2
+ resolution: "undici-types@npm:7.19.2"
+ checksum: 10/05c34c63444c8caca7137f122b29ed50c1d7d05d1e0b2337f423575d3264054c4a0139e47e82e65723d09b97fcad6d8b0223b3550430a9006cc00e72a1e035bf
+ languageName: node
+ linkType: hard
+
"undici@npm:^6.25.0":
version: 6.25.0
resolution: "undici@npm:6.25.0"
@@ -1531,6 +4277,15 @@ __metadata:
languageName: node
linkType: hard
+"uri-js@npm:^4.2.2":
+ version: 4.4.1
+ resolution: "uri-js@npm:4.4.1"
+ dependencies:
+ punycode: "npm:^2.1.0"
+ checksum: 10/b271ca7e3d46b7160222e3afa3e531505161c9a4e097febae9664e4b59912f4cbe94861361a4175edac3a03fee99d91e44b6a58c17a634bc5a664b19fc76fbcb
+ languageName: node
+ linkType: hard
+
"use-image@npm:^1.1.0":
version: 1.1.4
resolution: "use-image@npm:1.1.4"
@@ -1550,41 +4305,184 @@ __metadata:
languageName: node
linkType: hard
-"vite@npm:^3.0.2":
- version: 3.2.11
- resolution: "vite@npm:3.2.11"
+"vite-node@npm:3.2.4":
+ version: 3.2.4
+ resolution: "vite-node@npm:3.2.4"
dependencies:
- esbuild: "npm:^0.15.9"
- fsevents: "npm:~2.3.2"
- postcss: "npm:^8.4.18"
- resolve: "npm:^1.22.1"
- rollup: "npm:^2.79.1"
+ cac: "npm:^6.7.14"
+ debug: "npm:^4.4.1"
+ es-module-lexer: "npm:^1.7.0"
+ pathe: "npm:^2.0.3"
+ vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0"
+ bin:
+ vite-node: vite-node.mjs
+ checksum: 10/343244ecabbab3b6e1a3065dabaeefa269965a7a7c54652d4b7a7207ee82185e887af97268c61755dcb2dd6a6ce5d9e114400cbd694229f38523e935703cc62f
+ languageName: node
+ linkType: hard
+
+"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0":
+ version: 7.3.2
+ resolution: "vite@npm:7.3.2"
+ dependencies:
+ esbuild: "npm:^0.27.0"
+ fdir: "npm:^6.5.0"
+ fsevents: "npm:~2.3.3"
+ picomatch: "npm:^4.0.3"
+ postcss: "npm:^8.5.6"
+ rollup: "npm:^4.43.0"
+ tinyglobby: "npm:^0.2.15"
+ peerDependencies:
+ "@types/node": ^20.19.0 || >=22.12.0
+ jiti: ">=1.21.0"
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: ">=0.54.8"
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ dependenciesMeta:
+ fsevents:
+ optional: true
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+ bin:
+ vite: bin/vite.js
+ checksum: 10/c5f7a9a60011c41c836cedf31c8ee7624102aff9b6a7f3aab2ff47639721bba0916f81994c3a3ea6577a16c4f0dfee1e7dbd244e0da8edd5954e3c6d48daaaa2
+ languageName: node
+ linkType: hard
+
+"vite@npm:^6":
+ version: 6.4.2
+ resolution: "vite@npm:6.4.2"
+ dependencies:
+ esbuild: "npm:^0.25.0"
+ fdir: "npm:^6.4.4"
+ fsevents: "npm:~2.3.3"
+ picomatch: "npm:^4.0.2"
+ postcss: "npm:^8.5.3"
+ rollup: "npm:^4.34.9"
+ tinyglobby: "npm:^0.2.13"
peerDependencies:
- "@types/node": ">= 14"
+ "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: ">=1.21.0"
less: "*"
+ lightningcss: ^1.21.0
sass: "*"
+ sass-embedded: "*"
stylus: "*"
sugarss: "*"
- terser: ^5.4.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
dependenciesMeta:
fsevents:
optional: true
peerDependenciesMeta:
"@types/node":
optional: true
+ jiti:
+ optional: true
less:
optional: true
+ lightningcss:
+ optional: true
sass:
optional: true
+ sass-embedded:
+ optional: true
stylus:
optional: true
sugarss:
optional: true
terser:
optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
bin:
vite: bin/vite.js
- checksum: 10/3933d93165235001e79c99b69434a91a85404572d698c5160e910237d9ae3833ecea0dcfe1ca2967543e6bf28b419f90c3cb4899782ec9d43bf17ca2accaf361
+ checksum: 10/d6622843fb367065c2459c8d972d1f0d302844bdb329602c4bfb3c149607744f74fbfcbb3d170a4f58fa494012ad74a88e3a63df236845840d50475b89786796
+ languageName: node
+ linkType: hard
+
+"vitest@npm:^3":
+ version: 3.2.4
+ resolution: "vitest@npm:3.2.4"
+ dependencies:
+ "@types/chai": "npm:^5.2.2"
+ "@vitest/expect": "npm:3.2.4"
+ "@vitest/mocker": "npm:3.2.4"
+ "@vitest/pretty-format": "npm:^3.2.4"
+ "@vitest/runner": "npm:3.2.4"
+ "@vitest/snapshot": "npm:3.2.4"
+ "@vitest/spy": "npm:3.2.4"
+ "@vitest/utils": "npm:3.2.4"
+ chai: "npm:^5.2.0"
+ debug: "npm:^4.4.1"
+ expect-type: "npm:^1.2.1"
+ magic-string: "npm:^0.30.17"
+ pathe: "npm:^2.0.3"
+ picomatch: "npm:^4.0.2"
+ std-env: "npm:^3.9.0"
+ tinybench: "npm:^2.9.0"
+ tinyexec: "npm:^0.3.2"
+ tinyglobby: "npm:^0.2.14"
+ tinypool: "npm:^1.1.1"
+ tinyrainbow: "npm:^2.0.0"
+ vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0"
+ vite-node: "npm:3.2.4"
+ why-is-node-running: "npm:^2.3.0"
+ peerDependencies:
+ "@edge-runtime/vm": "*"
+ "@types/debug": ^4.1.12
+ "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
+ "@vitest/browser": 3.2.4
+ "@vitest/ui": 3.2.4
+ happy-dom: "*"
+ jsdom: "*"
+ peerDependenciesMeta:
+ "@edge-runtime/vm":
+ optional: true
+ "@types/debug":
+ optional: true
+ "@types/node":
+ optional: true
+ "@vitest/browser":
+ optional: true
+ "@vitest/ui":
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ bin:
+ vitest: vitest.mjs
+ checksum: 10/f10bbce093ecab310ecbe484536ef4496fb9151510b2be0c5907c65f6d31482d9c851f3182531d1d27d558054aa78e8efd9d4702ba6c82058657e8b6a52507ee
languageName: node
linkType: hard
@@ -1597,6 +4495,24 @@ __metadata:
languageName: node
linkType: hard
+"whatwg-mimetype@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "whatwg-mimetype@npm:3.0.0"
+ checksum: 10/96f9f628c663c2ae05412c185ca81b3df54bcb921ab52fe9ebc0081c1720f25d770665401eb2338ab7f48c71568133845638e18a81ed52ab5d4dcef7d22b40ef
+ languageName: node
+ linkType: hard
+
+"which@npm:^2.0.1":
+ version: 2.0.2
+ resolution: "which@npm:2.0.2"
+ dependencies:
+ isexe: "npm:^2.0.0"
+ bin:
+ node-which: ./bin/node-which
+ checksum: 10/4782f8a1d6b8fc12c65e968fea49f59752bf6302dc43036c3bf87da718a80710f61a062516e9764c70008b487929a73546125570acea95c5b5dcc8ac3052c70f
+ languageName: node
+ linkType: hard
+
"which@npm:^6.0.0":
version: 6.0.1
resolution: "which@npm:6.0.1"
@@ -1608,6 +4524,73 @@ __metadata:
languageName: node
linkType: hard
+"why-is-node-running@npm:^2.3.0":
+ version: 2.3.0
+ resolution: "why-is-node-running@npm:2.3.0"
+ dependencies:
+ siginfo: "npm:^2.0.0"
+ stackback: "npm:0.0.2"
+ bin:
+ why-is-node-running: cli.js
+ checksum: 10/0de6e6cd8f2f94a8b5ca44e84cf1751eadcac3ebedcdc6e5fbbe6c8011904afcbc1a2777c53496ec02ced7b81f2e7eda61e76bf8262a8bc3ceaa1f6040508051
+ languageName: node
+ linkType: hard
+
+"word-wrap@npm:^1.2.5":
+ version: 1.2.5
+ resolution: "word-wrap@npm:1.2.5"
+ checksum: 10/1ec6f6089f205f83037be10d0c4b34c9183b0b63fca0834a5b3cee55dd321429d73d40bb44c8fc8471b5203d6e8f8275717f49a8ff4b2b0ab41d7e1b563e0854
+ languageName: node
+ linkType: hard
+
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
+ version: 7.0.0
+ resolution: "wrap-ansi@npm:7.0.0"
+ dependencies:
+ ansi-styles: "npm:^4.0.0"
+ string-width: "npm:^4.1.0"
+ strip-ansi: "npm:^6.0.0"
+ checksum: 10/cebdaeca3a6880da410f75209e68cd05428580de5ad24535f22696d7d9cab134d1f8498599f344c3cf0fb37c1715807a183778d8c648d6cc0cb5ff2bb4236540
+ languageName: node
+ linkType: hard
+
+"wrap-ansi@npm:^8.1.0":
+ version: 8.1.0
+ resolution: "wrap-ansi@npm:8.1.0"
+ dependencies:
+ ansi-styles: "npm:^6.1.0"
+ string-width: "npm:^5.0.1"
+ strip-ansi: "npm:^7.0.1"
+ checksum: 10/7b1e4b35e9bb2312d2ee9ee7dc95b8cb5f8b4b5a89f7dde5543fe66c1e3715663094defa50d75454ac900bd210f702d575f15f3f17fa9ec0291806d2578d1ddf
+ languageName: node
+ linkType: hard
+
+"wrap-ansi@npm:^9.0.0":
+ version: 9.0.2
+ resolution: "wrap-ansi@npm:9.0.2"
+ dependencies:
+ ansi-styles: "npm:^6.2.1"
+ string-width: "npm:^7.0.0"
+ strip-ansi: "npm:^7.1.0"
+ checksum: 10/f3907e1ea9717404ca53a338fa5a017c2121550c3a5305180e2bc08c03e21aa45068df55b0d7676bf57be1880ba51a84458c17241ebedea485fafa9ef16b4024
+ languageName: node
+ linkType: hard
+
+"ws@npm:^8.18.3":
+ version: 8.20.0
+ resolution: "ws@npm:8.20.0"
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ">=5.0.2"
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ checksum: 10/b7ab934b21ffdea9f25a5af5097e8c1ec7625db553bca026c5a23e35b7c236f3fb89782f2b57fab9da553864512f9aa7d245827ef998d26ffa1b2187a19a6d10
+ languageName: node
+ linkType: hard
+
"yallist@npm:^3.0.2":
version: 3.1.1
resolution: "yallist@npm:3.1.1"
@@ -1621,3 +4604,19 @@ __metadata:
checksum: 10/1884d272d485845ad04759a255c71775db0fac56308764b4c77ea56a20d56679fad340213054c8c9c9c26fcfd4c4b2a90df993b7e0aaf3cdb73c618d1d1a802a
languageName: node
linkType: hard
+
+"yaml@npm:^2.8.2":
+ version: 2.8.4
+ resolution: "yaml@npm:2.8.4"
+ bin:
+ yaml: bin.mjs
+ checksum: 10/1ccf5d9692c6521141515c2df24c30dd3f633fdb96b548ccc744094893cc58868ad0b3220e040b914a6308c52d258dc2d228a0330343e544a13c871569b92305
+ languageName: node
+ linkType: hard
+
+"yocto-queue@npm:^0.1.0":
+ version: 0.1.0
+ resolution: "yocto-queue@npm:0.1.0"
+ checksum: 10/f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700
+ languageName: node
+ linkType: hard