diff --git a/.changeset/dependency-refresh-dedupe.md b/.changeset/dependency-refresh-dedupe.md
new file mode 100644
index 00000000..c8dbce23
--- /dev/null
+++ b/.changeset/dependency-refresh-dedupe.md
@@ -0,0 +1,5 @@
+---
+'@fingerprint/react': patch
+---
+
+Bump `@fingerprint/agent` dependency to `^4.1.2` and drop the `fast-deep-equal` runtime dependency in favor of an internal cache-key comparison.
diff --git a/.husky/commit-msg b/.husky/commit-msg
index 5426a932..e81b0510 100755
--- a/.husky/commit-msg
+++ b/.husky/commit-msg
@@ -1,4 +1 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
-npx commitlint --edit $1
+npx commitlint --edit "$1"
diff --git a/.husky/pre-commit b/.husky/pre-commit
index 36af2198..2312dc58 100755
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,4 +1 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
npx lint-staged
diff --git a/.husky/pre-push b/.husky/pre-push
index 805d73bf..34fe887e 100755
--- a/.husky/pre-push
+++ b/.husky/pre-push
@@ -1,6 +1,3 @@
-#!/bin/bash
-. "$(dirname "$0")/_/husky.sh"
-
containsref() { if [[ $2 =~ $1 ]]; then echo 1; else echo 0; fi }
push_command=$(ps -ocommand= -p $PPID | cut -d' ' -f 4)
diff --git a/__tests__/use-visitor-data.test.tsx b/__tests__/use-visitor-data.test.tsx
index 0694b31a..cff147cc 100644
--- a/__tests__/use-visitor-data.test.tsx
+++ b/__tests__/use-visitor-data.test.tsx
@@ -339,4 +339,39 @@ describe('useVisitorData', () => {
expect(getDataValues[2]).not.toBe(getDataValues[3])
expect(effectCount).toEqual(3)
})
+
+ it('should treat tags with differently ordered object keys as equal', async () => {
+ const getDataValues: UseVisitorDataReturn['getData'][] = []
+ const Component = () => {
+ const [reverseKeys, setReverseKeys] = useState(false)
+ const { getData } = useVisitorData({
+ immediate: false,
+ tag: reverseKeys ? { second: 2, first: 1 } : { first: 1, second: 2 },
+ })
+
+ getDataValues.push(getData)
+
+ return (
+
+ )
+ }
+ const Wrapper = createWrapper()
+ const user = userEvent.setup()
+
+ render(
+
+
+
+ )
+ await user.click(screen.getByRole('button', { name: 'Reverse keys' }))
+
+ expect(getDataValues).toHaveLength(2)
+ expect(getDataValues[1]).toBe(getDataValues[0])
+ })
})
diff --git a/examples/create-react-app/package.json b/examples/create-react-app/package.json
index 3a0ae6b6..a5a516e3 100644
--- a/examples/create-react-app/package.json
+++ b/examples/create-react-app/package.json
@@ -4,13 +4,13 @@
"private": true,
"dependencies": {
"@fingerprint/react": "workspace:*",
- "react-router-dom": "^6.22.3",
+ "react": "catalog:",
+ "react-dom": "catalog:",
+ "react-router-dom": "^7.18.1",
"react-scripts": "5.0.1"
},
- "peerDependencies": {
- "react": "*",
- "react-dom": "*",
- "typescript": "*"
+ "devDependencies": {
+ "typescript": "catalog:"
},
"scripts": {
"dev": "PORT=3001 DISABLE_ESLINT_PLUGIN=true react-scripts start",
diff --git a/examples/create-react-app/src/App.tsx b/examples/create-react-app/src/App.tsx
index 13670ed1..aa5a8d11 100644
--- a/examples/create-react-app/src/App.tsx
+++ b/examples/create-react-app/src/App.tsx
@@ -58,7 +58,7 @@ function MainNav() {
onChange={(event) => {
const newValue = event.currentTarget.value
setValue(newValue)
- navigate(`${newValue}/home`)
+ void navigate(`${newValue}/home`)
}}
value={value}
>
diff --git a/examples/next-appDir/package.json b/examples/next-appDir/package.json
index f0e6d4a7..a069565b 100644
--- a/examples/next-appDir/package.json
+++ b/examples/next-appDir/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@fingerprint/react": "workspace:*",
- "next": "14.2.32"
+ "next": "14.2.35"
},
"devDependencies": {
- "@types/node": "^20.11.28",
- "@types/react": "^18.2.66",
- "@types/react-dom": "^18.2.22",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "typescript": "^5.4.2"
+ "@types/node": "catalog:",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
+ "react": "catalog:",
+ "react-dom": "catalog:",
+ "typescript": "catalog:"
}
}
diff --git a/examples/next/package.json b/examples/next/package.json
index 296f28ec..9c5dae5b 100644
--- a/examples/next/package.json
+++ b/examples/next/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@fingerprint/react": "workspace:*",
- "next": "14.2.32"
+ "next": "14.2.35"
},
"devDependencies": {
- "@types/node": "^20.11.28",
- "@types/react": "^18.2.66",
- "@types/react-dom": "^18.2.22",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "typescript": "^5.4.2"
+ "@types/node": "catalog:",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
+ "react": "catalog:",
+ "react-dom": "catalog:",
+ "typescript": "catalog:"
}
}
diff --git a/examples/preact/package.json b/examples/preact/package.json
index bf62ea46..3866d6bb 100644
--- a/examples/preact/package.json
+++ b/examples/preact/package.json
@@ -11,13 +11,13 @@
},
"dependencies": {
"@fingerprint/react": "workspace:*",
- "preact": "10.19.6",
- "preact-render-to-string": "^6.4.0"
+ "preact": "10.29.7",
+ "preact-render-to-string": "^6.7.0"
},
"devDependencies": {
- "dotenv": "^16.4.5",
+ "dotenv": "^17.4.2",
"preact-cli": "^3.5.1",
- "sirv-cli": "^2.0.2",
- "typescript": "*"
+ "sirv-cli": "^3.0.1",
+ "typescript": "catalog:"
}
}
diff --git a/examples/vite/package.json b/examples/vite/package.json
index 25724f51..6c68757c 100644
--- a/examples/vite/package.json
+++ b/examples/vite/package.json
@@ -11,15 +11,15 @@
},
"dependencies": {
"@fingerprint/react": "workspace:*",
- "react": "^19.2.0",
- "react-dom": "^19.2.0"
+ "react": "catalog:",
+ "react-dom": "catalog:"
},
"devDependencies": {
- "@types/node": "^24.10.1",
- "@types/react": "^19.2.5",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^5.1.1",
- "typescript": "~5.9.3",
- "vite": "^7.2.4"
+ "@types/node": "catalog:",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
+ "@vitejs/plugin-react": "^6.0.3",
+ "typescript": "catalog:",
+ "vite": "^8.1.4"
}
}
diff --git a/examples/webpack-based/package.json b/examples/webpack-based/package.json
index 60e3f753..47845dc9 100644
--- a/examples/webpack-based/package.json
+++ b/examples/webpack-based/package.json
@@ -10,21 +10,19 @@
"lint": "eslint . --max-warnings 0"
},
"devDependencies": {
- "@babel/core": "^7.24.0",
- "@babel/preset-env": "^7.24.0",
- "@babel/preset-react": "^7.23.3",
- "babel-loader": "^9.1.3",
- "dotenv-webpack": "^8.0.1",
- "html-webpack-plugin": "^5.6.0",
- "webpack": "^5.90.3",
- "webpack-cli": "^5.1.4",
- "webpack-dev-server": "^5.0.3"
+ "@babel/core": "^8.0.1",
+ "@babel/preset-env": "^8.0.2",
+ "@babel/preset-react": "^8.0.1",
+ "babel-loader": "^10.1.1",
+ "dotenv-webpack": "^9.0.0",
+ "html-webpack-plugin": "^5.6.7",
+ "webpack": "^5.108.4",
+ "webpack-cli": "^7.2.1",
+ "webpack-dev-server": "^6.0.0"
},
"dependencies": {
- "@fingerprint/react": "workspace:*"
- },
- "peerDependencies": {
- "react": "*",
- "react-dom": "*"
+ "@fingerprint/react": "workspace:*",
+ "react": "catalog:",
+ "react-dom": "catalog:"
}
}
diff --git a/package.json b/package.json
index 2158a9a2..74fea6e9 100644
--- a/package.json
+++ b/package.json
@@ -30,7 +30,7 @@
],
"scripts": {
"postinstall": "node scripts/detect-env.js",
- "prepare": "husky install",
+ "prepare": "husky",
"watch": "vite build --watch",
"build": "vite build",
"lint": "eslint --max-warnings 0",
@@ -38,7 +38,7 @@
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:diff": "vitest run --coverage --reporter json --outputFile.json=report.json",
- "test:dts": "tsc --noEmit --isolatedModules dist/fingerprint-react.d.ts",
+ "test:dts": "tsc --noEmit --isolatedModules --ignoreConfig dist/fingerprint-react.d.ts",
"docs": "typedoc src/index.ts --out docs",
"changeset:version": "changeset version",
"changeset:publish": "HUSKY=0 changeset publish"
@@ -59,47 +59,47 @@
},
"homepage": "https://github.com/fingerprintjs/react#readme",
"dependencies": {
- "@fingerprint/agent": "^4.0.0",
- "fast-deep-equal": "3.1.3"
+ "@fingerprint/agent": "^4.1.2"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
- "@changesets/cli": "^2.30.0",
- "@commitlint/cli": "^19.2.0",
+ "@changesets/cli": "^2.31.1",
+ "@commitlint/cli": "^21.2.1",
"@eslint-react/eslint-plugin": "5.14.10",
"@fingerprintjs/changesets-changelog-format": "^0.2.0",
"@fingerprintjs/commit-lint-dx-team": "^0.1.0",
"@fingerprintjs/eslint-config-dx-team": "^3.0.0",
"@fingerprintjs/prettier-config-dx-team": "^0.3.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
+ "@microsoft/api-extractor": "^7.58.9",
"@testing-library/preact": "^3.2.4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
- "@types/node": "^20.11.28",
- "@types/react": "^18.2.66",
- "@types/react-dom": "^18.2.22",
- "@vitest/coverage-istanbul": "^4.0.18",
+ "@types/node": "catalog:",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
+ "@vitest/coverage-istanbul": "^4.1.10",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
- "husky": "^9.0.11",
- "lint-staged": "^15.2.2",
- "preact": "^10.19.6",
- "prettier": "3.2.5",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "react-router-dom": "^6.22.3",
- "rimraf": "^5.0.5",
+ "husky": "^9.1.7",
+ "lint-staged": "^17.0.8",
+ "preact": "^10.29.7",
+ "prettier": "3.9.5",
+ "react": "catalog:",
+ "react-dom": "catalog:",
+ "react-router-dom": "^7.18.1",
+ "rimraf": "^6.1.3",
"rollup-plugin-banner2": "^1.3.1",
- "tslib": "^2.6.2",
- "typedoc": "^0.25.12",
- "typescript": "^5.4.2",
+ "tslib": "^2.8.1",
+ "typedoc": "^0.28.20",
+ "typescript": "catalog:",
"typescript-eslint": "^8.64.0",
- "vite": "^7.3.0",
+ "vite": "^8.1.4",
"vite-plugin-banner": "^0.8.1",
- "vite-plugin-dts": "^4.5.4",
- "vitest": "^4.0.18"
+ "vite-plugin-dts": "^5.0.3",
+ "vitest": "^4.1.10"
},
"lint-staged": {
"*.ts": "pnpm lint:fix",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 950527d0..9cbd0233 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,26 +4,44 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+catalogs:
+ default:
+ '@types/node':
+ specifier: ^26.1.1
+ version: 26.1.1
+ '@types/react':
+ specifier: ^18.3.31
+ version: 18.3.31
+ '@types/react-dom':
+ specifier: ^18.3.7
+ version: 18.3.7
+ react:
+ specifier: ^18.3.1
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.3.1
+ version: 18.3.1
+ typescript:
+ specifier: ~6.0.3
+ version: 6.0.3
+
importers:
.:
dependencies:
'@fingerprint/agent':
- specifier: ^4.0.0
+ specifier: ^4.1.2
version: 4.1.2
- fast-deep-equal:
- specifier: 3.1.3
- version: 3.1.3
devDependencies:
'@changesets/cli':
- specifier: ^2.30.0
- version: 2.31.0(@types/node@20.19.43)
+ specifier: ^2.31.1
+ version: 2.31.1(@types/node@26.1.1)
'@commitlint/cli':
- specifier: ^19.2.0
- version: 19.8.1(@types/node@20.19.43)(typescript@5.9.3)
+ specifier: ^21.2.1
+ version: 21.2.1(@types/node@26.1.1)(conventional-commits-parser@7.1.0)(typescript@6.0.3)
'@eslint-react/eslint-plugin':
specifier: 5.14.10
- version: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@fingerprintjs/changesets-changelog-format':
specifier: ^0.2.0
version: 0.2.0
@@ -32,16 +50,19 @@ importers:
version: 0.1.0
'@fingerprintjs/eslint-config-dx-team':
specifier: ^3.0.0
- version: 3.0.0(@types/eslint@8.56.12)(eslint@10.7.0(jiti@2.6.1))(prettier@3.2.5)(typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3))
+ version: 3.0.0(@types/eslint@8.56.12)(eslint@10.7.0(jiti@2.6.1))(prettier@3.9.5)(typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3))
'@fingerprintjs/prettier-config-dx-team':
specifier: ^0.3.0
version: 0.3.0
'@fingerprintjs/tsconfig-dx-team':
specifier: ^0.0.2
version: 0.0.2
+ '@microsoft/api-extractor':
+ specifier: ^7.58.9
+ version: 7.58.9(@types/node@26.1.1)
'@testing-library/preact':
specifier: ^3.2.4
- version: 3.2.4(preact@10.19.6)
+ version: 3.2.4(preact@10.29.7)
'@testing-library/react':
specifier: ^16.3.2
version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -49,16 +70,16 @@ importers:
specifier: ^14.6.1
version: 14.6.1(@testing-library/dom@10.4.1)
'@types/node':
- specifier: ^20.11.28
- version: 20.19.43
+ specifier: 'catalog:'
+ version: 26.1.1
'@types/react':
- specifier: ^18.2.66
+ specifier: 'catalog:'
version: 18.3.31
'@types/react-dom':
- specifier: ^18.2.22
+ specifier: 'catalog:'
version: 18.3.7(@types/react@18.3.31)
'@vitest/coverage-istanbul':
- specifier: ^4.0.18
+ specifier: ^4.1.10
version: 4.1.10(vitest@4.1.10)
eslint:
specifier: ^10.7.0
@@ -67,56 +88,56 @@ importers:
specifier: ^7.1.1
version: 7.1.1(eslint@10.7.0(jiti@2.6.1))
husky:
- specifier: ^9.0.11
+ specifier: ^9.1.7
version: 9.1.7
lint-staged:
- specifier: ^15.2.2
- version: 15.5.2
+ specifier: ^17.0.8
+ version: 17.0.8
preact:
- specifier: ^10.19.6
- version: 10.19.6
+ specifier: ^10.29.7
+ version: 10.29.7(preact-render-to-string@6.7.0)
prettier:
- specifier: 3.2.5
- version: 3.2.5
+ specifier: 3.9.5
+ version: 3.9.5
react:
- specifier: ^18.2.0
+ specifier: 'catalog:'
version: 18.3.1
react-dom:
- specifier: ^18.2.0
+ specifier: 'catalog:'
version: 18.3.1(react@18.3.1)
react-router-dom:
- specifier: ^6.22.3
- version: 6.30.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^7.18.1
+ version: 7.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rimraf:
- specifier: ^5.0.5
- version: 5.0.10
+ specifier: ^6.1.3
+ version: 6.1.3
rollup-plugin-banner2:
specifier: ^1.3.1
version: 1.3.1
tslib:
- specifier: ^2.6.2
+ specifier: ^2.8.1
version: 2.8.1
typedoc:
- specifier: ^0.25.12
- version: 0.25.13(typescript@5.9.3)
+ specifier: ^0.28.20
+ version: 0.28.20(typescript@6.0.3)
typescript:
- specifier: ^5.4.2
- version: 5.9.3
+ specifier: 'catalog:'
+ version: 6.0.3
typescript-eslint:
specifier: ^8.64.0
- version: 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
vite:
- specifier: ^7.3.0
- version: 7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
+ specifier: ^8.1.4
+ version: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
vite-plugin-banner:
specifier: ^0.8.1
version: 0.8.1
vite-plugin-dts:
- specifier: ^4.5.4
- version: 4.5.4(@types/node@20.19.43)(rollup@4.62.2)(typescript@5.9.3)(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
+ specifier: ^5.0.3
+ version: 5.0.3(@microsoft/api-extractor@7.58.9(@types/node@26.1.1))(esbuild@0.28.1)(rolldown@1.1.5)(rollup@4.62.2)(typescript@6.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))(webpack@5.108.4(esbuild@0.28.1))
vitest:
- specifier: ^4.0.18
- version: 4.1.10(@types/node@20.19.43)(@vitest/coverage-istanbul@4.1.10)(jsdom@16.7.0)(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(jsdom@16.7.0)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
examples/create-react-app:
dependencies:
@@ -124,20 +145,21 @@ importers:
specifier: workspace:*
version: link:../..
react:
- specifier: '*'
- version: 19.2.7
+ specifier: 'catalog:'
+ version: 18.3.1
react-dom:
- specifier: '*'
- version: 19.2.7(react@19.2.7)
+ specifier: 'catalog:'
+ version: 18.3.1(react@18.3.1)
react-router-dom:
- specifier: ^6.22.3
- version: 6.30.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ specifier: ^7.18.1
+ version: 7.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-scripts:
specifier: 5.0.1
- version: 5.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(@types/babel__core@7.20.5)(@types/webpack@4.41.40)(esbuild@0.28.1)(eslint@10.7.0(jiti@1.21.7))(react@19.2.7)(type-fest@0.21.3)(typescript@5.9.3)(yaml@2.9.0)
+ version: 5.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(@types/babel__core@7.20.5)(@types/webpack@4.41.40)(esbuild@0.28.1)(eslint@10.7.0(jiti@1.21.7))(react@18.3.1)(type-fest@0.21.3)(typescript@6.0.3)(yaml@2.9.0)
+ devDependencies:
typescript:
- specifier: '*'
- version: 5.9.3
+ specifier: 'catalog:'
+ version: 6.0.3
examples/next:
dependencies:
@@ -145,27 +167,27 @@ importers:
specifier: workspace:*
version: link:../..
next:
- specifier: 14.2.32
- version: 14.2.32(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 14.2.35
+ version: 14.2.35(@babel/core@7.29.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@types/node':
- specifier: ^20.11.28
- version: 20.19.43
+ specifier: 'catalog:'
+ version: 26.1.1
'@types/react':
- specifier: ^18.2.66
+ specifier: 'catalog:'
version: 18.3.31
'@types/react-dom':
- specifier: ^18.2.22
+ specifier: 'catalog:'
version: 18.3.7(@types/react@18.3.31)
react:
- specifier: ^18.2.0
+ specifier: 'catalog:'
version: 18.3.1
react-dom:
- specifier: ^18.2.0
+ specifier: 'catalog:'
version: 18.3.1(react@18.3.1)
typescript:
- specifier: ^5.4.2
- version: 5.9.3
+ specifier: 'catalog:'
+ version: 6.0.3
examples/next-appDir:
dependencies:
@@ -173,27 +195,27 @@ importers:
specifier: workspace:*
version: link:../..
next:
- specifier: 14.2.32
- version: 14.2.32(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 14.2.35
+ version: 14.2.35(@babel/core@7.29.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@types/node':
- specifier: ^20.11.28
- version: 20.19.43
+ specifier: 'catalog:'
+ version: 26.1.1
'@types/react':
- specifier: ^18.2.66
+ specifier: 'catalog:'
version: 18.3.31
'@types/react-dom':
- specifier: ^18.2.22
+ specifier: 'catalog:'
version: 18.3.7(@types/react@18.3.31)
react:
- specifier: ^18.2.0
+ specifier: 'catalog:'
version: 18.3.1
react-dom:
- specifier: ^18.2.0
+ specifier: 'catalog:'
version: 18.3.1(react@18.3.1)
typescript:
- specifier: ^5.4.2
- version: 5.9.3
+ specifier: 'catalog:'
+ version: 6.0.3
examples/preact:
dependencies:
@@ -201,24 +223,24 @@ importers:
specifier: workspace:*
version: link:../..
preact:
- specifier: 10.19.6
- version: 10.19.6
+ specifier: 10.29.7
+ version: 10.29.7(preact-render-to-string@6.7.0)
preact-render-to-string:
- specifier: ^6.4.0
- version: 6.7.0(preact@10.19.6)
+ specifier: ^6.7.0
+ version: 6.7.0(preact@10.29.7)
devDependencies:
dotenv:
- specifier: ^16.4.5
- version: 16.6.1
+ specifier: ^17.4.2
+ version: 17.4.2
preact-cli:
specifier: ^3.5.1
- version: 3.5.1(@types/babel__core@7.20.5)(bluebird@3.7.2)(eslint@10.7.0(jiti@2.6.1))(preact-render-to-string@6.7.0(preact@10.19.6))(preact@10.19.6)(typescript@5.9.3)
+ version: 3.5.1(@types/babel__core@7.20.5)(bluebird@3.7.2)(eslint@10.7.0(jiti@2.6.1))(preact-render-to-string@6.7.0)(preact@10.29.7)(typescript@6.0.3)
sirv-cli:
- specifier: ^2.0.2
- version: 2.0.2
+ specifier: ^3.0.1
+ version: 3.0.1
typescript:
- specifier: '*'
- version: 5.9.3
+ specifier: 'catalog:'
+ version: 6.0.3
examples/vite:
dependencies:
@@ -226,30 +248,30 @@ importers:
specifier: workspace:*
version: link:../..
react:
- specifier: ^19.2.0
- version: 19.2.7
+ specifier: 'catalog:'
+ version: 18.3.1
react-dom:
- specifier: ^19.2.0
- version: 19.2.7(react@19.2.7)
+ specifier: 'catalog:'
+ version: 18.3.1(react@18.3.1)
devDependencies:
'@types/node':
- specifier: ^24.10.1
- version: 24.13.3
+ specifier: 'catalog:'
+ version: 26.1.1
'@types/react':
- specifier: ^19.2.5
- version: 19.2.17
+ specifier: 'catalog:'
+ version: 18.3.31
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.17)
+ specifier: 'catalog:'
+ version: 18.3.7(@types/react@18.3.31)
'@vitejs/plugin-react':
- specifier: ^5.1.1
- version: 5.2.0(vite@7.3.6(@types/node@24.13.3)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
+ specifier: ^6.0.3
+ version: 6.0.3(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: 'catalog:'
+ version: 6.0.3
vite:
- specifier: ^7.2.4
- version: 7.3.6(@types/node@24.13.3)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
+ specifier: ^8.1.4
+ version: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
examples/webpack-based:
dependencies:
@@ -257,39 +279,39 @@ importers:
specifier: workspace:*
version: link:../..
react:
- specifier: '*'
- version: 19.2.7
+ specifier: 'catalog:'
+ version: 18.3.1
react-dom:
- specifier: '*'
- version: 19.2.7(react@19.2.7)
+ specifier: 'catalog:'
+ version: 18.3.1(react@18.3.1)
devDependencies:
'@babel/core':
- specifier: ^7.24.0
- version: 7.29.7
+ specifier: ^8.0.1
+ version: 8.0.1
'@babel/preset-env':
- specifier: ^7.24.0
- version: 7.29.7(@babel/core@7.29.7)
+ specifier: ^8.0.2
+ version: 8.0.2(@babel/core@8.0.1)
'@babel/preset-react':
- specifier: ^7.23.3
- version: 7.29.7(@babel/core@7.29.7)
+ specifier: ^8.0.1
+ version: 8.0.1(@babel/core@8.0.1)
babel-loader:
- specifier: ^9.1.3
- version: 9.2.1(@babel/core@7.29.7)(webpack@5.108.4)
+ specifier: ^10.1.1
+ version: 10.1.1(@babel/core@8.0.1)(webpack@5.108.4)
dotenv-webpack:
- specifier: ^8.0.1
- version: 8.1.1(webpack@5.108.4)
+ specifier: ^9.0.0
+ version: 9.0.0(webpack@5.108.4)
html-webpack-plugin:
- specifier: ^5.6.0
+ specifier: ^5.6.7
version: 5.6.7(webpack@5.108.4)
webpack:
- specifier: ^5.90.3
- version: 5.108.4(webpack-cli@5.1.4)
+ specifier: ^5.108.4
+ version: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
webpack-cli:
- specifier: ^5.1.4
- version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4)
+ specifier: ^7.2.1
+ version: 7.2.1(js-yaml@4.3.0)(json5@2.2.3)(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@6.0.0)(webpack@5.108.4)
webpack-dev-server:
- specifier: ^5.0.3
- version: 5.2.6(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4)
+ specifier: ^6.0.0
+ version: 6.0.0(tslib@2.8.1)(webpack-cli@7.2.1)(webpack@5.108.4)
packages:
@@ -307,14 +329,26 @@ packages:
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@8.0.0':
+ resolution: {integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/compat-data@7.29.7':
resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@8.0.0':
+ resolution: {integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/core@7.29.7':
resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
engines: {node: '>=6.9.0'}
+ '@babel/core@8.0.1':
+ resolution: {integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/eslint-parser@7.29.7':
resolution: {integrity: sha512-zxt+UJTOMKvUt3yOg+D58MLuz334pHp93qifMFcjIIO+9hN6t+ufw2gi7vDPMpxvfnHRR+3VVXvIjineCcgyXw==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
@@ -326,134 +360,269 @@ packages:
resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@8.0.0':
+ resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-annotate-as-pure@7.29.7':
resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-annotate-as-pure@8.0.0':
+ resolution: {integrity: sha512-NSpMkMsvvZqzThJ0p1B02cbtA2ObEyfBvq950bmNkyxsxvcxwhvvCB036rKhlEnuBBo30bOrk13u3FzlKSoRrw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-compilation-targets@7.29.7':
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@8.0.0':
+ resolution: {integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-create-class-features-plugin@7.29.7':
resolution: {integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-class-features-plugin@8.0.1':
+ resolution: {integrity: sha512-++t3ZktzlLmASAxIlxeXQK9Z2YwUafYGYcvGBFevqOqt16HozVHStUoQvWD09fzAZOb/uJGpUTBuGK41AJAuOA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-create-regexp-features-plugin@7.29.7':
resolution: {integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-regexp-features-plugin@8.0.1':
+ resolution: {integrity: sha512-PydTbcVTiIfVweHMeY1u3MslaD/ZzvnaTNhJp+7ghofelLWshF66Ckc/ZsjStfvRQIKQ4uVG0yEJucyDtyrWgw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-define-polyfill-provider@0.6.8':
resolution: {integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/helper-define-polyfill-provider@1.0.0':
+ resolution: {integrity: sha512-9jzVaTeZyXRDKTgUnNzcPQMO8y0ga3o+Z4fKjNet9Fcx7slgKa83qRbz0EwROSd6qO6CoEe/HQszqSPKb5lhkw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0
+
'@babel/helper-globals@7.29.7':
resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-globals@8.0.0':
+ resolution: {integrity: sha512-lLozHOM6sWWlxNo8CYqHy4MBZeTvHXNgVPBfPOGsjPKUzHC2Az9QwB6gxdQmpwHl6GlQtbGgS+lj5887guDiLw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-member-expression-to-functions@7.29.7':
resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@8.0.0':
+ resolution: {integrity: sha512-xkXrMbtk87Gk7+oKBVmBc6EORg/Qwx++AHESldmHkpvG8wgccdhJJFwrzqlF382Fk8wfXhJHWE/g/43QvEGNPQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-module-imports@7.29.7':
resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@8.0.0':
+ resolution: {integrity: sha512-NZ7mSS93o4ndX4KrbD7W8Sf3QT8Qe24PrnFyUcuOPDzK6faqDFKjY9RG7he7+I7FdiQ4llpnosFqzrXa+Vy3Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-module-transforms@7.29.7':
resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@8.0.1':
+ resolution: {integrity: sha512-UgAhl1kqiW5ciE0yCXqqvnb4H2n3IELJ7lIIQRezwDPilPEZX5i+Rvbja9MFTkwUn2biEiSMeV31aUzR4Lwakw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-optimise-call-expression@7.29.7':
resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-optimise-call-expression@8.0.0':
+ resolution: {integrity: sha512-3W6satvtPuCUkUx63S2jMoW9EQNYkADgs1HTfufmL7gCmAulHMKupA/12WNz4A0GMMFn/YnWWwqOT9IZrJHQjg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-plugin-utils@7.29.7':
resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@8.0.1':
+ resolution: {integrity: sha512-3PKFgjTyPlhFhorfP+SjKQxLViIL++zWjFOO4hGriYU+Bsm983DxEM1JmDRJVWXV0O9npu+xXRqz7Pbd3mh70g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-remap-async-to-generator@7.29.7':
resolution: {integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-remap-async-to-generator@8.0.1':
+ resolution: {integrity: sha512-baAKuLEMmu6BCSY3tuiU7qglM1qOZt6F1SrFScA241oNqksxkxfEZEKztlGRmoVns9AQ5UgArH7RsUEjxWnzgQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-replace-supers@7.29.7':
resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@8.0.1':
+ resolution: {integrity: sha512-B1SZADIcy3tmH8CmWvj4SHi/oAPom4UL3uknTc2QRNsPVLFk/sPnZvQL/8kj7Y5omvjMqie0vklvs6XM4OLW5Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-skip-transparent-expression-wrappers@7.29.7':
resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-skip-transparent-expression-wrappers@8.0.0':
+ resolution: {integrity: sha512-xmCA9kP3IhySsqhzwIdWGlDN/1A4cCKNBO/uwZx/3YzmDoMePwno2Q5/Bq0q+tYaKbeF940YiKV/kaW8Mzvpjw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-string-parser@7.29.7':
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@8.0.0':
+ resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-validator-identifier@7.29.7':
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@8.0.4':
+ resolution: {integrity: sha512-4wFaiLd0bVo4cIoTXI3zKI038NIWE/cr3jvBjejOVYVxV/m8Ltav1USiGzG1fmS5J2RhgEOgXNNK46cRPnRsrg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-validator-option@7.29.7':
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@8.0.0':
+ resolution: {integrity: sha512-U4Dybxh4WESWHt5XhBeExi4DrY0/DNK1aHpQbsrQXCUbFHuMweT0TpLEWKvaraV2Y6fS+ZXunsZ8zIuZIgvF2Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-wrap-function@7.29.7':
resolution: {integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-wrap-function@8.0.0':
+ resolution: {integrity: sha512-Qpm8+wi5xfDkBfollanwriCcKniFfBmMmaKB01GVM6VGzKXo1fdxosZp04qEr5HM+LKhwr3hG1yRy8+ORsficA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helpers@7.29.7':
resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@8.0.0':
+ resolution: {integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/parser@7.29.7':
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@8.0.4':
+ resolution: {integrity: sha512-srpptsAkEbbNIC/q8nT7o+m6CQe8CJUTV/t7MYc9NnWlgYVtHOb7JH6SorxMhN0kuRJjVqXbKClG6xSbPtzz+g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7':
resolution: {integrity: sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.1':
+ resolution: {integrity: sha512-Ytgjjne4RnG3Oig7ik+NfY4ebRY30BPptVkkyu1f72eINJXRM3/bkU++tIc5aPvyLmo4KH20avq0xJ2o+9aEnw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7':
resolution: {integrity: sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.1':
+ resolution: {integrity: sha512-X7pAMBhuKluA7UfwZNvKN0XVVu/AGeo84Z75eJl85rcb8J2aBzLK92btahM1X5h0oi0QIrbe0qIMA/0+4Buk7w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7':
resolution: {integrity: sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.1':
+ resolution: {integrity: sha512-DJviKTxYfH0hFwnMiW4dnPyMGzS3Hrr4zUfXl1zwQ0QiGlGlNYklLoPSYEQr8S7nau0/K7NdQjTh0qbYuyFjCA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7':
resolution: {integrity: sha512-oBNVCvnO5tND+xSopWvV8WNGfpTfgP4Zr/YXXSj8zfmcPktp5Ku/aZlsIowgSD4fjmgHn6sGmB9APVsU5zOdhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.1':
+ resolution: {integrity: sha512-DmR/N+B9+4PbURFj4+zdnWj49/PFAnK2bn8+E4ZAmwn3J5QCxnbG7Ep6aRfz9M8Aw+rBro0kIJQycvzFpl4buQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7':
resolution: {integrity: sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.1':
+ resolution: {integrity: sha512-x8bi0LFVD2xkULjfNn+hCMg16yAFHAM9fS/ThSFeYBi+0MP9K6qcY2BZb4urUwC7PYtEy5wPe6TKjOEjXrCGFA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7':
resolution: {integrity: sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.1':
+ resolution: {integrity: sha512-P8+RN2n7ts2s1vnE+lXdHYf+dhnmcGSen/kWzBsVluT9Sey5AqmcRXYWlHqgQxaNlKTD5YMa1tf5z4d1v8W88w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -581,6 +750,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-jsx@8.0.1':
+ resolution: {integrity: sha512-n0jtCOxEovhU7METqSQjcZO9pX53nu9uNIjMS+hEt+Nt9jA7oOZoBIgbCxhhASmF6T6rPDGge5UAvh6Z4eFz/g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -641,102 +816,204 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-arrow-functions@8.0.1':
+ resolution: {integrity: sha512-o/gr7kRlq3PKLLuYth4udOsrC7geBerti+QtwPeyxMOsEQO1d8kDHqk9r2PtMx2y9i8FG7tzyTerfv1yMLSMsQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-async-generator-functions@7.29.7':
resolution: {integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@8.0.1':
+ resolution: {integrity: sha512-kqnSMF1YHBzuiQrl68675i5Ma1oljvo+SJsNEZFZVBu5BUrVIZm9KId3ui2PdtLK2sv2zM8sJnjPDfgLxQlEqQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-async-to-generator@7.29.7':
resolution: {integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-to-generator@8.0.1':
+ resolution: {integrity: sha512-e1jmmEU4p2Lx64sA1+EF8e8/RxPuegzbXcEbmFp5alDyLE+f2ViUpZ77bRWMXzihTwgVVmn/TOpqDbAuS5g1Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-block-scoped-functions@7.29.7':
resolution: {integrity: sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoped-functions@8.0.1':
+ resolution: {integrity: sha512-0V97/gcf7LIgPieEiK1YT0eXa18XJFSLOTZjzEZhA9SJIqZhD/IwGUrCitBzXSmnGCP7hchwC6svHtJ/Eidcpg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-block-scoping@7.29.7':
resolution: {integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoping@8.0.1':
+ resolution: {integrity: sha512-HxiQvKsSCs2jOmMhjDrooHaZYOy6W8bqwXp/zjdgPjsNrda6tK9/CH3a/cVIeg6ge3hSS02ALqvqgIo4rTsuSg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-class-properties@7.29.7':
resolution: {integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-class-properties@8.0.1':
+ resolution: {integrity: sha512-tORnYiVhIHnKj90TgbSZXrO24f9oEpA6MgFxpIDSKKlHv7AzBIRhkMlYevanueLNYaQXqZWarfCgXM4bWTfNiw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-class-static-block@7.29.7':
resolution: {integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
+ '@babel/plugin-transform-class-static-block@8.0.1':
+ resolution: {integrity: sha512-NEVK+L0Le8h8tJ+IK0CGS5y9Yi1ZHxLj6M5PeanhMFuq9aSo0XI+Wtmbuyop6fTNukOm7ORNntf/kwid891vqQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-classes@7.29.7':
resolution: {integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-classes@8.0.1':
+ resolution: {integrity: sha512-phwyCES8kIMAdVOFw25ztmgAvkl2G+TvUv7azUYyrlR1Qoo3eLJC/MU3MGUKFZ4BWtsJ1NTJM1lKRLzKbswg7w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-computed-properties@7.29.7':
resolution: {integrity: sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-computed-properties@8.0.1':
+ resolution: {integrity: sha512-i4l3OGLO8DUDcwdnyraOvILbhqdUf4QgfzhVxSOSzRy49XKXrY7pwaSg9gDSKmhZfNPrEMciBSJSciQh/CjB1A==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-destructuring@7.29.7':
resolution: {integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-destructuring@8.0.1':
+ resolution: {integrity: sha512-RtR8uLDl0QcCmqMNIkM8gmDeYZ3rS0ZH+sa+I6sfc09yFoqfp9AEPgBstq9KyfVb0lFCVSRFfJXCI70FIl5ccw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-dotall-regex@7.29.7':
resolution: {integrity: sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dotall-regex@8.0.1':
+ resolution: {integrity: sha512-czOUoSaZljJ92yu+bYlXqb/UBN8K9daNCob/B6/7nthSvfGP6YhCnfqD64XWfyb2dN4ypxALNplApoJrsMd4fw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-duplicate-keys@7.29.7':
resolution: {integrity: sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-duplicate-keys@8.0.1':
+ resolution: {integrity: sha512-kNnVLkxFUEcTtCyB5PFVQ5Xoy88Bk1lU/ZgDu97CW8eNhRH2Wsiy8Sq5l5dFnwtIUYjzsXHU77jUy1W5AtGSIw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7':
resolution: {integrity: sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.1':
+ resolution: {integrity: sha512-Tv43P47o6fuHgBL7HLHQg3WKXohW9CEUGjLtnCDW27yJLK0zKUdTTqREbZbycNHA83hewMjde5tF6ekrHu9bAA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-dynamic-import@7.29.7':
resolution: {integrity: sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dynamic-import@8.0.1':
+ resolution: {integrity: sha512-AS9GlgKc43tJNRu7yOvLaTko4qmdOb+8M69uNS8i421WLO20eVez7LdG5khKdi8E0LIQpYzzzdGIrdXWnO753g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-explicit-resource-management@7.29.7':
resolution: {integrity: sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-explicit-resource-management@8.0.1':
+ resolution: {integrity: sha512-VzDIYwBlLCpV6mJfloRdJm8HmYnMqs7O+bGha8yfg2kP7jAdxeCw6yZBVBeaKKQUThtSU52iy+3lB7DhYsbOBA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-exponentiation-operator@7.29.7':
resolution: {integrity: sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-exponentiation-operator@8.0.1':
+ resolution: {integrity: sha512-DsZvUUklUmDQ7d2vp+VjqgUWD51mGxhZZ1FPdPP9Hcj0vsgGUKX+zEBGp/vzB1O5PZUxWT/Euq5fu39M9dm9wg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-export-namespace-from@7.29.7':
resolution: {integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-export-namespace-from@8.0.1':
+ resolution: {integrity: sha512-bFzznm46bvWGaTYKle3iolbBJ+oPBfUjwCPesxlFE3SQ7DaY9EHf/8Y5ZzrodKJi8JDdcAyaVWaDUSVyhULh0g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-flow-strip-types@7.29.7':
resolution: {integrity: sha512-wRHeUjUjCZnMHmiO5bRgjFLcoEh7JyTdByOW11ahhwNa4V0bmeGEaIvt51yq0zQp2yWIpqfxXXPyUP6GFJZHOQ==}
engines: {node: '>=6.9.0'}
@@ -749,84 +1026,168 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-for-of@8.0.1':
+ resolution: {integrity: sha512-rpeXtgELjpIBQH/+YmyFlD9timPEVCyqY+TNednzoeoTYvXSBEeUvYnYE+BK8rB8m6hHiNK7aL9QWKhGifEJCw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-function-name@7.29.7':
resolution: {integrity: sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-function-name@8.0.1':
+ resolution: {integrity: sha512-H1L/JfPf3CqmubuaiZaquXKQ8MRs4YWSsgRllkTviM8TafcCNnlvc4/fJZ3rXP8HmFM+/Bg+TlsPehUI9BtDFA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-json-strings@7.29.7':
resolution: {integrity: sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-json-strings@8.0.1':
+ resolution: {integrity: sha512-Mowp8X0J6p7ZehLU82B5e65te2uuSeDHyxrEROwEAS2VKXNXssfw5ZMqhY7k9iXTsOv1Xs/49G3lDCj9Vvw8qQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-literals@7.29.7':
resolution: {integrity: sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-literals@8.0.1':
+ resolution: {integrity: sha512-ai7kfPRcfyUV1EszXoF1PvL3IuJoCuH08WSEPoRcJTWfZZ55VL/rcfvbVY16QLA3jjbzzSneQSoCtD3L6OyUjw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-logical-assignment-operators@7.29.7':
resolution: {integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-logical-assignment-operators@8.0.1':
+ resolution: {integrity: sha512-Emvtr5zkEGyCNAmt+qKD5EUh8G0RbxV9EZWrDdX0LuVy5tBq1B3fOIslvVF9aCJmpnwS/AvAT53b9LxAZyXlng==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-member-expression-literals@7.29.7':
resolution: {integrity: sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-member-expression-literals@8.0.1':
+ resolution: {integrity: sha512-3Axi9abnyGsm/hh6DsKPZ1Cr9fTtKqS7w0Ig5g12mU269YclpH8pV3xMln2vPLexXgUp6S6L+I06d9/YOLfRKA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-modules-amd@7.29.7':
resolution: {integrity: sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-amd@8.0.1':
+ resolution: {integrity: sha512-FDdhET8y1YFDNRuoynqSf23WTzbBBpbIB2oRrlFX7YYm9uWtFvJDSD1r/epBSjfPkOjeaaLgRW9xNnt3JGx46A==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-modules-commonjs@7.29.7':
resolution: {integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-commonjs@8.0.1':
+ resolution: {integrity: sha512-PMuzulWrrzFNmY3lXSk/tV9NRb7y0eZZLJY4UEo2TKszroxvUZHAPPi+T9FDyrQhod+TQA+t+8/QYaaMpiEuhA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-modules-systemjs@7.29.7':
resolution: {integrity: sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-systemjs@8.0.1':
+ resolution: {integrity: sha512-0NEHanXmnFEnfT2dLKTXnu7m8GXFsnxRgteBC2aH21hYMBwAgxu5dcTdi/Eg+ToI1HbZe0CHwz4XRLgRNQhYoQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-modules-umd@7.29.7':
resolution: {integrity: sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-umd@8.0.1':
+ resolution: {integrity: sha512-XKTa2J2MdkmbVEeChq9f7Or0VYcsF0NyVBgytRyeN9F+J+ETAB2SHhfkG4toz/ssuU0i+h/QgJ6ddo5YakSQcA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-named-capturing-groups-regex@7.29.7':
resolution: {integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-named-capturing-groups-regex@8.0.1':
+ resolution: {integrity: sha512-zCHu+Jr2gTdJE48lN9SV/kXueCW2M79mKtKJc/ttfzzr/jvgdQdCd17RADMqFRQc/25MLxdtjTmlD0HSAMOlIQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-new-target@7.29.7':
resolution: {integrity: sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-new-target@8.0.1':
+ resolution: {integrity: sha512-QSQxVg1x4PuOuhWUs4Y9u+x9Y+ER8z6G3tC+bDLBzvoOrNLJrEBQLRnwrTP8e5klihAw6Z+e9X5RjdAKcAGapA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-nullish-coalescing-operator@7.29.7':
resolution: {integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-nullish-coalescing-operator@8.0.1':
+ resolution: {integrity: sha512-AgCJAmQLF7+PtsK79wJqr4xJ2StHCXlz7JL5CVFP4HejJx25Tk6yl1ZrXvi0cKh3VGDVnfVxefxnrpsBirgpyQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-numeric-separator@7.29.7':
resolution: {integrity: sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-numeric-separator@8.0.1':
+ resolution: {integrity: sha512-it2DmUyLIA1GQUXlFDEnI+/G89mTgxndnAiZYpW8xYR6LboblfirMqiWJeTna5uypQJg7viTT4D1iEURRtFcfw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-object-assign@7.29.7':
resolution: {integrity: sha512-sdsm7VWuENjoL6XuuBXKIA7kvRjMICwu+dKewTNFKErSYNKi8+9H8xT5z+HT2R67CmAYx7aM1j2MBhC2HzgZdA==}
engines: {node: '>=6.9.0'}
@@ -839,48 +1200,96 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-rest-spread@8.0.1':
+ resolution: {integrity: sha512-VmxkDu6bBdbxRzqn6E93hYucug4OVa6svSO19W//vVzNUGAmQzk3QRyHyyEtfcjSLR3NWfRsWwVM9zExLmd+2w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-object-super@7.29.7':
resolution: {integrity: sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-super@8.0.1':
+ resolution: {integrity: sha512-fDkPXRTRKGm25bAq01q82UM4ypPqdVXCwphUUm4t1dL01fGIG0v8KRvT+4BjhMAtRxtPuI34t5Vs7yjRgs3ZgQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-optional-catch-binding@7.29.7':
resolution: {integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-catch-binding@8.0.1':
+ resolution: {integrity: sha512-b2OQ74uGliyATcasTjxGy2O/86UI/n+EN4juB4EMfEwTi9j9uq70PuP0L8fW77vfRY66gO/YoTo/WbIdQ/Si1g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-optional-chaining@7.29.7':
resolution: {integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-chaining@8.0.1':
+ resolution: {integrity: sha512-WtRS1c94lZGpGHxYLXMEWeoMVcuv8nkiyr8BTs6OYZv7N3Y9xVE8nbdFIl4lDJH6aH8/pLhqAQOL69d/WI9WdA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-parameters@7.29.7':
resolution: {integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-parameters@8.0.1':
+ resolution: {integrity: sha512-IIwRqroW0CYQwR6+3pnmu27z+H98poScWdnov8z6osumMeEsFxAFBBsDS2CFk2jFpPlGqVr89jK/HXO6i5DzxQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-private-methods@7.29.7':
resolution: {integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-methods@8.0.1':
+ resolution: {integrity: sha512-TrFCGcXaVDh6S5IRhmLSRTY9H80VTCMQWnZtzBRg4RWg3KCLmdmsmj4M15kZAPZfoPkWL/SJb4em3Py/vOiX8g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-private-property-in-object@7.29.7':
resolution: {integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-property-in-object@8.0.1':
+ resolution: {integrity: sha512-e+yfOqSYBZaf3PARpiQkjZrpWYgmcFLhK+1tevh2CpHR1O9/36IdyPnAZusESX5nzVV/XZTDAtQBRLa8HPT5Dw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-property-literals@7.29.7':
resolution: {integrity: sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-property-literals@8.0.1':
+ resolution: {integrity: sha512-Z/qx4cxUtYR1nt7XWRutObPxDks98fEYsjWbVeKEqZH6y3AGknmgzCqmHf2FHWZCl1DfoPeuJY+3hZ+35D+2tg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-react-constant-elements@7.29.7':
resolution: {integrity: sha512-J0wGhKan+rIiE2OhfhRptySLrJ6SjQYM6b6N1FMlhyhCcw1Mig8vQjWchyB+bgHGDvaWo6Diu6CLRMra2uMtmg==}
engines: {node: '>=6.9.0'}
@@ -893,23 +1302,23 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.29.7':
- resolution: {integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-react-display-name@8.0.1':
+ resolution: {integrity: sha512-soLishXlkyu6jcICPyO3HEP7A3GCzKEnn7XfvYrImuWEOwFAz93qShmWSYPf5ww0ZkO4By0zsN2bVIDF54fSdA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-react-jsx-self@7.29.7':
- resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
+ '@babel/plugin-transform-react-jsx-development@7.29.7':
+ resolution: {integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.29.7':
- resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-react-jsx-development@8.0.1':
+ resolution: {integrity: sha512-Hb+HUZpV9KFHjm+F+P3aLDMi8QXU9l3ROCQv20z18Me2sGyW5nNNR5YTevNlgHvCpFek3BnAwhDGq/BRndXViw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
'@babel/plugin-transform-react-jsx@7.29.7':
resolution: {integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==}
@@ -917,30 +1326,60 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx@8.0.1':
+ resolution: {integrity: sha512-NgkoF7Uq+30TmOPDdNUimT0Nta02uVjqJRFNlVWKrbOCu/CkzfHa4aMnIs0lMpkMmZmWA1e42Va+F04i/pY1zw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-react-pure-annotations@7.29.7':
resolution: {integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-pure-annotations@8.0.1':
+ resolution: {integrity: sha512-7/8UwU8hoPBurXa9tUiTTC8aACTRy5tCqLUtqikHp2eGiWoEB57AduOdbQ71OOMTEvawKrGhv3WfzkDpI+/oSg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-regenerator@7.29.7':
resolution: {integrity: sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-regenerator@8.0.2':
+ resolution: {integrity: sha512-aFfsjCRYducRV4dPnpsBbdRkLjboca9FVDg6HZCgy0Ahvk2ZQ/2exmCRC5qS9P6rsWwrmIheNaIM6A1j2F8KMA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-regexp-modifiers@7.29.7':
resolution: {integrity: sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-regexp-modifiers@8.0.1':
+ resolution: {integrity: sha512-02ITRDBesPdTYU0oShAzERwEPzozOUQSXlz3qrt8JGuhalBJQv9z5NjgHJPC9sS3Fsam8gDtfAEpBnqZwUIdjQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-reserved-words@7.29.7':
resolution: {integrity: sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-reserved-words@8.0.1':
+ resolution: {integrity: sha512-+aykZi7ZP3U84veqfJXm3HhPZGddWFi64g7jr0ni6tb1zel+1ey+SL+IRKPoZXFyFqvYEsoqrmx4PyEJRlHl/Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-runtime@7.29.7':
resolution: {integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==}
engines: {node: '>=6.9.0'}
@@ -953,30 +1392,60 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-shorthand-properties@8.0.1':
+ resolution: {integrity: sha512-JddANd9yPVH8dYgVoNkqAH5BftnsDxFpG51Zas7sc6F3poz5QWcejHNGO8a/57IX5ByjGSzEmYk9Z7ZMa5MWaw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-spread@7.29.7':
resolution: {integrity: sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-spread@8.0.1':
+ resolution: {integrity: sha512-O9Bw9FyxlSw1SlMg3S82/GKNZ0x77RPbHezotEy1JTlIM/vk6WO8jW1iF+iTiKLOXNvi+b+LZ9t77Gi+Q0FhGg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-sticky-regex@7.29.7':
resolution: {integrity: sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-sticky-regex@8.0.1':
+ resolution: {integrity: sha512-IsVP6WrZZQdaG2zLmeKwWiI+ua2NB5L1+f77C2/8z2NCDz7uxlIA/lnwocYOJk9PXcOC2sZgRls3LN4XpNduzQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-template-literals@7.29.7':
resolution: {integrity: sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-template-literals@8.0.1':
+ resolution: {integrity: sha512-JXvtj5+BJA9Qv3prDzW2z2DkGTJNmG0BObTdUD03STiu1Jr4fNQkQy3hYZgPL46a2RjcuhwBMYf49BOuJ98gnA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-typeof-symbol@7.29.7':
resolution: {integrity: sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-typeof-symbol@8.0.1':
+ resolution: {integrity: sha512-+wJoxgxP2gtey0UMUOMhzMMji2XHO/Uu6MXUh/r5Yhc2jngKzK/wFxY2WNe4UCaRcMvCb4gcnB8wIgFXJsocXg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-typescript@7.29.7':
resolution: {integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==}
engines: {node: '>=6.9.0'}
@@ -989,41 +1458,82 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-escapes@8.0.1':
+ resolution: {integrity: sha512-TAXJepIJ6vZphytTwcf+LuXi2M2ZWI43VCqNw+1ZZLPP/38Z1A8j4Mahvg8kqDgMOSM/cakk+hedTJCiw3jQuQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-unicode-property-regex@7.29.7':
resolution: {integrity: sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-property-regex@8.0.1':
+ resolution: {integrity: sha512-zjBN9tSMSuomNDfurL69Gf7+v4D2t5uI1mSZaYJDo88SKpbduhCXqtxH7Tx66iCF6caWYwnBzSM0tnCozmQq5Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-unicode-regex@7.29.7':
resolution: {integrity: sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-regex@8.0.1':
+ resolution: {integrity: sha512-v0oO83cvT5lwbcIVRShpx4vaHD8AvM9IBowsQuTeP+kGmhh3recJQs33Bl6dlo3/2g9amlznLbFGn4VJbPCJqA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/plugin-transform-unicode-sets-regex@7.29.7':
resolution: {integrity: sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-unicode-sets-regex@8.0.1':
+ resolution: {integrity: sha512-MlQeyS0K7gh0XNeLBMS/3Z07HjDOKhA7xm2L18GyxOXyiFHI9E+ZuQ4mFYmcLjluXsE/Wf6dABIqZvKpKw0Z3w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/preset-env@7.29.7':
resolution: {integrity: sha512-GYzX36n1nsciIb0uyH0GHwxwtNwPQIcpxSeiVLDtG/B7jB5xXgchnmL1f/jCX5o+pwnaDBtO60ONSJhEBJfxYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@8.0.2':
+ resolution: {integrity: sha512-CUGLn9hNBCF/eXnwdFAWERbniCcXCRvnKwLV9fegeUEIqv7YlU2MepsWMMM54GcILx5XYMnRh+JAL+K5G+mK6g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ '@babel/preset-modules@0.2.0':
+ resolution: {integrity: sha512-yz0RBN2fx4fjCeFcTWsWgL7PxSRltvTa0Qg14HkWCU3qS8MO7ZSJlBVbGceynd5C9NsJwwUHNQD3dc6tYO+jqQ==}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/preset-react@7.29.7':
resolution: {integrity: sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-react@8.0.1':
+ resolution: {integrity: sha512-jrFuPp/pTddFZbtmWhdLNAYc6UMcpboeUPnw0BBrm4nOmcAko/1TRcFi1PzWCeOFRU+VaSiKmat87W1HvR7mIg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/preset-typescript@7.29.7':
resolution: {integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==}
engines: {node: '>=6.9.0'}
@@ -1038,14 +1548,26 @@ packages:
resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
engines: {node: '>=6.9.0'}
+ '@babel/template@8.0.0':
+ resolution: {integrity: sha512-eAD0QW/AlbamBbw0FeGiwasbCVPq5ncW0HNVyLP3B9czqLyh4gvw+5JTSNt6le9+ziAU7mqDZsKTHf3jTb4chQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/traverse@7.29.7':
resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@8.0.4':
+ resolution: {integrity: sha512-bZnmqzGG8UZneG1lLxBoWIH0G6Gr1D846Yu4/3XnY6FhCndMR49u26nTY08u/dAxWmLWF9vGQOuC+84FfIUoeg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/types@7.29.7':
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
engines: {node: '>=6.9.0'}
+ '@babel/types@8.0.4':
+ resolution: {integrity: sha512-eY+Yn3dCqTGmyiq2QRU66lA5FL8lqqqvecHt0fF3uHONIa7ToYsaCiWV8lOKqAs0Rb2SjixiKFROngnulPtt2g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -1058,8 +1580,8 @@ packages:
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- '@changesets/cli@2.31.0':
- resolution: {integrity: sha512-AhI4enNTgHu2IZr6K4WZyf0EPch4XVMn1yOMFmCD9gsfBGqMYaHXls5HyDv6/CL5axVQABz68eG30eCtbr2wFg==}
+ '@changesets/cli@2.31.1':
+ resolution: {integrity: sha512-uO05WTcRBwuVOJVSW8Cmpqw6q0WDL53ajGCMyszutvOe5toOnunbpM4jZzf+qxBOz7i0AzopZ8diBuewjmF40w==}
hasBin: true
'@changesets/config@3.1.4':
@@ -1104,74 +1626,94 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
- '@commitlint/cli@19.8.1':
- resolution: {integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==}
- engines: {node: '>=v18'}
+ '@commitlint/cli@21.2.1':
+ resolution: {integrity: sha512-blsZGe29hJ72VGEFVl72IVYX+1vsfINpjA9yWQA6i7OKD/McGEOXg08sKIRKjFk4JvzhV/9n0l3i6NooPLTNfg==}
+ engines: {node: '>=22.12.0'}
hasBin: true
'@commitlint/config-conventional@17.8.1':
resolution: {integrity: sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==}
engines: {node: '>=v14'}
- '@commitlint/config-validator@19.8.1':
- resolution: {integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==}
- engines: {node: '>=v18'}
+ '@commitlint/config-conventional@21.2.0':
+ resolution: {integrity: sha512-Qf8WRDVcyVd14if6VTWenebxFbKnVnbzPUJjlzjkyJGeHK2xCGd63Dr1XZzj0plXKQb9P0BfOxoc1HVeCo2BWQ==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/ensure@19.8.1':
- resolution: {integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==}
- engines: {node: '>=v18'}
+ '@commitlint/config-validator@21.2.0':
+ resolution: {integrity: sha512-t7AzNHAKeIdo/3NRGwzpufKHsKkPHmFs/56N2Fnsh0/r0rGtnQzTxk6vnFgjaGr4hdSQKNB50/KAhR9Yk4LJKA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/execute-rule@19.8.1':
- resolution: {integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==}
- engines: {node: '>=v18'}
+ '@commitlint/ensure@21.2.0':
+ resolution: {integrity: sha512-76IF9vDNS13lAzEEik9eKwzt8f9hYhWiwVXZ2AnyLCz5/f511FsEQ3pw1X3/zSQpdRLQU7i5qDMVKyXi1GWjSg==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/format@19.8.1':
- resolution: {integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==}
- engines: {node: '>=v18'}
+ '@commitlint/execute-rule@21.0.1':
+ resolution: {integrity: sha512-RifH+FmImozKBE6mozhF4K3r2RRKP7SMi/Q/zLCmExtp5e05lhHOUYqGBlFBAGNHaZxU/WYw1XuugYK9jQzqnA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/is-ignored@19.8.1':
- resolution: {integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==}
- engines: {node: '>=v18'}
+ '@commitlint/format@21.2.0':
+ resolution: {integrity: sha512-c4q64xaav2U83t7k7RyzJerBZurPer7FxUOY0RL5L/6CZijZ7K+s6HIBGIghj0ey1P2+seRX0J9XQYtDued6tg==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/lint@19.8.1':
- resolution: {integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==}
- engines: {node: '>=v18'}
+ '@commitlint/is-ignored@21.2.0':
+ resolution: {integrity: sha512-4/eB0vBN7L88O/oC4ajAEqi7j2ZfNgxl/+11RfAV9YosejZgDXhY2C9VcHnHJhOzPLoSy5P3Mg/46kqeyJfXKw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/load@19.8.1':
- resolution: {integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==}
- engines: {node: '>=v18'}
+ '@commitlint/lint@21.2.0':
+ resolution: {integrity: sha512-ceO5dp9pLjEZ6y6qbq/uXWXDPykqqlTsyzoQ0NzecpisSJhK3kTy9qzQoPeJuWG/IMNdV1lO0RgmzqoAlSi1uw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/message@19.8.1':
- resolution: {integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==}
- engines: {node: '>=v18'}
+ '@commitlint/load@21.2.0':
+ resolution: {integrity: sha512-RjlzWQqruRwIenJEfZtq7kG97co97nKoHpflE5YnF61tDLXxHPrdWImgzw6VL6MlFyaOcVlk74eBV8ZQmc3oIA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/parse@19.8.1':
- resolution: {integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==}
- engines: {node: '>=v18'}
+ '@commitlint/message@21.2.0':
+ resolution: {integrity: sha512-YxGoiXD/HXNXLJPrQwE5poXa+XH0CBEm+mdvbHQP0g6MV/dmJyUFCzPNzZbxL93GvZ70TmtTK0Z0/IBpAqHv8g==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/read@19.8.1':
- resolution: {integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==}
- engines: {node: '>=v18'}
+ '@commitlint/parse@21.2.0':
+ resolution: {integrity: sha512-QHWxG4d0PLTF634/AdyZ0MQS+CLn5YOuJlCFhMMlSGKFxzYGUetkHBj18xgBD+6fVzUrA2lrCdi/vlS2f/oYXg==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/resolve-extends@19.8.1':
- resolution: {integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==}
- engines: {node: '>=v18'}
+ '@commitlint/read@21.2.1':
+ resolution: {integrity: sha512-hUW7EJQnNTL0vPOmVMNK4CrnrNBN0nN+JJHReFkdHO5y4iyHeEmTBwuC15OCqUTjxWo7idnH1LftfpWVIaPWIA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/rules@19.8.1':
- resolution: {integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==}
- engines: {node: '>=v18'}
+ '@commitlint/resolve-extends@21.2.0':
+ resolution: {integrity: sha512-4O/1j51+79Wth9s/MGxt/5gs0XYLDgNlYpltQfhAvLE0itusLKs9zruxbiNg1oOkmkb9L9L4USYGjEj7n87NxA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/to-lines@19.8.1':
- resolution: {integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==}
- engines: {node: '>=v18'}
+ '@commitlint/rules@21.2.0':
+ resolution: {integrity: sha512-C2yXMNpiB8ETZKfx5JD8+ExgF8vTU1VQMKPSUUYwqKpw9oJWQBrlXBpdU038mj2WPjof7o9UzFpmTyBeGMZwZg==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/top-level@19.8.1':
- resolution: {integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==}
- engines: {node: '>=v18'}
+ '@commitlint/to-lines@21.0.1':
+ resolution: {integrity: sha512-bd1BFII7p1EQZre9Kaj+kKaMFP3cFCdt21K7DItVux9XP5WjLgJ0/Uy1pJJh9aPwVJ6SKg62PxqlZaHI8hQAXw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/types@19.8.1':
- resolution: {integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==}
- engines: {node: '>=v18'}
+ '@commitlint/top-level@21.2.0':
+ resolution: {integrity: sha512-Y5gmQ+KxzqCrBFJfLvFEPvvwD3LDiNZoTT2yeFBm96M8qhmqSzQc5DvX3rheAaAMjyIvMXOCLS/mWfdpONsjyQ==}
+ engines: {node: '>=22.12.0'}
+
+ '@commitlint/types@21.2.0':
+ resolution: {integrity: sha512-7zVFCDB2reMvJH5dmbKnOQPjZEvjdJTH8jc0U/PIPU1r3/+vf5pD1HlfitV2MWsWXrvu7u39iY1lyLUPOaN0Gw==}
+ engines: {node: '>=22.12.0'}
+
+ '@conventional-changelog/git-client@3.1.0':
+ resolution: {integrity: sha512-Tqa/gHco2WJWa740NRjOrfKVvzIqxkZpecb8bemaQ8sKM5PXb1UK4uTyTb/1wIqNuOVaDOFxyBdhTIQZn6gdjQ==}
+ engines: {node: '>=22'}
+ peerDependencies:
+ conventional-commits-filter: ^6.0.1
+ conventional-commits-parser: ^7.0.1
+ peerDependenciesMeta:
+ conventional-commits-filter:
+ optional: true
+ conventional-commits-parser:
+ optional: true
+
+ '@conventional-changelog/template@1.2.1':
+ resolution: {integrity: sha512-TzlTVpKPjaqW6qOYjQcYUDuGsLCNsvFHVBXkYGTAnf5V37jCWrE5haKNXzz0WZUtVHjrpV76L1buANjwXMfT8w==}
+ engines: {node: '>=22'}
'@csstools/normalize.css@12.1.1':
resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==}
@@ -1270,6 +1812,19 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
+ '@discoveryjs/json-ext@1.1.0':
+ resolution: {integrity: sha512-Xc3VhU02wqZ1HvHRJUwL09HkZSTvidqY5Ya0NXBSYOxAp+Ln9dcJr9fySI+CkONzP3PekQo9WdzCv0PGER/mOA==}
+ engines: {node: '>=14.17.0'}
+
+ '@emnapi/core@1.11.1':
+ resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
+
+ '@emnapi/runtime@1.11.1':
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
+
+ '@emnapi/wasi-threads@1.2.2':
+ resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
+
'@esbuild/aix-ppc64@0.28.1':
resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
engines: {node: '>=18'}
@@ -1531,6 +2086,9 @@ packages:
'@gar/promisify@1.1.3':
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
+ '@gerrit0/mini-shiki@3.23.0':
+ resolution: {integrity: sha512-bEMORlG0cqdjVyCEuU0cDQbORWX+kYCeo0kV1lbxF5bt4r7SID2l9bqsxJEM0zndaxpOUT7riCyIVEuqq/Ynxg==}
+
'@humanfs/core@0.19.2':
resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
engines: {node: '>=18.18.0'}
@@ -1560,10 +2118,6 @@ packages:
'@types/node':
optional: true
- '@isaacs/cliui@8.0.2':
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
-
'@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -1803,63 +2357,69 @@ packages:
'@microsoft/tsdoc@0.16.0':
resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==}
- '@next/env@14.2.32':
- resolution: {integrity: sha512-n9mQdigI6iZ/DF6pCTwMKeWgF2e8lg7qgt5M7HXMLtyhZYMnf/u905M18sSpPmHL9MKp9JHo56C6jrD2EvWxng==}
+ '@napi-rs/wasm-runtime@1.1.6':
+ resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
+
+ '@next/env@14.2.35':
+ resolution: {integrity: sha512-DuhvCtj4t9Gwrx80dmz2F4t/zKQ4ktN8WrMwOuVzkJfBilwAwGr6v16M5eI8yCuZ63H9TTuEU09Iu2HqkzFPVQ==}
- '@next/swc-darwin-arm64@14.2.32':
- resolution: {integrity: sha512-osHXveM70zC+ilfuFa/2W6a1XQxJTvEhzEycnjUaVE8kpUS09lDpiDDX2YLdyFCzoUbvbo5r0X1Kp4MllIOShw==}
+ '@next/swc-darwin-arm64@14.2.33':
+ resolution: {integrity: sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.32':
- resolution: {integrity: sha512-P9NpCAJuOiaHHpqtrCNncjqtSBi1f6QUdHK/+dNabBIXB2RUFWL19TY1Hkhu74OvyNQEYEzzMJCMQk5agjw1Qg==}
+ '@next/swc-darwin-x64@14.2.33':
+ resolution: {integrity: sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@14.2.32':
- resolution: {integrity: sha512-v7JaO0oXXt6d+cFjrrKqYnR2ubrD+JYP7nQVRZgeo5uNE5hkCpWnHmXm9vy3g6foMO8SPwL0P3MPw1c+BjbAzA==}
+ '@next/swc-linux-arm64-gnu@14.2.33':
+ resolution: {integrity: sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-arm64-musl@14.2.32':
- resolution: {integrity: sha512-tA6sIKShXtSJBTH88i0DRd6I9n3ZTirmwpwAqH5zdJoQF7/wlJXR8DkPmKwYl5mFWhEKr5IIa3LfpMW9RRwKmQ==}
+ '@next/swc-linux-arm64-musl@14.2.33':
+ resolution: {integrity: sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@next/swc-linux-x64-gnu@14.2.32':
- resolution: {integrity: sha512-7S1GY4TdnlGVIdeXXKQdDkfDysoIVFMD0lJuVVMeb3eoVjrknQ0JNN7wFlhCvea0hEk0Sd4D1hedVChDKfV2jw==}
+ '@next/swc-linux-x64-gnu@14.2.33':
+ resolution: {integrity: sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-x64-musl@14.2.32':
- resolution: {integrity: sha512-OHHC81P4tirVa6Awk6eCQ6RBfWl8HpFsZtfEkMpJ5GjPsJ3nhPe6wKAJUZ/piC8sszUkAgv3fLflgzPStIwfWg==}
+ '@next/swc-linux-x64-musl@14.2.33':
+ resolution: {integrity: sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@next/swc-win32-arm64-msvc@14.2.32':
- resolution: {integrity: sha512-rORQjXsAFeX6TLYJrCG5yoIDj+NKq31Rqwn8Wpn/bkPNy5rTHvOXkW8mLFonItS7QC6M+1JIIcLe+vOCTOYpvg==}
+ '@next/swc-win32-arm64-msvc@14.2.33':
+ resolution: {integrity: sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.32':
- resolution: {integrity: sha512-jHUeDPVHrgFltqoAqDB6g6OStNnFxnc7Aks3p0KE0FbwAvRg6qWKYF5mSTdCTxA3axoSAUwxYdILzXJfUwlHhA==}
+ '@next/swc-win32-ia32-msvc@14.2.33':
+ resolution: {integrity: sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.32':
- resolution: {integrity: sha512-2N0lSoU4GjfLSO50wvKpMQgKd4HdI2UHEhQPPPnlgfBJlOgJxkjpkYBqzk08f1gItBB6xF/n+ykso2hgxuydsA==}
+ '@next/swc-win32-x64-msvc@14.2.33':
+ resolution: {integrity: sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -1891,6 +2451,9 @@ packages:
engines: {node: '>=10'}
deprecated: This functionality has been moved to @npmcli/fs
+ '@oxc-project/types@0.139.0':
+ resolution: {integrity: sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==}
+
'@peculiar/asn1-cms@2.8.0':
resolution: {integrity: sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==}
@@ -1928,10 +2491,6 @@ packages:
resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==}
engines: {node: '>=20.0.0'}
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
-
'@pkgr/core@0.3.6':
resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -1989,12 +2548,103 @@ packages:
preact: ^10.4.0
webpack: ^4.0.0 || ^5.0.0
- '@remix-run/router@1.23.3':
- resolution: {integrity: sha512-4An71tdz9X8+3sI4Qqqd2LWd9vS39J7sqd9EU4Scw7TJE/qB10Flv/UuqbPVgfQV9XoK8Np6jNquZitnZq5i+Q==}
- engines: {node: '>=14.0.0'}
+ '@rolldown/binding-android-arm64@1.1.5':
+ resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.1.5':
+ resolution: {integrity: sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.1.5':
+ resolution: {integrity: sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.1.5':
+ resolution: {integrity: sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.5':
+ resolution: {integrity: sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.5':
+ resolution: {integrity: sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-arm64-musl@1.1.5':
+ resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
- '@rolldown/pluginutils@1.0.0-rc.3':
- resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==}
+ '@rolldown/binding-linux-ppc64-gnu@1.1.5':
+ resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.5':
+ resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-gnu@1.1.5':
+ resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-musl@1.1.5':
+ resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-openharmony-arm64@1.1.5':
+ resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.1.5':
+ resolution: {integrity: sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.5':
+ resolution: {integrity: sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.1.5':
+ resolution: {integrity: sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@rolldown/pluginutils@1.0.1':
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
'@rollup/plugin-babel@5.3.1':
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
@@ -2207,6 +2857,29 @@ packages:
'@rushstack/ts-command-line@5.3.10':
resolution: {integrity: sha512-fwI076HYknC0IrMXdY6UmjDv+PH7NHhNJX3/pY2UblSE5XrXgndXZPiOe/6ZtuFpn6DvVDVNhtkIzQ+Qu/MhVQ==}
+ '@shikijs/engine-oniguruma@3.23.0':
+ resolution: {integrity: sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==}
+
+ '@shikijs/langs@3.23.0':
+ resolution: {integrity: sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg==}
+
+ '@shikijs/themes@3.23.0':
+ resolution: {integrity: sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA==}
+
+ '@shikijs/types@3.23.0':
+ resolution: {integrity: sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==}
+
+ '@shikijs/vscode-textmate@10.0.2':
+ resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
+
+ '@simple-libs/child-process-utils@2.0.0':
+ resolution: {integrity: sha512-dvNoRKLijXnD0XoJAz94pbNuB5GQgDr55UhpSPhffDkTT0Cmcqh9jSCOtwfT2d4H6MI9E7c4SgtMuJXZ6F3c6A==}
+ engines: {node: '>=22'}
+
+ '@simple-libs/stream-utils@2.0.0':
+ resolution: {integrity: sha512-fCTuZK4QBa+39Oz9l4OGfJfz+GpwCp3AqO7Zch3to99xHPgstVsRFpeQ8LNd2o1Gv8raL2mCFwiaHh7bFSp5DQ==}
+ engines: {node: '>=22'}
+
'@sinclair/typebox@0.24.51':
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
@@ -2331,6 +3004,9 @@ packages:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
+ '@tybys/wasm-util@0.10.3':
+ resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
+
'@types/argparse@1.0.38':
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
@@ -2364,9 +3040,6 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/conventional-commits-parser@5.0.2':
- resolution: {integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g==}
-
'@types/deep-eql@4.0.2':
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
@@ -2385,12 +3058,24 @@ packages:
'@types/express-serve-static-core@4.19.9':
resolution: {integrity: sha512-QP2ESEe/ImWY0HDwNAnK9PvEffUyhLTnWkk7KXzHfyeWAnlrDe1fN77bXl6ia8KT3wPlmA7t9/VPRpnf4Ex9sg==}
+ '@types/express-serve-static-core@5.1.2':
+ resolution: {integrity: sha512-d3KvEXBSo/lOAMc2u6fkyDHBvetBHeqD7wm/AcXfLpSOQwlmG9D/aQ0SFswVjv05p7ullQS7Mjohj6/VdbZuTg==}
+
'@types/express@4.17.25':
resolution: {integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==}
+ '@types/express@5.0.6':
+ resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
+
+ '@types/gensync@1.0.5':
+ resolution: {integrity: sha512-MbsRCT7mTikHwKZ0X+LVUTLRrZZRLipTuXEO9qOYO+zmjMVk81axyClMROf6uoPD9MRVu46bx8zoR0Ad9q3NAg==}
+
'@types/graceful-fs@4.1.9':
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+ '@types/hast@3.0.5':
+ resolution: {integrity: sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==}
+
'@types/html-minifier-terser@6.1.0':
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
@@ -2409,6 +3094,9 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+ '@types/jsesc@2.5.1':
+ resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -2427,11 +3115,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@20.19.43':
- resolution: {integrity: sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==}
-
- '@types/node@24.13.3':
- resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==}
+ '@types/node@26.1.1':
+ resolution: {integrity: sha512-nxAkRSVkN1Y0JC1W8ky/fTfkGsMmcrRsbx+3XoZE+rMOX71kLYTV7fLXpqud1GpbpP5TuffXFqfX7fH2GgZREw==}
'@types/parse-json@4.0.2':
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
@@ -2456,17 +3141,9 @@ packages:
peerDependencies:
'@types/react': ^18.0.0
- '@types/react-dom@19.2.3':
- resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
- peerDependencies:
- '@types/react': ^19.2.0
-
'@types/react@18.3.31':
resolution: {integrity: sha512-vfEqpXTvwT91yhmwdfouStN2hSKwTvyRs8qpLfADyrq/kxDw0hZM7Wk9Ug1FELj8hIby+S/+kQCSRFF32nv2Qw==}
- '@types/react@19.2.17':
- resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==}
-
'@types/resolve@1.17.1':
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
@@ -2476,9 +3153,6 @@ packages:
'@types/retry@0.12.0':
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- '@types/retry@0.12.2':
- resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
-
'@types/semver@7.7.1':
resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==}
@@ -2494,6 +3168,9 @@ packages:
'@types/serve-static@1.15.10':
resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==}
+ '@types/serve-static@2.2.0':
+ resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
+
'@types/sockjs@0.3.36':
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
@@ -2512,6 +3189,9 @@ packages:
'@types/uglify-js@3.17.5':
resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==}
+ '@types/unist@3.0.3':
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
+
'@types/webpack-sources@3.2.3':
resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==}
@@ -2653,11 +3333,18 @@ packages:
resolution: {integrity: sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@vitejs/plugin-react@5.2.0':
- resolution: {integrity: sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==}
+ '@vitejs/plugin-react@6.0.3':
+ resolution: {integrity: sha512-vmFvco5/QuC2f9Oj+wTk0+9XeDFkHxSamwZKYc7MxYwKICfvUvlMhqKI0VuICPltGqh1neqBKDvO4kes1ya8vg==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0
+ babel-plugin-react-compiler: ^1.0.0
+ vite: ^8.0.0
+ peerDependenciesMeta:
+ '@rolldown/plugin-babel':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
'@vitest/coverage-istanbul@4.1.10':
resolution: {integrity: sha512-AyNJ5pQRFqCX7pwB9PSTmoVKPaZ4H5IEVJfJsT+q1DYkXvZMEFYgJlyk5sfStmt9rVYRyYYRRsuBeImCOc39ww==}
@@ -2702,26 +3389,6 @@ packages:
'@volar/typescript@2.4.28':
resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
- '@vue/compiler-core@3.5.39':
- resolution: {integrity: sha512-16KBTEXAJCpDr0mwlw+AZyhu8iyC7R3S2vBwsI7QnWJU6X3WKc9VKeNEZpiMdZ569qWhz9574L3vV55qRL0Vtw==}
-
- '@vue/compiler-dom@3.5.39':
- resolution: {integrity: sha512-oQPigALqYbNxTNPvNgSOe+czwVExfbVF02lz8jP0S3AXJiu3jxYDygNUiqSep4ezzW8XgnubqH63My2A7JR/vg==}
-
- '@vue/compiler-vue2@2.7.16':
- resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
-
- '@vue/language-core@2.2.0':
- resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@vue/shared@3.5.39':
- resolution: {integrity: sha512-l1rrBtBfTnmxvtsvdQDXltUUy8S1Y+ZaqdfUzmAnJkTd8Z8rv5v/ytW+TKiqEOWyHPoqtPlNFSs0lhRmYVSHVA==}
-
'@webassemblyjs/ast@1.14.1':
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -2821,41 +3488,12 @@ packages:
'@webassemblyjs/wast-printer@1.9.0':
resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
- '@webpack-cli/configtest@2.1.1':
- resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==}
- engines: {node: '>=14.15.0'}
- peerDependencies:
- webpack: 5.x.x
- webpack-cli: 5.x.x
-
- '@webpack-cli/info@2.0.2':
- resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==}
- engines: {node: '>=14.15.0'}
- peerDependencies:
- webpack: 5.x.x
- webpack-cli: 5.x.x
-
- '@webpack-cli/serve@2.0.5':
- resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==}
- engines: {node: '>=14.15.0'}
- peerDependencies:
- webpack: 5.x.x
- webpack-cli: 5.x.x
- webpack-dev-server: '*'
- peerDependenciesMeta:
- webpack-dev-server:
- optional: true
-
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- JSONStream@1.3.5:
- resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
- hasBin: true
-
abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
deprecated: Use your platform's native atob() and btoa() methods instead
@@ -2864,6 +3502,10 @@ packages:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
+
acorn-globals@4.3.4:
resolution: {integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==}
@@ -2972,9 +3614,6 @@ packages:
ajv@8.20.0:
resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
- alien-signals@0.4.14:
- resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==}
-
alphanum-sort@1.0.2:
resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==}
@@ -3019,9 +3658,6 @@ packages:
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
- ansi-sequence-parser@1.1.3:
- resolution: {integrity: sha512-+fksAx9eG3Ab6LDnLs3ZqZa8KVJ/jYnX+D4Qe1azX+LFGFAXqynCQLOdLpNYN/l9e7l6hMWwZbrnctqr6eSQSw==}
-
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -3060,6 +3696,10 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ argue-cli@3.1.0:
+ resolution: {integrity: sha512-DhBpBfXL4SS2uC0N922MMajKR3CdrTG0u2or1PNYgXMsrSzViJrbtvT0nCLlLGUI0plam/ZZCs7aAauHtW9thw==}
+ engines: {node: '>=22'}
+
aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
@@ -3230,6 +3870,19 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
+ babel-loader@10.1.1:
+ resolution: {integrity: sha512-JwKSzk2kjIe7mgPK+/lyZ2QAaJcpahNAdM+hgR2HI8D0OJVkdj8Rl6J3kaLYki9pwF7P2iWnD8qVv80Lq1ABtg==}
+ engines: {node: ^18.20.0 || ^20.10.0 || >=22.0.0}
+ peerDependencies:
+ '@babel/core': ^7.12.0 || ^8.0.0-beta.1
+ '@rspack/core': ^1.0.0 || ^2.0.0-0
+ webpack: '>=5.61.0'
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+
babel-loader@8.4.1:
resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==}
engines: {node: '>= 8.9'}
@@ -3237,13 +3890,6 @@ packages:
'@babel/core': ^7.0.0
webpack: '>=2'
- babel-loader@9.2.1:
- resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- webpack: '>=5'
-
babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
@@ -3276,6 +3922,12 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@1.0.0:
+ resolution: {integrity: sha512-yIkslVjbmml2Xjb6XhFW7lISXHsqk6cesxTdDsXoMom4Lnb99DbD3OQbSOoM5Z+ASh8YXYaLAsRQrU2Jeh3Qig==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0
+
babel-plugin-polyfill-regenerator@0.6.8:
resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==}
peerDependencies:
@@ -3367,6 +4019,10 @@ packages:
resolution: {integrity: sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ body-parser@2.3.0:
+ resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==}
+ engines: {node: '>=18'}
+
bonjour-service@1.4.3:
resolution: {integrity: sha512-2Kd5UYlFUVgAKMTyuBLl6w49wqfOnbxHqmuH0oCl/n7TfAikR0zoowNOP5BU4dfXmm+Vr9JyEN370auSMx+CNg==}
@@ -3561,10 +4217,6 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.6.2:
- resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
-
char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
@@ -3586,6 +4238,10 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@5.0.0:
+ resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
+ engines: {node: '>= 20.19.0'}
+
chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -3646,9 +4302,9 @@ packages:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- cli-truncate@4.0.0:
- resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
- engines: {node: '>=18'}
+ cli-truncate@5.2.0:
+ resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
+ engines: {node: '>=20'}
client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
@@ -3656,9 +4312,9 @@ packages:
cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
- cliui@8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
@@ -3715,13 +4371,9 @@ packages:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
- commander@10.0.1:
- resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
- engines: {node: '>=14'}
-
- commander@13.1.0:
- resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
- engines: {node: '>=18'}
+ commander@14.0.3:
+ resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
+ engines: {node: '>=20'}
commander@2.17.1:
resolution: {integrity: sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==}
@@ -3744,9 +4396,6 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- common-path-prefix@3.0.0:
- resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
-
common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
@@ -3815,21 +4464,33 @@ packages:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
+ content-disposition@1.1.0:
+ resolution: {integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==}
+ engines: {node: '>=18'}
+
content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- conventional-changelog-angular@7.0.0:
- resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
- engines: {node: '>=16'}
+ content-type@2.0.0:
+ resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==}
+ engines: {node: '>=18'}
+
+ conventional-changelog-angular@9.2.1:
+ resolution: {integrity: sha512-oWSL6ZhnXbYraOFTK3PgRAQJ8fADDAEv5K6AdeyQPLvjFmhG8+ejL0jZZp/R7vTmGJaBvZEE+sE7dB4bCv7sAw==}
+ engines: {node: '>=22'}
+
+ conventional-changelog-conventionalcommits@10.2.1:
+ resolution: {integrity: sha512-n4Kr1HFMTf3iMbES0TMxKIcYtUUv4rKqyQQp2JwfOEfFCOfGT3Tq4mCyJ8S9/YPyWhydjfKrrvnyl+gCjA+mJQ==}
+ engines: {node: '>=22'}
conventional-changelog-conventionalcommits@6.1.0:
resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==}
engines: {node: '>=14'}
- conventional-commits-parser@5.0.0:
- resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==}
- engines: {node: '>=16'}
+ conventional-commits-parser@7.1.0:
+ resolution: {integrity: sha512-DPp6hkUjvwIivxbkrTiLXeRswNv1A/4GFA2X6scXma0AMa9632V3TwxmrlkUIEtUktiM3Ln+RrSH2xlP3/jUTw==}
+ engines: {node: '>=22'}
hasBin: true
convert-source-map@1.9.0:
@@ -3841,10 +4502,18 @@ packages:
cookie-signature@1.0.7:
resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==}
+ cookie-signature@1.2.2:
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
+ engines: {node: '>=6.6.0'}
+
cookie@0.7.2:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
+ cookie@1.1.1:
+ resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
+ engines: {node: '>=18'}
+
copy-concurrently@1.0.5:
resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
deprecated: This package is no longer supported.
@@ -4114,10 +4783,6 @@ packages:
damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dargs@8.1.0:
- resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
- engines: {node: '>=12'}
-
dashdash@1.14.1:
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
@@ -4141,9 +4806,6 @@ packages:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- de-indent@1.0.2:
- resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
-
debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
@@ -4278,6 +4940,10 @@ packages:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
+ engines: {node: '>=8'}
+
detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -4367,15 +5033,15 @@ packages:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
- dotenv-defaults@2.0.2:
- resolution: {integrity: sha512-iOIzovWfsUHU91L5i8bJce3NYK5JXeAwH50Jh6+ARUdLiiGlYWfGw6UkzsYqaXZH/hjE/eCd/PlfM/qqyK0AMg==}
+ dotenv-defaults@5.0.2:
+ resolution: {integrity: sha512-y5z4NhblzwNk8XBIYVzjLcFkANK0rxbRDO6kGOfH9QrVYIGVEX52IqwSprKVsaLHM9pnNkCSxazZF/JPydDPvA==}
dotenv-expand@5.1.0:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
- dotenv-webpack@8.1.1:
- resolution: {integrity: sha512-+TY/AJ2k9bU2EML3mxgLmaAvEcqs1Wbv6deCIUSI3eW3Xeo8LBQumYib6puyaSwbjC9JCzg/y5Pwjd/lePX04w==}
- engines: {node: '>=10'}
+ dotenv-webpack@9.0.0:
+ resolution: {integrity: sha512-uUtvrfEt+wXXadiZ/VvBYmLmd7KffMhsdaJLZmTTGaixFBZqD2emBwLsWKP4mdJ7bj11gxEcmH6EBFAoWwHrqA==}
+ engines: {node: '>=18.18.0'}
peerDependencies:
webpack: ^4 || ^5
@@ -4383,13 +5049,17 @@ packages:
resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
engines: {node: '>=10'}
+ dotenv@14.3.2:
+ resolution: {integrity: sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==}
+ engines: {node: '>=12'}
+
dotenv@16.6.1:
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
engines: {node: '>=12'}
- dotenv@8.6.0:
- resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
- engines: {node: '>=10'}
+ dotenv@17.4.2:
+ resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
+ engines: {node: '>=12'}
dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
@@ -4404,9 +5074,6 @@ packages:
duplexify@3.7.1:
resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
- eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
-
ecc-jsbn@0.1.2:
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
@@ -4452,6 +5119,10 @@ packages:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
+ empathic@2.0.1:
+ resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==}
+ engines: {node: '>=14'}
+
encodeurl@2.0.0:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
@@ -4474,8 +5145,8 @@ packages:
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- entities@7.0.1:
- resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
+ entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
env-paths@2.2.1:
@@ -4546,6 +5217,9 @@ packages:
resolution: {integrity: sha512-yPDz7wqpg1/mmHLmS3tcfTfbw5f1eryXvyghYBffGdERwe+mV7ZcWzTR8LR17Kvqt3qfPurjlonmnq3MKXIOXw==}
engines: {node: '>= 0.4'}
+ es-toolkit@1.49.0:
+ resolution: {integrity: sha512-G5iZ6Pc/FNRY/soKZHC+TxGDD83rHUDXxzaWhGCX44vAv/tMs56WMusnm/KMNK+luUPsgA9U28cGr4RDlSzL2g==}
+
esbuild@0.28.1:
resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
engines: {node: '>=18'}
@@ -4850,10 +5524,6 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
@@ -4874,6 +5544,10 @@ packages:
resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==}
engines: {node: '>= 0.10.0'}
+ express@5.2.1:
+ resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
+ engines: {node: '>= 18'}
+
exsolve@1.1.0:
resolution: {integrity: sha512-D+42+T12DdIlJM3uepa55qGiL3sYdLBOxIl2ifQCzCHz4c7eiolaHsi3BIqEr7JxBzxv2pYZQX9kw16ziMcEmw==}
@@ -4899,6 +5573,10 @@ packages:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
+ extsprintf@1.4.1:
+ resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==}
+ engines: {'0': node >=0.6.0}
+
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -4918,10 +5596,6 @@ packages:
fast-uri@3.1.3:
resolution: {integrity: sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==}
- fastest-levenshtein@1.0.16:
- resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
- engines: {node: '>= 4.9.1'}
-
fastq@1.20.1:
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
@@ -4977,6 +5651,10 @@ packages:
resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
engines: {node: '>= 0.8'}
+ finalhandler@2.1.1:
+ resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
+ engines: {node: '>= 18.0.0'}
+
find-cache-dir@2.1.0:
resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
engines: {node: '>=6'}
@@ -4985,10 +5663,6 @@ packages:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
- find-cache-dir@4.0.0:
- resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==}
- engines: {node: '>=14.16'}
-
find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
@@ -5001,14 +5675,6 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- find-up@6.3.0:
- resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- find-up@7.0.0:
- resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
- engines: {node: '>=18'}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -5040,10 +5706,6 @@ packages:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
- foreground-child@3.3.1:
- resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
- engines: {node: '>=14'}
-
forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
@@ -5084,6 +5746,10 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
+ fresh@2.0.0:
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
+ engines: {node: '>= 0.8'}
+
from2@2.3.0:
resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
@@ -5172,10 +5838,6 @@ packages:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- get-port@3.2.0:
- resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==}
- engines: {node: '>=4'}
-
get-port@5.1.1:
resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
engines: {node: '>=8'}
@@ -5196,10 +5858,6 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
-
get-symbol-description@1.1.0:
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
@@ -5211,12 +5869,6 @@ packages:
getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
- git-raw-commits@4.0.0:
- resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==}
- engines: {node: '>=16'}
- deprecated: Deprecated and no longer maintained. Use @conventional-changelog/git-client instead.
- hasBin: true
-
gittar@0.1.1:
resolution: {integrity: sha512-p+XuqWJpW9ahUuNTptqeFjudFq31o6Jd+maMBarkMAR5U3K9c7zJB4sQ4BV8mIqrTOV29TtqikDhnZfCD4XNfQ==}
engines: {node: '>=4'}
@@ -5238,10 +5890,9 @@ packages:
peerDependencies:
tslib: '2'
- glob@10.5.0:
- resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- hasBin: true
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -5252,9 +5903,9 @@ packages:
engines: {node: '>=12'}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- global-directory@4.0.1:
- resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
- engines: {node: '>=18'}
+ global-directory@5.0.0:
+ resolution: {integrity: sha512-1pgFdhK3J2LeM+dVf2Pd424yHx2ou338lC0ErNP2hPx4j8eW1Sp0XqSjNxtk6Tc4Kr5wlWtSvz8cn2yb7/SG/w==}
+ engines: {node: '>=20'}
global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
@@ -5487,6 +6138,10 @@ packages:
'@types/express':
optional: true
+ http-proxy-middleware@4.2.0:
+ resolution: {integrity: sha512-ZA+oNOoM+GLoFTIzhkJptVQov73Srep2LBqhF8hG8CIPKO3nam1jonXVQ/QUH8RbwsmaaVz2SOJdzBNBHNtKbw==}
+ engines: {node: ^22.15.0 || ^24.0.0 || >=26.0.0}
+
http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
@@ -5502,6 +6157,9 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
+ httpxy@0.5.5:
+ resolution: {integrity: sha512-uDjmnPyp1q4Sgzf3w+J/Fc6UqcCEj0x4Wjp7OqK5dGhNeDgpyrAmnS6ey8QWrX3SWDon2DMKf9sBa5X9+CVyMA==}
+
human-id@4.2.0:
resolution: {integrity: sha512-K3GbkIWqyvvlpfhBPlbEvD97TtqBpAYA4kt+cn2lD2x2HuohzZCibcA2nOlnJT6exqvJLggoB5nv2dNf192nEA==}
hasBin: true
@@ -5510,10 +6168,6 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
husky@9.1.7:
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
engines: {node: '>=18'}
@@ -5620,9 +6274,9 @@ packages:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
- ini@4.1.1:
- resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ini@6.0.0:
+ resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
@@ -5761,10 +6415,6 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-fullwidth-code-point@4.0.0:
- resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
- engines: {node: '>=12'}
-
is-fullwidth-code-point@5.1.0:
resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
engines: {node: '>=18'}
@@ -5785,6 +6435,10 @@ packages:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
+ is-in-ssh@1.0.0:
+ resolution: {integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==}
+ engines: {node: '>=20'}
+
is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
@@ -5845,6 +6499,10 @@ packages:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+
is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
@@ -5852,6 +6510,9 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ is-promise@4.0.0:
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
+
is-regex@1.2.1:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
@@ -5879,10 +6540,6 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
is-string@1.1.1:
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
@@ -5895,10 +6552,6 @@ packages:
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
- is-text-path@2.0.0:
- resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==}
- engines: {node: '>=8'}
-
is-typed-array@1.1.15:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
@@ -5988,9 +6641,6 @@ packages:
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
engines: {node: '>= 0.4'}
- jackspeak@3.4.3:
- resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
-
jake@10.9.4:
resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==}
engines: {node: '>=10'}
@@ -6175,6 +6825,9 @@ packages:
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ js-tokens@10.0.0:
+ resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -6247,19 +6900,12 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-parser@3.3.1:
- resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
-
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
jsonfile@6.2.1:
resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==}
- jsonparse@1.3.1:
- resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
- engines: {'0': node >= 0.2.0}
-
jsonpath@1.3.0:
resolution: {integrity: sha512-0kjkYHJBkAy50Z5QzArZ7udmvxrJzkpKYW27fiF//BrMY7TQibYLl+FYIXN2BiYmwMIVzSfD8aDRj6IzgBX2/w==}
@@ -6308,34 +6954,108 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- language-subtag-registry@0.3.23:
- resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
+ language-subtag-registry@0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
+
+ language-tags@1.0.9:
+ resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
+ engines: {node: '>=0.10'}
+
+ last-call-webpack-plugin@3.0.0:
+ resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==}
+
+ latest-version@5.1.0:
+ resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
+ engines: {node: '>=8'}
+
+ launch-editor@2.14.1:
+ resolution: {integrity: sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==}
+
+ leven@3.1.0:
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
+
+ levn@0.3.0:
+ resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
+ engines: {node: '>= 0.8.0'}
+
+ levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+
+ lightningcss-android-arm64@1.32.0:
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.32.0:
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.32.0:
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-freebsd-x64@1.32.0:
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
- language-tags@1.0.9:
- resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
- engines: {node: '>=0.10'}
+ lightningcss-linux-arm64-gnu@1.32.0:
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
- last-call-webpack-plugin@3.0.0:
- resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==}
+ lightningcss-linux-arm64-musl@1.32.0:
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
- latest-version@5.1.0:
- resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
- engines: {node: '>=8'}
+ lightningcss-linux-x64-gnu@1.32.0:
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
- launch-editor@2.14.1:
- resolution: {integrity: sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==}
+ lightningcss-linux-x64-musl@1.32.0:
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
- leven@3.1.0:
- resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
- engines: {node: '>=6'}
+ lightningcss-win32-arm64-msvc@1.32.0:
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
- levn@0.3.0:
- resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
- engines: {node: '>= 0.8.0'}
+ lightningcss-win32-x64-msvc@1.32.0:
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
- levn@0.4.1:
- resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
- engines: {node: '>= 0.8.0'}
+ lightningcss@1.32.0:
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
+ engines: {node: '>= 12.0.0'}
lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
@@ -6348,14 +7068,17 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- lint-staged@15.5.2:
- resolution: {integrity: sha512-YUSOLq9VeRNAo/CTaVmhGDKG+LBtA8KF1X4K5+ykMSwWST1vDxJRB2kv2COgLb1fvpCo+A/y9A0G0znNVmdx4w==}
- engines: {node: '>=18.12.0'}
+ linkify-it@5.0.2:
+ resolution: {integrity: sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==}
+
+ lint-staged@17.0.8:
+ resolution: {integrity: sha512-B2P/d+jVW0UXOQ0MVMLrB/9ydA1P+zz6jYfdrbbEd9ur3S2rcbduFWKiUCC02Sm5hbC8nrm7y24WuYMG54HfxA==}
+ engines: {node: '>=22.22.1'}
hasBin: true
- listr2@8.3.3:
- resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==}
- engines: {node: '>=18.0.0'}
+ listr2@10.2.2:
+ resolution: {integrity: sha512-JtNtbZj8q5BnDMR7trpwvwk3RIrANtIVzEUm8w7amp6xelLgyuq+4WZoTH913XaQAoH/cNdYhaNzBPA2U3xbDw==}
+ engines: {node: '>=22.13.0'}
loader-runner@2.4.0:
resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
@@ -6400,34 +7123,12 @@ packages:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
- locate-path@7.2.0:
- resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- lodash.camelcase@4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
-
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- lodash.isplainobject@4.0.6:
- resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
-
- lodash.kebabcase@4.1.1:
- resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
-
lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- lodash.merge@4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
-
- lodash.mergewith@4.6.2:
- resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
-
- lodash.snakecase@4.1.1:
- resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
-
lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
@@ -6437,9 +7138,6 @@ packages:
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- lodash.upperfirst@4.3.1:
- resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
-
lodash@4.18.1:
resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
@@ -6469,8 +7167,9 @@ packages:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
- lru-cache@10.4.3:
- resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+ lru-cache@11.5.2:
+ resolution: {integrity: sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==}
+ engines: {node: 20 || >=22}
lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -6521,9 +7220,8 @@ packages:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
- marked@4.3.0:
- resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
- engines: {node: '>= 12'}
+ markdown-it@14.3.0:
+ resolution: {integrity: sha512-RCEsPjR+sr0x+AuYp601tKTkgFG4YEPLCzHST3cQ/fhlJkqAkz1L2/Qbp1j9qw5SBwQHFBoW8+hoN5xssOF0Tw==}
hasBin: true
math-intrinsics@1.1.0:
@@ -6539,10 +7237,17 @@ packages:
mdn-data@2.0.4:
resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
+ mdurl@2.0.0:
+ resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+
media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
+ media-typer@1.1.0:
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
+ engines: {node: '>= 0.8'}
+
memfs@3.5.3:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
@@ -6559,13 +7264,13 @@ packages:
resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
- meow@12.1.1:
- resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
- engines: {node: '>=16.10'}
-
merge-descriptors@1.0.3:
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
+ merge-descriptors@2.0.0:
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
+ engines: {node: '>=18'}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -6614,10 +7319,6 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
mimic-function@5.0.1:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
@@ -6659,10 +7360,6 @@ packages:
resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==}
engines: {node: '>=10'}
- minimatch@9.0.9:
- resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
@@ -6781,9 +7478,6 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- muggle-string@0.4.1:
- resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
-
multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
@@ -6820,13 +7514,16 @@ packages:
resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
engines: {node: '>= 0.6'}
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- next@14.2.32:
- resolution: {integrity: sha512-fg5g0GZ7/nFc09X8wLe6pNSU8cLWbLRG3TZzPJ1BJvi2s9m7eF991se67wliM9kR5yLHRkyGKU49MMx58s3LJg==}
+ next@14.2.35:
+ resolution: {integrity: sha512-KhYd2Hjt/O1/1aZVX3dCwGXM1QmOV4eNM2UTacK5gipDdPN/oHHK/4oVGy7X8GMfPMsUTUEmGlsy0EY1YGAkig==}
engines: {node: '>=18.17.0'}
- deprecated: This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/security-update-2025-12-11 for more details.
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
@@ -6899,10 +7596,6 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.3.0:
- resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
nth-check@1.0.2:
resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==}
@@ -6993,17 +7686,13 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
onetime@7.0.0:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- open@10.2.0:
- resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
- engines: {node: '>=18'}
+ open@11.0.0:
+ resolution: {integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==}
+ engines: {node: '>=20'}
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
@@ -7056,10 +7745,6 @@ packages:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
- p-limit@4.0.0:
- resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
@@ -7072,10 +7757,6 @@ packages:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
- p-locate@6.0.0:
- resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
p-map@2.1.0:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
@@ -7088,9 +7769,9 @@ packages:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
- p-retry@6.2.1:
- resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
- engines: {node: '>=16.17'}
+ p-retry@8.0.0:
+ resolution: {integrity: sha512-kFVqH1HxOHp8LupNsOys7bSV09VYTRLxarH/mokO4Rqhk6wGi70E0jh4VzvVGXfEVNggHoHLAMWsQqHyU1Ey9A==}
+ engines: {node: '>=22'}
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
@@ -7171,10 +7852,6 @@ packages:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- path-exists@5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -7183,20 +7860,19 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- path-key@4.0.0:
- resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
- engines: {node: '>=12'}
-
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@2.0.2:
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
path-to-regexp@0.1.13:
resolution: {integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==}
+ path-to-regexp@8.4.2:
+ resolution: {integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==}
+
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -7225,11 +7901,6 @@ packages:
resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==}
engines: {node: '>=12'}
- pidtree@0.6.1:
- resolution: {integrity: sha512-e0F9AOF1JMrCfBsyJOwU9lNvQ0WtXTq0j/4jk0BQ5JSI9VAybPXmDpPRw/2FQ3e5d3ZFN1mLh7jW99m/jjaptw==}
- engines: {node: '>=0.10'}
- hasBin: true
-
pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
@@ -7250,10 +7921,6 @@ packages:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
- pkg-dir@7.0.0:
- resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
- engines: {node: '>=14.16'}
-
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
@@ -7856,6 +8523,10 @@ packages:
resolution: {integrity: sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==}
engines: {node: ^10 || ^12 || >=14}
+ powershell-utils@0.1.0:
+ resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==}
+ engines: {node: '>=20'}
+
preact-cli@3.5.1:
resolution: {integrity: sha512-6sRewJOtPAWkIVc+cycU4cjk9294stdh4hyw2ENpJ5N5lWJ8Y3r9r5Ly6Hmo5rzvcUq4cnlshMwTTwGq7ip/1w==}
engines: {node: '>=12'}
@@ -7882,8 +8553,13 @@ packages:
peerDependencies:
preact: '>=10 || >= 11.0.0-0'
- preact@10.19.6:
- resolution: {integrity: sha512-gympg+T2Z1fG1unB8NH29yHJwnEaCH37Z32diPDku316OTnRPeMbiRV9kTrfZpocXjdfnWuFUl/Mj4BHaf6gnw==}
+ preact@10.29.7:
+ resolution: {integrity: sha512-DCHYrK/B10yUD3ZjLfhZ3WIE/9Vf9VFUODcRE2dRomTYDpJk6z6L9wecSfhfE6M9ZTHUdyQkoC46arIDhEV84Q==}
+ peerDependencies:
+ preact-render-to-string: '>=5'
+ peerDependenciesMeta:
+ preact-render-to-string:
+ optional: true
prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
@@ -7911,8 +8587,8 @@ packages:
engines: {node: '>=14'}
hasBin: true
- prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ prettier@3.9.5:
+ resolution: {integrity: sha512-/FVl766LpUfB5vXgCYOYa0MeV/441Ia99AeICQIQFTY/Nw0roZwULcXpku5i1/m5kt/baz+s4Zogspd839HSMg==}
engines: {node: '>=14'}
hasBin: true
@@ -8000,6 +8676,10 @@ packages:
pumpify@1.5.1:
resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
+ punycode.js@2.3.1:
+ resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
+ engines: {node: '>=6'}
+
punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
@@ -8073,6 +8753,10 @@ packages:
resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
engines: {node: '>= 0.8'}
+ raw-body@3.0.2:
+ resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
+ engines: {node: '>= 0.10'}
+
raw-loader@4.0.2:
resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
engines: {node: '>= 10.13.0'}
@@ -8102,11 +8786,6 @@ packages:
peerDependencies:
react: ^18.3.1
- react-dom@19.2.7:
- resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==}
- peerDependencies:
- react: ^19.2.7
-
react-error-overlay@6.1.0:
resolution: {integrity: sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==}
@@ -8127,22 +8806,22 @@ packages:
resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==}
engines: {node: '>=0.10.0'}
- react-refresh@0.18.0:
- resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
- engines: {node: '>=0.10.0'}
-
- react-router-dom@6.30.4:
- resolution: {integrity: sha512-q4HvNl+mmDdkS0g+MqiBZNteQJCuimWoOyHMy4T/RQLAn9Z29+E91QXRaxOujeMl2HTzRSS0KFPd7lxX3PjV0Q==}
- engines: {node: '>=14.0.0'}
+ react-router-dom@7.18.1:
+ resolution: {integrity: sha512-KaZh+X/6UtEp28x51AUYZDMg9NGoz2ja3dNHa+ta/tk40vCzKhQ/RypCWBMLbmDr6//E24Vv5uPsrqXFozdkAg==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
- react: '>=16.8'
- react-dom: '>=16.8'
+ react: '>=18'
+ react-dom: '>=18'
- react-router@6.30.4:
- resolution: {integrity: sha512-SVUsDe+DybHM/WmYKIVYhZh1o5Dcuf16yM6WjG02Q9XVFMZIJyHYhwrr6bFBXZkVP6z69kNkMyBCujt8FaFLJA==}
- engines: {node: '>=14.0.0'}
+ react-router@7.18.1:
+ resolution: {integrity: sha512-GDLgg3i3uM0aeJO3Fm+TCS+sDQ7gu12T6x0qdTEzcwqEfleci7JwugVNIF3U//0FWKnJT7ptG+20B2jfDqnZAg==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
- react: '>=16.8'
+ react: '>=18'
+ react-dom: '>=18'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
react-scripts@5.0.1:
resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==}
@@ -8160,10 +8839,6 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- react@19.2.7:
- resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==}
- engines: {node: '>=0.10.0'}
-
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -8186,6 +8861,10 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@5.0.0:
+ resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
+ engines: {node: '>= 20.19.0'}
+
rechoir@0.8.0:
resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
engines: {node: '>= 10.13.0'}
@@ -8379,14 +9058,20 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.10:
- resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
+ rimraf@6.1.3:
+ resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==}
+ engines: {node: 20 || >=22}
hasBin: true
ripemd160@2.0.3:
resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==}
engines: {node: '>= 0.8'}
+ rolldown@1.1.5:
+ resolution: {integrity: sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
rollup-plugin-banner2@1.3.1:
resolution: {integrity: sha512-BUxYj2FbSCxgfyvln6f1AWG1n+b1ZUXXb/LkKpClB12CTIjwDFexWw35V/STz7xT+BLat475I204aRzpxRQwKg==}
engines: {node: '>=12.13'}
@@ -8407,6 +9092,10 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ router@2.2.0:
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
+ engines: {node: '>= 18'}
+
run-applescript@7.1.0:
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
@@ -8485,9 +9174,6 @@ packages:
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
- scheduler@0.27.0:
- resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
-
schema-utils@1.0.0:
resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==}
engines: {node: '>= 4'}
@@ -8549,6 +9235,10 @@ packages:
resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
engines: {node: '>= 0.8.0'}
+ send@1.2.1:
+ resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
+ engines: {node: '>= 18'}
+
serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
@@ -8566,6 +9256,13 @@ packages:
resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
engines: {node: '>= 0.8.0'}
+ serve-static@2.2.1:
+ resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
+ engines: {node: '>= 18'}
+
+ set-cookie-parser@2.7.2:
+ resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
+
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
@@ -8617,9 +9314,6 @@ packages:
resolution: {integrity: sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==}
engines: {node: '>= 0.4'}
- shiki@0.14.7:
- resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==}
-
side-channel-list@1.0.1:
resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==}
engines: {node: '>= 0.4'}
@@ -8649,15 +9343,19 @@ packages:
simple-swizzle@0.2.4:
resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
- sirv-cli@2.0.2:
- resolution: {integrity: sha512-OtSJDwxsF1NWHc7ps3Sa0s+dPtP15iQNJzfKVz+MxkEo3z72mCD+yu30ct79rPr0CaV1HXSOBp+MIY5uIhHZ1A==}
- engines: {node: '>= 10'}
+ sirv-cli@3.0.1:
+ resolution: {integrity: sha512-ICXaF2u6IQhLZ0EXF6nqUF4YODfSQSt+mGykt4qqO5rY+oIiwdg7B8w2PVDBJlQulaS2a3J8666CUoDoAuCGvg==}
+ engines: {node: '>=18'}
hasBin: true
sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
+ sirv@3.0.2:
+ resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
+ engines: {node: '>=18'}
+
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -8674,14 +9372,14 @@ packages:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
- slice-ansi@5.0.0:
- resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
- engines: {node: '>=12'}
-
slice-ansi@7.1.2:
resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
engines: {node: '>=18'}
+ slice-ansi@8.0.0:
+ resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
+ engines: {node: '>=20'}
+
snapdragon-node@2.1.1:
resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
engines: {node: '>=0.10.0'}
@@ -8762,10 +9460,6 @@ packages:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
- split2@4.2.0:
- resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
- engines: {node: '>= 10.x'}
-
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
@@ -8862,14 +9556,14 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
-
string-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
+ string-width@8.2.2:
+ resolution: {integrity: sha512-GaPUh5gfdrYzqeVNZvUfT23vYYxXzKYidUcnMtJg/3rxRV63EFZy3k6xfKlmfeJD0176lnUV/Usr3XcwSvFzpg==}
+ engines: {node: '>=20'}
+
string.prototype.includes@2.0.1:
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
engines: {node: '>= 0.4'}
@@ -8931,10 +9625,6 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
strip-json-comments@2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
@@ -9132,10 +9822,6 @@ packages:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
- text-extensions@2.4.0:
- resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
- engines: {node: '>=8'}
-
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
@@ -9158,9 +9844,6 @@ packages:
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
@@ -9339,6 +10022,10 @@ packages:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
+ type-is@2.1.0:
+ resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==}
+ engines: {node: '>= 18'}
+
typed-array-buffer@1.0.3:
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
@@ -9361,12 +10048,12 @@ packages:
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- typedoc@0.25.13:
- resolution: {integrity: sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==}
- engines: {node: '>= 16'}
+ typedoc@0.28.20:
+ resolution: {integrity: sha512-uSKqkh8Cr48vllnEy+jdaAgOeR6Y+QCBW7usgUsKj7gJEfR7stw9U/fE49LBnj2tPRKPY0c0EBJSWe9Appmplg==}
+ engines: {node: '>= 18', pnpm: '>= 10'}
hasBin: true
peerDependencies:
- typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x
+ typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x || 5.9.x || 6.0.x
typescript-eslint@8.64.0:
resolution: {integrity: sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==}
@@ -9380,6 +10067,14 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ typescript@6.0.3:
+ resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ uc.micro@2.1.0:
+ resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
+
ufo@1.6.4:
resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
@@ -9395,11 +10090,8 @@ packages:
underscore@1.13.6:
resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==}
- undici-types@6.21.0:
- resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
-
- undici-types@7.18.2:
- resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+ undici-types@8.3.0:
+ resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==}
unfetch@4.2.0:
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
@@ -9420,10 +10112,6 @@ packages:
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
- unicorn-magic@0.1.0:
- resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
- engines: {node: '>=18'}
-
union-value@1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
@@ -9460,6 +10148,40 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
+ unplugin-dts@1.0.3:
+ resolution: {integrity: sha512-/GR887wfG4r1cWyt1UZsLRuMIjsmEbGkS9yJrz+0dsToHAYUD5CTyP3JMGVLv25j9K0mJcwAVvZno/aTuSUvNg==}
+ peerDependencies:
+ '@microsoft/api-extractor': '>=7'
+ '@rspack/core': ^1
+ '@vue/language-core': ^3.1.5
+ esbuild: '*'
+ rolldown: '*'
+ rollup: '>=3'
+ typescript: '>=4'
+ vite: '>=3'
+ webpack: ^4 || ^5
+ peerDependenciesMeta:
+ '@microsoft/api-extractor':
+ optional: true
+ '@rspack/core':
+ optional: true
+ '@vue/language-core':
+ optional: true
+ esbuild:
+ optional: true
+ rolldown:
+ optional: true
+ rollup:
+ optional: true
+ vite:
+ optional: true
+ webpack:
+ optional: true
+
+ unplugin@2.3.11:
+ resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
+ engines: {node: '>=18.12.0'}
+
unquote@1.1.1:
resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
@@ -9574,24 +10296,30 @@ packages:
vite-plugin-banner@0.8.1:
resolution: {integrity: sha512-0+gGguHk3MH0HvzMSOCJC6fGgH4+jtY9KlKVZh+hwwE+PBkGVzY8xe657JL74vEgbeUJD37XjVqTrmve8XvZBQ==}
- vite-plugin-dts@4.5.4:
- resolution: {integrity: sha512-d4sOM8M/8z7vRXHHq/ebbblfaxENjogAAekcfcDCCwAyvGqnPrc7f4NZbvItS+g4WTgerW0xDwSz5qz11JT3vg==}
+ vite-plugin-dts@5.0.3:
+ resolution: {integrity: sha512-gIth6NdCEHWPiiRMCK3N6C8WjvdsrtEQrmsiG8h6Ov+lFP+b07Y+wcs9H0H7n146l0PDTYK4cQN1vgeG1pMdRQ==}
peerDependencies:
- typescript: '*'
- vite: '*'
+ '@microsoft/api-extractor': '>=7'
+ rollup: '>=3'
+ vite: '>=3'
peerDependenciesMeta:
+ '@microsoft/api-extractor':
+ optional: true
+ rollup:
+ optional: true
vite:
optional: true
- vite@7.3.6:
- resolution: {integrity: sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==}
+ vite@8.1.4:
+ resolution: {integrity: sha512-bTT9PsdWO+MQMNG9ZXIP/qM9wGh37DFxTV/sPq9cFpHr3w4jkgef032PkAL9jAqhk3Nz8NQw3O8n6/xFkqO4QQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
'@types/node': ^20.19.0 || >=22.12.0
+ '@vitejs/devtools': ^0.3.0
+ esbuild: ^0.27.0 || ^0.28.0
jiti: '>=1.21.0'
less: ^4.0.0
- lightningcss: ^1.21.0
sass: ^1.70.0
sass-embedded: ^1.70.0
stylus: '>=0.54.8'
@@ -9602,12 +10330,14 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
jiti:
optional: true
less:
optional: true
- lightningcss:
- optional: true
sass:
optional: true
sass-embedded:
@@ -9667,12 +10397,6 @@ packages:
vm-browserify@1.1.2:
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
- vscode-oniguruma@1.7.0:
- resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
-
- vscode-textmate@8.0.0:
- resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
-
vscode-uri@3.1.0:
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
@@ -9722,17 +10446,23 @@ packages:
engines: {node: '>= 10.13.0'}
hasBin: true
- webpack-cli@5.1.4:
- resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==}
- engines: {node: '>=14.15.0'}
+ webpack-cli@7.2.1:
+ resolution: {integrity: sha512-YwSGbcZdfz12DM8JIseVPr3oBb09IgVCVc4vY3oDvZnI/mALTGPAP1QiqOi4/bBLSJrRHaqDIXeHcNA0+G38aw==}
+ engines: {node: '>=20.9.0'}
hasBin: true
peerDependencies:
- '@webpack-cli/generators': '*'
- webpack: 5.x.x
- webpack-bundle-analyzer: '*'
- webpack-dev-server: '*'
+ js-yaml: ^4.0.0 || ^5.0.0
+ json5: ^2.2.3
+ toml: ^3.0.0 || ^4.0.0
+ webpack: ^5.101.0
+ webpack-bundle-analyzer: ^4.0.0 || ^5.0.0
+ webpack-dev-server: ^5.0.0 || ^6.0.0
peerDependenciesMeta:
- '@webpack-cli/generators':
+ js-yaml:
+ optional: true
+ json5:
+ optional: true
+ toml:
optional: true
webpack-bundle-analyzer:
optional: true
@@ -9745,11 +10475,11 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- webpack-dev-middleware@7.4.5:
- resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==}
- engines: {node: '>= 18.12.0'}
+ webpack-dev-middleware@8.0.3:
+ resolution: {integrity: sha512-zWrde9VZDiRaFuWsjHO40wm9LxxtXEk8DdzFXdU7eU5ZpiANnZZDBbZgN3guxbEoKqUHd9YupBmynyioz42nkA==}
+ engines: {node: '>= 20.9.0'}
peerDependencies:
- webpack: ^5.0.0
+ webpack: ^5.101.0
peerDependenciesMeta:
webpack:
optional: true
@@ -9767,12 +10497,12 @@ packages:
webpack-cli:
optional: true
- webpack-dev-server@5.2.6:
- resolution: {integrity: sha512-HNLRmamRvVavZQ+avceZifmv8hmdUjg43t6MI4SqJDwFdW7RPQwH5vzGhDRZSX59SgfbeHhLnq3g+uooWo7pVw==}
- engines: {node: '>= 18.12.0'}
+ webpack-dev-server@6.0.0:
+ resolution: {integrity: sha512-q9SD4ItOGhZLeU6EGT10caDZdHjF50Pz1DtkRZZOPsfluMXOkacWKKOtSBSLVkPqKiF67eFUC0rI88U/tSFPEw==}
+ engines: {node: '>= 22.15.0'}
hasBin: true
peerDependencies:
- webpack: ^5.0.0
+ webpack: ^5.101.0
webpack-cli: '*'
peerDependenciesMeta:
webpack:
@@ -9797,6 +10527,10 @@ packages:
resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
engines: {node: '>=10.0.0'}
+ webpack-merge@6.0.1:
+ resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==}
+ engines: {node: '>=18.0.0'}
+
webpack-plugin-replace@1.2.0:
resolution: {integrity: sha512-1HA3etHpJW55qonJqv84o5w5GY7iqF8fqSHpTWdNwarj1llkkt4jT4QSvYs1hoaU8Lu5akDnq/spHHO5mXwo1w==}
engines: {node: '>=4'}
@@ -9812,6 +10546,9 @@ packages:
resolution: {integrity: sha512-jyuiGJdtvY434z5bUZrjz67v76/ePNvFZTp9Mdz29IlH4+GPsgyGjiv0fKI+M7BdkU6ADjulUcKAd3tUK3WlEw==}
engines: {node: '>=10.13.0'}
+ webpack-virtual-modules@0.6.2:
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
+
webpack@4.47.0:
resolution: {integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==}
engines: {node: '>=6.11.5'}
@@ -9914,16 +10651,10 @@ packages:
resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==}
engines: {node: '>=10.0.0'}
- workbox-cacheable-response@6.5.4:
- resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==}
-
workbox-cacheable-response@6.6.0:
resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==}
deprecated: workbox-background-sync@6.6.0
- workbox-core@6.5.4:
- resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==}
-
workbox-core@6.6.0:
resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==}
@@ -9970,14 +10701,14 @@ packages:
worker-farm@1.7.0:
resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
+ wrap-ansi@10.0.0:
+ resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==}
+ engines: {node: '>=20'}
+
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
wrap-ansi@9.0.2:
resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
engines: {node: '>=18'}
@@ -10023,9 +10754,9 @@ packages:
utf-8-validate:
optional: true
- wsl-utils@0.1.0:
- resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
- engines: {node: '>=18'}
+ wsl-utils@0.3.1:
+ resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
+ engines: {node: '>=20'}
xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
@@ -10070,26 +10801,22 @@ packages:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
- yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
yargs@16.2.2:
resolution: {integrity: sha512-Nt9ZJjXTv5R8MHbqby/wXQ6Gi0Bb3TcYZkR1bzuL4yB2OxWPkXknz513gEF0GoA6tn00UpbPvERW8rzCuWCA6w==}
engines: {node: '>=10'}
- yargs@17.7.3:
- resolution: {integrity: sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==}
- engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.2.2:
- resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
- engines: {node: '>=12.20'}
-
zod-validation-error@4.0.2:
resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
engines: {node: '>=18.0.0'}
@@ -10115,8 +10842,15 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/code-frame@8.0.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 8.0.4
+ js-tokens: 10.0.0
+
'@babel/compat-data@7.29.7': {}
+ '@babel/compat-data@8.0.0': {}
+
'@babel/core@7.29.7':
dependencies:
'@babel/code-frame': 7.29.7
@@ -10137,6 +10871,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@8.0.1':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/generator': 8.0.0
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helpers': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/template': 8.0.0
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+ '@types/gensync': 1.0.5
+ convert-source-map: 2.0.0
+ empathic: 2.0.1
+ gensync: 1.0.0-beta.2
+ import-meta-resolve: 4.2.0
+ json5: 2.2.3
+ obug: 2.1.3
+ semver: 7.8.5
+
'@babel/eslint-parser@7.29.7(@babel/core@7.29.7)(eslint@10.7.0(jiti@1.21.7))':
dependencies:
'@babel/core': 7.29.7
@@ -10153,10 +10906,23 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
+ '@babel/generator@8.0.0':
+ dependencies:
+ '@babel/parser': 8.0.4
+ '@babel/types': 8.0.4
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/jsesc': 2.5.1
+ jsesc: 3.1.0
+
'@babel/helper-annotate-as-pure@7.29.7':
dependencies:
'@babel/types': 7.29.7
+ '@babel/helper-annotate-as-pure@8.0.0':
+ dependencies:
+ '@babel/types': 8.0.4
+
'@babel/helper-compilation-targets@7.29.7':
dependencies:
'@babel/compat-data': 7.29.7
@@ -10165,6 +10931,14 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
+ '@babel/helper-compilation-targets@8.0.0':
+ dependencies:
+ '@babel/compat-data': 8.0.0
+ '@babel/helper-validator-option': 8.0.0
+ browserslist: 4.28.6
+ lru-cache: 11.5.2
+ semver: 7.8.5
+
'@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10178,6 +10952,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-create-class-features-plugin@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-member-expression-to-functions': 8.0.0
+ '@babel/helper-optimise-call-expression': 8.0.0
+ '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+ '@babel/traverse': 8.0.4
+ semver: 7.8.5
+
'@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10185,6 +10970,13 @@ snapshots:
regexpu-core: 6.4.0
semver: 6.3.1
+ '@babel/helper-create-regexp-features-plugin@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ regexpu-core: 6.4.0
+ semver: 7.8.5
+
'@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10196,8 +10988,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-define-polyfill-provider@1.0.0(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ lodash.debounce: 4.0.8
+
'@babel/helper-globals@7.29.7': {}
+ '@babel/helper-globals@8.0.0': {}
+
'@babel/helper-member-expression-to-functions@7.29.7':
dependencies:
'@babel/traverse': 7.29.7
@@ -10205,6 +11006,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-member-expression-to-functions@8.0.0':
+ dependencies:
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/helper-module-imports@7.29.7':
dependencies:
'@babel/traverse': 7.29.7
@@ -10212,6 +11018,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-imports@8.0.0':
+ dependencies:
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10221,12 +11032,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-imports': 8.0.0
+ '@babel/helper-validator-identifier': 8.0.4
+ '@babel/traverse': 8.0.4
+
'@babel/helper-optimise-call-expression@7.29.7':
dependencies:
'@babel/types': 7.29.7
+ '@babel/helper-optimise-call-expression@8.0.0':
+ dependencies:
+ '@babel/types': 8.0.4
+
'@babel/helper-plugin-utils@7.29.7': {}
+ '@babel/helper-plugin-utils@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+
'@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10236,6 +11062,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-wrap-function': 8.0.0
+ '@babel/traverse': 8.0.4
+
'@babel/helper-replace-supers@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10245,6 +11078,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-member-expression-to-functions': 8.0.0
+ '@babel/helper-optimise-call-expression': 8.0.0
+ '@babel/traverse': 8.0.4
+
'@babel/helper-skip-transparent-expression-wrappers@7.29.7':
dependencies:
'@babel/traverse': 7.29.7
@@ -10252,12 +11092,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-skip-transparent-expression-wrappers@8.0.0':
+ dependencies:
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/helper-string-parser@7.29.7': {}
+ '@babel/helper-string-parser@8.0.0': {}
+
'@babel/helper-validator-identifier@7.29.7': {}
+ '@babel/helper-validator-identifier@8.0.4': {}
+
'@babel/helper-validator-option@7.29.7': {}
+ '@babel/helper-validator-option@8.0.0': {}
+
'@babel/helper-wrap-function@7.29.7':
dependencies:
'@babel/template': 7.29.7
@@ -10266,15 +11117,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-wrap-function@8.0.0':
+ dependencies:
+ '@babel/template': 8.0.0
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/helpers@7.29.7':
dependencies:
'@babel/template': 7.29.7
'@babel/types': 7.29.7
+ '@babel/helpers@8.0.0':
+ dependencies:
+ '@babel/template': 8.0.0
+ '@babel/types': 8.0.4
+
'@babel/parser@7.29.7':
dependencies:
'@babel/types': 7.29.7
+ '@babel/parser@8.0.4':
+ dependencies:
+ '@babel/types': 8.0.4
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10283,16 +11149,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10301,6 +11182,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10310,6 +11197,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+ '@babel/plugin-transform-optional-chaining': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10318,6 +11212,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10447,6 +11346,11 @@ snapshots:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-jsx@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10503,6 +11407,11 @@ snapshots:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-arrow-functions@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10512,6 +11421,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-generator-functions@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-remap-async-to-generator': 8.0.1(@babel/core@8.0.1)
+ '@babel/traverse': 8.0.4
+
'@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10521,16 +11437,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-to-generator@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-imports': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-remap-async-to-generator': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-block-scoped-functions@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-block-scoped-functions@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-block-scoping@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10539,6 +11472,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-properties@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10547,6 +11486,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-static-block@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10559,12 +11504,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-globals': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1)
+ '@babel/traverse': 8.0.4
+
'@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
'@babel/template': 7.29.7
+ '@babel/plugin-transform-computed-properties@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10573,28 +11533,55 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-destructuring@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-dotall-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-dotall-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-duplicate-keys@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-duplicate-keys@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-dynamic-import@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-dynamic-import@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10603,16 +11590,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-explicit-resource-management@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-destructuring': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-exponentiation-operator@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-exponentiation-operator@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-export-namespace-from@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-flow-strip-types@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10627,6 +11630,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-for-of@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+
'@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10636,26 +11645,52 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-json-strings@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-json-strings@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-literals@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-logical-assignment-operators@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-member-expression-literals@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-member-expression-literals@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-modules-amd@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10664,6 +11699,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-amd@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10672,6 +11713,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-commonjs@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-modules-systemjs@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10682,6 +11729,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-systemjs@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-validator-identifier': 8.0.4
+
'@babel/plugin-transform-modules-umd@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10690,27 +11744,54 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-umd@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-named-capturing-groups-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-new-target@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-new-target@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-nullish-coalescing-operator@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-numeric-separator@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-object-assign@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10727,6 +11808,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-object-rest-spread@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-destructuring': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-parameters': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-object-super@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10735,11 +11824,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-object-super@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-optional-catch-binding@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10748,11 +11848,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-optional-chaining@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+
'@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-parameters@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10761,6 +11872,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-methods@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10770,11 +11887,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-property-literals@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-property-literals@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-react-constant-elements@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10785,6 +11914,11 @@ snapshots:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-react-display-name@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10792,15 +11926,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.29.7(@babel/core@7.29.7)':
- dependencies:
- '@babel/core': 7.29.7
- '@babel/helper-plugin-utils': 7.29.7
-
- '@babel/plugin-transform-react-jsx-source@7.29.7(@babel/core@7.29.7)':
+ '@babel/plugin-transform-react-jsx-development@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.29.7
- '@babel/helper-plugin-utils': 7.29.7
+ '@babel/core': 8.0.1
+ '@babel/plugin-transform-react-jsx': 8.0.1(@babel/core@8.0.1)
'@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7)':
dependencies:
@@ -10813,28 +11942,59 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-react-jsx@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-module-imports': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-syntax-jsx': 8.0.1(@babel/core@8.0.1)
+ '@babel/types': 8.0.4
+
'@babel/plugin-transform-react-pure-annotations@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-annotate-as-pure': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-react-pure-annotations@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-regenerator@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-regenerator@8.0.2(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-regexp-modifiers@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-regexp-modifiers@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-reserved-words@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-reserved-words@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10852,6 +12012,11 @@ snapshots:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-shorthand-properties@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-spread@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10860,21 +12025,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-spread@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+
'@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-sticky-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-template-literals@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-typeof-symbol@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-typeof-symbol@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10891,24 +12077,47 @@ snapshots:
'@babel/core': 7.29.7
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-unicode-escapes@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-unicode-property-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-unicode-property-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-unicode-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/plugin-transform-unicode-sets-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
'@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-unicode-sets-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
'@babel/preset-env@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/compat-data': 7.29.7
@@ -10986,6 +12195,75 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-env@8.0.2(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/compat-data': 8.0.0
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-validator-option': 8.0.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-arrow-functions': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-async-generator-functions': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-async-to-generator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-block-scoped-functions': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-block-scoping': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-class-properties': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-class-static-block': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-classes': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-computed-properties': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-destructuring': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-dotall-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-duplicate-keys': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-dynamic-import': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-explicit-resource-management': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-exponentiation-operator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-export-namespace-from': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-for-of': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-function-name': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-json-strings': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-logical-assignment-operators': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-member-expression-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-amd': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-commonjs': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-systemjs': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-umd': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-named-capturing-groups-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-new-target': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-nullish-coalescing-operator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-numeric-separator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-object-rest-spread': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-object-super': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-optional-catch-binding': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-optional-chaining': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-parameters': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-private-methods': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-private-property-in-object': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-property-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-regenerator': 8.0.2(@babel/core@8.0.1)
+ '@babel/plugin-transform-regexp-modifiers': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-reserved-words': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-shorthand-properties': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-spread': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-sticky-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-template-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-typeof-symbol': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-escapes': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-property-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-sets-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/preset-modules': 0.2.0(@babel/core@8.0.1)
+ babel-plugin-polyfill-corejs3: 1.0.0(@babel/core@8.0.1)
+ core-js-compat: 3.49.0
+ semver: 7.8.5
+
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -10993,6 +12271,15 @@ snapshots:
'@babel/types': 7.29.7
esutils: 2.0.3
+ '@babel/preset-modules@0.2.0(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-dotall-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-property-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/types': 8.0.4
+ esutils: 2.0.3
+
'@babel/preset-react@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -11005,6 +12292,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-react@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-validator-option': 8.0.0
+ '@babel/plugin-transform-react-display-name': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-react-jsx': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-react-jsx-development': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-react-pure-annotations': 8.0.1(@babel/core@8.0.1)
+
'@babel/preset-typescript@7.29.7(@babel/core@7.29.7)':
dependencies:
'@babel/core': 7.29.7
@@ -11024,6 +12321,12 @@ snapshots:
'@babel/parser': 7.29.7
'@babel/types': 7.29.7
+ '@babel/template@8.0.0':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/traverse@7.29.7':
dependencies:
'@babel/code-frame': 7.29.7
@@ -11036,11 +12339,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@8.0.4':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/generator': 8.0.0
+ '@babel/helper-globals': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/template': 8.0.0
+ '@babel/types': 8.0.4
+ obug: 2.1.3
+
'@babel/types@7.29.7':
dependencies:
'@babel/helper-string-parser': 7.29.7
'@babel/helper-validator-identifier': 7.29.7
+ '@babel/types@8.0.4':
+ dependencies:
+ '@babel/helper-string-parser': 8.0.0
+ '@babel/helper-validator-identifier': 8.0.4
+
'@bcoe/v8-coverage@0.2.3': {}
'@changesets/apply-release-plan@7.1.1':
@@ -11072,7 +12390,7 @@ snapshots:
dependencies:
'@changesets/types': 6.1.0
- '@changesets/cli@2.31.0(@types/node@20.19.43)':
+ '@changesets/cli@2.31.1(@types/node@26.1.1)':
dependencies:
'@changesets/apply-release-plan': 7.1.1
'@changesets/assemble-release-plan': 6.0.10
@@ -11088,7 +12406,7 @@ snapshots:
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@changesets/write': 0.4.0
- '@inquirer/external-editor': 1.0.3(@types/node@20.19.43)
+ '@inquirer/external-editor': 1.0.3(@types/node@26.1.1)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
enquirer: 2.4.1
@@ -11186,114 +12504,128 @@ snapshots:
human-id: 4.2.0
prettier: 2.8.8
- '@commitlint/cli@19.8.1(@types/node@20.19.43)(typescript@5.9.3)':
+ '@commitlint/cli@21.2.1(@types/node@26.1.1)(conventional-commits-parser@7.1.0)(typescript@6.0.3)':
dependencies:
- '@commitlint/format': 19.8.1
- '@commitlint/lint': 19.8.1
- '@commitlint/load': 19.8.1(@types/node@20.19.43)(typescript@5.9.3)
- '@commitlint/read': 19.8.1
- '@commitlint/types': 19.8.1
+ '@commitlint/config-conventional': 21.2.0
+ '@commitlint/format': 21.2.0
+ '@commitlint/lint': 21.2.0
+ '@commitlint/load': 21.2.0(@types/node@26.1.1)(typescript@6.0.3)
+ '@commitlint/read': 21.2.1(conventional-commits-parser@7.1.0)
+ '@commitlint/types': 21.2.0
tinyexec: 1.2.4
- yargs: 17.7.3
+ yargs: 18.0.0
transitivePeerDependencies:
- '@types/node'
+ - conventional-commits-filter
+ - conventional-commits-parser
- typescript
'@commitlint/config-conventional@17.8.1':
dependencies:
conventional-changelog-conventionalcommits: 6.1.0
- '@commitlint/config-validator@19.8.1':
+ '@commitlint/config-conventional@21.2.0':
dependencies:
- '@commitlint/types': 19.8.1
+ '@commitlint/types': 21.2.0
+ conventional-changelog-conventionalcommits: 10.2.1
+
+ '@commitlint/config-validator@21.2.0':
+ dependencies:
+ '@commitlint/types': 21.2.0
ajv: 8.20.0
- '@commitlint/ensure@19.8.1':
+ '@commitlint/ensure@21.2.0':
dependencies:
- '@commitlint/types': 19.8.1
- lodash.camelcase: 4.3.0
- lodash.kebabcase: 4.1.1
- lodash.snakecase: 4.1.1
- lodash.startcase: 4.4.0
- lodash.upperfirst: 4.3.1
+ '@commitlint/types': 21.2.0
+ es-toolkit: 1.49.0
- '@commitlint/execute-rule@19.8.1': {}
+ '@commitlint/execute-rule@21.0.1': {}
- '@commitlint/format@19.8.1':
+ '@commitlint/format@21.2.0':
dependencies:
- '@commitlint/types': 19.8.1
- chalk: 5.6.2
+ '@commitlint/types': 21.2.0
+ picocolors: 1.1.1
- '@commitlint/is-ignored@19.8.1':
+ '@commitlint/is-ignored@21.2.0':
dependencies:
- '@commitlint/types': 19.8.1
+ '@commitlint/types': 21.2.0
semver: 7.8.5
- '@commitlint/lint@19.8.1':
+ '@commitlint/lint@21.2.0':
dependencies:
- '@commitlint/is-ignored': 19.8.1
- '@commitlint/parse': 19.8.1
- '@commitlint/rules': 19.8.1
- '@commitlint/types': 19.8.1
+ '@commitlint/is-ignored': 21.2.0
+ '@commitlint/parse': 21.2.0
+ '@commitlint/rules': 21.2.0
+ '@commitlint/types': 21.2.0
- '@commitlint/load@19.8.1(@types/node@20.19.43)(typescript@5.9.3)':
+ '@commitlint/load@21.2.0(@types/node@26.1.1)(typescript@6.0.3)':
dependencies:
- '@commitlint/config-validator': 19.8.1
- '@commitlint/execute-rule': 19.8.1
- '@commitlint/resolve-extends': 19.8.1
- '@commitlint/types': 19.8.1
- chalk: 5.6.2
- cosmiconfig: 9.0.2(typescript@5.9.3)
- cosmiconfig-typescript-loader: 6.3.0(@types/node@20.19.43)(cosmiconfig@9.0.2(typescript@5.9.3))(typescript@5.9.3)
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- lodash.uniq: 4.5.0
+ '@commitlint/config-validator': 21.2.0
+ '@commitlint/execute-rule': 21.0.1
+ '@commitlint/resolve-extends': 21.2.0
+ '@commitlint/types': 21.2.0
+ cosmiconfig: 9.0.2(typescript@6.0.3)
+ cosmiconfig-typescript-loader: 6.3.0(@types/node@26.1.1)(cosmiconfig@9.0.2(typescript@6.0.3))(typescript@6.0.3)
+ es-toolkit: 1.49.0
+ is-plain-obj: 4.1.0
+ picocolors: 1.1.1
transitivePeerDependencies:
- '@types/node'
- typescript
- '@commitlint/message@19.8.1': {}
+ '@commitlint/message@21.2.0': {}
- '@commitlint/parse@19.8.1':
+ '@commitlint/parse@21.2.0':
dependencies:
- '@commitlint/types': 19.8.1
- conventional-changelog-angular: 7.0.0
- conventional-commits-parser: 5.0.0
+ '@commitlint/types': 21.2.0
+ conventional-changelog-angular: 9.2.1
+ conventional-commits-parser: 7.1.0
- '@commitlint/read@19.8.1':
+ '@commitlint/read@21.2.1(conventional-commits-parser@7.1.0)':
dependencies:
- '@commitlint/top-level': 19.8.1
- '@commitlint/types': 19.8.1
- git-raw-commits: 4.0.0
- minimist: 1.2.8
+ '@commitlint/top-level': 21.2.0
+ '@commitlint/types': 21.2.0
+ '@conventional-changelog/git-client': 3.1.0(conventional-commits-parser@7.1.0)
tinyexec: 1.2.4
+ transitivePeerDependencies:
+ - conventional-commits-filter
+ - conventional-commits-parser
- '@commitlint/resolve-extends@19.8.1':
+ '@commitlint/resolve-extends@21.2.0':
dependencies:
- '@commitlint/config-validator': 19.8.1
- '@commitlint/types': 19.8.1
- global-directory: 4.0.1
- import-meta-resolve: 4.2.0
- lodash.mergewith: 4.6.2
+ '@commitlint/config-validator': 21.2.0
+ '@commitlint/types': 21.2.0
+ es-toolkit: 1.49.0
+ global-directory: 5.0.0
resolve-from: 5.0.0
- '@commitlint/rules@19.8.1':
+ '@commitlint/rules@21.2.0':
dependencies:
- '@commitlint/ensure': 19.8.1
- '@commitlint/message': 19.8.1
- '@commitlint/to-lines': 19.8.1
- '@commitlint/types': 19.8.1
+ '@commitlint/ensure': 21.2.0
+ '@commitlint/message': 21.2.0
+ '@commitlint/to-lines': 21.0.1
+ '@commitlint/types': 21.2.0
+
+ '@commitlint/to-lines@21.0.1': {}
- '@commitlint/to-lines@19.8.1': {}
+ '@commitlint/top-level@21.2.0':
+ dependencies:
+ escalade: 3.2.0
- '@commitlint/top-level@19.8.1':
+ '@commitlint/types@21.2.0':
dependencies:
- find-up: 7.0.0
+ conventional-commits-parser: 7.1.0
+ picocolors: 1.1.1
- '@commitlint/types@19.8.1':
+ '@conventional-changelog/git-client@3.1.0(conventional-commits-parser@7.1.0)':
dependencies:
- '@types/conventional-commits-parser': 5.0.2
- chalk: 5.6.2
+ '@simple-libs/child-process-utils': 2.0.0
+ '@simple-libs/stream-utils': 2.0.0
+ semver: 7.8.5
+ optionalDependencies:
+ conventional-commits-parser: 7.1.0
+
+ '@conventional-changelog/template@1.2.1': {}
'@csstools/normalize.css@12.1.1': {}
@@ -11377,6 +12709,24 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
+ '@discoveryjs/json-ext@1.1.0': {}
+
+ '@emnapi/core@1.11.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.2
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.11.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/wasi-threads@1.2.2':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@esbuild/aix-ppc64@0.28.1':
optional: true
@@ -11467,90 +12817,90 @@ snapshots:
'@eslint-community/regexpp@4.12.2': {}
- '@eslint-react/ast@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/ast@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/typescript-estree': 8.64.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
string-ts: 2.3.1
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/core@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/core@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/scope-manager': 8.64.0
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/eslint-plugin@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/eslint-plugin@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
- eslint-plugin-react-dom: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-react-jsx: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-react-naming-convention: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-react-rsc: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-react-web-api: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-react-x: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- typescript: 5.9.3
+ eslint-plugin-react-dom: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ eslint-plugin-react-jsx: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ eslint-plugin-react-naming-convention: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ eslint-plugin-react-rsc: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ eslint-plugin-react-web-api: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ eslint-plugin-react-x: 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/eslint@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/eslint@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/jsx@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/jsx@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/shared@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/shared@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
zod: 4.4.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/var@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@eslint-react/var@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/scope-manager': 8.64.0
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -11587,14 +12937,14 @@ snapshots:
dependencies:
'@commitlint/config-conventional': 17.8.1
- '@fingerprintjs/eslint-config-dx-team@3.0.0(@types/eslint@8.56.12)(eslint@10.7.0(jiti@2.6.1))(prettier@3.2.5)(typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3))':
+ '@fingerprintjs/eslint-config-dx-team@3.0.0(@types/eslint@8.56.12)(eslint@10.7.0(jiti@2.6.1))(prettier@3.9.5)(typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3))':
dependencies:
eslint: 10.7.0(jiti@2.6.1)
eslint-config-prettier: 9.1.2(eslint@10.7.0(jiti@2.6.1))
- eslint-plugin-prettier: 5.5.6(@types/eslint@8.56.12)(eslint-config-prettier@9.1.2(eslint@10.7.0(jiti@2.6.1)))(eslint@10.7.0(jiti@2.6.1))(prettier@3.2.5)
+ eslint-plugin-prettier: 5.5.6(@types/eslint@8.56.12)(eslint-config-prettier@9.1.2(eslint@10.7.0(jiti@2.6.1)))(eslint@10.7.0(jiti@2.6.1))(prettier@3.9.5)
globals: 15.15.0
- prettier: 3.2.5
- typescript-eslint: 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ prettier: 3.9.5
+ typescript-eslint: 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
transitivePeerDependencies:
- '@types/eslint'
@@ -11606,6 +12956,14 @@ snapshots:
'@gar/promisify@1.1.3': {}
+ '@gerrit0/mini-shiki@3.23.0':
+ dependencies:
+ '@shikijs/engine-oniguruma': 3.23.0
+ '@shikijs/langs': 3.23.0
+ '@shikijs/themes': 3.23.0
+ '@shikijs/types': 3.23.0
+ '@shikijs/vscode-textmate': 10.0.2
+
'@humanfs/core@0.19.2':
dependencies:
'@humanfs/types': 0.15.0
@@ -11622,21 +12980,12 @@ snapshots:
'@humanwhocodes/retry@0.4.3': {}
- '@inquirer/external-editor@1.0.3(@types/node@20.19.43)':
+ '@inquirer/external-editor@1.0.3(@types/node@26.1.1)':
dependencies:
chardet: 2.2.0
iconv-lite: 0.7.3
optionalDependencies:
- '@types/node': 20.19.43
-
- '@isaacs/cliui@8.0.2':
- dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.2.0
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@types/node': 26.1.1
'@istanbuljs/load-nyc-config@1.1.0':
dependencies:
@@ -11651,7 +13000,7 @@ snapshots:
'@jest/console@27.5.1':
dependencies:
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
jest-message-util: 27.5.1
jest-util: 27.5.1
@@ -11660,7 +13009,7 @@ snapshots:
'@jest/console@28.1.3':
dependencies:
'@jest/types': 28.1.3
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
jest-message-util: 28.1.3
jest-util: 28.1.3
@@ -11673,7 +13022,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
@@ -11707,14 +13056,14 @@ snapshots:
dependencies:
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
jest-mock: 27.5.1
'@jest/fake-timers@27.5.1':
dependencies:
'@jest/types': 27.5.1
'@sinonjs/fake-timers': 8.1.0
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
jest-message-util: 27.5.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -11732,7 +13081,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
collect-v8-coverage: 1.0.3
exit: 0.1.2
@@ -11812,7 +13161,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/yargs': 16.0.11
chalk: 4.1.2
@@ -11821,7 +13170,7 @@ snapshots:
'@jest/schemas': 28.1.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/yargs': 17.0.35
chalk: 4.1.2
@@ -11995,23 +13344,23 @@ snapshots:
globby: 11.1.0
read-yaml-file: 1.1.0
- '@microsoft/api-extractor-model@7.33.8(@types/node@20.19.43)':
+ '@microsoft/api-extractor-model@7.33.8(@types/node@26.1.1)':
dependencies:
'@microsoft/tsdoc': 0.16.0
'@microsoft/tsdoc-config': 0.18.1
- '@rushstack/node-core-library': 5.23.1(@types/node@20.19.43)
+ '@rushstack/node-core-library': 5.23.1(@types/node@26.1.1)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.58.9(@types/node@20.19.43)':
+ '@microsoft/api-extractor@7.58.9(@types/node@26.1.1)':
dependencies:
- '@microsoft/api-extractor-model': 7.33.8(@types/node@20.19.43)
+ '@microsoft/api-extractor-model': 7.33.8(@types/node@26.1.1)
'@microsoft/tsdoc': 0.16.0
'@microsoft/tsdoc-config': 0.18.1
- '@rushstack/node-core-library': 5.23.1(@types/node@20.19.43)
+ '@rushstack/node-core-library': 5.23.1(@types/node@26.1.1)
'@rushstack/rig-package': 0.7.3
- '@rushstack/terminal': 0.24.0(@types/node@20.19.43)
- '@rushstack/ts-command-line': 5.3.10(@types/node@20.19.43)
+ '@rushstack/terminal': 0.24.0(@types/node@26.1.1)
+ '@rushstack/ts-command-line': 5.3.10(@types/node@26.1.1)
diff: 8.0.4
minimatch: 10.2.3
resolve: 1.22.12
@@ -12030,33 +13379,40 @@ snapshots:
'@microsoft/tsdoc@0.16.0': {}
- '@next/env@14.2.32': {}
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
+ '@next/env@14.2.35': {}
- '@next/swc-darwin-arm64@14.2.32':
+ '@next/swc-darwin-arm64@14.2.33':
optional: true
- '@next/swc-darwin-x64@14.2.32':
+ '@next/swc-darwin-x64@14.2.33':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.32':
+ '@next/swc-linux-arm64-gnu@14.2.33':
optional: true
- '@next/swc-linux-arm64-musl@14.2.32':
+ '@next/swc-linux-arm64-musl@14.2.33':
optional: true
- '@next/swc-linux-x64-gnu@14.2.32':
+ '@next/swc-linux-x64-gnu@14.2.33':
optional: true
- '@next/swc-linux-x64-musl@14.2.32':
+ '@next/swc-linux-x64-musl@14.2.33':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.32':
+ '@next/swc-win32-arm64-msvc@14.2.33':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.32':
+ '@next/swc-win32-ia32-msvc@14.2.33':
optional: true
- '@next/swc-win32-x64-msvc@14.2.32':
+ '@next/swc-win32-x64-msvc@14.2.33':
optional: true
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
@@ -12087,6 +13443,8 @@ snapshots:
mkdirp: 1.0.4
rimraf: 3.0.2
+ '@oxc-project/types@0.139.0': {}
+
'@peculiar/asn1-cms@2.8.0':
dependencies:
'@peculiar/asn1-schema': 2.8.0
@@ -12181,12 +13539,9 @@ snapshots:
tslib: 2.8.1
tsyringe: 4.10.0
- '@pkgjs/parseargs@0.11.0':
- optional: true
-
'@pkgr/core@0.3.6': {}
- '@pmmmwh/react-refresh-webpack-plugin@0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.108.4(postcss@8.5.19)))(webpack@5.108.4(postcss@8.5.19))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)))(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))':
dependencies:
ansi-html: 0.0.9
core-js-pure: 3.49.0
@@ -12196,39 +13551,86 @@ snapshots:
react-refresh: 0.11.0
schema-utils: 4.3.3
source-map: 0.7.6
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
optionalDependencies:
'@types/webpack': 4.41.40
type-fest: 0.21.3
- webpack-dev-server: 4.15.2(webpack@5.108.4(postcss@8.5.19))
+ webpack-dev-server: 4.15.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
'@polka/url@1.0.0-next.29': {}
- '@preact/async-loader@3.0.2(preact@10.19.6)':
+ '@preact/async-loader@3.0.2(preact@10.29.7)':
dependencies:
kleur: 4.1.5
loader-utils: 2.0.4
- preact: 10.19.6
+ preact: 10.29.7(preact-render-to-string@6.7.0)
'@prefresh/babel-plugin@0.4.4': {}
- '@prefresh/core@1.5.10(preact@10.19.6)':
+ '@prefresh/core@1.5.10(preact@10.29.7)':
dependencies:
- preact: 10.19.6
+ preact: 10.29.7(preact-render-to-string@6.7.0)
'@prefresh/utils@1.2.1': {}
- '@prefresh/webpack@3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.19.6)(webpack@4.47.0)':
+ '@prefresh/webpack@3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.29.7)(webpack@4.47.0)':
dependencies:
'@prefresh/babel-plugin': 0.4.4
- '@prefresh/core': 1.5.10(preact@10.19.6)
+ '@prefresh/core': 1.5.10(preact@10.29.7)
'@prefresh/utils': 1.2.1
- preact: 10.19.6
+ preact: 10.29.7(preact-render-to-string@6.7.0)
webpack: 4.47.0
- '@remix-run/router@1.23.3': {}
+ '@rolldown/binding-android-arm64@1.1.5':
+ optional: true
+
+ '@rolldown/binding-darwin-arm64@1.1.5':
+ optional: true
+
+ '@rolldown/binding-darwin-x64@1.1.5':
+ optional: true
+
+ '@rolldown/binding-freebsd-x64@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-musl@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-ppc64-gnu@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.1.5':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.1.5':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.1.5':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.5':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.1.5':
+ optional: true
- '@rolldown/pluginutils@1.0.0-rc.3': {}
+ '@rolldown/pluginutils@1.0.1': {}
'@rollup/plugin-babel@5.3.1(@babel/core@7.29.7)(@types/babel__core@7.20.5)(rollup@2.80.0)':
dependencies:
@@ -12351,7 +13753,7 @@ snapshots:
'@rushstack/eslint-patch@1.16.1': {}
- '@rushstack/node-core-library@5.23.1(@types/node@20.19.43)':
+ '@rushstack/node-core-library@5.23.1(@types/node@26.1.1)':
dependencies:
ajv: 8.18.0
ajv-draft-04: 1.0.0(ajv@8.18.0)
@@ -12362,34 +13764,60 @@ snapshots:
resolve: 1.22.12
semver: 7.7.4
optionalDependencies:
- '@types/node': 20.19.43
+ '@types/node': 26.1.1
- '@rushstack/problem-matcher@0.2.1(@types/node@20.19.43)':
+ '@rushstack/problem-matcher@0.2.1(@types/node@26.1.1)':
optionalDependencies:
- '@types/node': 20.19.43
+ '@types/node': 26.1.1
'@rushstack/rig-package@0.7.3':
dependencies:
jju: 1.4.0
resolve: 1.22.12
- '@rushstack/terminal@0.24.0(@types/node@20.19.43)':
+ '@rushstack/terminal@0.24.0(@types/node@26.1.1)':
dependencies:
- '@rushstack/node-core-library': 5.23.1(@types/node@20.19.43)
- '@rushstack/problem-matcher': 0.2.1(@types/node@20.19.43)
+ '@rushstack/node-core-library': 5.23.1(@types/node@26.1.1)
+ '@rushstack/problem-matcher': 0.2.1(@types/node@26.1.1)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 20.19.43
+ '@types/node': 26.1.1
- '@rushstack/ts-command-line@5.3.10(@types/node@20.19.43)':
+ '@rushstack/ts-command-line@5.3.10(@types/node@26.1.1)':
dependencies:
- '@rushstack/terminal': 0.24.0(@types/node@20.19.43)
+ '@rushstack/terminal': 0.24.0(@types/node@26.1.1)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
transitivePeerDependencies:
- '@types/node'
+ '@shikijs/engine-oniguruma@3.23.0':
+ dependencies:
+ '@shikijs/types': 3.23.0
+ '@shikijs/vscode-textmate': 10.0.2
+
+ '@shikijs/langs@3.23.0':
+ dependencies:
+ '@shikijs/types': 3.23.0
+
+ '@shikijs/themes@3.23.0':
+ dependencies:
+ '@shikijs/types': 3.23.0
+
+ '@shikijs/types@3.23.0':
+ dependencies:
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.5
+
+ '@shikijs/vscode-textmate@10.0.2': {}
+
+ '@simple-libs/child-process-utils@2.0.0':
+ dependencies:
+ '@simple-libs/stream-utils': 2.0.0
+
+ '@simple-libs/stream-utils@2.0.0': {}
+
'@sinclair/typebox@0.24.51': {}
'@sindresorhus/is@0.14.0': {}
@@ -12511,10 +13939,10 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/preact@3.2.4(preact@10.19.6)':
+ '@testing-library/preact@3.2.4(preact@10.29.7)':
dependencies:
'@testing-library/dom': 8.20.1
- preact: 10.19.6
+ preact: 10.29.7(preact-render-to-string@6.7.0)
'@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -12532,6 +13960,11 @@ snapshots:
'@tootallnate/once@1.1.2': {}
+ '@tybys/wasm-util@0.10.3':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/argparse@1.0.38': {}
'@types/aria-query@5.0.4': {}
@@ -12560,11 +13993,11 @@ snapshots:
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/chai@5.2.3':
dependencies:
@@ -12573,16 +14006,12 @@ snapshots:
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 4.19.9
- '@types/node': 24.13.3
+ '@types/express-serve-static-core': 5.1.2
+ '@types/node': 26.1.1
'@types/connect@3.4.38':
dependencies:
- '@types/node': 24.13.3
-
- '@types/conventional-commits-parser@5.0.2':
- dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/deep-eql@4.0.2': {}
@@ -12599,7 +14028,14 @@ snapshots:
'@types/express-serve-static-core@4.19.9':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
+ '@types/qs': 6.15.1
+ '@types/range-parser': 1.2.7
+ '@types/send': 1.2.1
+
+ '@types/express-serve-static-core@5.1.2':
+ dependencies:
+ '@types/node': 26.1.1
'@types/qs': 6.15.1
'@types/range-parser': 1.2.7
'@types/send': 1.2.1
@@ -12611,9 +14047,21 @@ snapshots:
'@types/qs': 6.15.1
'@types/serve-static': 1.15.10
+ '@types/express@5.0.6':
+ dependencies:
+ '@types/body-parser': 1.19.6
+ '@types/express-serve-static-core': 5.1.2
+ '@types/serve-static': 2.2.0
+
+ '@types/gensync@1.0.5': {}
+
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
+
+ '@types/hast@3.0.5':
+ dependencies:
+ '@types/unist': 3.0.3
'@types/html-minifier-terser@6.1.0': {}
@@ -12621,7 +14069,7 @@ snapshots:
'@types/http-proxy@1.17.17':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -12633,29 +14081,27 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
+ '@types/jsesc@2.5.1': {}
+
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/mime@1.3.5': {}
'@types/node-forge@1.3.14':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/node@12.20.55': {}
- '@types/node@20.19.43':
+ '@types/node@26.1.1':
dependencies:
- undici-types: 6.21.0
-
- '@types/node@24.13.3':
- dependencies:
- undici-types: 7.18.2
+ undici-types: 8.3.0
'@types/parse-json@4.0.2': {}
@@ -12673,55 +14119,50 @@ snapshots:
dependencies:
'@types/react': 18.3.31
- '@types/react-dom@19.2.3(@types/react@19.2.17)':
- dependencies:
- '@types/react': 19.2.17
-
'@types/react@18.3.31':
dependencies:
'@types/prop-types': 15.7.15
csstype: 3.2.3
- '@types/react@19.2.17':
- dependencies:
- csstype: 3.2.3
-
'@types/resolve@1.17.1':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/retry@0.12.0': {}
- '@types/retry@0.12.2': {}
-
'@types/semver@7.7.1': {}
'@types/send@0.17.6':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/send@1.2.1':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/serve-index@1.9.4':
dependencies:
- '@types/express': 4.17.25
+ '@types/express': 5.0.6
'@types/serve-static@1.15.10':
dependencies:
'@types/http-errors': 2.0.5
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/send': 0.17.6
+ '@types/serve-static@2.2.0':
+ dependencies:
+ '@types/http-errors': 2.0.5
+ '@types/node': 26.1.1
+
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/source-list-map@0.1.6': {}
@@ -12735,15 +14176,17 @@ snapshots:
dependencies:
source-map: 0.6.1
+ '@types/unist@3.0.3': {}
+
'@types/webpack-sources@3.2.3':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/source-list-map': 0.1.6
source-map: 0.7.6
'@types/webpack@4.41.40':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/tapable': 1.0.12
'@types/uglify-js': 3.17.5
'@types/webpack-sources': 3.2.3
@@ -12752,7 +14195,7 @@ snapshots:
'@types/ws@8.18.1':
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
'@types/yargs-parser@21.0.3': {}
@@ -12764,79 +14207,79 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
- '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
debug: 4.4.3
eslint: 10.7.0(jiti@1.21.7)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare-lite: 1.4.0
semver: 7.8.5
- tsutils: 3.21.0(typescript@5.9.3)
+ tsutils: 3.21.0(typescript@6.0.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3))(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/scope-manager': 8.64.0
- '@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/visitor-keys': 8.64.0
eslint: 10.7.0(jiti@2.6.1)
ignore: 7.0.6
natural-compare: 1.4.0
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/experimental-utils@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/experimental-utils@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
eslint: 10.7.0(jiti@1.21.7)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@6.0.3)
debug: 4.4.3
eslint: 10.7.0(jiti@1.21.7)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.64.0
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/typescript-estree': 8.64.0(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
'@typescript-eslint/visitor-keys': 8.64.0
debug: 4.4.3
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.64.0(typescript@5.9.3)':
+ '@typescript-eslint/project-service@8.64.0(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
debug: 4.4.3
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -12850,31 +14293,31 @@ snapshots:
'@typescript-eslint/types': 8.64.0
'@typescript-eslint/visitor-keys': 8.64.0
- '@typescript-eslint/tsconfig-utils@8.64.0(typescript@5.9.3)':
+ '@typescript-eslint/tsconfig-utils@8.64.0(typescript@6.0.3)':
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
- '@typescript-eslint/type-utils@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
- '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@6.0.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
debug: 4.4.3
eslint: 10.7.0(jiti@1.21.7)
- tsutils: 3.21.0(typescript@5.9.3)
+ tsutils: 3.21.0(typescript@6.0.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/typescript-estree': 8.64.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
debug: 4.4.3
eslint: 10.7.0(jiti@2.6.1)
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -12882,7 +14325,7 @@ snapshots:
'@typescript-eslint/types@8.64.0': {}
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.3)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@6.0.3)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
@@ -12890,35 +14333,35 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.8.5
- tsutils: 3.21.0(typescript@5.9.3)
+ tsutils: 3.21.0(typescript@6.0.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.64.0(typescript@5.9.3)':
+ '@typescript-eslint/typescript-estree@8.64.0(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/project-service': 8.64.0(typescript@5.9.3)
- '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@5.9.3)
+ '@typescript-eslint/project-service': 8.64.0(typescript@6.0.3)
+ '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
'@typescript-eslint/visitor-keys': 8.64.0
debug: 4.4.3
minimatch: 10.2.5
semver: 7.8.5
tinyglobby: 0.2.17
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@1.21.7))
'@types/json-schema': 7.0.15
'@types/semver': 7.7.1
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@6.0.3)
eslint: 10.7.0(jiti@1.21.7)
eslint-scope: 5.1.1
semver: 7.8.5
@@ -12926,14 +14369,14 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)':
dependencies:
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.6.1))
'@typescript-eslint/scope-manager': 8.64.0
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/typescript-estree': 8.64.0(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -12947,17 +14390,10 @@ snapshots:
'@typescript-eslint/types': 8.64.0
eslint-visitor-keys: 5.0.1
- '@vitejs/plugin-react@5.2.0(vite@7.3.6(@types/node@24.13.3)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))':
+ '@vitejs/plugin-react@6.0.3(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))':
dependencies:
- '@babel/core': 7.29.7
- '@babel/plugin-transform-react-jsx-self': 7.29.7(@babel/core@7.29.7)
- '@babel/plugin-transform-react-jsx-source': 7.29.7(@babel/core@7.29.7)
- '@rolldown/pluginutils': 1.0.0-rc.3
- '@types/babel__core': 7.20.5
- react-refresh: 0.18.0
- vite: 7.3.6(@types/node@24.13.3)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
- transitivePeerDependencies:
- - supports-color
+ '@rolldown/pluginutils': 1.0.1
+ vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
'@vitest/coverage-istanbul@4.1.10(vitest@4.1.10)':
dependencies:
@@ -12971,7 +14407,7 @@ snapshots:
magicast: 0.5.3
obug: 2.1.3
tinyrainbow: 3.1.0
- vitest: 4.1.10(@types/node@20.19.43)(@vitest/coverage-istanbul@4.1.10)(jsdom@16.7.0)(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
+ vitest: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(jsdom@16.7.0)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
transitivePeerDependencies:
- supports-color
@@ -12984,13 +14420,13 @@ snapshots:
chai: 6.2.2
tinyrainbow: 3.1.0
- '@vitest/mocker@4.1.10(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))':
+ '@vitest/mocker@4.1.10(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))':
dependencies:
'@vitest/spy': 4.1.10
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
+ vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
'@vitest/pretty-format@4.1.10':
dependencies:
@@ -13028,39 +14464,6 @@ snapshots:
path-browserify: 1.0.1
vscode-uri: 3.1.0
- '@vue/compiler-core@3.5.39':
- dependencies:
- '@babel/parser': 7.29.7
- '@vue/shared': 3.5.39
- entities: 7.0.1
- estree-walker: 2.0.2
- source-map-js: 1.2.1
-
- '@vue/compiler-dom@3.5.39':
- dependencies:
- '@vue/compiler-core': 3.5.39
- '@vue/shared': 3.5.39
-
- '@vue/compiler-vue2@2.7.16':
- dependencies:
- de-indent: 1.0.2
- he: 1.2.0
-
- '@vue/language-core@2.2.0(typescript@5.9.3)':
- dependencies:
- '@volar/language-core': 2.4.28
- '@vue/compiler-dom': 3.5.39
- '@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.39
- alien-signals: 0.4.14
- minimatch: 9.0.9
- muggle-string: 0.4.1
- path-browserify: 1.0.1
- optionalDependencies:
- typescript: 5.9.3
-
- '@vue/shared@3.5.39': {}
-
'@webassemblyjs/ast@1.14.1':
dependencies:
'@webassemblyjs/helper-numbers': 1.13.2
@@ -13228,32 +14631,10 @@ snapshots:
'@webassemblyjs/wast-parser': 1.9.0
'@xtuc/long': 4.2.2
- '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.108.4)':
- dependencies:
- webpack: 5.108.4(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4)
-
- '@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.108.4)':
- dependencies:
- webpack: 5.108.4(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4)
-
- '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack-dev-server@5.2.6)(webpack@5.108.4)':
- dependencies:
- webpack: 5.108.4(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4)
- optionalDependencies:
- webpack-dev-server: 5.2.6(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4)
-
'@xtuc/ieee754@1.2.0': {}
'@xtuc/long@4.2.2': {}
- JSONStream@1.3.5:
- dependencies:
- jsonparse: 1.3.1
- through: 2.3.8
-
abab@2.0.6: {}
accepts@1.3.8:
@@ -13261,6 +14642,11 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
+ accepts@2.0.0:
+ dependencies:
+ mime-types: 3.0.2
+ negotiator: 1.0.0
+
acorn-globals@4.3.4:
dependencies:
acorn: 6.4.2
@@ -13357,8 +14743,6 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- alien-signals@0.4.14: {}
-
alphanum-sort@1.0.2: {}
ansi-align@3.0.1:
@@ -13387,8 +14771,6 @@ snapshots:
ansi-regex@6.2.2: {}
- ansi-sequence-parser@1.1.3: {}
-
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -13426,6 +14808,8 @@ snapshots:
argparse@2.0.1: {}
+ argue-cli@3.1.0: {}
+
aria-query@5.1.3:
dependencies:
deep-equal: 2.2.3
@@ -13623,6 +15007,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-loader@10.1.1(@babel/core@8.0.1)(webpack@5.108.4):
+ dependencies:
+ '@babel/core': 8.0.1
+ find-up: 5.0.0
+ optionalDependencies:
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
+
babel-loader@8.4.1(@babel/core@7.29.7)(webpack@4.47.0):
dependencies:
'@babel/core': 7.29.7
@@ -13632,21 +15023,14 @@ snapshots:
schema-utils: 2.7.1
webpack: 4.47.0
- babel-loader@8.4.1(@babel/core@7.29.7)(webpack@5.108.4(postcss@8.5.19)):
+ babel-loader@8.4.1(@babel/core@7.29.7)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@babel/core': 7.29.7
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.108.4(postcss@8.5.19)
-
- babel-loader@9.2.1(@babel/core@7.29.7)(webpack@5.108.4):
- dependencies:
- '@babel/core': 7.29.7
- find-cache-dir: 4.0.0
- schema-utils: 4.3.3
- webpack: 5.108.4(webpack-cli@5.1.4)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
babel-plugin-istanbul@6.1.1:
dependencies:
@@ -13700,6 +15084,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@1.0.0(@babel/core@8.0.1):
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-define-polyfill-provider': 1.0.0(@babel/core@8.0.1)
+ core-js-compat: 3.49.0
+
babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.7):
dependencies:
'@babel/core': 7.29.7
@@ -13837,6 +15227,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ body-parser@2.3.0:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 2.0.0
+ debug: 4.4.3
+ http-errors: 2.0.1
+ iconv-lite: 0.7.3
+ on-finished: 2.4.1
+ qs: 6.15.3
+ raw-body: 3.0.2
+ type-is: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+
bonjour-service@1.4.3:
dependencies:
fast-deep-equal: 3.1.3
@@ -14127,8 +15531,6 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.6.2: {}
-
char-regex@1.0.2: {}
char-regex@2.0.2: {}
@@ -14168,6 +15570,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@5.0.0:
+ dependencies:
+ readdirp: 5.0.0
+
chownr@1.1.4: {}
chownr@2.0.0: {}
@@ -14217,10 +15623,10 @@ snapshots:
cli-spinners@2.9.2: {}
- cli-truncate@4.0.0:
+ cli-truncate@5.2.0:
dependencies:
- slice-ansi: 5.0.0
- string-width: 7.2.0
+ slice-ansi: 8.0.0
+ string-width: 8.2.2
client-only@0.0.1: {}
@@ -14230,11 +15636,11 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- cliui@8.0.1:
+ cliui@9.0.1:
dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
+ string-width: 7.2.0
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
clone-deep@4.0.1:
dependencies:
@@ -14293,9 +15699,7 @@ snapshots:
dependencies:
delayed-stream: 1.0.0
- commander@10.0.1: {}
-
- commander@13.1.0: {}
+ commander@14.0.3: {}
commander@2.17.1: {}
@@ -14309,8 +15713,6 @@ snapshots:
commander@8.3.0: {}
- common-path-prefix@3.0.0: {}
-
common-tags@1.8.2: {}
commondir@1.0.1: {}
@@ -14387,22 +15789,28 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
+ content-disposition@1.1.0: {}
+
content-type@1.0.5: {}
- conventional-changelog-angular@7.0.0:
+ content-type@2.0.0: {}
+
+ conventional-changelog-angular@9.2.1:
dependencies:
- compare-func: 2.0.0
+ '@conventional-changelog/template': 1.2.1
+
+ conventional-changelog-conventionalcommits@10.2.1:
+ dependencies:
+ '@conventional-changelog/template': 1.2.1
conventional-changelog-conventionalcommits@6.1.0:
dependencies:
compare-func: 2.0.0
- conventional-commits-parser@5.0.0:
+ conventional-commits-parser@7.1.0:
dependencies:
- JSONStream: 1.3.5
- is-text-path: 2.0.0
- meow: 12.1.1
- split2: 4.2.0
+ '@simple-libs/stream-utils': 2.0.0
+ argue-cli: 3.1.0
convert-source-map@1.9.0: {}
@@ -14410,8 +15818,12 @@ snapshots:
cookie-signature@1.0.7: {}
+ cookie-signature@1.2.2: {}
+
cookie@0.7.2: {}
+ cookie@1.1.1: {}
+
copy-concurrently@1.0.5:
dependencies:
aproba: 1.2.0
@@ -14452,12 +15864,12 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@6.3.0(@types/node@20.19.43)(cosmiconfig@9.0.2(typescript@5.9.3))(typescript@5.9.3):
+ cosmiconfig-typescript-loader@6.3.0(@types/node@26.1.1)(cosmiconfig@9.0.2(typescript@6.0.3))(typescript@6.0.3):
dependencies:
- '@types/node': 20.19.43
- cosmiconfig: 9.0.2(typescript@5.9.3)
+ '@types/node': 26.1.1
+ cosmiconfig: 9.0.2(typescript@6.0.3)
jiti: 2.6.1
- typescript: 5.9.3
+ typescript: 6.0.3
cosmiconfig@5.2.1:
dependencies:
@@ -14482,14 +15894,14 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.3
- cosmiconfig@9.0.2(typescript@5.9.3):
+ cosmiconfig@9.0.2(typescript@6.0.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.3.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
create-ecdh@4.0.4:
dependencies:
@@ -14598,7 +16010,7 @@ snapshots:
semver: 7.8.5
webpack: 4.47.0
- css-loader@6.11.0(webpack@5.108.4(postcss@8.5.19)):
+ css-loader@6.11.0(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
icss-utils: 5.1.0(postcss@8.5.19)
postcss: 8.5.19
@@ -14609,9 +16021,9 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.8.5
optionalDependencies:
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
- css-minimizer-webpack-plugin@3.4.1(esbuild@0.28.1)(webpack@5.108.4(postcss@8.5.19)):
+ css-minimizer-webpack-plugin@3.4.1(esbuild@0.28.1)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
cssnano: 5.1.15(postcss@8.5.19)
jest-worker: 27.5.1
@@ -14619,7 +16031,7 @@ snapshots:
schema-utils: 4.3.3
serialize-javascript: 6.0.2
source-map: 0.6.1
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
optionalDependencies:
esbuild: 0.28.1
@@ -14785,8 +16197,6 @@ snapshots:
damerau-levenshtein@1.0.8: {}
- dargs@8.1.0: {}
-
dashdash@1.14.1:
dependencies:
assert-plus: 1.0.0
@@ -14821,8 +16231,6 @@ snapshots:
es-errors: 1.3.0
is-data-view: 1.0.2
- de-indent@1.0.2: {}
-
debounce@1.2.1: {}
debug@2.6.9:
@@ -14941,6 +16349,8 @@ snapshots:
detect-indent@6.1.0: {}
+ detect-libc@2.1.2: {}
+
detect-newline@3.1.0: {}
detect-node@2.1.0: {}
@@ -15033,22 +16443,24 @@ snapshots:
dependencies:
is-obj: 2.0.0
- dotenv-defaults@2.0.2:
+ dotenv-defaults@5.0.2:
dependencies:
- dotenv: 8.6.0
+ dotenv: 14.3.2
dotenv-expand@5.1.0: {}
- dotenv-webpack@8.1.1(webpack@5.108.4):
+ dotenv-webpack@9.0.0(webpack@5.108.4):
dependencies:
- dotenv-defaults: 2.0.2
- webpack: 5.108.4(webpack-cli@5.1.4)
+ dotenv-defaults: 5.0.2
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
dotenv@10.0.0: {}
+ dotenv@14.3.2: {}
+
dotenv@16.6.1: {}
- dotenv@8.6.0: {}
+ dotenv@17.4.2: {}
dunder-proto@1.0.1:
dependencies:
@@ -15067,8 +16479,6 @@ snapshots:
readable-stream: 2.3.8
stream-shift: 1.0.3
- eastasianwidth@0.2.0: {}
-
ecc-jsbn@0.1.2:
dependencies:
jsbn: 0.1.1
@@ -15111,6 +16521,8 @@ snapshots:
emojis-list@3.0.0: {}
+ empathic@2.0.1: {}
+
encodeurl@2.0.0: {}
end-of-stream@1.4.5:
@@ -15135,7 +16547,7 @@ snapshots:
entities@2.2.0: {}
- entities@7.0.1: {}
+ entities@4.5.0: {}
env-paths@2.2.1: {}
@@ -15282,6 +16694,8 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
+ es-toolkit@1.49.0: {}
+
esbuild@0.28.1:
optionalDependencies:
'@esbuild/aix-ppc64': 0.28.1
@@ -15310,6 +16724,7 @@ snapshots:
'@esbuild/win32-arm64': 0.28.1
'@esbuild/win32-ia32': 0.28.1
'@esbuild/win32-x64': 0.28.1
+ optional: true
escalade@3.2.0: {}
@@ -15344,25 +16759,25 @@ snapshots:
dependencies:
eslint: 10.7.0(jiti@2.6.1)
- eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@5.9.3):
+ eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@6.0.3):
dependencies:
'@babel/core': 7.29.7
'@babel/eslint-parser': 7.29.7(@babel/core@7.29.7)(eslint@10.7.0(jiti@1.21.7))
'@rushstack/eslint-patch': 1.16.1
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
- '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
babel-preset-react-app: 10.1.0
confusing-browser-globals: 1.0.11
eslint: 10.7.0(jiti@1.21.7)
eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(eslint@10.7.0(jiti@1.21.7))
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@5.9.3)
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@6.0.3)
eslint-plugin-jsx-a11y: 6.10.2(eslint@10.7.0(jiti@1.21.7))
eslint-plugin-react: 7.37.5(eslint@10.7.0(jiti@1.21.7))
eslint-plugin-react-hooks: 4.6.2(eslint@10.7.0(jiti@1.21.7))
- eslint-plugin-testing-library: 5.11.1(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ eslint-plugin-testing-library: 5.11.1(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -15379,11 +16794,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.14.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@1.21.7)):
+ eslint-module-utils@2.14.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@1.21.7)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
eslint: 10.7.0(jiti@1.21.7)
eslint-import-resolver-node: 0.3.10
transitivePeerDependencies:
@@ -15397,7 +16812,7 @@ snapshots:
lodash: 4.18.1
string-natural-compare: 3.0.1
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -15408,7 +16823,7 @@ snapshots:
doctrine: 2.1.0
eslint: 10.7.0(jiti@1.21.7)
eslint-import-resolver-node: 0.3.10
- eslint-module-utils: 2.14.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@1.21.7))
+ eslint-module-utils: 2.14.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@1.21.7))
hasown: 2.0.4
is-core-module: 2.16.2
is-glob: 4.0.3
@@ -15420,18 +16835,18 @@ snapshots:
string.prototype.trimend: 1.0.10
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@5.9.3):
+ eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@6.0.3):
dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
eslint: 10.7.0(jiti@1.21.7)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3))(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3))(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
jest: 27.5.1
transitivePeerDependencies:
- supports-color
@@ -15456,27 +16871,27 @@ snapshots:
safe-regex-test: 1.1.0
string.prototype.includes: 2.0.1
- eslint-plugin-prettier@5.5.6(@types/eslint@8.56.12)(eslint-config-prettier@9.1.2(eslint@10.7.0(jiti@2.6.1)))(eslint@10.7.0(jiti@2.6.1))(prettier@3.2.5):
+ eslint-plugin-prettier@5.5.6(@types/eslint@8.56.12)(eslint-config-prettier@9.1.2(eslint@10.7.0(jiti@2.6.1)))(eslint@10.7.0(jiti@2.6.1))(prettier@3.9.5):
dependencies:
eslint: 10.7.0(jiti@2.6.1)
- prettier: 3.2.5
+ prettier: 3.9.5
prettier-linter-helpers: 1.0.1
synckit: 0.11.13
optionalDependencies:
'@types/eslint': 8.56.12
eslint-config-prettier: 9.1.2(eslint@10.7.0(jiti@2.6.1))
- eslint-plugin-react-dom@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-react-dom@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
compare-versions: 6.1.1
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -15495,83 +16910,83 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-jsx@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-react-jsx@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-naming-convention@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-react-naming-convention@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-rsc@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-react-rsc@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-web-api@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-react-web-api@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
birecord: 0.1.2
eslint: 10.7.0(jiti@2.6.1)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-x@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-react-x@5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/ast': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/core': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/eslint': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/jsx': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/shared': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@eslint-react/var': 5.14.10(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/scope-manager': 8.64.0
- '@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
'@typescript-eslint/types': 8.64.0
- '@typescript-eslint/typescript-estree': 8.64.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
compare-versions: 6.1.1
eslint: 10.7.0(jiti@2.6.1)
string-ts: 2.3.1
- ts-api-utils: 2.5.0(typescript@5.9.3)
+ ts-api-utils: 2.5.0(typescript@6.0.3)
ts-pattern: 5.9.0
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -15597,9 +17012,9 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-testing-library@5.11.1(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3):
+ eslint-plugin-testing-library@5.11.1(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)
eslint: 10.7.0(jiti@1.21.7)
transitivePeerDependencies:
- supports-color
@@ -15628,7 +17043,7 @@ snapshots:
eslint-visitor-keys@5.0.1: {}
- eslint-webpack-plugin@3.2.0(eslint@10.7.0(jiti@1.21.7))(webpack@5.108.4(postcss@8.5.19)):
+ eslint-webpack-plugin@3.2.0(eslint@10.7.0(jiti@1.21.7))(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@types/eslint': 8.56.12
eslint: 10.7.0(jiti@1.21.7)
@@ -15636,7 +17051,7 @@ snapshots:
micromatch: 4.0.8
normalize-path: 3.0.0
schema-utils: 4.3.3
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
eslint@10.7.0(jiti@1.21.7):
dependencies:
@@ -15771,18 +17186,6 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
exit@0.1.2: {}
expand-brackets@2.1.4:
@@ -15842,6 +17245,39 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ express@5.2.1:
+ dependencies:
+ accepts: 2.0.0
+ body-parser: 2.3.0
+ content-disposition: 1.1.0
+ content-type: 1.0.5
+ cookie: 0.7.2
+ cookie-signature: 1.2.2
+ debug: 4.4.3
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.2
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.15.3
+ range-parser: 1.3.0
+ router: 2.2.0
+ send: 1.2.1
+ serve-static: 2.2.1
+ statuses: 2.0.2
+ type-is: 2.1.0
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
exsolve@1.1.0: {}
extend-shallow@2.0.1:
@@ -15872,6 +17308,8 @@ snapshots:
extsprintf@1.3.0: {}
+ extsprintf@1.4.1: {}
+
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
@@ -15890,8 +17328,6 @@ snapshots:
fast-uri@3.1.3: {}
- fastest-levenshtein@1.0.16: {}
-
fastq@1.20.1:
dependencies:
reusify: 1.1.0
@@ -15920,11 +17356,11 @@ snapshots:
schema-utils: 3.3.0
webpack: 4.47.0
- file-loader@6.2.0(webpack@5.108.4(postcss@8.5.19)):
+ file-loader@6.2.0(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
file-uri-to-path@1.0.0:
optional: true
@@ -15958,6 +17394,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ finalhandler@2.1.1:
+ dependencies:
+ debug: 4.4.3
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
find-cache-dir@2.1.0:
dependencies:
commondir: 1.0.1
@@ -15970,11 +17417,6 @@ snapshots:
make-dir: 3.1.0
pkg-dir: 4.2.0
- find-cache-dir@4.0.0:
- dependencies:
- common-path-prefix: 3.0.0
- pkg-dir: 7.0.0
-
find-up@3.0.0:
dependencies:
locate-path: 3.0.0
@@ -15989,17 +17431,6 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- find-up@6.3.0:
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
-
- find-up@7.0.0:
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
- unicorn-magic: 0.1.0
-
flat-cache@4.0.1:
dependencies:
flatted: 3.4.2
@@ -16022,14 +17453,9 @@ snapshots:
for-in@1.0.2: {}
- foreground-child@3.3.1:
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
-
forever-agent@0.6.1: {}
- fork-ts-checker-webpack-plugin@6.5.3(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)(webpack@5.108.4(postcss@8.5.19)):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@babel/code-frame': 7.29.7
'@types/json-schema': 7.0.15
@@ -16044,12 +17470,12 @@ snapshots:
schema-utils: 2.7.0
semver: 7.8.5
tapable: 1.1.3
- typescript: 5.9.3
- webpack: 5.108.4(postcss@8.5.19)
+ typescript: 6.0.3
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
optionalDependencies:
eslint: 10.7.0(jiti@1.21.7)
- fork-ts-checker-webpack-plugin@6.5.3(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)(webpack@4.47.0):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)(webpack@4.47.0):
dependencies:
'@babel/code-frame': 7.29.7
'@types/json-schema': 7.0.15
@@ -16064,7 +17490,7 @@ snapshots:
schema-utils: 2.7.0
semver: 7.8.5
tapable: 1.1.3
- typescript: 5.9.3
+ typescript: 6.0.3
webpack: 4.47.0
optionalDependencies:
eslint: 10.7.0(jiti@2.6.1)
@@ -16093,6 +17519,8 @@ snapshots:
fresh@0.5.2: {}
+ fresh@2.0.0: {}
+
from2@2.3.0:
dependencies:
inherits: 2.0.4
@@ -16198,8 +17626,6 @@ snapshots:
get-package-type@0.1.0: {}
- get-port@3.2.0: {}
-
get-port@5.1.1: {}
get-proto@1.0.1:
@@ -16217,8 +17643,6 @@ snapshots:
get-stream@6.0.1: {}
- get-stream@8.0.1: {}
-
get-symbol-description@1.1.0:
dependencies:
call-bound: 1.0.4
@@ -16231,12 +17655,6 @@ snapshots:
dependencies:
assert-plus: 1.0.0
- git-raw-commits@4.0.0:
- dependencies:
- dargs: 8.1.0
- meow: 12.1.1
- split2: 4.2.0
-
gittar@0.1.1:
dependencies:
mkdirp: 0.5.6
@@ -16260,14 +17678,11 @@ snapshots:
dependencies:
tslib: 2.8.1
- glob@10.5.0:
+ glob@13.0.6:
dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.9
+ minimatch: 10.2.5
minipass: 7.1.3
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
+ path-scurry: 2.0.2
glob@7.2.3:
dependencies:
@@ -16286,9 +17701,9 @@ snapshots:
minimatch: 5.1.9
once: 1.4.0
- global-directory@4.0.1:
+ global-directory@5.0.0:
dependencies:
- ini: 4.1.1
+ ini: 6.0.0
global-dirs@3.0.1:
dependencies:
@@ -16495,7 +17910,7 @@ snapshots:
util.promisify: 1.0.0
webpack: 4.47.0
- html-webpack-plugin@5.6.7(webpack@5.108.4(postcss@8.5.19)):
+ html-webpack-plugin@5.6.7(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -16503,7 +17918,7 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.3.3
optionalDependencies:
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
html-webpack-plugin@5.6.7(webpack@5.108.4):
dependencies:
@@ -16513,7 +17928,7 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.3.3
optionalDependencies:
- webpack: 5.108.4(webpack-cli@5.1.4)
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
htmlparser2@6.1.0:
dependencies:
@@ -16564,6 +17979,16 @@ snapshots:
transitivePeerDependencies:
- debug
+ http-proxy-middleware@4.2.0:
+ dependencies:
+ debug: 4.4.3
+ httpxy: 0.5.5
+ is-glob: 4.0.3
+ is-plain-obj: 4.1.0
+ micromatch: 4.0.8
+ transitivePeerDependencies:
+ - supports-color
+
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
@@ -16587,12 +18012,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ httpxy@0.5.5: {}
+
human-id@4.2.0: {}
human-signals@2.1.0: {}
- human-signals@5.0.0: {}
-
husky@9.1.7: {}
hyperdyperid@1.2.0: {}
@@ -16671,7 +18096,7 @@ snapshots:
ini@2.0.0: {}
- ini@4.1.1: {}
+ ini@6.0.0: {}
internal-slot@1.1.0:
dependencies:
@@ -16804,8 +18229,6 @@ snapshots:
is-fullwidth-code-point@3.0.0: {}
- is-fullwidth-code-point@4.0.0: {}
-
is-fullwidth-code-point@5.1.0:
dependencies:
get-east-asian-width: 1.6.0
@@ -16829,6 +18252,8 @@ snapshots:
dependencies:
is-extglob: 2.1.1
+ is-in-ssh@1.0.0: {}
+
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
@@ -16869,12 +18294,16 @@ snapshots:
is-plain-obj@3.0.0: {}
+ is-plain-obj@4.1.0: {}
+
is-plain-object@2.0.4:
dependencies:
isobject: 3.0.1
is-potential-custom-element-name@1.0.1: {}
+ is-promise@4.0.0: {}
+
is-regex@1.2.1:
dependencies:
call-bound: 1.0.4
@@ -16896,8 +18325,6 @@ snapshots:
is-stream@2.0.1: {}
- is-stream@3.0.0: {}
-
is-string@1.1.1:
dependencies:
call-bound: 1.0.4
@@ -16913,10 +18340,6 @@ snapshots:
has-symbols: 1.1.0
safe-regex-test: 1.1.0
- is-text-path@2.0.0:
- dependencies:
- text-extensions: 2.4.0
-
is-typed-array@1.1.15:
dependencies:
which-typed-array: 1.1.22
@@ -17011,12 +18434,6 @@ snapshots:
has-symbols: 1.1.0
set-function-name: 2.0.2
- jackspeak@3.4.3:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jake@10.9.4:
dependencies:
async: 3.2.6
@@ -17034,7 +18451,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -17130,7 +18547,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
jest-mock: 27.5.1
jest-util: 27.5.1
jsdom: 16.7.0
@@ -17145,7 +18562,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -17155,7 +18572,7 @@ snapshots:
dependencies:
'@jest/types': 27.5.1
'@types/graceful-fs': 4.1.9
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -17174,7 +18591,7 @@ snapshots:
'@jest/source-map': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
co: 4.6.0
expect: 27.5.1
@@ -17229,7 +18646,7 @@ snapshots:
jest-mock@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
optionalDependencies:
@@ -17267,7 +18684,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
emittery: 0.8.1
graceful-fs: 4.2.11
@@ -17318,7 +18735,7 @@ snapshots:
jest-serializer@27.5.1:
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
graceful-fs: 4.2.11
jest-snapshot@27.5.1:
@@ -17351,7 +18768,7 @@ snapshots:
jest-util@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17360,7 +18777,7 @@ snapshots:
jest-util@28.1.3:
dependencies:
'@jest/types': 28.1.3
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17390,7 +18807,7 @@ snapshots:
dependencies:
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 27.5.1
@@ -17400,7 +18817,7 @@ snapshots:
dependencies:
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.10.2
@@ -17409,19 +18826,19 @@ snapshots:
jest-worker@26.6.2:
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
merge-stream: 2.0.0
supports-color: 7.2.0
jest-worker@27.5.1:
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@28.1.3:
dependencies:
- '@types/node': 24.13.3
+ '@types/node': 26.1.1
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -17443,6 +18860,8 @@ snapshots:
jju@1.4.0: {}
+ js-tokens@10.0.0: {}
+
js-tokens@4.0.0: {}
js-yaml@3.15.0:
@@ -17549,8 +18968,6 @@ snapshots:
json5@2.2.3: {}
- jsonc-parser@3.3.1: {}
-
jsonfile@4.0.0:
optionalDependencies:
graceful-fs: 4.2.11
@@ -17561,8 +18978,6 @@ snapshots:
optionalDependencies:
graceful-fs: 4.2.11
- jsonparse@1.3.1: {}
-
jsonpath@1.3.0:
dependencies:
esprima: 1.2.5
@@ -17643,35 +19058,81 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ lightningcss-android-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-x64@1.32.0:
+ optional: true
+
+ lightningcss-freebsd-x64@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.32.0:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ optional: true
+
+ lightningcss@1.32.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.32.0
+ lightningcss-darwin-arm64: 1.32.0
+ lightningcss-darwin-x64: 1.32.0
+ lightningcss-freebsd-x64: 1.32.0
+ lightningcss-linux-arm-gnueabihf: 1.32.0
+ lightningcss-linux-arm64-gnu: 1.32.0
+ lightningcss-linux-arm64-musl: 1.32.0
+ lightningcss-linux-x64-gnu: 1.32.0
+ lightningcss-linux-x64-musl: 1.32.0
+ lightningcss-win32-arm64-msvc: 1.32.0
+ lightningcss-win32-x64-msvc: 1.32.0
+
lilconfig@2.1.0: {}
lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
- lint-staged@15.5.2:
+ linkify-it@5.0.2:
dependencies:
- chalk: 5.6.2
- commander: 13.1.0
- debug: 4.4.3
- execa: 8.0.1
- lilconfig: 3.1.3
- listr2: 8.3.3
- micromatch: 4.0.8
- pidtree: 0.6.1
+ uc.micro: 2.1.0
+
+ lint-staged@17.0.8:
+ dependencies:
+ listr2: 10.2.2
+ picomatch: 4.0.5
string-argv: 0.3.2
+ tinyexec: 1.2.4
+ optionalDependencies:
yaml: 2.9.0
- transitivePeerDependencies:
- - supports-color
- listr2@8.3.3:
+ listr2@10.2.2:
dependencies:
- cli-truncate: 4.0.0
- colorette: 2.0.20
+ cli-truncate: 5.2.0
eventemitter3: 5.0.4
log-update: 6.1.0
rfdc: 1.4.1
- wrap-ansi: 9.0.2
+ wrap-ansi: 10.0.0
loader-runner@2.4.0: {}
@@ -17719,34 +19180,16 @@ snapshots:
dependencies:
p-locate: 5.0.0
- locate-path@7.2.0:
- dependencies:
- p-locate: 6.0.0
-
- lodash.camelcase@4.3.0: {}
-
lodash.debounce@4.0.8: {}
- lodash.isplainobject@4.0.6: {}
-
- lodash.kebabcase@4.1.1: {}
-
lodash.memoize@4.1.2: {}
- lodash.merge@4.6.2: {}
-
- lodash.mergewith@4.6.2: {}
-
- lodash.snakecase@4.1.1: {}
-
lodash.sortby@4.7.0: {}
lodash.startcase@4.4.0: {}
lodash.uniq@4.5.0: {}
- lodash.upperfirst@4.3.1: {}
-
lodash@4.18.1: {}
log-symbols@4.1.0:
@@ -17776,7 +19219,7 @@ snapshots:
lowercase-keys@2.0.0: {}
- lru-cache@10.4.3: {}
+ lru-cache@11.5.2: {}
lru-cache@4.1.5:
dependencies:
@@ -17832,13 +19275,20 @@ snapshots:
dependencies:
object-visit: 1.0.1
- marked@4.3.0: {}
+ markdown-it@14.3.0:
+ dependencies:
+ argparse: 2.0.1
+ entities: 4.5.0
+ linkify-it: 5.0.2
+ mdurl: 2.0.0
+ punycode.js: 2.3.1
+ uc.micro: 2.1.0
math-intrinsics@1.1.0: {}
md5.js@1.3.5:
dependencies:
- hash-base: 3.0.5
+ hash-base: 3.1.2
inherits: 2.0.4
safe-buffer: 5.2.1
@@ -17846,8 +19296,12 @@ snapshots:
mdn-data@2.0.4: {}
+ mdurl@2.0.0: {}
+
media-typer@0.3.0: {}
+ media-typer@1.1.0: {}
+
memfs@3.5.3:
dependencies:
fs-monkey: 1.1.0
@@ -17879,10 +19333,10 @@ snapshots:
errno: 0.1.8
readable-stream: 2.3.8
- meow@12.1.1: {}
-
merge-descriptors@1.0.3: {}
+ merge-descriptors@2.0.0: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -17933,8 +19387,6 @@ snapshots:
mimic-fn@2.1.0: {}
- mimic-fn@4.0.0: {}
-
mimic-function@5.0.1: {}
mimic-response@1.0.1: {}
@@ -17946,11 +19398,11 @@ snapshots:
webpack: 4.47.0
webpack-sources: 1.4.3
- mini-css-extract-plugin@2.10.2(webpack@5.108.4(postcss@8.5.19)):
+ mini-css-extract-plugin@2.10.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
schema-utils: 4.3.3
tapable: 2.3.3
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
minimalistic-assert@1.0.1: {}
@@ -17966,35 +19418,45 @@ snapshots:
minimatch@3.1.5:
dependencies:
- brace-expansion: 1.1.16
-
- minimatch@5.1.9:
- dependencies:
- brace-expansion: 2.1.2
+ brace-expansion: 1.1.16
- minimatch@9.0.9:
+ minimatch@5.1.9:
dependencies:
brace-expansion: 2.1.2
minimist@1.2.8: {}
- minimizer-webpack-plugin@5.6.1(postcss@8.5.19)(webpack@5.108.4(postcss@8.5.19)):
+ minimizer-webpack-plugin@5.6.1(esbuild@0.28.1)(postcss@8.5.19)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
terser: 5.49.0
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
optionalDependencies:
+ esbuild: 0.28.1
postcss: 8.5.19
- minimizer-webpack-plugin@5.6.1(webpack@5.108.4):
+ minimizer-webpack-plugin@5.6.1(esbuild@0.28.1)(webpack@5.108.4(esbuild@0.28.1)):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ jest-worker: 27.5.1
+ schema-utils: 4.3.3
+ terser: 5.49.0
+ webpack: 5.108.4(esbuild@0.28.1)
+ optionalDependencies:
+ esbuild: 0.28.1
+ optional: true
+
+ minimizer-webpack-plugin@5.6.1(esbuild@0.28.1)(webpack@5.108.4):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
terser: 5.49.0
- webpack: 5.108.4(webpack-cli@5.1.4)
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
+ optionalDependencies:
+ esbuild: 0.28.1
minipass-collect@1.0.2:
dependencies:
@@ -18078,8 +19540,6 @@ snapshots:
ms@2.1.3: {}
- muggle-string@0.4.1: {}
-
multicast-dns@7.2.5:
dependencies:
dns-packet: 5.6.1
@@ -18124,11 +19584,13 @@ snapshots:
negotiator@0.6.4: {}
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
- next@14.2.32(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.35(@babel/core@7.29.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.32
+ '@next/env': 14.2.35
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001805
@@ -18136,17 +19598,17 @@ snapshots:
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.29.7)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.32
- '@next/swc-darwin-x64': 14.2.32
- '@next/swc-linux-arm64-gnu': 14.2.32
- '@next/swc-linux-arm64-musl': 14.2.32
- '@next/swc-linux-x64-gnu': 14.2.32
- '@next/swc-linux-x64-musl': 14.2.32
- '@next/swc-win32-arm64-msvc': 14.2.32
- '@next/swc-win32-ia32-msvc': 14.2.32
- '@next/swc-win32-x64-msvc': 14.2.32
+ '@next/swc-darwin-arm64': 14.2.33
+ '@next/swc-darwin-x64': 14.2.33
+ '@next/swc-linux-arm64-gnu': 14.2.33
+ '@next/swc-linux-arm64-musl': 14.2.33
+ '@next/swc-linux-x64-gnu': 14.2.33
+ '@next/swc-linux-x64-musl': 14.2.33
+ '@next/swc-win32-arm64-msvc': 14.2.33
+ '@next/swc-win32-ia32-msvc': 14.2.33
+ '@next/swc-win32-x64-msvc': 14.2.33
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -18220,10 +19682,6 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.3.0:
- dependencies:
- path-key: 4.0.0
-
nth-check@1.0.2:
dependencies:
boolbase: 1.0.0
@@ -18327,20 +19785,18 @@ snapshots:
dependencies:
mimic-fn: 2.1.0
- onetime@6.0.0:
- dependencies:
- mimic-fn: 4.0.0
-
onetime@7.0.0:
dependencies:
mimic-function: 5.0.1
- open@10.2.0:
+ open@11.0.0:
dependencies:
default-browser: 5.5.0
define-lazy-prop: 3.0.0
+ is-in-ssh: 1.0.0
is-inside-container: 1.0.0
- wsl-utils: 0.1.0
+ powershell-utils: 0.1.0
+ wsl-utils: 0.3.1
open@8.4.2:
dependencies:
@@ -18411,10 +19867,6 @@ snapshots:
dependencies:
yocto-queue: 0.1.0
- p-limit@4.0.0:
- dependencies:
- yocto-queue: 1.2.2
-
p-locate@3.0.0:
dependencies:
p-limit: 2.3.0
@@ -18427,10 +19879,6 @@ snapshots:
dependencies:
p-limit: 3.1.0
- p-locate@6.0.0:
- dependencies:
- p-limit: 4.0.0
-
p-map@2.1.0: {}
p-map@4.0.0:
@@ -18442,11 +19890,9 @@ snapshots:
'@types/retry': 0.12.0
retry: 0.13.1
- p-retry@6.2.1:
+ p-retry@8.0.0:
dependencies:
- '@types/retry': 0.12.2
is-network-error: 1.3.2
- retry: 0.13.1
p-try@2.2.0: {}
@@ -18530,23 +19976,21 @@ snapshots:
path-exists@4.0.0: {}
- path-exists@5.0.0: {}
-
path-is-absolute@1.0.1: {}
path-key@3.1.1: {}
- path-key@4.0.0: {}
-
path-parse@1.0.7: {}
- path-scurry@1.11.1:
+ path-scurry@2.0.2:
dependencies:
- lru-cache: 10.4.3
+ lru-cache: 11.5.2
minipass: 7.1.3
path-to-regexp@0.1.13: {}
+ path-to-regexp@8.4.2: {}
+
path-type@4.0.0: {}
pathe@2.0.3: {}
@@ -18570,8 +20014,6 @@ snapshots:
picomatch@4.0.5: {}
- pidtree@0.6.1: {}
-
pify@2.3.0: {}
pify@4.0.1: {}
@@ -18586,10 +20028,6 @@ snapshots:
dependencies:
find-up: 4.1.0
- pkg-dir@7.0.0:
- dependencies:
- find-up: 6.3.0
-
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
@@ -18617,9 +20055,9 @@ snapshots:
pn@1.1.0: {}
- pnp-webpack-plugin@1.7.0(typescript@5.9.3):
+ pnp-webpack-plugin@1.7.0(typescript@6.0.3):
dependencies:
- ts-pnp: 1.2.0(typescript@5.9.3)
+ ts-pnp: 1.2.0(typescript@6.0.3)
transitivePeerDependencies:
- typescript
@@ -18833,13 +20271,13 @@ snapshots:
semver: 7.8.5
webpack: 4.47.0
- postcss-loader@6.2.1(postcss@8.5.19)(webpack@5.108.4(postcss@8.5.19)):
+ postcss-loader@6.2.1(postcss@8.5.19)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.5.19
semver: 7.8.5
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
postcss-logical@5.0.4(postcss@8.5.19):
dependencies:
@@ -19253,7 +20691,9 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preact-cli@3.5.1(@types/babel__core@7.20.5)(bluebird@3.7.2)(eslint@10.7.0(jiti@2.6.1))(preact-render-to-string@6.7.0(preact@10.19.6))(preact@10.19.6)(typescript@5.9.3):
+ powershell-utils@0.1.0: {}
+
+ preact-cli@3.5.1(@types/babel__core@7.20.5)(bluebird@3.7.2)(eslint@10.7.0(jiti@2.6.1))(preact-render-to-string@6.7.0)(preact@10.29.7)(typescript@6.0.3):
dependencies:
'@babel/core': 7.29.7
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.7)
@@ -19264,9 +20704,9 @@ snapshots:
'@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7)
'@babel/preset-env': 7.29.7(@babel/core@7.29.7)
'@babel/preset-typescript': 7.29.7(@babel/core@7.29.7)
- '@preact/async-loader': 3.0.2(preact@10.19.6)
+ '@preact/async-loader': 3.0.2(preact@10.29.7)
'@prefresh/babel-plugin': 0.4.4
- '@prefresh/webpack': 3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.19.6)(webpack@4.47.0)
+ '@prefresh/webpack': 3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.29.7)(webpack@4.47.0)
'@types/webpack': 4.41.40
autoprefixer: 10.5.3(postcss@8.5.19)
babel-esm-plugin: 0.9.0(webpack@4.47.0)
@@ -19285,7 +20725,7 @@ snapshots:
envinfo: 7.21.0
esm: 3.2.25
file-loader: 6.2.0(webpack@4.47.0)
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)(webpack@4.47.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)(webpack@4.47.0)
get-port: 5.1.1
gittar: 0.1.1
glob: 8.1.0
@@ -19300,12 +20740,12 @@ snapshots:
native-url: 0.3.4
optimize-css-assets-webpack-plugin: 6.0.1(webpack@4.47.0)
ora: 5.4.1
- pnp-webpack-plugin: 1.7.0(typescript@5.9.3)
+ pnp-webpack-plugin: 1.7.0(typescript@6.0.3)
postcss: 8.5.19
postcss-load-config: 3.1.4(postcss@8.5.19)
postcss-loader: 4.3.0(postcss@8.5.19)(webpack@4.47.0)
- preact: 10.19.6
- preact-render-to-string: 6.7.0(preact@10.19.6)
+ preact: 10.29.7(preact-render-to-string@6.7.0)
+ preact-render-to-string: 6.7.0(preact@10.29.7)
progress-bar-webpack-plugin: 2.1.0(webpack@4.47.0)
promise-polyfill: 8.3.0
prompts: 2.4.2
@@ -19330,14 +20770,14 @@ snapshots:
webpack-merge: 5.10.0
webpack-plugin-replace: 1.2.0
which: 2.0.2
- workbox-cacheable-response: 6.5.4
+ workbox-cacheable-response: 6.6.0
workbox-core: 6.6.0
workbox-precaching: 6.6.0
workbox-routing: 6.6.0
workbox-strategies: 6.6.0
workbox-webpack-plugin: 6.6.0(@types/babel__core@7.20.5)(webpack@4.47.0)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- '@types/babel__core'
- bluebird
@@ -19352,11 +20792,13 @@ snapshots:
- webpack-cli
- webpack-command
- preact-render-to-string@6.7.0(preact@10.19.6):
+ preact-render-to-string@6.7.0(preact@10.29.7):
dependencies:
- preact: 10.19.6
+ preact: 10.29.7(preact-render-to-string@6.7.0)
- preact@10.19.6: {}
+ preact@10.29.7(preact-render-to-string@6.7.0):
+ optionalDependencies:
+ preact-render-to-string: 6.7.0(preact@10.29.7)
prelude-ls@1.1.2: {}
@@ -19372,7 +20814,7 @@ snapshots:
prettier@3.2.4: {}
- prettier@3.2.5: {}
+ prettier@3.9.5: {}
pretty-bytes@4.0.2: {}
@@ -19472,6 +20914,8 @@ snapshots:
inherits: 2.0.4
pump: 2.0.1
+ punycode.js@2.3.1: {}
+
punycode@1.4.1: {}
punycode@2.3.1: {}
@@ -19529,6 +20973,13 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
+ raw-body@3.0.2:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.1
+ iconv-lite: 0.7.3
+ unpipe: 1.0.0
+
raw-loader@4.0.2(webpack@4.47.0):
dependencies:
loader-utils: 2.0.4
@@ -19551,7 +21002,7 @@ snapshots:
regenerator-runtime: 0.13.11
whatwg-fetch: 3.6.20
- react-dev-utils@12.0.1(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)(webpack@5.108.4(postcss@8.5.19)):
+ react-dev-utils@12.0.1(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@babel/code-frame': 7.29.7
address: 1.2.2
@@ -19562,7 +21013,7 @@ snapshots:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)(webpack@5.108.4(postcss@8.5.19))
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -19577,9 +21028,9 @@ snapshots:
shell-quote: 1.10.0
strip-ansi: 6.0.1
text-table: 0.2.0
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- eslint
- supports-color
@@ -19591,11 +21042,6 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-dom@19.2.7(react@19.2.7):
- dependencies:
- react: 19.2.7
- scheduler: 0.27.0
-
react-error-overlay@6.1.0: {}
react-is@16.13.1: {}
@@ -19608,85 +21054,73 @@ snapshots:
react-refresh@0.11.0: {}
- react-refresh@0.18.0: {}
-
- react-router-dom@6.30.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-router-dom@7.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@remix-run/router': 1.23.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-router: 6.30.4(react@18.3.1)
-
- react-router-dom@6.30.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
- dependencies:
- '@remix-run/router': 1.23.3
- react: 19.2.7
- react-dom: 19.2.7(react@19.2.7)
- react-router: 6.30.4(react@19.2.7)
+ react-router: 7.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-router@6.30.4(react@18.3.1):
+ react-router@7.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@remix-run/router': 1.23.3
+ cookie: 1.1.1
react: 18.3.1
+ set-cookie-parser: 2.7.2
+ optionalDependencies:
+ react-dom: 18.3.1(react@18.3.1)
- react-router@6.30.4(react@19.2.7):
- dependencies:
- '@remix-run/router': 1.23.3
- react: 19.2.7
-
- react-scripts@5.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(@types/babel__core@7.20.5)(@types/webpack@4.41.40)(esbuild@0.28.1)(eslint@10.7.0(jiti@1.21.7))(react@19.2.7)(type-fest@0.21.3)(typescript@5.9.3)(yaml@2.9.0):
+ react-scripts@5.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(@types/babel__core@7.20.5)(@types/webpack@4.41.40)(esbuild@0.28.1)(eslint@10.7.0(jiti@1.21.7))(react@18.3.1)(type-fest@0.21.3)(typescript@6.0.3)(yaml@2.9.0):
dependencies:
'@babel/core': 7.29.7
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.108.4(postcss@8.5.19)))(webpack@5.108.4(postcss@8.5.19))
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)))(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
'@svgr/webpack': 5.5.0
babel-jest: 27.5.1(@babel/core@7.29.7)
- babel-loader: 8.4.1(@babel/core@7.29.7)(webpack@5.108.4(postcss@8.5.19))
+ babel-loader: 8.4.1(@babel/core@7.29.7)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
babel-plugin-named-asset-import: 0.3.8(@babel/core@7.29.7)
babel-preset-react-app: 10.1.0
bfj: 7.1.0
browserslist: 4.28.6
camelcase: 6.3.0
case-sensitive-paths-webpack-plugin: 2.4.0
- css-loader: 6.11.0(webpack@5.108.4(postcss@8.5.19))
- css-minimizer-webpack-plugin: 3.4.1(esbuild@0.28.1)(webpack@5.108.4(postcss@8.5.19))
+ css-loader: 6.11.0(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
+ css-minimizer-webpack-plugin: 3.4.1(esbuild@0.28.1)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
dotenv: 10.0.0
dotenv-expand: 5.1.0
eslint: 10.7.0(jiti@1.21.7)
- eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@5.9.3)
- eslint-webpack-plugin: 3.2.0(eslint@10.7.0(jiti@1.21.7))(webpack@5.108.4(postcss@8.5.19))
- file-loader: 6.2.0(webpack@5.108.4(postcss@8.5.19))
+ eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7))(@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7))(eslint@10.7.0(jiti@1.21.7))(jest@27.5.1)(typescript@6.0.3)
+ eslint-webpack-plugin: 3.2.0(eslint@10.7.0(jiti@1.21.7))(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
+ file-loader: 6.2.0(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
fs-extra: 10.1.0
- html-webpack-plugin: 5.6.7(webpack@5.108.4(postcss@8.5.19))
+ html-webpack-plugin: 5.6.7(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
identity-obj-proxy: 3.0.0
jest: 27.5.1
jest-resolve: 27.5.1
jest-watch-typeahead: 1.1.0(jest@27.5.1)
- mini-css-extract-plugin: 2.10.2(webpack@5.108.4(postcss@8.5.19))
+ mini-css-extract-plugin: 2.10.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
postcss: 8.5.19
postcss-flexbugs-fixes: 5.0.2(postcss@8.5.19)
- postcss-loader: 6.2.1(postcss@8.5.19)(webpack@5.108.4(postcss@8.5.19))
+ postcss-loader: 6.2.1(postcss@8.5.19)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
postcss-normalize: 10.0.1(browserslist@4.28.6)(postcss@8.5.19)
postcss-preset-env: 7.8.3(postcss@8.5.19)
prompts: 2.4.2
- react: 19.2.7
+ react: 18.3.1
react-app-polyfill: 3.0.0
- react-dev-utils: 12.0.1(eslint@10.7.0(jiti@1.21.7))(typescript@5.9.3)(webpack@5.108.4(postcss@8.5.19))
+ react-dev-utils: 12.0.1(eslint@10.7.0(jiti@1.21.7))(typescript@6.0.3)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
react-refresh: 0.11.0
resolve: 1.22.12
resolve-url-loader: 4.0.0
- sass-loader: 12.6.0(webpack@5.108.4(postcss@8.5.19))
+ sass-loader: 12.6.0(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
semver: 7.8.5
- source-map-loader: 3.0.2(webpack@5.108.4(postcss@8.5.19))
- style-loader: 3.3.4(webpack@5.108.4(postcss@8.5.19))
+ source-map-loader: 3.0.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
+ style-loader: 3.3.4(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
tailwindcss: 3.4.19(yaml@2.9.0)
- terser-webpack-plugin: 5.6.1(esbuild@0.28.1)(postcss@8.5.19)(webpack@5.108.4(postcss@8.5.19))
- webpack: 5.108.4(postcss@8.5.19)
- webpack-dev-server: 4.15.2(webpack@5.108.4(postcss@8.5.19))
- webpack-manifest-plugin: 4.1.1(webpack@5.108.4(postcss@8.5.19))
- workbox-webpack-plugin: 6.6.0(@types/babel__core@7.20.5)(webpack@5.108.4(postcss@8.5.19))
+ terser-webpack-plugin: 5.6.1(esbuild@0.28.1)(postcss@8.5.19)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
+ webpack-dev-server: 4.15.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
+ webpack-manifest-plugin: 4.1.1(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
+ workbox-webpack-plugin: 6.6.0(@types/babel__core@7.20.5)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
optionalDependencies:
fsevents: 2.3.3
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -19733,8 +21167,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- react@19.2.7: {}
-
read-cache@1.0.0:
dependencies:
pify: 2.3.0
@@ -19775,6 +21207,8 @@ snapshots:
dependencies:
picomatch: 2.3.2
+ readdirp@5.0.0: {}
+
rechoir@0.8.0:
dependencies:
resolve: 1.22.12
@@ -19981,15 +21415,37 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@5.0.10:
+ rimraf@6.1.3:
dependencies:
- glob: 10.5.0
+ glob: 13.0.6
+ package-json-from-dist: 1.0.1
ripemd160@2.0.3:
dependencies:
hash-base: 3.1.2
inherits: 2.0.4
+ rolldown@1.1.5:
+ dependencies:
+ '@oxc-project/types': 0.139.0
+ '@rolldown/pluginutils': 1.0.1
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.1.5
+ '@rolldown/binding-darwin-arm64': 1.1.5
+ '@rolldown/binding-darwin-x64': 1.1.5
+ '@rolldown/binding-freebsd-x64': 1.1.5
+ '@rolldown/binding-linux-arm-gnueabihf': 1.1.5
+ '@rolldown/binding-linux-arm64-gnu': 1.1.5
+ '@rolldown/binding-linux-arm64-musl': 1.1.5
+ '@rolldown/binding-linux-ppc64-gnu': 1.1.5
+ '@rolldown/binding-linux-s390x-gnu': 1.1.5
+ '@rolldown/binding-linux-x64-gnu': 1.1.5
+ '@rolldown/binding-linux-x64-musl': 1.1.5
+ '@rolldown/binding-openharmony-arm64': 1.1.5
+ '@rolldown/binding-wasm32-wasi': 1.1.5
+ '@rolldown/binding-win32-arm64-msvc': 1.1.5
+ '@rolldown/binding-win32-x64-msvc': 1.1.5
+
rollup-plugin-banner2@1.3.1:
dependencies:
magic-string: 0.25.9
@@ -20036,6 +21492,17 @@ snapshots:
'@rollup/rollup-win32-x64-gnu': 4.62.2
'@rollup/rollup-win32-x64-msvc': 4.62.2
fsevents: 2.3.3
+ optional: true
+
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.3
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.4.2
+ transitivePeerDependencies:
+ - supports-color
run-applescript@7.1.0: {}
@@ -20082,11 +21549,11 @@ snapshots:
sanitize.css@13.0.0: {}
- sass-loader@12.6.0(webpack@5.108.4(postcss@8.5.19)):
+ sass-loader@12.6.0(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
sax@1.2.4: {}
@@ -20104,8 +21571,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- scheduler@0.27.0: {}
-
schema-utils@1.0.0:
dependencies:
ajv: 6.15.0
@@ -20181,6 +21646,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ send@1.2.1:
+ dependencies:
+ debug: 4.4.3
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ mime-types: 3.0.2
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.3.0
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
serialize-javascript@4.0.0:
dependencies:
randombytes: 2.1.0
@@ -20214,6 +21695,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ serve-static@2.2.1:
+ dependencies:
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 1.2.1
+ transitivePeerDependencies:
+ - supports-color
+
+ set-cookie-parser@2.7.2: {}
+
set-function-length@1.2.2:
dependencies:
define-data-property: 1.1.4
@@ -20271,13 +21763,6 @@ snapshots:
shell-quote@1.10.0: {}
- shiki@0.14.7:
- dependencies:
- ansi-sequence-parser: 1.1.3
- jsonc-parser: 3.3.1
- vscode-oniguruma: 1.7.0
- vscode-textmate: 8.0.0
-
side-channel-list@1.0.1:
dependencies:
es-errors: 1.3.0
@@ -20316,15 +21801,15 @@ snapshots:
dependencies:
is-arrayish: 0.3.4
- sirv-cli@2.0.2:
+ sirv-cli@3.0.1:
dependencies:
console-clear: 1.1.1
- get-port: 3.2.0
+ get-port: 5.1.1
kleur: 4.1.5
local-access: 1.1.0
sade: 1.8.1
semiver: 1.1.0
- sirv: 2.0.4
+ sirv: 3.0.2
tinydate: 1.3.0
sirv@2.0.4:
@@ -20333,6 +21818,12 @@ snapshots:
mrmime: 2.0.1
totalist: 3.0.1
+ sirv@3.0.2:
+ dependencies:
+ '@polka/url': 1.0.0-next.29
+ mrmime: 2.0.1
+ totalist: 3.0.1
+
sisteransi@1.0.5: {}
size-plugin@3.0.0(webpack@4.47.0):
@@ -20353,12 +21844,12 @@ snapshots:
slash@4.0.0: {}
- slice-ansi@5.0.0:
+ slice-ansi@7.1.2:
dependencies:
ansi-styles: 6.2.3
- is-fullwidth-code-point: 4.0.0
+ is-fullwidth-code-point: 5.1.0
- slice-ansi@7.1.2:
+ slice-ansi@8.0.0:
dependencies:
ansi-styles: 6.2.3
is-fullwidth-code-point: 5.1.0
@@ -20406,12 +21897,12 @@ snapshots:
webpack: 4.47.0
whatwg-mimetype: 2.3.0
- source-map-loader@3.0.2(webpack@5.108.4(postcss@8.5.19)):
+ source-map-loader@3.0.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
abab: 2.0.6
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
source-map-resolve@0.5.3:
dependencies:
@@ -20470,8 +21961,6 @@ snapshots:
dependencies:
extend-shallow: 3.0.2
- split2@4.2.0: {}
-
sprintf-js@1.0.3: {}
sshpk@1.18.0:
@@ -20572,15 +22061,14 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string-width@5.1.2:
+ string-width@7.2.0:
dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.6.0
strip-ansi: 7.2.0
- string-width@7.2.0:
+ string-width@8.2.2:
dependencies:
- emoji-regex: 10.6.0
get-east-asian-width: 1.6.0
strip-ansi: 7.2.0
@@ -20669,8 +22157,6 @@ snapshots:
strip-final-newline@2.0.0: {}
- strip-final-newline@3.0.0: {}
-
strip-json-comments@2.0.1: {}
strip-json-comments@3.1.1: {}
@@ -20681,14 +22167,16 @@ snapshots:
schema-utils: 3.3.0
webpack: 4.47.0
- style-loader@3.3.4(webpack@5.108.4(postcss@8.5.19)):
+ style-loader@3.3.4(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
- styled-jsx@5.1.1(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.29.7)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
+ optionalDependencies:
+ '@babel/core': 7.29.7
stylehacks@4.0.3:
dependencies:
@@ -20860,13 +22348,13 @@ snapshots:
transitivePeerDependencies:
- bluebird
- terser-webpack-plugin@5.6.1(esbuild@0.28.1)(postcss@8.5.19)(webpack@5.108.4(postcss@8.5.19)):
+ terser-webpack-plugin@5.6.1(esbuild@0.28.1)(postcss@8.5.19)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
terser: 5.49.0
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
optionalDependencies:
esbuild: 0.28.1
postcss: 8.5.19
@@ -20891,8 +22379,6 @@ snapshots:
glob: 7.2.3
minimatch: 3.1.5
- text-extensions@2.4.0: {}
-
text-table@0.2.0: {}
thenify-all@1.6.0:
@@ -20914,8 +22400,6 @@ snapshots:
readable-stream: 2.3.8
xtend: 4.0.2
- through@2.3.8: {}
-
thunky@1.1.0: {}
timers-browserify@2.0.12:
@@ -21003,17 +22487,17 @@ snapshots:
tryer@1.0.1: {}
- ts-api-utils@2.5.0(typescript@5.9.3):
+ ts-api-utils@2.5.0(typescript@6.0.3):
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
ts-interface-checker@0.1.13: {}
ts-pattern@5.9.0: {}
- ts-pnp@1.2.0(typescript@5.9.3):
+ ts-pnp@1.2.0(typescript@6.0.3):
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
tsconfig-paths@3.15.0:
dependencies:
@@ -21026,10 +22510,10 @@ snapshots:
tslib@2.8.1: {}
- tsutils@3.21.0(typescript@5.9.3):
+ tsutils@3.21.0(typescript@6.0.3):
dependencies:
tslib: 1.14.1
- typescript: 5.9.3
+ typescript: 6.0.3
tsyringe@4.10.0:
dependencies:
@@ -21066,6 +22550,12 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.35
+ type-is@2.1.0:
+ dependencies:
+ content-type: 2.0.0
+ media-typer: 1.1.0
+ mime-types: 3.0.2
+
typed-array-buffer@1.0.3:
dependencies:
call-bound: 1.0.4
@@ -21105,27 +22595,32 @@ snapshots:
typedarray@0.0.6: {}
- typedoc@0.25.13(typescript@5.9.3):
+ typedoc@0.28.20(typescript@6.0.3):
dependencies:
+ '@gerrit0/mini-shiki': 3.23.0
lunr: 2.3.9
- marked: 4.3.0
- minimatch: 9.0.9
- shiki: 0.14.7
- typescript: 5.9.3
+ markdown-it: 14.3.0
+ minimatch: 10.2.5
+ typescript: 6.0.3
+ yaml: 2.9.0
- typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3):
+ typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/typescript-estree': 8.64.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3))(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
+ '@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.6.1))(typescript@6.0.3)
eslint: 10.7.0(jiti@2.6.1)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
typescript@5.9.3: {}
+ typescript@6.0.3: {}
+
+ uc.micro@2.1.0: {}
+
ufo@1.6.4: {}
uglify-js@3.4.10:
@@ -21142,9 +22637,7 @@ snapshots:
underscore@1.13.6: {}
- undici-types@6.21.0: {}
-
- undici-types@7.18.2: {}
+ undici-types@8.3.0: {}
unfetch@4.2.0: {}
@@ -21159,8 +22652,6 @@ snapshots:
unicode-property-aliases-ecmascript@2.2.0: {}
- unicorn-magic@0.1.0: {}
-
union-value@1.0.1:
dependencies:
arr-union: 3.1.0
@@ -21192,6 +22683,34 @@ snapshots:
unpipe@1.0.0: {}
+ unplugin-dts@1.0.3(@microsoft/api-extractor@7.58.9(@types/node@26.1.1))(esbuild@0.28.1)(rolldown@1.1.5)(rollup@4.62.2)(typescript@6.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))(webpack@5.108.4(esbuild@0.28.1)):
+ dependencies:
+ '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
+ '@volar/typescript': 2.4.28
+ compare-versions: 6.1.1
+ debug: 4.4.3
+ kolorist: 1.8.0
+ local-pkg: 1.2.1
+ magic-string: 0.30.21
+ typescript: 6.0.3
+ unplugin: 2.3.11
+ optionalDependencies:
+ '@microsoft/api-extractor': 7.58.9(@types/node@26.1.1)
+ esbuild: 0.28.1
+ rolldown: 1.1.5
+ rollup: 4.62.2
+ vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
+ webpack: 5.108.4(esbuild@0.28.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ unplugin@2.3.11:
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ acorn: 8.17.0
+ picomatch: 4.0.5
+ webpack-virtual-modules: 0.6.2
+
unquote@1.1.1: {}
unset-value@1.0.0:
@@ -21320,63 +22839,45 @@ snapshots:
dependencies:
assert-plus: 1.0.0
core-util-is: 1.0.2
- extsprintf: 1.3.0
+ extsprintf: 1.4.1
vite-plugin-banner@0.8.1: {}
- vite-plugin-dts@4.5.4(@types/node@20.19.43)(rollup@4.62.2)(typescript@5.9.3)(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)):
+ vite-plugin-dts@5.0.3(@microsoft/api-extractor@7.58.9(@types/node@26.1.1))(esbuild@0.28.1)(rolldown@1.1.5)(rollup@4.62.2)(typescript@6.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))(webpack@5.108.4(esbuild@0.28.1)):
dependencies:
- '@microsoft/api-extractor': 7.58.9(@types/node@20.19.43)
- '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
- '@volar/typescript': 2.4.28
- '@vue/language-core': 2.2.0(typescript@5.9.3)
- compare-versions: 6.1.1
- debug: 4.4.3
- kolorist: 1.8.0
- local-pkg: 1.2.1
- magic-string: 0.30.21
- typescript: 5.9.3
+ unplugin-dts: 1.0.3(@microsoft/api-extractor@7.58.9(@types/node@26.1.1))(esbuild@0.28.1)(rolldown@1.1.5)(rollup@4.62.2)(typescript@6.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))(webpack@5.108.4(esbuild@0.28.1))
optionalDependencies:
- vite: 7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
+ '@microsoft/api-extractor': 7.58.9(@types/node@26.1.1)
+ rollup: 4.62.2
+ vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
transitivePeerDependencies:
- - '@types/node'
- - rollup
+ - '@rspack/core'
+ - '@vue/language-core'
+ - esbuild
+ - rolldown
- supports-color
+ - typescript
+ - webpack
- vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0):
+ vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0):
dependencies:
- esbuild: 0.28.1
- fdir: 6.5.0(picomatch@4.0.5)
+ lightningcss: 1.32.0
picomatch: 4.0.5
postcss: 8.5.19
- rollup: 4.62.2
+ rolldown: 1.1.5
tinyglobby: 0.2.17
optionalDependencies:
- '@types/node': 20.19.43
- fsevents: 2.3.3
- jiti: 2.6.1
- terser: 5.49.0
- yaml: 2.9.0
-
- vite@7.3.6(@types/node@24.13.3)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0):
- dependencies:
+ '@types/node': 26.1.1
esbuild: 0.28.1
- fdir: 6.5.0(picomatch@4.0.5)
- picomatch: 4.0.5
- postcss: 8.5.19
- rollup: 4.62.2
- tinyglobby: 0.2.17
- optionalDependencies:
- '@types/node': 24.13.3
fsevents: 2.3.3
jiti: 2.6.1
terser: 5.49.0
yaml: 2.9.0
- vitest@4.1.10(@types/node@20.19.43)(@vitest/coverage-istanbul@4.1.10)(jsdom@16.7.0)(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)):
+ vitest@4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(jsdom@16.7.0)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)):
dependencies:
'@vitest/expect': 4.1.10
- '@vitest/mocker': 4.1.10(vite@7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
+ '@vitest/mocker': 4.1.10(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0))
'@vitest/pretty-format': 4.1.10
'@vitest/runner': 4.1.10
'@vitest/snapshot': 4.1.10
@@ -21393,10 +22894,10 @@ snapshots:
tinyexec: 1.2.4
tinyglobby: 0.2.17
tinyrainbow: 3.1.0
- vite: 7.3.6(@types/node@20.19.43)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
+ vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(terser@5.49.0)(yaml@2.9.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.19.43
+ '@types/node': 26.1.1
'@vitest/coverage-istanbul': 4.1.10(vitest@4.1.10)
jsdom: 16.7.0
transitivePeerDependencies:
@@ -21404,10 +22905,6 @@ snapshots:
vm-browserify@1.1.2: {}
- vscode-oniguruma@1.7.0: {}
-
- vscode-textmate@8.0.0: {}
-
vscode-uri@3.1.0: {}
w3c-hr-time@1.0.2:
@@ -21477,24 +22974,22 @@ snapshots:
- bufferutil
- utf-8-validate
- webpack-cli@5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4):
+ webpack-cli@7.2.1(js-yaml@4.3.0)(json5@2.2.3)(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@6.0.0)(webpack@5.108.4):
dependencies:
- '@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.108.4)
- '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.108.4)
- '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack-dev-server@5.2.6)(webpack@5.108.4)
- colorette: 2.0.20
- commander: 10.0.1
+ '@discoveryjs/json-ext': 1.1.0
+ commander: 14.0.3
cross-spawn: 7.0.6
envinfo: 7.21.0
- fastest-levenshtein: 1.0.16
import-local: 3.2.0
interpret: 3.1.1
rechoir: 0.8.0
- webpack: 5.108.4(webpack-cli@5.1.4)
- webpack-merge: 5.10.0
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
+ webpack-merge: 6.0.1
optionalDependencies:
- webpack-dev-server: 5.2.6(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4)
+ js-yaml: 4.3.0
+ json5: 2.2.3
+ webpack-bundle-analyzer: 4.10.2
+ webpack-dev-server: 6.0.0(tslib@2.8.1)(webpack-cli@7.2.1)(webpack@5.108.4)
webpack-dev-middleware@5.3.4(webpack@4.47.0):
dependencies:
@@ -21505,25 +23000,24 @@ snapshots:
schema-utils: 4.3.3
webpack: 4.47.0
- webpack-dev-middleware@5.3.4(webpack@5.108.4(postcss@8.5.19)):
+ webpack-dev-middleware@5.3.4(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.3.0
schema-utils: 4.3.3
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
- webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.108.4):
+ webpack-dev-middleware@8.0.3(tslib@2.8.1)(webpack@5.108.4):
dependencies:
- colorette: 2.0.20
memfs: 4.64.0(tslib@2.8.1)
mime-types: 3.0.2
on-finished: 2.4.1
range-parser: 1.3.0
schema-utils: 4.3.3
optionalDependencies:
- webpack: 5.108.4(webpack-cli@5.1.4)
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
transitivePeerDependencies:
- tslib
@@ -21567,7 +23061,7 @@ snapshots:
- supports-color
- utf-8-validate
- webpack-dev-server@4.15.2(webpack@5.108.4(postcss@8.5.19)):
+ webpack-dev-server@4.15.2(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -21597,52 +23091,48 @@ snapshots:
serve-index: 1.9.2
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.108.4(postcss@8.5.19))
+ webpack-dev-middleware: 5.3.4(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
ws: 8.21.1
optionalDependencies:
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- webpack-dev-server@5.2.6(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4):
+ webpack-dev-server@6.0.0(tslib@2.8.1)(webpack-cli@7.2.1)(webpack@5.108.4):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.25
- '@types/express-serve-static-core': 4.19.9
+ '@types/express': 5.0.6
+ '@types/express-serve-static-core': 5.1.2
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.10
- '@types/sockjs': 0.3.36
+ '@types/serve-static': 2.2.0
'@types/ws': 8.18.1
ansi-html-community: 0.0.8
bonjour-service: 1.4.3
- chokidar: 3.6.0
- colorette: 2.0.20
+ chokidar: 5.0.0
compression: 1.8.1
connect-history-api-fallback: 2.0.0
- express: 4.22.2
+ express: 5.2.1
graceful-fs: 4.2.11
- http-proxy-middleware: 2.0.10(@types/express@4.17.25)
+ http-proxy-middleware: 4.2.0
ipaddr.js: 2.4.0
launch-editor: 2.14.1
- open: 10.2.0
- p-retry: 6.2.1
+ open: 11.0.0
+ p-retry: 8.0.0
schema-utils: 4.3.3
selfsigned: 5.5.0
serve-index: 1.9.2
- sockjs: 0.3.24
- spdy: 4.0.2
- webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.108.4)
+ tinyglobby: 0.2.17
+ webpack-dev-middleware: 8.0.3(tslib@2.8.1)(webpack@5.108.4)
ws: 8.21.1
optionalDependencies:
- webpack: 5.108.4(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4)
+ webpack: 5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1)
+ webpack-cli: 7.2.1(js-yaml@4.3.0)(json5@2.2.3)(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@6.0.0)(webpack@5.108.4)
transitivePeerDependencies:
- bufferutil
- - debug
- supports-color
- tslib
- utf-8-validate
@@ -21660,10 +23150,10 @@ snapshots:
webpack: 4.47.0
webpack-sources: 2.3.1
- webpack-manifest-plugin@4.1.1(webpack@5.108.4(postcss@8.5.19)):
+ webpack-manifest-plugin@4.1.1(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
tapable: 2.3.3
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
webpack-sources: 2.3.1
webpack-merge@5.10.0:
@@ -21672,6 +23162,12 @@ snapshots:
flat: 5.0.2
wildcard: 2.0.1
+ webpack-merge@6.0.1:
+ dependencies:
+ clone-deep: 4.0.1
+ flat: 5.0.2
+ wildcard: 2.0.1
+
webpack-plugin-replace@1.2.0: {}
webpack-sources@1.4.3:
@@ -21686,6 +23182,8 @@ snapshots:
webpack-sources@3.5.1: {}
+ webpack-virtual-modules@0.6.2: {}
+
webpack@4.47.0:
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -21714,7 +23212,46 @@ snapshots:
transitivePeerDependencies:
- supports-color
- webpack@5.108.4(postcss@8.5.19):
+ webpack@5.108.4(esbuild@0.28.1):
+ dependencies:
+ '@types/estree': 1.0.9
+ '@types/json-schema': 7.0.15
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.17.0
+ acorn-import-phases: 1.0.4(acorn@8.17.0)
+ browserslist: 4.28.6
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.24.2
+ es-module-lexer: 2.3.1
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ graceful-fs: 4.2.11
+ loader-runner: 4.3.2
+ mime-db: 1.54.0
+ minimizer-webpack-plugin: 5.6.1(esbuild@0.28.1)(webpack@5.108.4(esbuild@0.28.1))
+ neo-async: 2.6.2
+ schema-utils: 4.3.3
+ tapable: 2.3.3
+ watchpack: 2.5.2
+ webpack-sources: 3.5.1
+ transitivePeerDependencies:
+ - '@minify-html/node'
+ - '@swc/core'
+ - '@swc/css'
+ - '@swc/html'
+ - clean-css
+ - cssnano
+ - csso
+ - esbuild
+ - html-minifier-terser
+ - lightningcss
+ - postcss
+ - uglify-js
+ optional: true
+
+ webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19):
dependencies:
'@types/estree': 1.0.9
'@types/json-schema': 7.0.15
@@ -21732,7 +23269,7 @@ snapshots:
graceful-fs: 4.2.11
loader-runner: 4.3.2
mime-db: 1.54.0
- minimizer-webpack-plugin: 5.6.1(postcss@8.5.19)(webpack@5.108.4(postcss@8.5.19))
+ minimizer-webpack-plugin: 5.6.1(esbuild@0.28.1)(postcss@8.5.19)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19))
neo-async: 2.6.2
schema-utils: 4.3.3
tapable: 2.3.3
@@ -21752,7 +23289,7 @@ snapshots:
- postcss
- uglify-js
- webpack@5.108.4(webpack-cli@5.1.4):
+ webpack@5.108.4(esbuild@0.28.1)(webpack-cli@7.2.1):
dependencies:
'@types/estree': 1.0.9
'@types/json-schema': 7.0.15
@@ -21770,14 +23307,14 @@ snapshots:
graceful-fs: 4.2.11
loader-runner: 4.3.2
mime-db: 1.54.0
- minimizer-webpack-plugin: 5.6.1(webpack@5.108.4)
+ minimizer-webpack-plugin: 5.6.1(esbuild@0.28.1)(webpack@5.108.4)
neo-async: 2.6.2
schema-utils: 4.3.3
tapable: 2.3.3
watchpack: 2.5.2
webpack-sources: 3.5.1
optionalDependencies:
- webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4)
+ webpack-cli: 7.2.1(js-yaml@4.3.0)(json5@2.2.3)(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@6.0.0)(webpack@5.108.4)
transitivePeerDependencies:
- '@minify-html/node'
- '@swc/core'
@@ -21939,16 +23476,10 @@ snapshots:
- '@types/babel__core'
- supports-color
- workbox-cacheable-response@6.5.4:
- dependencies:
- workbox-core: 6.5.4
-
workbox-cacheable-response@6.6.0:
dependencies:
workbox-core: 6.6.0
- workbox-core@6.5.4: {}
-
workbox-core@6.6.0: {}
workbox-expiration@6.6.0:
@@ -22013,12 +23544,12 @@ snapshots:
- '@types/babel__core'
- supports-color
- workbox-webpack-plugin@6.6.0(@types/babel__core@7.20.5)(webpack@5.108.4(postcss@8.5.19)):
+ workbox-webpack-plugin@6.6.0(@types/babel__core@7.20.5)(webpack@5.108.4(esbuild@0.28.1)(postcss@8.5.19)):
dependencies:
fast-json-stable-stringify: 2.1.0
pretty-bytes: 5.6.0
upath: 1.2.0
- webpack: 5.108.4(postcss@8.5.19)
+ webpack: 5.108.4(esbuild@0.28.1)(postcss@8.5.19)
webpack-sources: 1.4.3
workbox-build: 6.6.0(@types/babel__core@7.20.5)
transitivePeerDependencies:
@@ -22034,18 +23565,18 @@ snapshots:
dependencies:
errno: 0.1.8
+ wrap-ansi@10.0.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ string-width: 8.2.2
+ strip-ansi: 7.2.0
+
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
- dependencies:
- ansi-styles: 6.2.3
- string-width: 5.1.2
- strip-ansi: 7.2.0
-
wrap-ansi@9.0.2:
dependencies:
ansi-styles: 6.2.3
@@ -22069,9 +23600,10 @@ snapshots:
ws@8.21.1: {}
- wsl-utils@0.1.0:
+ wsl-utils@0.3.1:
dependencies:
is-wsl: 3.1.1
+ powershell-utils: 0.1.0
xdg-basedir@4.0.0: {}
@@ -22097,7 +23629,7 @@ snapshots:
yargs-parser@20.2.9: {}
- yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
yargs@16.2.2:
dependencies:
@@ -22109,20 +23641,17 @@ snapshots:
y18n: 5.0.8
yargs-parser: 20.2.9
- yargs@17.7.3:
+ yargs@18.0.0:
dependencies:
- cliui: 8.0.1
+ cliui: 9.0.1
escalade: 3.2.0
get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
+ string-width: 7.2.0
y18n: 5.0.8
- yargs-parser: 21.1.1
+ yargs-parser: 22.0.0
yocto-queue@0.1.0: {}
- yocto-queue@1.2.2: {}
-
zod-validation-error@4.0.2(zod@4.4.3):
dependencies:
zod: 4.4.3
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 4bc25c43..554e4bb8 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -2,12 +2,30 @@ packages:
- examples/*
- ./
+# Shared versions for deps duplicated across the root package and examples.
+# Referenced as "catalog:" so every workspace project resolves the exact same
+# copy (avoids version-mismatch bugs in the shared type-checked ESLint project)
+# and version bumps only need to happen in one place.
+catalog:
+ react: ^18.3.1
+ react-dom: ^18.3.1
+ "@types/react": ^18.3.31
+ "@types/react-dom": ^18.3.7
+ "@types/node": ^26.1.1
+ # Pinned to the 6.0.x line, not `^6.0.3`: typescript-eslint@8.64.0's peer
+ # range caps at `typescript <6.1.0`, and a caret here would let a 6.1.0+
+ # patch/minor silently break the lint type-check layer.
+ typescript: ~6.0.3
+
# pnpm 11 blocks dependency build scripts by default. esbuild powers the Vite
# build, so allow it; the core-js scripts only print funding notices and the
# legacy fsevents@1 native build fails on modern Node (it is optional), so keep
-# those disabled.
+# those disabled. sharp is an optional native dependency of Next.js (image
+# optimization) pulled in by the next/next-appDir examples; its install script
+# compiles/downloads the prebuilt binary, so it needs to run.
allowBuilds:
core-js: false
core-js-pure: false
esbuild: true
fsevents: false
+ sharp: true
diff --git a/src/components/fingerprint-provider.tsx b/src/components/fingerprint-provider.tsx
index 194bb5d1..4dc45d40 100644
--- a/src/components/fingerprint-provider.tsx
+++ b/src/components/fingerprint-provider.tsx
@@ -78,7 +78,7 @@ function ProviderWithEnv({
return customLoader ? customLoader.start(startParams) : start(startParams)
}, [agentOptions, env])
- const clientRef = useRef()
+ const clientRef = useRef(undefined)
const getClient = useCallback(() => {
if (isSSR()) {
diff --git a/src/use-visitor-data.ts b/src/use-visitor-data.ts
index 7792c78c..67a1b627 100644
--- a/src/use-visitor-data.ts
+++ b/src/use-visitor-data.ts
@@ -1,8 +1,8 @@
import { FingerprintContext, FingerprintContextInterface, VisitorQueryResult } from './fingerprint-context'
import { useCallback, useContext, useEffect, useMemo, useState } from 'react'
-import deepEquals from 'fast-deep-equal'
import { toError } from './utils/to-error'
import { assertIsDefined } from './utils/assert-is-defined'
+import { areGetOptionsEqual } from './utils/get-options-cache-key'
import { GetOptions, GetResult } from '@fingerprint/agent'
export interface UseVisitorDataConfig {
@@ -104,7 +104,7 @@ export function useVisitorData(
}
}, [immediate, getData])
- if (!Object.is(currentGetOptions, getOptions) && !deepEquals(currentGetOptions, getOptions)) {
+ if (!Object.is(currentGetOptions, getOptions) && !areGetOptionsEqual(currentGetOptions, getOptions)) {
setCurrentGetOptions(getOptions)
}
diff --git a/src/utils/get-options-cache-key.ts b/src/utils/get-options-cache-key.ts
new file mode 100644
index 00000000..62ad9857
--- /dev/null
+++ b/src/utils/get-options-cache-key.ts
@@ -0,0 +1,64 @@
+import { GetOptions } from '@fingerprint/agent'
+
+function sortObjectKeys(value: unknown, seen = new Set