From 2ce150fed34d84e74d89c3457ff9282359623b1b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 13 Sep 2024 11:42:27 -0700
Subject: [PATCH] Bump the dev-dependencies group with 8 updates (#377)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps the dev-dependencies group with 8 updates:
| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) |
`9.9.1` | `9.10.0` |
|
[@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul)
| `2.0.5` | `2.1.1` |
| [eslint](https://github.com/eslint/eslint) | `9.9.1` | `9.10.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.0` | `4.19.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` |
`5.6.2` |
|
[typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)
| `8.4.0` | `8.5.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.4.3` | `5.4.5` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `2.0.5` | `2.1.1` |
Updates `@eslint/js` from 9.9.1 to 9.10.0
Release notes
Sourced from @eslint/js's
releases.
v9.10.0
Features
301b90d
feat: Add types (#18854)
(Nicholas C. Zakas)
bcf0df5
feat: limit namespace import identifier in id-length rule (#18849)
(ChaedongIm)
45c18e1
feat: add requireFlag option to
require-unicode-regexp rule (#18836)
(Brett Zamir)
183b459
feat: add error message for duplicate flags in
no-invalid-regexp (#18837)
(Tanuj Kanti)
c69b406
feat: report duplicate allowed flags in no-invalid-regexp
(#18754)
(Tanuj Kanti)
Documentation
bee0e7a
docs: update README (#18865)
(Milos Djermanovic)
5d80b59
docs: specify that ruleId can be null in
custom formatter docs (#18857)
(Milos Djermanovic)
156b1c3
docs: Update README (GitHub Actions Bot)
f6fdef9
docs: Update README (GitHub Actions Bot)
a20c870
docs: Update README (GitHub Actions Bot)
90e699b
docs: Update README (GitHub Actions Bot)
Chores
24c3ff7
chore: upgrade to @eslint/js@9.10.0 (#18866)
(Francesco Trotta)
1ebdde1
chore: package.json update for @eslint/js release
(Jenkins)
e8fc5bd
chore: update dependency @eslint/core to ^0.5.0 (#18848)
(renovate[bot])
343f992
refactor: don't use node.value when removing unused
directives (#18835)
(Milos Djermanovic)
3db18b0
refactor: Extract FileContext into class (#18831)
(Nicholas C. Zakas)
931d650
refactor: Use @eslint/plugin-kit (#18822)
(Nicholas C. Zakas)
ed5cf0c
chore: update dependency @eslint/json to ^0.4.0 (#18829)
(Milos Djermanovic)
d1f0831
chore: added missing ids (#18817)
(Strek)
ec92813
refactor: Config class (#18763)
(Nicholas C. Zakas)
Changelog
Sourced from @eslint/js's
changelog.
v9.10.0 - September 6, 2024
24c3ff7
chore: upgrade to @eslint/js@9.10.0 (#18866)
(Francesco Trotta)
1ebdde1
chore: package.json update for @eslint/js release
(Jenkins)
301b90d
feat: Add types (#18854)
(Nicholas C. Zakas)
bee0e7a
docs: update README (#18865)
(Milos Djermanovic)
bcf0df5
feat: limit namespace import identifier in id-length rule (#18849)
(ChaedongIm)
45c18e1
feat: add requireFlag option to
require-unicode-regexp rule (#18836)
(Brett Zamir)
5d80b59
docs: specify that ruleId can be null in
custom formatter docs (#18857)
(Milos Djermanovic)
156b1c3
docs: Update README (GitHub Actions Bot)
e8fc5bd
chore: update dependency @eslint/core to ^0.5.0 (#18848)
(renovate[bot])
343f992
refactor: don't use node.value when removing unused
directives (#18835)
(Milos Djermanovic)
183b459
feat: add error message for duplicate flags in
no-invalid-regexp (#18837)
(Tanuj Kanti)
f6fdef9
docs: Update README (GitHub Actions Bot)
c69b406
feat: report duplicate allowed flags in no-invalid-regexp
(#18754)
(Tanuj Kanti)
a20c870
docs: Update README (GitHub Actions Bot)
90e699b
docs: Update README (GitHub Actions Bot)
3db18b0
refactor: Extract FileContext into class (#18831)
(Nicholas C. Zakas)
931d650
refactor: Use @eslint/plugin-kit (#18822)
(Nicholas C. Zakas)
ed5cf0c
chore: update dependency @eslint/json to ^0.4.0 (#18829)
(Milos Djermanovic)
d1f0831
chore: added missing ids (#18817)
(Strek)
ec92813
refactor: Config class (#18763)
(Nicholas C. Zakas)
Commits
Updates `@vitest/coverage-istanbul` from 2.0.5 to 2.1.1
Release notes
Sourced from @vitest/coverage-istanbul's
releases.
v2.1.1
🐞 Bug Fixes
v2.1.0
This release makes another big change to the Browser Mode by
introducing locators
API:
test('renders blog posts', async () => {
const screen = page.render(<Blog />)
await expect.element(screen.getByRole('heading', { name: 'Blog'
})).toBeInTheDocument()
const [firstPost] = screen.getByRole('listitem').all()
await firstPost.getByRole('button', { name: 'Delete' }).click()
expect(screen.getByRole('listitem').all()).toHaveLength(3)
})
You can use either vitest-browser-vue,
vitest-browser-svelte
or vitest-browser-react
to render components and make assertions using locators. Locators are
also available on the page object from
@vitest/browser/context.
Potential Breaking Change
- workspace:
- Correctly resolve workspace globs and file paths - by
@sheremet-va in
vitest-dev/vitest#6316
(afdcb)
- This changes how the custom glob pattern in the workspace config is
treated. Any file matching the glob is considered a Vitest
config file. Any folder matching the glob pattern is treated as a
workspace project and is subject to the regular config resolution
(single
vitest.config.ts or vite.config.ts
inside the folder)
- For example,
projects/* will match anything inside the
projects folder. If it's a folder, we try to find the
config inside that folder (if there is none, it is still treated as a
project with the default config). If it's a file, it will be treated as
a Vitest config. projects/**/* previously would assume that
you only wanted to have folders as projects, but now it will match
every single file insideprojects.
- This change doesn't affect non-glob usage.
🚀 Features
... (truncated)
Commits
699055e
chore: release v2.1.1
9f1fd18
chore: release v2.1.0
b2be23e
chore: release v2.1.0-beta.7
8ac7011
chore: release v2.1.0-beta.6
da52d23
fix(coverage): use project specific vitenode for uncovered
files (#6044)
5932a7f
feat(coverage): add --exclude-after-remap (#6309)
34199bd
feat(browser): support v8 coverage (#6273)
72056b5
chore: release v2.1.0-beta.5
e662c7b
fix(coverage): warn if vitest and @vitest/*
versions don't match (#6317)
67b086b
chore: release v2.1.0-beta.4
- Additional commits viewable in compare
view
Updates `eslint` from 9.9.1 to 9.10.0
Release notes
Sourced from eslint's
releases.
v9.10.0
Features
301b90d
feat: Add types (#18854)
(Nicholas C. Zakas)
bcf0df5
feat: limit namespace import identifier in id-length rule (#18849)
(ChaedongIm)
45c18e1
feat: add requireFlag option to
require-unicode-regexp rule (#18836)
(Brett Zamir)
183b459
feat: add error message for duplicate flags in
no-invalid-regexp (#18837)
(Tanuj Kanti)
c69b406
feat: report duplicate allowed flags in no-invalid-regexp
(#18754)
(Tanuj Kanti)
Documentation
bee0e7a
docs: update README (#18865)
(Milos Djermanovic)
5d80b59
docs: specify that ruleId can be null in
custom formatter docs (#18857)
(Milos Djermanovic)
156b1c3
docs: Update README (GitHub Actions Bot)
f6fdef9
docs: Update README (GitHub Actions Bot)
a20c870
docs: Update README (GitHub Actions Bot)
90e699b
docs: Update README (GitHub Actions Bot)
Chores
24c3ff7
chore: upgrade to @eslint/js@9.10.0 (#18866)
(Francesco Trotta)
1ebdde1
chore: package.json update for @eslint/js release
(Jenkins)
e8fc5bd
chore: update dependency @eslint/core to ^0.5.0 (#18848)
(renovate[bot])
343f992
refactor: don't use node.value when removing unused
directives (#18835)
(Milos Djermanovic)
3db18b0
refactor: Extract FileContext into class (#18831)
(Nicholas C. Zakas)
931d650
refactor: Use @eslint/plugin-kit (#18822)
(Nicholas C. Zakas)
ed5cf0c
chore: update dependency @eslint/json to ^0.4.0 (#18829)
(Milos Djermanovic)
d1f0831
chore: added missing ids (#18817)
(Strek)
ec92813
refactor: Config class (#18763)
(Nicholas C. Zakas)
Changelog
Sourced from eslint's
changelog.
v9.10.0 - September 6, 2024
24c3ff7
chore: upgrade to @eslint/js@9.10.0 (#18866)
(Francesco Trotta)
1ebdde1
chore: package.json update for @eslint/js release
(Jenkins)
301b90d
feat: Add types (#18854)
(Nicholas C. Zakas)
bee0e7a
docs: update README (#18865)
(Milos Djermanovic)
bcf0df5
feat: limit namespace import identifier in id-length rule (#18849)
(ChaedongIm)
45c18e1
feat: add requireFlag option to
require-unicode-regexp rule (#18836)
(Brett Zamir)
5d80b59
docs: specify that ruleId can be null in
custom formatter docs (#18857)
(Milos Djermanovic)
156b1c3
docs: Update README (GitHub Actions Bot)
e8fc5bd
chore: update dependency @eslint/core to ^0.5.0 (#18848)
(renovate[bot])
343f992
refactor: don't use node.value when removing unused
directives (#18835)
(Milos Djermanovic)
183b459
feat: add error message for duplicate flags in
no-invalid-regexp (#18837)
(Tanuj Kanti)
f6fdef9
docs: Update README (GitHub Actions Bot)
c69b406
feat: report duplicate allowed flags in no-invalid-regexp
(#18754)
(Tanuj Kanti)
a20c870
docs: Update README (GitHub Actions Bot)
90e699b
docs: Update README (GitHub Actions Bot)
3db18b0
refactor: Extract FileContext into class (#18831)
(Nicholas C. Zakas)
931d650
refactor: Use @eslint/plugin-kit (#18822)
(Nicholas C. Zakas)
ed5cf0c
chore: update dependency @eslint/json to ^0.4.0 (#18829)
(Milos Djermanovic)
d1f0831
chore: added missing ids (#18817)
(Strek)
ec92813
refactor: Config class (#18763)
(Nicholas C. Zakas)
Commits
Updates `tsx` from 4.19.0 to 4.19.1
Release notes
Sourced from tsx's
releases.
v4.19.1
4.19.1
(2024-09-12)
Bug Fixes
This release is also available on:
Commits
0329bfc
fix(cjs): patch module.path for accurate cache ID
44ed37f
fix(cjs): resolve ts extensions from js when namespaced
ac77527
test: outdent api fixtures
- See full diff in compare
view
Updates `typescript` from 5.5.4 to 5.6.2
Release notes
Sourced from typescript's
releases.
TypeScript 5.6
For release notes, check out the release
announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
TypeScript 5.6 RC
For release notes, check out the release
announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
TypeScript 5.6 Beta
For release notes, check out the release
announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
Commits
a7e3374
Bump version to 5.6.2 and LKG
2063357
🤖 Pick PR #59708
(LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
4fe7e41
🤖 Pick PR #59670
(fix(59649): ts Move to a new file d...) into release-5.6 (#...
1a03e53
🤖 Pick PR #59761
(this can be nullish) into release-5.6 (#59762)
6212132
Update LKG
bbb5faf
🤖 Pick PR #59542
(Fixing delay caused in vscode due t...) into release-5.6 (#...
e6914a5
Bump version to 5.6.1-rc and LKG
34121c4
Update LKG
2a30c2a
Merge remote-tracking branch 'origin/main' into release-5.6
936a79b
Expose TypeChecker. getAwaitedType to public (#59268)
- Additional commits viewable in compare
view
Updates `typescript-eslint` from 8.4.0 to 8.5.0
Release notes
Sourced from typescript-eslint's
releases.
v8.5.0
8.5.0 (2024-09-09)
🚀 Features
- eslint-plugin: [no-duplicate-type-constituents]
prevent unnecessary
| undefined for optional parameters (#9479)
- eslint-plugin: [no-unsafe-argument] differentiate
error types (#9920)
- typescript-estree: default
projectService.defaultProject to 'tsconfig.json' (#9893)
🩹 Fixes
- deps: update dependency prism-react-renderer to
v2.4.0 (#9943)
- eslint-plugin: [no-unnecessary-type-assertion] fix
TSNonNullExpression fixer (#9898)
- eslint-plugin: [no-misused-promises] handle static
method (#9951)
- eslint-plugin: [no-unnecessary-type-parameters] fix
AST quick path scope analysis (#9900)
- eslint-plugin: [consistent-type-assertions] access
parser services lazily (#9921)
❤️ Thank You
You can read about our versioning
strategy and releases
on our website.
Changelog
Sourced from typescript-eslint's
changelog.
8.5.0 (2024-09-09)
This was a version bump only for typescript-eslint to align it with
other projects, there were no code changes.
You can read about our versioning
strategy and releases
on our website.
Commits
Updates `vite` from 5.4.3 to 5.4.5
Changelog
Sourced from vite's
changelog.
5.4.5 (2024-09-13)
5.4.4 (2024-09-11)
Commits
Updates `vitest` from 2.0.5 to 2.1.1
Release notes
Sourced from vitest's
releases.
v2.1.1
🐞 Bug Fixes
v2.1.0
This release makes another big change to the Browser Mode by
introducing locators
API:
test('renders blog posts', async () => {
const screen = page.render(<Blog />)
await expect.element(screen.getByRole('heading', { name: 'Blog'
})).toBeInTheDocument()
const [firstPost] = screen.getByRole('listitem').all()
await firstPost.getByRole('button', { name: 'Delete' }).click()
expect(screen.getByRole('listitem').all()).toHaveLength(3)
})
You can use either vitest-browser-vue,
vitest-browser-svelte
or vitest-browser-react
to render components and make assertions using locators. Locators are
also available on the page object from
@vitest/browser/context.
Potential Breaking Change
- workspace:
- Correctly resolve workspace globs and file paths - by
@sheremet-va in
vitest-dev/vitest#6316
(afdcb)
- This changes how the custom glob pattern in the workspace config is
treated. Any file matching the glob is considered a Vitest
config file. Any folder matching the glob pattern is treated as a
workspace project and is subject to the regular config resolution
(single
vitest.config.ts or vite.config.ts
inside the folder)
- For example,
projects/* will match anything inside the
projects folder. If it's a folder, we try to find the
config inside that folder (if there is none, it is still treated as a
project with the default config). If it's a file, it will be treated as
a Vitest config. projects/**/* previously would assume that
you only wanted to have folders as projects, but now it will match
every single file insideprojects.
- This change doesn't affect non-glob usage.
🚀 Features
... (truncated)
Commits
699055e
chore: release v2.1.1
36b5ace
fix(workspace): resolve glob pattern once to avoid name collision (#6489)
16aa76c
fix(browser): make example test callbacks async (#6484)
9f1fd18
chore: release v2.1.0
94a186e
fix(ui): render project name consistently (#6329)
ac698b1
fix: expect.getState().testPath always returns correct path
(#6472)
b2be23e
chore: release v2.1.0-beta.7
0b44722
fix: ignore importer when resolving Vitest (#6469)
97773e2
chore: fix edge case in license files bundling (#6460)
7ab0f4a
feat(browser): support --inspect-brk (#6434)
- Additional commits viewable in compare
view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore ` will
remove the ignore condition of the specified dependency and ignore
conditions
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
package.json | 16 +--
yarn.lock | 356 +++++++++++++++++++++++++++++----------------------
2 files changed, 213 insertions(+), 159 deletions(-)
diff --git a/package.json b/package.json
index 3201225fa..0119b1d67 100644
--- a/package.json
+++ b/package.json
@@ -28,7 +28,7 @@
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
- "@eslint/js": "^9.9.0",
+ "@eslint/js": "^9.10.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
@@ -51,11 +51,11 @@
"@types/tinycolor2": "^1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.7.0",
- "@vitest/coverage-istanbul": "^2.0.5",
+ "@vitest/coverage-istanbul": "^2.1.1",
"electron": "^32.0.2",
"electron-builder": "^25.0.5",
"electron-vite": "^2.3.0",
- "eslint": "^9.9.0",
+ "eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"less": "^4.2.0",
"prettier": "^3.3.3",
@@ -65,15 +65,15 @@
"storybook": "^8.2.9",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
- "tsx": "^4.19.0",
- "typescript": "^5.5.4",
- "typescript-eslint": "^8.4.0",
- "vite": "^5.4.3",
+ "tsx": "^4.19.1",
+ "typescript": "^5.6.2",
+ "typescript-eslint": "^8.5.0",
+ "vite": "^5.4.5",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-static-copy": "^1.0.6",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
- "vitest": "^2.0.5"
+ "vitest": "^2.1.1"
},
"dependencies": {
"@monaco-editor/loader": "^1.4.0",
diff --git a/yarn.lock b/yarn.lock
index 7cbc6a515..1ed892509 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -19,7 +19,7 @@ __metadata:
languageName: node
linkType: hard
-"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0":
+"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
@@ -1968,10 +1968,10 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/js@npm:9.9.1, @eslint/js@npm:^9.9.0":
- version: 9.9.1
- resolution: "@eslint/js@npm:9.9.1"
- checksum: 10c0/a3a91de2ce78469f7c4eee78c1eba77360706e1d0fa0ace2e19102079bcf237b851217c85ea501dc92c4c3719d60d9df966977abc8554d4c38e3638c1f53dcb2
+"@eslint/js@npm:9.10.0, @eslint/js@npm:^9.10.0":
+ version: 9.10.0
+ resolution: "@eslint/js@npm:9.10.0"
+ checksum: 10c0/2ac45a002dc1ccf25be46ea61001ada8d77248d1313ab4e53f3735e5ae00738a757874e41f62ad6fbd49df7dffeece66e5f53ff0d7b78a99ce4c68e8fea66753
languageName: node
linkType: hard
@@ -1982,6 +1982,15 @@ __metadata:
languageName: node
linkType: hard
+"@eslint/plugin-kit@npm:^0.1.0":
+ version: 0.1.0
+ resolution: "@eslint/plugin-kit@npm:0.1.0"
+ dependencies:
+ levn: "npm:^0.4.1"
+ checksum: 10c0/fae97cd4efc1c32501c286abba1b5409848ce8c989e1ca6a5bb057a304a2cd721e6e957f6bc35ce95cfd0871e822ed42df3c759fecdad72c30e70802e26f83c7
+ languageName: node
+ linkType: hard
+
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
@@ -3860,15 +3869,15 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/eslint-plugin@npm:8.4.0"
+"@typescript-eslint/eslint-plugin@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:8.5.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.10.0"
- "@typescript-eslint/scope-manager": "npm:8.4.0"
- "@typescript-eslint/type-utils": "npm:8.4.0"
- "@typescript-eslint/utils": "npm:8.4.0"
- "@typescript-eslint/visitor-keys": "npm:8.4.0"
+ "@typescript-eslint/scope-manager": "npm:8.5.0"
+ "@typescript-eslint/type-utils": "npm:8.5.0"
+ "@typescript-eslint/utils": "npm:8.5.0"
+ "@typescript-eslint/visitor-keys": "npm:8.5.0"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.3.1"
natural-compare: "npm:^1.4.0"
@@ -3879,66 +3888,66 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/c75e9bb176e9e0277c9f9c4c006bc2c31ac91984e555de1390a9bbe876e3b6787d59d96015b3f0cd083fd22c814aea4ed4858910d3afdd24d64ab79815da31e5
+ checksum: 10c0/69ae7067e03d2d8d442e69d668235bdafd63b07229d0be27025eaad8aa468b5af8ac54627021e0e3a060df04ed1c39d1327a0b11469ac72405b52b74a79f402b
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/parser@npm:8.4.0"
+"@typescript-eslint/parser@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/parser@npm:8.5.0"
dependencies:
- "@typescript-eslint/scope-manager": "npm:8.4.0"
- "@typescript-eslint/types": "npm:8.4.0"
- "@typescript-eslint/typescript-estree": "npm:8.4.0"
- "@typescript-eslint/visitor-keys": "npm:8.4.0"
+ "@typescript-eslint/scope-manager": "npm:8.5.0"
+ "@typescript-eslint/types": "npm:8.5.0"
+ "@typescript-eslint/typescript-estree": "npm:8.5.0"
+ "@typescript-eslint/visitor-keys": "npm:8.5.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/19f3358e5bc4bbad693183eefe1a90ea64be054a934bc2c8a972ff4738b94580b55ad4955af5797db42298628caa59b3ba3f9fd960582b5fc2c836da3a4578a5
+ checksum: 10c0/509fdd605b86c7d025928f20e1035712c2fc268c34b1af84248ed0b53d699034f19caf98e085c5c758d3025e29939dd12eea427c72cae9e5ea79274364851f0a
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/scope-manager@npm:8.4.0"
+"@typescript-eslint/scope-manager@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/scope-manager@npm:8.5.0"
dependencies:
- "@typescript-eslint/types": "npm:8.4.0"
- "@typescript-eslint/visitor-keys": "npm:8.4.0"
- checksum: 10c0/95188c663df7db106529c6b93c4c7c61647ed34ab6dd48114e41ddf49140ff606c5501ce2ae451a988ec49b5d3874ea96ff212fc102802327b10affd2ff80a37
+ "@typescript-eslint/types": "npm:8.5.0"
+ "@typescript-eslint/visitor-keys": "npm:8.5.0"
+ checksum: 10c0/868602f9324a6e15fcae017acd3b0832e9f2c8c8cd315667df37c2e7c765cda5fba7c4bede931f32cc04819ba97cf74a5fddb085c6f1c7993f1fb085ba126422
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/type-utils@npm:8.4.0"
+"@typescript-eslint/type-utils@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/type-utils@npm:8.5.0"
dependencies:
- "@typescript-eslint/typescript-estree": "npm:8.4.0"
- "@typescript-eslint/utils": "npm:8.4.0"
+ "@typescript-eslint/typescript-estree": "npm:8.5.0"
+ "@typescript-eslint/utils": "npm:8.5.0"
debug: "npm:^4.3.4"
ts-api-utils: "npm:^1.3.0"
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/ae51100594d9ca61c7577b5aed0bd10c1959725df5c38cd9653eed1fd3dbdfff9146b6e48f3409994b4c8d781b9d95025c36b30f73a5a1b3dbdee6d142cecc87
+ checksum: 10c0/675d3e41f938d16e9268fd33764a4e16b12a4a9817e61d5e2508a07fe6783c69ce9d05facc61822b5647c71d767929618ed37b8b93f423f7c2ccb62cfeb4343b
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/types@npm:8.4.0"
- checksum: 10c0/15e09ced84827c349553530a31822f06ae5bad456c03d561b7d0c64b6ad9b5d7ca795e030bd93e65d5a2cd41bfde36ed08dcd2ff9feaa8b60a67080827f47ecb
+"@typescript-eslint/types@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/types@npm:8.5.0"
+ checksum: 10c0/f0b666b5c001b9779bfd9e4c7d031843d07264429d5bcf5d636f26f96cd5d949a33f5d6a645b8d74b93daf565a468476a6a4935dd7135a200250fb03acbe4988
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/typescript-estree@npm:8.4.0"
+"@typescript-eslint/typescript-estree@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/typescript-estree@npm:8.5.0"
dependencies:
- "@typescript-eslint/types": "npm:8.4.0"
- "@typescript-eslint/visitor-keys": "npm:8.4.0"
+ "@typescript-eslint/types": "npm:8.5.0"
+ "@typescript-eslint/visitor-keys": "npm:8.5.0"
debug: "npm:^4.3.4"
fast-glob: "npm:^3.3.2"
is-glob: "npm:^4.0.3"
@@ -3948,31 +3957,31 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/170702b024121cff9268f53de8054796b0ce025f9a78d6f2bc850a360e5f3f7032ba3ee9d4b7392726308273a5f3ade5ab31b1788b504b514bc15afc07302b37
+ checksum: 10c0/f62f03d0c5dc57b2b54dbe1cbd027966f774f241279655f46c64145abb54b765176a0cd40447583ba56ada306181da9a82e39b777c78128e105e4ea98c609350
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/utils@npm:8.4.0"
+"@typescript-eslint/utils@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/utils@npm:8.5.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.4.0"
- "@typescript-eslint/scope-manager": "npm:8.4.0"
- "@typescript-eslint/types": "npm:8.4.0"
- "@typescript-eslint/typescript-estree": "npm:8.4.0"
+ "@typescript-eslint/scope-manager": "npm:8.5.0"
+ "@typescript-eslint/types": "npm:8.5.0"
+ "@typescript-eslint/typescript-estree": "npm:8.5.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- checksum: 10c0/8c9c36b3aa23f9bcc28cc4b10f0fa2996f1bc6cdd75135f08c2ef734baa30dbd2a8b92f344b90518e1fd07a486936734789fc7e90b780221a7707dad8e9c9364
+ checksum: 10c0/0cb0bfdaf0da79d13c0d0379478eb14b5825d235873bc7181e70c4f6297fa1c74431ef730cbc2912fe1814dd8d46c6515ce22b39c57e8f03c337aa152fd49a4e
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:8.4.0":
- version: 8.4.0
- resolution: "@typescript-eslint/visitor-keys@npm:8.4.0"
+"@typescript-eslint/visitor-keys@npm:8.5.0":
+ version: 8.5.0
+ resolution: "@typescript-eslint/visitor-keys@npm:8.5.0"
dependencies:
- "@typescript-eslint/types": "npm:8.4.0"
+ "@typescript-eslint/types": "npm:8.5.0"
eslint-visitor-keys: "npm:^3.4.3"
- checksum: 10c0/339199b7fbb9ac83b530d03ab25f6bc5ceb688c9cd0ae460112cd14ee78ca7284a845aef5620cdf70170980123475ec875e85ebf595c60255ba3c0d6fe48c714
+ checksum: 10c0/8b9e81968ad36e8af18ac17b63c4e0764612451ca085676c939b723549052243f63577d2706bc2da48174f11bf47587ab47e6e0b7c5b28d9f3c1ef7b9aad322d
languageName: node
linkType: hard
@@ -3994,12 +4003,12 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/coverage-istanbul@npm:^2.0.5":
- version: 2.0.5
- resolution: "@vitest/coverage-istanbul@npm:2.0.5"
+"@vitest/coverage-istanbul@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/coverage-istanbul@npm:2.1.1"
dependencies:
"@istanbuljs/schema": "npm:^0.1.3"
- debug: "npm:^4.3.5"
+ debug: "npm:^4.3.6"
istanbul-lib-coverage: "npm:^3.2.2"
istanbul-lib-instrument: "npm:^6.0.3"
istanbul-lib-report: "npm:^3.0.1"
@@ -4009,8 +4018,8 @@ __metadata:
test-exclude: "npm:^7.0.1"
tinyrainbow: "npm:^1.2.0"
peerDependencies:
- vitest: 2.0.5
- checksum: 10c0/f19744e848f06f2ce3a6364caa3ffe701d571ff89c8de31ad753c2d48d46e24eab8d8670548997839c77ec41ebe69011b92df74ef196c070964fde9eaef1b1eb
+ vitest: 2.1.1
+ checksum: 10c0/4dd4109294c2cc51306cb1cbabf22e0815664b07f3d668df3ebb0968fbf564213e85eca2e369c8dca838baf3e5ed4fbb243e7a98f20899a8040779fa7e6ee381
languageName: node
linkType: hard
@@ -4025,45 +4034,65 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/expect@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/expect@npm:2.0.5"
+"@vitest/expect@npm:2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/expect@npm:2.1.1"
dependencies:
- "@vitest/spy": "npm:2.0.5"
- "@vitest/utils": "npm:2.0.5"
+ "@vitest/spy": "npm:2.1.1"
+ "@vitest/utils": "npm:2.1.1"
chai: "npm:^5.1.1"
tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/08cb1b0f106d16a5b60db733e3d436fa5eefc68571488eb570dfe4f599f214ab52e4342273b03dbe12331cc6c0cdc325ac6c94f651ad254cd62f3aa0e3d185aa
+ checksum: 10c0/2a467bcd37378b653040cca062a665f382087eb9f69cff670848a0c207a8458f27211c408c75b7e563e069a2e6d533c78f24e1a317c259646b948813342dbf3d
languageName: node
linkType: hard
-"@vitest/pretty-format@npm:2.0.5, @vitest/pretty-format@npm:^2.0.5":
- version: 2.0.5
- resolution: "@vitest/pretty-format@npm:2.0.5"
+"@vitest/mocker@npm:2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/mocker@npm:2.1.1"
+ dependencies:
+ "@vitest/spy": "npm:^2.1.0-beta.1"
+ estree-walker: "npm:^3.0.3"
+ magic-string: "npm:^0.30.11"
+ peerDependencies:
+ "@vitest/spy": 2.1.1
+ msw: ^2.3.5
+ vite: ^5.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+ checksum: 10c0/e0681bb75bf7255ce49f720d193c9c795a64d42fef13c7af5c157514ebce88a5b89dbf702aa0929d4cefaed3db73351bd3ade3ccabecc09a23a872d9c55be50d
+ languageName: node
+ linkType: hard
+
+"@vitest/pretty-format@npm:2.1.1, @vitest/pretty-format@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/pretty-format@npm:2.1.1"
dependencies:
tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/236c0798c5170a0b5ad5d4bd06118533738e820b4dd30079d8fbcb15baee949d41c60f42a9f769906c4a5ce366d7ef11279546070646c0efc03128c220c31f37
+ checksum: 10c0/21057465a794a037a7af2c48397531eadf9b2d8a7b4d1ee5af9081cf64216cd0039b9e06317319df79aa2240fed1dbb6767b530deae2bd4b42d6fb974297e97d
languageName: node
linkType: hard
-"@vitest/runner@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/runner@npm:2.0.5"
+"@vitest/runner@npm:2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/runner@npm:2.1.1"
dependencies:
- "@vitest/utils": "npm:2.0.5"
+ "@vitest/utils": "npm:2.1.1"
pathe: "npm:^1.1.2"
- checksum: 10c0/d0ed3302a7e015bf44b7c0df9d8f7da163659e082d86f9406944b5a31a61ab9ddc1de530e06176d1f4ef0bde994b44bff4c7dab62aacdc235c8fc04b98e4a72a
+ checksum: 10c0/a6d1424d6224d8a60ed0bbf7cdacb165ef36bc71cc957ad2c11ed1989fa5106636173369f0d8e1fa3f319a965091e52c8ce21203fce4bafe772632ccc2bd65a6
languageName: node
linkType: hard
-"@vitest/snapshot@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/snapshot@npm:2.0.5"
+"@vitest/snapshot@npm:2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/snapshot@npm:2.1.1"
dependencies:
- "@vitest/pretty-format": "npm:2.0.5"
- magic-string: "npm:^0.30.10"
+ "@vitest/pretty-format": "npm:2.1.1"
+ magic-string: "npm:^0.30.11"
pathe: "npm:^1.1.2"
- checksum: 10c0/7bf38474248f5ae0aac6afad511785d2b7a023ac5158803c2868fd172b5b9c1a569fb1dd64a09a49e43fd342cab71ea485ada89b7f08d37b1622a5a0ac00271d
+ checksum: 10c0/e9dadee87a2f489883dec0360b55b2776d2a07e460bf2430b34867cd4e9f34b09b3e219a23bc8c3e1359faefdd166072d3305b66a0bea475c7d616470b7d841c
languageName: node
linkType: hard
@@ -4076,12 +4105,12 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/spy@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/spy@npm:2.0.5"
+"@vitest/spy@npm:2.1.1, @vitest/spy@npm:^2.1.0-beta.1":
+ version: 2.1.1
+ resolution: "@vitest/spy@npm:2.1.1"
dependencies:
tinyspy: "npm:^3.0.0"
- checksum: 10c0/70634c21921eb271b54d2986c21d7ab6896a31c0f4f1d266940c9bafb8ac36237846d6736638cbf18b958bd98e5261b158a6944352742accfde50b7818ff655e
+ checksum: 10c0/b251be1390c105b68aa95270159c4583c3e1a0f7a2e1f82db8b7fadedc3cb459c5ef9286033a1ae764810e00715552fc80afe4507cd8b0065934fb1a64926e06
languageName: node
linkType: hard
@@ -4097,15 +4126,14 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/utils@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/utils@npm:2.0.5"
+"@vitest/utils@npm:2.1.1":
+ version: 2.1.1
+ resolution: "@vitest/utils@npm:2.1.1"
dependencies:
- "@vitest/pretty-format": "npm:2.0.5"
- estree-walker: "npm:^3.0.3"
+ "@vitest/pretty-format": "npm:2.1.1"
loupe: "npm:^3.1.1"
tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/0d1de748298f07a50281e1ba058b05dcd58da3280c14e6f016265e950bd79adab6b97822de8f0ea82d3070f585654801a9b1bcf26db4372e51cf7746bf86d73b
+ checksum: 10c0/b724c7f23591860bd24cd8e6d0cd803405f4fbff746db160a948290742144463287566a05ca400deb56817603b5185c4429707947869c3d453805860b5e3a3e5
languageName: node
linkType: hard
@@ -5821,7 +5849,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5":
+"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4":
version: 4.3.6
resolution: "debug@npm:4.3.6"
dependencies:
@@ -5833,7 +5861,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:^4.3.3, debug@npm:^4.3.7":
+"debug@npm:^4.3.3, debug@npm:^4.3.6, debug@npm:^4.3.7":
version: 4.3.7
resolution: "debug@npm:4.3.7"
dependencies:
@@ -6660,15 +6688,16 @@ __metadata:
languageName: node
linkType: hard
-"eslint@npm:^9.9.0":
- version: 9.9.1
- resolution: "eslint@npm:9.9.1"
+"eslint@npm:^9.10.0":
+ version: 9.10.0
+ resolution: "eslint@npm:9.10.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.2.0"
"@eslint-community/regexpp": "npm:^4.11.0"
"@eslint/config-array": "npm:^0.18.0"
"@eslint/eslintrc": "npm:^3.1.0"
- "@eslint/js": "npm:9.9.1"
+ "@eslint/js": "npm:9.10.0"
+ "@eslint/plugin-kit": "npm:^0.1.0"
"@humanwhocodes/module-importer": "npm:^1.0.1"
"@humanwhocodes/retry": "npm:^0.3.0"
"@nodelib/fs.walk": "npm:^1.2.8"
@@ -6691,7 +6720,6 @@ __metadata:
is-glob: "npm:^4.0.0"
is-path-inside: "npm:^3.0.3"
json-stable-stringify-without-jsonify: "npm:^1.0.1"
- levn: "npm:^0.4.1"
lodash.merge: "npm:^4.6.2"
minimatch: "npm:^3.1.2"
natural-compare: "npm:^1.4.0"
@@ -6705,7 +6733,7 @@ __metadata:
optional: true
bin:
eslint: bin/eslint.js
- checksum: 10c0/5e71efda7c0a14ee95436d5cdfed04ee61dfb1d89d7a32b50a424de2e680af82849628ea6581950c2e0726491f786a3cfd0032ce013c1c5093786e475cfdfb33
+ checksum: 10c0/7357f3995b15043eea83c8c0ab16c385ce3f28925c1b11cfcd6b2ede8faab3d91ede84a68173dd5f6e3e176e177984e6218de58b7b8388e53e2881f1ec07c836
languageName: node
linkType: hard
@@ -8887,7 +8915,7 @@ __metadata:
languageName: node
linkType: hard
-"magic-string@npm:^0.30.0, magic-string@npm:^0.30.10":
+"magic-string@npm:^0.30.0, magic-string@npm:^0.30.10, magic-string@npm:^0.30.11":
version: 0.30.11
resolution: "magic-string@npm:0.30.11"
dependencies:
@@ -12221,7 +12249,7 @@ __metadata:
resolution: "thenextwave@workspace:."
dependencies:
"@chromatic-com/storybook": "npm:^1.9.0"
- "@eslint/js": "npm:^9.9.0"
+ "@eslint/js": "npm:^9.10.0"
"@monaco-editor/loader": "npm:^1.4.0"
"@monaco-editor/react": "npm:^4.6.0"
"@observablehq/plot": "npm:^0.6.16"
@@ -12252,7 +12280,7 @@ __metadata:
"@types/tinycolor2": "npm:^1"
"@types/uuid": "npm:^10.0.0"
"@vitejs/plugin-react-swc": "npm:^3.7.0"
- "@vitest/coverage-istanbul": "npm:^2.0.5"
+ "@vitest/coverage-istanbul": "npm:^2.1.1"
"@xterm/addon-fit": "npm:^0.10.0"
"@xterm/addon-serialize": "npm:^0.13.0"
"@xterm/addon-web-links": "npm:^0.11.0"
@@ -12268,7 +12296,7 @@ __metadata:
electron-builder: "npm:^25.0.5"
electron-updater: "npm:6.3.4"
electron-vite: "npm:^2.3.0"
- eslint: "npm:^9.9.0"
+ eslint: "npm:^9.10.0"
eslint-config-prettier: "npm:^9.1.0"
fast-average-color: "npm:^9.4.0"
htl: "npm:^0.3.1"
@@ -12306,16 +12334,16 @@ __metadata:
tinycolor2: "npm:^1.6.0"
ts-node: "npm:^10.9.2"
tslib: "npm:^2.6.3"
- tsx: "npm:^4.19.0"
- typescript: "npm:^5.5.4"
- typescript-eslint: "npm:^8.4.0"
+ tsx: "npm:^4.19.1"
+ typescript: "npm:^5.6.2"
+ typescript-eslint: "npm:^8.5.0"
use-device-pixel-ratio: "npm:^1.1.2"
- vite: "npm:^5.4.3"
+ vite: "npm:^5.4.5"
vite-plugin-image-optimizer: "npm:^1.1.8"
vite-plugin-static-copy: "npm:^1.0.6"
vite-plugin-svgr: "npm:^4.2.0"
vite-tsconfig-paths: "npm:^5.0.1"
- vitest: "npm:^2.0.5"
+ vitest: "npm:^2.1.1"
winston: "npm:^3.14.2"
languageName: unknown
linkType: soft
@@ -12341,7 +12369,7 @@ __metadata:
languageName: node
linkType: hard
-"tinybench@npm:^2.8.0":
+"tinybench@npm:^2.9.0":
version: 2.9.0
resolution: "tinybench@npm:2.9.0"
checksum: 10c0/c3500b0f60d2eb8db65250afe750b66d51623057ee88720b7f064894a6cb7eb93360ca824a60a31ab16dab30c7b1f06efe0795b352e37914a9d4bad86386a20c
@@ -12355,6 +12383,13 @@ __metadata:
languageName: node
linkType: hard
+"tinyexec@npm:^0.3.0":
+ version: 0.3.0
+ resolution: "tinyexec@npm:0.3.0"
+ checksum: 10c0/138a4f4241aea6b6312559508468ab275a31955e66e2f57ed206e0aaabecee622624f208c5740345f0a66e33478fd065e359ed1eb1269eb6fd4fa25d44d0ba3b
+ languageName: node
+ linkType: hard
+
"tinypool@npm:^1.0.0":
version: 1.0.1
resolution: "tinypool@npm:1.0.1"
@@ -12545,9 +12580,9 @@ __metadata:
languageName: node
linkType: hard
-"tsx@npm:^4.19.0":
- version: 4.19.0
- resolution: "tsx@npm:4.19.0"
+"tsx@npm:^4.19.1":
+ version: 4.19.1
+ resolution: "tsx@npm:4.19.1"
dependencies:
esbuild: "npm:~0.23.0"
fsevents: "npm:~2.3.3"
@@ -12557,7 +12592,7 @@ __metadata:
optional: true
bin:
tsx: dist/cli.mjs
- checksum: 10c0/d14463a78067c6db84c677b79b14861de6d7f6fb0ffa5727cc500c4552459e936395a3854ad0112af0fd7b263bcedd62ce3929b036188eb10cd9902a607ffe34
+ checksum: 10c0/cbea9baf57e7406fa0ecc2c03b9bb2501ee740dc28c938f949180a646a28e5d65e7cccbfba340508923bfd45e90320ef9eef7f815cae4515b6ef2ee429edc7ee
languageName: node
linkType: hard
@@ -12615,21 +12650,21 @@ __metadata:
languageName: node
linkType: hard
-"typescript-eslint@npm:^8.4.0":
- version: 8.4.0
- resolution: "typescript-eslint@npm:8.4.0"
+"typescript-eslint@npm:^8.5.0":
+ version: 8.5.0
+ resolution: "typescript-eslint@npm:8.5.0"
dependencies:
- "@typescript-eslint/eslint-plugin": "npm:8.4.0"
- "@typescript-eslint/parser": "npm:8.4.0"
- "@typescript-eslint/utils": "npm:8.4.0"
+ "@typescript-eslint/eslint-plugin": "npm:8.5.0"
+ "@typescript-eslint/parser": "npm:8.5.0"
+ "@typescript-eslint/utils": "npm:8.5.0"
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/266ef73fdc1f7fa19228b8653d61ad143261ccd35f7d5d647092ed0e1512de2d4e3d1b9e1f2520658708cc0c1d7925c4ec97f23440c180a3bf1716e81d65123f
+ checksum: 10c0/dd92e8f5fb50bb05810a1a37a4bbb6f60761295b121f6118bc027686ebc1b3ba9e4248ab5223ed4753e1320ef6329dd2e53e8160fa4463264277f307fefefd62
languageName: node
linkType: hard
-"typescript@npm:^5.4.3, typescript@npm:^5.5.4":
+"typescript@npm:^5.4.3":
version: 5.5.4
resolution: "typescript@npm:5.5.4"
bin:
@@ -12639,7 +12674,17 @@ __metadata:
languageName: node
linkType: hard
-"typescript@patch:typescript@npm%3A^5.4.3#optional!builtin, typescript@patch:typescript@npm%3A^5.5.4#optional!builtin":
+"typescript@npm:^5.6.2":
+ version: 5.6.2
+ resolution: "typescript@npm:5.6.2"
+ bin:
+ tsc: bin/tsc
+ tsserver: bin/tsserver
+ checksum: 10c0/3ed8297a8c7c56b7fec282532503d1ac795239d06e7c4966b42d4330c6cf433a170b53bcf93a130a7f14ccc5235de5560df4f1045eb7f3550b46ebed16d3c5e5
+ languageName: node
+ linkType: hard
+
+"typescript@patch:typescript@npm%3A^5.4.3#optional!builtin":
version: 5.5.4
resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin::version=5.5.4&hash=379a07"
bin:
@@ -12649,6 +12694,16 @@ __metadata:
languageName: node
linkType: hard
+"typescript@patch:typescript@npm%3A^5.6.2#optional!builtin":
+ version: 5.6.2
+ resolution: "typescript@patch:typescript@npm%3A5.6.2#optional!builtin::version=5.6.2&hash=8c6c40"
+ bin:
+ tsc: bin/tsc
+ tsserver: bin/tsserver
+ checksum: 10c0/94eb47e130d3edd964b76da85975601dcb3604b0c848a36f63ac448d0104e93819d94c8bdf6b07c00120f2ce9c05256b8b6092d23cf5cf1c6fa911159e4d572f
+ languageName: node
+ linkType: hard
+
"ufo@npm:^1.5.3":
version: 1.5.4
resolution: "ufo@npm:1.5.4"
@@ -13000,18 +13055,17 @@ __metadata:
languageName: node
linkType: hard
-"vite-node@npm:2.0.5":
- version: 2.0.5
- resolution: "vite-node@npm:2.0.5"
+"vite-node@npm:2.1.1":
+ version: 2.1.1
+ resolution: "vite-node@npm:2.1.1"
dependencies:
cac: "npm:^6.7.14"
- debug: "npm:^4.3.5"
+ debug: "npm:^4.3.6"
pathe: "npm:^1.1.2"
- tinyrainbow: "npm:^1.2.0"
vite: "npm:^5.0.0"
bin:
vite-node: vite-node.mjs
- checksum: 10c0/affcc58ae8d45bce3e8bc3b5767acd57c24441634e2cd967cf97f4e5ed2bcead1714b60150cdf7ee153ebad47659c5cd419883207e1a95b69790331e3243749f
+ checksum: 10c0/8a8b958df3d48af915e07e7efb042ee4c036ca0b73d2c411dc29254fd3533ada0807ce5096d8339894d3e786418b7d1a9c4ae02718c6aca11b5098de2b14c336
languageName: node
linkType: hard
@@ -13113,9 +13167,9 @@ __metadata:
languageName: node
linkType: hard
-"vite@npm:^5.4.3":
- version: 5.4.3
- resolution: "vite@npm:5.4.3"
+"vite@npm:^5.4.5":
+ version: 5.4.5
+ resolution: "vite@npm:5.4.5"
dependencies:
esbuild: "npm:^0.21.3"
fsevents: "npm:~2.3.3"
@@ -13152,38 +13206,38 @@ __metadata:
optional: true
bin:
vite: bin/vite.js
- checksum: 10c0/7afe601bcba82f81980c718fc171ba8f0c45e3bffaeb7ef831b64b84e396f963c3c87818b74da4c8e817d1bce1c179f1efae3bcb14d2e94b4eb635071722c8f2
+ checksum: 10c0/89c6459452fc238cdf8e99681b30996af171c9c557af476f96408a18a639fb5a0a6ee2d2257e005b21dc284edceb604595c34920cd4a007ad18f7ebafb654c76
languageName: node
linkType: hard
-"vitest@npm:^2.0.5":
- version: 2.0.5
- resolution: "vitest@npm:2.0.5"
+"vitest@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "vitest@npm:2.1.1"
dependencies:
- "@ampproject/remapping": "npm:^2.3.0"
- "@vitest/expect": "npm:2.0.5"
- "@vitest/pretty-format": "npm:^2.0.5"
- "@vitest/runner": "npm:2.0.5"
- "@vitest/snapshot": "npm:2.0.5"
- "@vitest/spy": "npm:2.0.5"
- "@vitest/utils": "npm:2.0.5"
+ "@vitest/expect": "npm:2.1.1"
+ "@vitest/mocker": "npm:2.1.1"
+ "@vitest/pretty-format": "npm:^2.1.1"
+ "@vitest/runner": "npm:2.1.1"
+ "@vitest/snapshot": "npm:2.1.1"
+ "@vitest/spy": "npm:2.1.1"
+ "@vitest/utils": "npm:2.1.1"
chai: "npm:^5.1.1"
- debug: "npm:^4.3.5"
- execa: "npm:^8.0.1"
- magic-string: "npm:^0.30.10"
+ debug: "npm:^4.3.6"
+ magic-string: "npm:^0.30.11"
pathe: "npm:^1.1.2"
std-env: "npm:^3.7.0"
- tinybench: "npm:^2.8.0"
+ tinybench: "npm:^2.9.0"
+ tinyexec: "npm:^0.3.0"
tinypool: "npm:^1.0.0"
tinyrainbow: "npm:^1.2.0"
vite: "npm:^5.0.0"
- vite-node: "npm:2.0.5"
+ vite-node: "npm:2.1.1"
why-is-node-running: "npm:^2.3.0"
peerDependencies:
"@edge-runtime/vm": "*"
"@types/node": ^18.0.0 || >=20.0.0
- "@vitest/browser": 2.0.5
- "@vitest/ui": 2.0.5
+ "@vitest/browser": 2.1.1
+ "@vitest/ui": 2.1.1
happy-dom: "*"
jsdom: "*"
peerDependenciesMeta:
@@ -13201,7 +13255,7 @@ __metadata:
optional: true
bin:
vitest: vitest.mjs
- checksum: 10c0/b4e6cca00816bf967a8589111ded72faa12f92f94ccdd0dcd0698ffcfdfc52ec662753f66b387549c600ac699b993fd952efbd99dc57fcf4d1c69a2f1022b259
+ checksum: 10c0/77a67092338613376dadd8f6f6872383db8409402ce400ac1de48efd87a7214183e798484a3eb2310221c03554e37a00f9fdbc91e49194e7c68e009a5589f494
languageName: node
linkType: hard