chore: update dependencies

This commit is contained in:
Simon Chan 2025-01-25 04:23:57 +08:00
parent 01f812ea97
commit 7ad568d1b5
19 changed files with 256 additions and 257 deletions

View file

@ -37,11 +37,11 @@
"@yume-chan/adb-server-node-tcp": "workspace:^", "@yume-chan/adb-server-node-tcp": "workspace:^",
"@yume-chan/android-bin": "workspace:^", "@yume-chan/android-bin": "workspace:^",
"@yume-chan/stream-extra": "workspace:^", "@yume-chan/stream-extra": "workspace:^",
"commander": "^13.0.0", "commander": "^13.1.0",
"source-map-support": "^0.5.21" "source-map-support": "^0.5.21"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",
"prettier": "^3.4.2", "prettier": "^3.4.2",

View file

@ -39,7 +39,7 @@
"@yume-chan/struct": "workspace:^" "@yume-chan/struct": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -38,7 +38,7 @@
"@yume-chan/struct": "workspace:^" "@yume-chan/struct": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",
"prettier": "^3.4.2", "prettier": "^3.4.2",

View file

@ -39,7 +39,7 @@
"@yume-chan/struct": "workspace:^" "@yume-chan/struct": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -37,7 +37,7 @@
"@yume-chan/struct": "workspace:^" "@yume-chan/struct": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -36,7 +36,7 @@
"@yume-chan/async": "^4.0.2" "@yume-chan/async": "^4.0.2"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -31,6 +31,6 @@
"gh-release-fetch": "^4.0.3" "gh-release-fetch": "^4.0.3"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5" "@types/node": "^22.10.10"
} }
} }

View file

@ -30,7 +30,7 @@
"test": "run-test" "test": "run-test"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -30,7 +30,7 @@
"prepublishOnly": "npm run build" "prepublishOnly": "npm run build"
}, },
"devDependencies": { "devDependencies": {
"@types/audioworklet": "^0.0.65", "@types/audioworklet": "^0.0.67",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",
"prettier": "^3.4.2", "prettier": "^3.4.2",

View file

@ -33,15 +33,13 @@ abstract class SourceProcessor<T>
this.channelCount = options.outputChannelCount![0]!; this.channelCount = options.outputChannelCount![0]!;
this.#readBuffer = new Float32Array(this.channelCount); this.#readBuffer = new Float32Array(this.channelCount);
this.port.onmessage = (event) => { this.port.onmessage = ({ data }: MessageEvent<ArrayBuffer[]>) => {
while (this.#totalSampleCount > 0.35 * 48000) { while (this.#totalSampleCount > 0.35 * 48000) {
this.#chunks.shift(); this.#chunks.shift();
const count = this.#chunkSampleCounts.shift()!; const count = this.#chunkSampleCounts.shift()!;
this.#totalSampleCount -= count; this.#totalSampleCount -= count;
} }
// https://github.com/microsoft/TypeScript-DOM-lib-generator/issues/1860
const { data } = event as MessageEvent<ArrayBuffer[]>;
const [source, length] = this.createSource(data); const [source, length] = this.createSource(data);
this.#chunks.push(source); this.#chunks.push(source);
this.#chunkSampleCounts.push(length); this.#chunkSampleCounts.push(length);

View file

@ -39,7 +39,7 @@
"@yume-chan/struct": "workspace:^" "@yume-chan/struct": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -36,7 +36,7 @@
"@yume-chan/struct": "workspace:^" "@yume-chan/struct": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -38,7 +38,7 @@
"@yume-chan/no-data-view": "workspace:^" "@yume-chan/no-data-view": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"@yume-chan/eslint-config": "workspace:^", "@yume-chan/eslint-config": "workspace:^",
"@yume-chan/test-runner": "workspace:^", "@yume-chan/test-runner": "workspace:^",
"@yume-chan/tsconfig": "workspace:^", "@yume-chan/tsconfig": "workspace:^",

View file

@ -7,6 +7,6 @@
"lint": "pnpm recursive run lint" "lint": "pnpm recursive run lint"
}, },
"devDependencies": { "devDependencies": {
"@changesets/cli": "^2.27.11" "@changesets/cli": "^2.27.12"
} }
} }

467
pnpm-lock.yaml generated
View file

@ -9,8 +9,8 @@ importers:
.: .:
devDependencies: devDependencies:
'@changesets/cli': '@changesets/cli':
specifier: ^2.27.11 specifier: ^2.27.12
version: 2.27.11 version: 2.27.12
apps/cli: apps/cli:
dependencies: dependencies:
@ -27,15 +27,15 @@ importers:
specifier: workspace:^ specifier: workspace:^
version: link:../../libraries/stream-extra version: link:../../libraries/stream-extra
commander: commander:
specifier: ^13.0.0 specifier: ^13.1.0
version: 13.0.0 version: 13.1.0
source-map-support: source-map-support:
specifier: ^0.5.21 specifier: ^0.5.21
version: 0.5.21 version: 0.5.21
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -68,8 +68,8 @@ importers:
version: link:../struct version: link:../struct
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -124,8 +124,8 @@ importers:
version: link:../struct version: link:../struct
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -192,8 +192,8 @@ importers:
version: link:../struct version: link:../struct
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -220,8 +220,8 @@ importers:
version: link:../struct version: link:../struct
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -264,8 +264,8 @@ importers:
version: 4.0.2 version: 4.0.2
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -289,14 +289,14 @@ importers:
version: 4.0.3 version: 4.0.3
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
libraries/no-data-view: libraries/no-data-view:
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -319,8 +319,8 @@ importers:
libraries/pcm-player: libraries/pcm-player:
devDependencies: devDependencies:
'@types/audioworklet': '@types/audioworklet':
specifier: ^0.0.65 specifier: ^0.0.67
version: 0.0.65 version: 0.0.67
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -350,8 +350,8 @@ importers:
version: link:../struct version: link:../struct
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -449,8 +449,8 @@ importers:
version: link:../struct version: link:../struct
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -477,8 +477,8 @@ importers:
version: link:../no-data-view version: link:../no-data-view
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
'@yume-chan/eslint-config': '@yume-chan/eslint-config':
specifier: workspace:^ specifier: workspace:^
version: link:../../toolchain/eslint-config version: link:../../toolchain/eslint-config
@ -498,23 +498,23 @@ importers:
toolchain/eslint-config: toolchain/eslint-config:
dependencies: dependencies:
'@eslint/js': '@eslint/js':
specifier: ^9.17.0 specifier: ^9.19.0
version: 9.17.0 version: 9.19.0
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
eslint: eslint:
specifier: ^9.17.0 specifier: ^9.19.0
version: 9.17.0 version: 9.19.0
eslint-plugin-import-x: eslint-plugin-import-x:
specifier: ^4.6.1 specifier: ^4.6.1
version: 4.6.1(eslint@9.17.0)(typescript@5.7.3) version: 4.6.1(eslint@9.19.0)(typescript@5.7.3)
typescript: typescript:
specifier: ^5.7.3 specifier: ^5.7.3
version: 5.7.3 version: 5.7.3
typescript-eslint: typescript-eslint:
specifier: ^8.19.1 specifier: ^8.21.0
version: 8.19.1(eslint@9.17.0)(typescript@5.7.3) version: 8.21.0(eslint@9.19.0)(typescript@5.7.3)
devDependencies: devDependencies:
prettier: prettier:
specifier: ^3.4.2 specifier: ^3.4.2
@ -523,8 +523,8 @@ importers:
toolchain/package-lint: toolchain/package-lint:
dependencies: dependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
json5: json5:
specifier: ^2.2.3 specifier: ^2.2.3
version: 2.2.3 version: 2.2.3
@ -543,16 +543,16 @@ importers:
devDependencies: devDependencies:
'@rollup/plugin-node-resolve': '@rollup/plugin-node-resolve':
specifier: ^16.0.0 specifier: ^16.0.0
version: 16.0.0(rollup@4.30.1) version: 16.0.0(rollup@4.32.0)
'@rollup/plugin-terser': '@rollup/plugin-terser':
specifier: ^0.4.4 specifier: ^0.4.4
version: 0.4.4(rollup@4.30.1) version: 0.4.4(rollup@4.32.0)
'@rollup/plugin-typescript': '@rollup/plugin-typescript':
specifier: ^12.1.2 specifier: ^12.1.2
version: 12.1.2(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3) version: 12.1.2(rollup@4.32.0)(tslib@2.8.1)(typescript@5.7.3)
rollup: rollup:
specifier: ^4.30.1 specifier: ^4.32.0
version: 4.30.1 version: 4.32.0
tslib: tslib:
specifier: ^2.8.1 specifier: ^2.8.1
version: 2.8.1 version: 2.8.1
@ -560,8 +560,8 @@ importers:
toolchain/test-runner: toolchain/test-runner:
devDependencies: devDependencies:
'@types/node': '@types/node':
specifier: ^22.10.5 specifier: ^22.10.10
version: 22.10.5 version: 22.10.10
typescript: typescript:
specifier: ^5.7.3 specifier: ^5.7.3
version: 5.7.3 version: 5.7.3
@ -574,12 +574,12 @@ importers:
packages: packages:
'@babel/runtime@7.26.0': '@babel/runtime@7.26.7':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} resolution: {integrity: sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==}
engines: {node: '>=6.9.0'} engines: {node: '>=6.9.0'}
'@changesets/apply-release-plan@7.0.7': '@changesets/apply-release-plan@7.0.8':
resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==} resolution: {integrity: sha512-qjMUj4DYQ1Z6qHawsn7S71SujrExJ+nceyKKyI9iB+M5p9lCL55afuEd6uLBPRpLGWQwkwvWegDHtwHJb1UjpA==}
'@changesets/assemble-release-plan@6.0.5': '@changesets/assemble-release-plan@6.0.5':
resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==} resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==}
@ -587,8 +587,8 @@ packages:
'@changesets/changelog-git@0.2.0': '@changesets/changelog-git@0.2.0':
resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
'@changesets/cli@2.27.11': '@changesets/cli@2.27.12':
resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==} resolution: {integrity: sha512-9o3fOfHYOvBnyEn0mcahB7wzaA3P4bGJf8PNqGit5PKaMEFdsRixik+txkrJWd2VX+O6wRFXpxQL8j/1ANKE9g==}
hasBin: true hasBin: true
'@changesets/config@3.0.5': '@changesets/config@3.0.5':
@ -647,24 +647,24 @@ packages:
resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.9.1': '@eslint/core@0.10.0':
resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.2.0': '@eslint/eslintrc@3.2.0':
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.17.0': '@eslint/js@9.19.0':
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.5': '@eslint/object-schema@2.1.5':
resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.2.4': '@eslint/plugin-kit@0.2.5':
resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@humanfs/core@0.19.1': '@humanfs/core@0.19.1':
@ -766,98 +766,98 @@ packages:
rollup: rollup:
optional: true optional: true
'@rollup/rollup-android-arm-eabi@4.30.1': '@rollup/rollup-android-arm-eabi@4.32.0':
resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} resolution: {integrity: sha512-G2fUQQANtBPsNwiVFg4zKiPQyjVKZCUdQUol53R8E71J7AsheRMV/Yv/nB8giOcOVqP7//eB5xPqieBYZe9bGg==}
cpu: [arm] cpu: [arm]
os: [android] os: [android]
'@rollup/rollup-android-arm64@4.30.1': '@rollup/rollup-android-arm64@4.32.0':
resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} resolution: {integrity: sha512-qhFwQ+ljoymC+j5lXRv8DlaJYY/+8vyvYmVx074zrLsu5ZGWYsJNLjPPVJJjhZQpyAKUGPydOq9hRLLNvh1s3A==}
cpu: [arm64] cpu: [arm64]
os: [android] os: [android]
'@rollup/rollup-darwin-arm64@4.30.1': '@rollup/rollup-darwin-arm64@4.32.0':
resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} resolution: {integrity: sha512-44n/X3lAlWsEY6vF8CzgCx+LQaoqWGN7TzUfbJDiTIOjJm4+L2Yq+r5a8ytQRGyPqgJDs3Rgyo8eVL7n9iW6AQ==}
cpu: [arm64] cpu: [arm64]
os: [darwin] os: [darwin]
'@rollup/rollup-darwin-x64@4.30.1': '@rollup/rollup-darwin-x64@4.32.0':
resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} resolution: {integrity: sha512-F9ct0+ZX5Np6+ZDztxiGCIvlCaW87HBdHcozUfsHnj1WCUTBUubAoanhHUfnUHZABlElyRikI0mgcw/qdEm2VQ==}
cpu: [x64] cpu: [x64]
os: [darwin] os: [darwin]
'@rollup/rollup-freebsd-arm64@4.30.1': '@rollup/rollup-freebsd-arm64@4.32.0':
resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} resolution: {integrity: sha512-JpsGxLBB2EFXBsTLHfkZDsXSpSmKD3VxXCgBQtlPcuAqB8TlqtLcbeMhxXQkCDv1avgwNjF8uEIbq5p+Cee0PA==}
cpu: [arm64] cpu: [arm64]
os: [freebsd] os: [freebsd]
'@rollup/rollup-freebsd-x64@4.30.1': '@rollup/rollup-freebsd-x64@4.32.0':
resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} resolution: {integrity: sha512-wegiyBT6rawdpvnD9lmbOpx5Sph+yVZKHbhnSP9MqUEDX08G4UzMU+D87jrazGE7lRSyTRs6NEYHtzfkJ3FjjQ==}
cpu: [x64] cpu: [x64]
os: [freebsd] os: [freebsd]
'@rollup/rollup-linux-arm-gnueabihf@4.30.1': '@rollup/rollup-linux-arm-gnueabihf@4.32.0':
resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} resolution: {integrity: sha512-3pA7xecItbgOs1A5H58dDvOUEboG5UfpTq3WzAdF54acBbUM+olDJAPkgj1GRJ4ZqE12DZ9/hNS2QZk166v92A==}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.30.1': '@rollup/rollup-linux-arm-musleabihf@4.32.0':
resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} resolution: {integrity: sha512-Y7XUZEVISGyge51QbYyYAEHwpGgmRrAxQXO3siyYo2kmaj72USSG8LtlQQgAtlGfxYiOwu+2BdbPjzEpcOpRmQ==}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.30.1': '@rollup/rollup-linux-arm64-gnu@4.32.0':
resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} resolution: {integrity: sha512-r7/OTF5MqeBrZo5omPXcTnjvv1GsrdH8a8RerARvDFiDwFpDVDnJyByYM/nX+mvks8XXsgPUxkwe/ltaX2VH7w==}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
'@rollup/rollup-linux-arm64-musl@4.30.1': '@rollup/rollup-linux-arm64-musl@4.32.0':
resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} resolution: {integrity: sha512-HJbifC9vex9NqnlodV2BHVFNuzKL5OnsV2dvTw6e1dpZKkNjPG6WUq+nhEYV6Hv2Bv++BXkwcyoGlXnPrjAKXw==}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
'@rollup/rollup-linux-loongarch64-gnu@4.30.1': '@rollup/rollup-linux-loongarch64-gnu@4.32.0':
resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} resolution: {integrity: sha512-VAEzZTD63YglFlWwRj3taofmkV1V3xhebDXffon7msNz4b14xKsz7utO6F8F4cqt8K/ktTl9rm88yryvDpsfOw==}
cpu: [loong64] cpu: [loong64]
os: [linux] os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.30.1': '@rollup/rollup-linux-powerpc64le-gnu@4.32.0':
resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} resolution: {integrity: sha512-Sts5DST1jXAc9YH/iik1C9QRsLcCoOScf3dfbY5i4kH9RJpKxiTBXqm7qU5O6zTXBTEZry69bGszr3SMgYmMcQ==}
cpu: [ppc64] cpu: [ppc64]
os: [linux] os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.30.1': '@rollup/rollup-linux-riscv64-gnu@4.32.0':
resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} resolution: {integrity: sha512-qhlXeV9AqxIyY9/R1h1hBD6eMvQCO34ZmdYvry/K+/MBs6d1nRFLm6BOiITLVI+nFAAB9kUB6sdJRKyVHXnqZw==}
cpu: [riscv64] cpu: [riscv64]
os: [linux] os: [linux]
'@rollup/rollup-linux-s390x-gnu@4.30.1': '@rollup/rollup-linux-s390x-gnu@4.32.0':
resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} resolution: {integrity: sha512-8ZGN7ExnV0qjXa155Rsfi6H8M4iBBwNLBM9lcVS+4NcSzOFaNqmt7djlox8pN1lWrRPMRRQ8NeDlozIGx3Omsw==}
cpu: [s390x] cpu: [s390x]
os: [linux] os: [linux]
'@rollup/rollup-linux-x64-gnu@4.30.1': '@rollup/rollup-linux-x64-gnu@4.32.0':
resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} resolution: {integrity: sha512-VDzNHtLLI5s7xd/VubyS10mq6TxvZBp+4NRWoW+Hi3tgV05RtVm4qK99+dClwTN1McA6PHwob6DEJ6PlXbY83A==}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
'@rollup/rollup-linux-x64-musl@4.30.1': '@rollup/rollup-linux-x64-musl@4.32.0':
resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} resolution: {integrity: sha512-qcb9qYDlkxz9DxJo7SDhWxTWV1gFuwznjbTiov289pASxlfGbaOD54mgbs9+z94VwrXtKTu+2RqwlSTbiOqxGg==}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.30.1': '@rollup/rollup-win32-arm64-msvc@4.32.0':
resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} resolution: {integrity: sha512-pFDdotFDMXW2AXVbfdUEfidPAk/OtwE/Hd4eYMTNVVaCQ6Yl8et0meDaKNL63L44Haxv4UExpv9ydSf3aSayDg==}
cpu: [arm64] cpu: [arm64]
os: [win32] os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.30.1': '@rollup/rollup-win32-ia32-msvc@4.32.0':
resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} resolution: {integrity: sha512-/TG7WfrCAjeRNDvI4+0AAMoHxea/USWhAzf9PVDFHbcqrQ7hMMKp4jZIy4VEjk72AAfN5k4TiSMRXRKf/0akSw==}
cpu: [ia32] cpu: [ia32]
os: [win32] os: [win32]
'@rollup/rollup-win32-x64-msvc@4.30.1': '@rollup/rollup-win32-x64-msvc@4.32.0':
resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} resolution: {integrity: sha512-5hqO5S3PTEO2E5VjCePxv40gIgyS2KvO7E7/vvC/NbIW4SIRamkMr1hqj+5Y67fbBWv/bQLB6KelBQmXlyCjWA==}
cpu: [x64] cpu: [x64]
os: [win32] os: [win32]
@ -872,8 +872,8 @@ packages:
'@tokenizer/token@0.3.0': '@tokenizer/token@0.3.0':
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
'@types/audioworklet@0.0.65': '@types/audioworklet@0.0.67':
resolution: {integrity: sha512-JnPJtR94nLPBBQ2iUuZ3Te6FzeABVXXuATR3zw3Hl/EvSYvU8Ipd2tI8/svvTmZ5sPUEnT/fDUF7f2kSjXWC3w==} resolution: {integrity: sha512-CACjEYySsuBYVpEScZtg8jYEhwNzq6RfUjaA4tiTvZa10iBVhHIHo5+eJCaGdxEhuN/wsdI1gP8JjuxM03vFPw==}
'@types/doctrine@0.0.9': '@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
@ -890,8 +890,8 @@ packages:
'@types/node@12.20.55': '@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
'@types/node@22.10.5': '@types/node@22.10.10':
resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==} resolution: {integrity: sha512-X47y/mPNzxviAGY5TcYPtYL8JsY3kAq2n8fMmKoRCxq/c4v4pyGNCzM2R6+M5/umG4ZfHuT+sgqDYqWc9rJ6ww==}
'@types/resolve@1.20.2': '@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@ -899,51 +899,51 @@ packages:
'@types/w3c-web-usb@1.0.10': '@types/w3c-web-usb@1.0.10':
resolution: {integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==} resolution: {integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==}
'@typescript-eslint/eslint-plugin@8.19.1': '@typescript-eslint/eslint-plugin@8.21.0':
resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==} resolution: {integrity: sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0 eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0' typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/parser@8.19.1': '@typescript-eslint/parser@8.21.0':
resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==} resolution: {integrity: sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: peerDependencies:
eslint: ^8.57.0 || ^9.0.0 eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0' typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/scope-manager@8.19.1': '@typescript-eslint/scope-manager@8.21.0':
resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==} resolution: {integrity: sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/type-utils@8.19.1': '@typescript-eslint/type-utils@8.21.0':
resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==} resolution: {integrity: sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: peerDependencies:
eslint: ^8.57.0 || ^9.0.0 eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0' typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/types@8.19.1': '@typescript-eslint/types@8.21.0':
resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==} resolution: {integrity: sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@8.19.1': '@typescript-eslint/typescript-estree@8.21.0':
resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==} resolution: {integrity: sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: peerDependencies:
typescript: '>=4.8.4 <5.8.0' typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/utils@8.19.1': '@typescript-eslint/utils@8.21.0':
resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==} resolution: {integrity: sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: peerDependencies:
eslint: ^8.57.0 || ^9.0.0 eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0' typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/visitor-keys@8.19.1': '@typescript-eslint/visitor-keys@8.21.0':
resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==} resolution: {integrity: sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@xhmikosr/archive-type@6.0.1': '@xhmikosr/archive-type@6.0.1':
@ -1077,8 +1077,8 @@ packages:
color-name@1.1.4: color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
commander@13.0.0: commander@13.1.0:
resolution: {integrity: sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ==} resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
engines: {node: '>=18'} engines: {node: '>=18'}
commander@2.20.3: commander@2.20.3:
@ -1180,8 +1180,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint@9.17.0: eslint@9.19.0:
resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==} resolution: {integrity: sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
@ -1719,8 +1719,8 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'} engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rollup@4.30.1: rollup@4.32.0:
resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} resolution: {integrity: sha512-JmrhfQR31Q4AuNBjjAX4s+a/Pu/Q8Q9iwjWBsjRH1q52SPFE2NqRMK6fUZKKnvKO6id+h7JIRf0oYsph53eATg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'} engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true hasBin: true
@ -1883,8 +1883,8 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'} engines: {node: '>= 0.8.0'}
typescript-eslint@8.19.1: typescript-eslint@8.21.0:
resolution: {integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==} resolution: {integrity: sha512-txEKYY4XMKwPXxNkN8+AxAdX6iIJAPiJbHE/FpQccs/sxw8Lf26kqwC3cn0xkHlW8kEbLhkhCsjWuMveaY9Rxw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: peerDependencies:
eslint: ^8.57.0 || ^9.0.0 eslint: ^8.57.0 || ^9.0.0
@ -1939,11 +1939,11 @@ packages:
snapshots: snapshots:
'@babel/runtime@7.26.0': '@babel/runtime@7.26.7':
dependencies: dependencies:
regenerator-runtime: 0.14.1 regenerator-runtime: 0.14.1
'@changesets/apply-release-plan@7.0.7': '@changesets/apply-release-plan@7.0.8':
dependencies: dependencies:
'@changesets/config': 3.0.5 '@changesets/config': 3.0.5
'@changesets/get-version-range-type': 0.4.0 '@changesets/get-version-range-type': 0.4.0
@ -1972,9 +1972,9 @@ snapshots:
dependencies: dependencies:
'@changesets/types': 6.0.0 '@changesets/types': 6.0.0
'@changesets/cli@2.27.11': '@changesets/cli@2.27.12':
dependencies: dependencies:
'@changesets/apply-release-plan': 7.0.7 '@changesets/apply-release-plan': 7.0.8
'@changesets/assemble-release-plan': 6.0.5 '@changesets/assemble-release-plan': 6.0.5
'@changesets/changelog-git': 0.2.0 '@changesets/changelog-git': 0.2.0
'@changesets/config': 3.0.5 '@changesets/config': 3.0.5
@ -2085,9 +2085,9 @@ snapshots:
human-id: 1.0.2 human-id: 1.0.2
prettier: 2.8.8 prettier: 2.8.8
'@eslint-community/eslint-utils@4.4.1(eslint@9.17.0)': '@eslint-community/eslint-utils@4.4.1(eslint@9.19.0)':
dependencies: dependencies:
eslint: 9.17.0 eslint: 9.19.0
eslint-visitor-keys: 3.4.3 eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {} '@eslint-community/regexpp@4.12.1': {}
@ -2100,7 +2100,7 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@eslint/core@0.9.1': '@eslint/core@0.10.0':
dependencies: dependencies:
'@types/json-schema': 7.0.15 '@types/json-schema': 7.0.15
@ -2118,12 +2118,13 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@eslint/js@9.17.0': {} '@eslint/js@9.19.0': {}
'@eslint/object-schema@2.1.5': {} '@eslint/object-schema@2.1.5': {}
'@eslint/plugin-kit@0.2.4': '@eslint/plugin-kit@0.2.5':
dependencies: dependencies:
'@eslint/core': 0.10.0
levn: 0.4.1 levn: 0.4.1
'@humanfs/core@0.19.1': {} '@humanfs/core@0.19.1': {}
@ -2163,14 +2164,14 @@ snapshots:
'@manypkg/find-root@1.1.0': '@manypkg/find-root@1.1.0':
dependencies: dependencies:
'@babel/runtime': 7.26.0 '@babel/runtime': 7.26.7
'@types/node': 12.20.55 '@types/node': 12.20.55
find-up: 4.1.0 find-up: 4.1.0
fs-extra: 8.1.0 fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3': '@manypkg/get-packages@1.1.3':
dependencies: dependencies:
'@babel/runtime': 7.26.0 '@babel/runtime': 7.26.7
'@changesets/types': 4.1.0 '@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0 '@manypkg/find-root': 1.1.0
fs-extra: 8.1.0 fs-extra: 8.1.0
@ -2189,96 +2190,96 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5 '@nodelib/fs.scandir': 2.1.5
fastq: 1.18.0 fastq: 1.18.0
'@rollup/plugin-node-resolve@16.0.0(rollup@4.30.1)': '@rollup/plugin-node-resolve@16.0.0(rollup@4.32.0)':
dependencies: dependencies:
'@rollup/pluginutils': 5.1.4(rollup@4.30.1) '@rollup/pluginutils': 5.1.4(rollup@4.32.0)
'@types/resolve': 1.20.2 '@types/resolve': 1.20.2
deepmerge: 4.3.1 deepmerge: 4.3.1
is-module: 1.0.0 is-module: 1.0.0
resolve: 1.22.10 resolve: 1.22.10
optionalDependencies: optionalDependencies:
rollup: 4.30.1 rollup: 4.32.0
'@rollup/plugin-terser@0.4.4(rollup@4.30.1)': '@rollup/plugin-terser@0.4.4(rollup@4.32.0)':
dependencies: dependencies:
serialize-javascript: 6.0.2 serialize-javascript: 6.0.2
smob: 1.5.0 smob: 1.5.0
terser: 5.37.0 terser: 5.37.0
optionalDependencies: optionalDependencies:
rollup: 4.30.1 rollup: 4.32.0
'@rollup/plugin-typescript@12.1.2(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3)': '@rollup/plugin-typescript@12.1.2(rollup@4.32.0)(tslib@2.8.1)(typescript@5.7.3)':
dependencies: dependencies:
'@rollup/pluginutils': 5.1.4(rollup@4.30.1) '@rollup/pluginutils': 5.1.4(rollup@4.32.0)
resolve: 1.22.10 resolve: 1.22.10
typescript: 5.7.3 typescript: 5.7.3
optionalDependencies: optionalDependencies:
rollup: 4.30.1 rollup: 4.32.0
tslib: 2.8.1 tslib: 2.8.1
'@rollup/pluginutils@5.1.4(rollup@4.30.1)': '@rollup/pluginutils@5.1.4(rollup@4.32.0)':
dependencies: dependencies:
'@types/estree': 1.0.6 '@types/estree': 1.0.6
estree-walker: 2.0.2 estree-walker: 2.0.2
picomatch: 4.0.2 picomatch: 4.0.2
optionalDependencies: optionalDependencies:
rollup: 4.30.1 rollup: 4.32.0
'@rollup/rollup-android-arm-eabi@4.30.1': '@rollup/rollup-android-arm-eabi@4.32.0':
optional: true optional: true
'@rollup/rollup-android-arm64@4.30.1': '@rollup/rollup-android-arm64@4.32.0':
optional: true optional: true
'@rollup/rollup-darwin-arm64@4.30.1': '@rollup/rollup-darwin-arm64@4.32.0':
optional: true optional: true
'@rollup/rollup-darwin-x64@4.30.1': '@rollup/rollup-darwin-x64@4.32.0':
optional: true optional: true
'@rollup/rollup-freebsd-arm64@4.30.1': '@rollup/rollup-freebsd-arm64@4.32.0':
optional: true optional: true
'@rollup/rollup-freebsd-x64@4.30.1': '@rollup/rollup-freebsd-x64@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.30.1': '@rollup/rollup-linux-arm-gnueabihf@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-arm-musleabihf@4.30.1': '@rollup/rollup-linux-arm-musleabihf@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-arm64-gnu@4.30.1': '@rollup/rollup-linux-arm64-gnu@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-arm64-musl@4.30.1': '@rollup/rollup-linux-arm64-musl@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-loongarch64-gnu@4.30.1': '@rollup/rollup-linux-loongarch64-gnu@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.30.1': '@rollup/rollup-linux-powerpc64le-gnu@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-riscv64-gnu@4.30.1': '@rollup/rollup-linux-riscv64-gnu@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-s390x-gnu@4.30.1': '@rollup/rollup-linux-s390x-gnu@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-x64-gnu@4.30.1': '@rollup/rollup-linux-x64-gnu@4.32.0':
optional: true optional: true
'@rollup/rollup-linux-x64-musl@4.30.1': '@rollup/rollup-linux-x64-musl@4.32.0':
optional: true optional: true
'@rollup/rollup-win32-arm64-msvc@4.30.1': '@rollup/rollup-win32-arm64-msvc@4.32.0':
optional: true optional: true
'@rollup/rollup-win32-ia32-msvc@4.30.1': '@rollup/rollup-win32-ia32-msvc@4.32.0':
optional: true optional: true
'@rollup/rollup-win32-x64-msvc@4.30.1': '@rollup/rollup-win32-x64-msvc@4.32.0':
optional: true optional: true
'@sindresorhus/is@5.6.0': {} '@sindresorhus/is@5.6.0': {}
@ -2289,7 +2290,7 @@ snapshots:
'@tokenizer/token@0.3.0': {} '@tokenizer/token@0.3.0': {}
'@types/audioworklet@0.0.65': {} '@types/audioworklet@0.0.67': {}
'@types/doctrine@0.0.9': {} '@types/doctrine@0.0.9': {}
@ -2301,7 +2302,7 @@ snapshots:
'@types/node@12.20.55': {} '@types/node@12.20.55': {}
'@types/node@22.10.5': '@types/node@22.10.10':
dependencies: dependencies:
undici-types: 6.20.0 undici-types: 6.20.0
@ -2309,15 +2310,15 @@ snapshots:
'@types/w3c-web-usb@1.0.10': {} '@types/w3c-web-usb@1.0.10': {}
'@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0)(typescript@5.7.3))(eslint@9.17.0)(typescript@5.7.3)': '@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint@9.19.0)(typescript@5.7.3)':
dependencies: dependencies:
'@eslint-community/regexpp': 4.12.1 '@eslint-community/regexpp': 4.12.1
'@typescript-eslint/parser': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/parser': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
'@typescript-eslint/scope-manager': 8.19.1 '@typescript-eslint/scope-manager': 8.21.0
'@typescript-eslint/type-utils': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/type-utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
'@typescript-eslint/utils': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
'@typescript-eslint/visitor-keys': 8.19.1 '@typescript-eslint/visitor-keys': 8.21.0
eslint: 9.17.0 eslint: 9.19.0
graphemer: 1.4.0 graphemer: 1.4.0
ignore: 5.3.2 ignore: 5.3.2
natural-compare: 1.4.0 natural-compare: 1.4.0
@ -2326,40 +2327,40 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@typescript-eslint/parser@8.19.1(eslint@9.17.0)(typescript@5.7.3)': '@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3)':
dependencies: dependencies:
'@typescript-eslint/scope-manager': 8.19.1 '@typescript-eslint/scope-manager': 8.21.0
'@typescript-eslint/types': 8.19.1 '@typescript-eslint/types': 8.21.0
'@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3)
'@typescript-eslint/visitor-keys': 8.19.1 '@typescript-eslint/visitor-keys': 8.21.0
debug: 4.4.0 debug: 4.4.0
eslint: 9.17.0 eslint: 9.19.0
typescript: 5.7.3 typescript: 5.7.3
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@typescript-eslint/scope-manager@8.19.1': '@typescript-eslint/scope-manager@8.21.0':
dependencies: dependencies:
'@typescript-eslint/types': 8.19.1 '@typescript-eslint/types': 8.21.0
'@typescript-eslint/visitor-keys': 8.19.1 '@typescript-eslint/visitor-keys': 8.21.0
'@typescript-eslint/type-utils@8.19.1(eslint@9.17.0)(typescript@5.7.3)': '@typescript-eslint/type-utils@8.21.0(eslint@9.19.0)(typescript@5.7.3)':
dependencies: dependencies:
'@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3)
'@typescript-eslint/utils': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
debug: 4.4.0 debug: 4.4.0
eslint: 9.17.0 eslint: 9.19.0
ts-api-utils: 2.0.0(typescript@5.7.3) ts-api-utils: 2.0.0(typescript@5.7.3)
typescript: 5.7.3 typescript: 5.7.3
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@typescript-eslint/types@8.19.1': {} '@typescript-eslint/types@8.21.0': {}
'@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.3)': '@typescript-eslint/typescript-estree@8.21.0(typescript@5.7.3)':
dependencies: dependencies:
'@typescript-eslint/types': 8.19.1 '@typescript-eslint/types': 8.21.0
'@typescript-eslint/visitor-keys': 8.19.1 '@typescript-eslint/visitor-keys': 8.21.0
debug: 4.4.0 debug: 4.4.0
fast-glob: 3.3.3 fast-glob: 3.3.3
is-glob: 4.0.3 is-glob: 4.0.3
@ -2370,20 +2371,20 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@typescript-eslint/utils@8.19.1(eslint@9.17.0)(typescript@5.7.3)': '@typescript-eslint/utils@8.21.0(eslint@9.19.0)(typescript@5.7.3)':
dependencies: dependencies:
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0) '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0)
'@typescript-eslint/scope-manager': 8.19.1 '@typescript-eslint/scope-manager': 8.21.0
'@typescript-eslint/types': 8.19.1 '@typescript-eslint/types': 8.21.0
'@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3)
eslint: 9.17.0 eslint: 9.19.0
typescript: 5.7.3 typescript: 5.7.3
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@typescript-eslint/visitor-keys@8.19.1': '@typescript-eslint/visitor-keys@8.21.0':
dependencies: dependencies:
'@typescript-eslint/types': 8.19.1 '@typescript-eslint/types': 8.21.0
eslint-visitor-keys: 4.2.0 eslint-visitor-keys: 4.2.0
'@xhmikosr/archive-type@6.0.1': '@xhmikosr/archive-type@6.0.1':
@ -2534,7 +2535,7 @@ snapshots:
color-name@1.1.4: {} color-name@1.1.4: {}
commander@13.0.0: {} commander@13.1.0: {}
commander@2.20.3: {} commander@2.20.3: {}
@ -2602,15 +2603,15 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
eslint-plugin-import-x@4.6.1(eslint@9.17.0)(typescript@5.7.3): eslint-plugin-import-x@4.6.1(eslint@9.19.0)(typescript@5.7.3):
dependencies: dependencies:
'@types/doctrine': 0.0.9 '@types/doctrine': 0.0.9
'@typescript-eslint/scope-manager': 8.19.1 '@typescript-eslint/scope-manager': 8.21.0
'@typescript-eslint/utils': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
debug: 4.4.0 debug: 4.4.0
doctrine: 3.0.0 doctrine: 3.0.0
enhanced-resolve: 5.18.0 enhanced-resolve: 5.18.0
eslint: 9.17.0 eslint: 9.19.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.8.1 get-tsconfig: 4.8.1
is-glob: 4.0.3 is-glob: 4.0.3
@ -2631,15 +2632,15 @@ snapshots:
eslint-visitor-keys@4.2.0: {} eslint-visitor-keys@4.2.0: {}
eslint@9.17.0: eslint@9.19.0:
dependencies: dependencies:
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0) '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0)
'@eslint-community/regexpp': 4.12.1 '@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.1 '@eslint/config-array': 0.19.1
'@eslint/core': 0.9.1 '@eslint/core': 0.10.0
'@eslint/eslintrc': 3.2.0 '@eslint/eslintrc': 3.2.0
'@eslint/js': 9.17.0 '@eslint/js': 9.19.0
'@eslint/plugin-kit': 0.2.4 '@eslint/plugin-kit': 0.2.5
'@humanfs/node': 0.16.6 '@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.1 '@humanwhocodes/retry': 0.4.1
@ -3132,29 +3133,29 @@ snapshots:
reusify@1.0.4: {} reusify@1.0.4: {}
rollup@4.30.1: rollup@4.32.0:
dependencies: dependencies:
'@types/estree': 1.0.6 '@types/estree': 1.0.6
optionalDependencies: optionalDependencies:
'@rollup/rollup-android-arm-eabi': 4.30.1 '@rollup/rollup-android-arm-eabi': 4.32.0
'@rollup/rollup-android-arm64': 4.30.1 '@rollup/rollup-android-arm64': 4.32.0
'@rollup/rollup-darwin-arm64': 4.30.1 '@rollup/rollup-darwin-arm64': 4.32.0
'@rollup/rollup-darwin-x64': 4.30.1 '@rollup/rollup-darwin-x64': 4.32.0
'@rollup/rollup-freebsd-arm64': 4.30.1 '@rollup/rollup-freebsd-arm64': 4.32.0
'@rollup/rollup-freebsd-x64': 4.30.1 '@rollup/rollup-freebsd-x64': 4.32.0
'@rollup/rollup-linux-arm-gnueabihf': 4.30.1 '@rollup/rollup-linux-arm-gnueabihf': 4.32.0
'@rollup/rollup-linux-arm-musleabihf': 4.30.1 '@rollup/rollup-linux-arm-musleabihf': 4.32.0
'@rollup/rollup-linux-arm64-gnu': 4.30.1 '@rollup/rollup-linux-arm64-gnu': 4.32.0
'@rollup/rollup-linux-arm64-musl': 4.30.1 '@rollup/rollup-linux-arm64-musl': 4.32.0
'@rollup/rollup-linux-loongarch64-gnu': 4.30.1 '@rollup/rollup-linux-loongarch64-gnu': 4.32.0
'@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 '@rollup/rollup-linux-powerpc64le-gnu': 4.32.0
'@rollup/rollup-linux-riscv64-gnu': 4.30.1 '@rollup/rollup-linux-riscv64-gnu': 4.32.0
'@rollup/rollup-linux-s390x-gnu': 4.30.1 '@rollup/rollup-linux-s390x-gnu': 4.32.0
'@rollup/rollup-linux-x64-gnu': 4.30.1 '@rollup/rollup-linux-x64-gnu': 4.32.0
'@rollup/rollup-linux-x64-musl': 4.30.1 '@rollup/rollup-linux-x64-musl': 4.32.0
'@rollup/rollup-win32-arm64-msvc': 4.30.1 '@rollup/rollup-win32-arm64-msvc': 4.32.0
'@rollup/rollup-win32-ia32-msvc': 4.30.1 '@rollup/rollup-win32-ia32-msvc': 4.32.0
'@rollup/rollup-win32-x64-msvc': 4.30.1 '@rollup/rollup-win32-x64-msvc': 4.32.0
fsevents: 2.3.3 fsevents: 2.3.3
run-parallel@1.2.0: run-parallel@1.2.0:
@ -3303,12 +3304,12 @@ snapshots:
dependencies: dependencies:
prelude-ls: 1.2.1 prelude-ls: 1.2.1
typescript-eslint@8.19.1(eslint@9.17.0)(typescript@5.7.3): typescript-eslint@8.21.0(eslint@9.19.0)(typescript@5.7.3):
dependencies: dependencies:
'@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0)(typescript@5.7.3))(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/eslint-plugin': 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint@9.19.0)(typescript@5.7.3)
'@typescript-eslint/parser': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/parser': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
'@typescript-eslint/utils': 8.19.1(eslint@9.17.0)(typescript@5.7.3) '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3)
eslint: 9.17.0 eslint: 9.19.0
typescript: 5.7.3 typescript: 5.7.3
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color

View file

@ -8,12 +8,12 @@
"run-eslint": "run-eslint.js" "run-eslint": "run-eslint.js"
}, },
"dependencies": { "dependencies": {
"@eslint/js": "^9.17.0", "@eslint/js": "^9.19.0",
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"eslint": "^9.17.0", "eslint": "^9.19.0",
"eslint-plugin-import-x": "^4.6.1", "eslint-plugin-import-x": "^4.6.1",
"typescript": "^5.7.3", "typescript": "^5.7.3",
"typescript-eslint": "^8.19.1" "typescript-eslint": "^8.21.0"
}, },
"devDependencies": { "devDependencies": {
"prettier": "^3.4.2" "prettier": "^3.4.2"

View file

@ -7,7 +7,7 @@
"scripts": {}, "scripts": {},
"keywords": [], "keywords": [],
"dependencies": { "dependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"json5": "^2.2.3" "json5": "^2.2.3"
}, },
"author": "", "author": "",

View file

@ -14,7 +14,7 @@
"@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2", "@rollup/plugin-typescript": "^12.1.2",
"rollup": "^4.30.1", "rollup": "^4.32.0",
"tslib": "^2.8.1" "tslib": "^2.8.1"
}, },
"dependencies": { "dependencies": {

View file

@ -6,7 +6,7 @@
"run-test": "wrapper.js" "run-test": "wrapper.js"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.5", "@types/node": "^22.10.10",
"typescript": "^5.7.3" "typescript": "^5.7.3"
} }
} }