chore(deps): update eslint, remove eslint-plugin-sonarjs (#38536)
- update eslint and related dependencies, `eslint-plugin-unicorn` to v72 with new rules enabled - remove `eslint-plugin-sonarjs` (mostly obsolete or slow rules) - extract shared eslint args into `ESLINT_ARGS` make variable - rewrite ignore patterns in `eslint.json.config.ts` as explicit root-relative paths: add `data` (local server data failed `lint-json`), drop `node_modules` (ignored by default) - fix a broken link in `CONTRIBUTING.md` (discovered during markdown linting with eslint, but decided to not add that yet) Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
+1
-1
@@ -111,7 +111,7 @@ If further discussion is needed, we encourage you to open a new issue instead an
|
|||||||
|
|
||||||
## Building Gitea
|
## Building Gitea
|
||||||
|
|
||||||
See [docs/setup.md](docs/setup.md) for prerequisites and [docs/development.md](docs/development.md)
|
See [docs/build-setup.md](docs/build-setup.md) for prerequisites and [docs/development.md](docs/development.md)
|
||||||
for building Gitea and the development workflow.
|
for building Gitea and the development workflow.
|
||||||
|
|
||||||
## Styleguide
|
## Styleguide
|
||||||
|
|||||||
@@ -148,6 +148,7 @@ GO_SOURCES += $(shell find $(GO_DIRS) -type f -name "*.go")
|
|||||||
GO_SOURCES += $(GENERATED_GO_DEST)
|
GO_SOURCES += $(GENERATED_GO_DEST)
|
||||||
|
|
||||||
ESLINT_CONCURRENCY ?= 2
|
ESLINT_CONCURRENCY ?= 2
|
||||||
|
ESLINT_ARGS := --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY)
|
||||||
|
|
||||||
SWAGGER_SPEC := templates/swagger/v1_json.tmpl
|
SWAGGER_SPEC := templates/swagger/v1_json.tmpl
|
||||||
SWAGGER_SPEC_INPUT := templates/swagger/v1_input.json
|
SWAGGER_SPEC_INPUT := templates/swagger/v1_input.json
|
||||||
@@ -298,12 +299,12 @@ lint-backend-fix: lint-go-fix lint-editorconfig ## lint backend files and fix is
|
|||||||
|
|
||||||
.PHONY: lint-js
|
.PHONY: lint-js
|
||||||
lint-js: node_modules ## lint js and ts files
|
lint-js: node_modules ## lint js and ts files
|
||||||
pnpm exec eslint --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY) $(ESLINT_FILES)
|
pnpm exec eslint $(ESLINT_ARGS) $(ESLINT_FILES)
|
||||||
pnpm exec vue-tsc
|
pnpm exec vue-tsc
|
||||||
|
|
||||||
.PHONY: lint-js-fix
|
.PHONY: lint-js-fix
|
||||||
lint-js-fix: node_modules ## lint js and ts files and fix issues
|
lint-js-fix: node_modules ## lint js and ts files and fix issues
|
||||||
pnpm exec eslint --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY) $(ESLINT_FILES) --fix
|
pnpm exec eslint $(ESLINT_ARGS) $(ESLINT_FILES) --fix
|
||||||
pnpm exec vue-tsc
|
pnpm exec vue-tsc
|
||||||
|
|
||||||
.PHONY: lint-css
|
.PHONY: lint-css
|
||||||
@@ -367,11 +368,11 @@ lint-yaml: .venv ## lint yaml files
|
|||||||
|
|
||||||
.PHONY: lint-json
|
.PHONY: lint-json
|
||||||
lint-json: node_modules ## lint json files
|
lint-json: node_modules ## lint json files
|
||||||
pnpm exec eslint -c eslint.json.config.ts --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY)
|
pnpm exec eslint -c eslint.json.config.ts $(ESLINT_ARGS)
|
||||||
|
|
||||||
.PHONY: lint-json-fix
|
.PHONY: lint-json-fix
|
||||||
lint-json-fix: node_modules ## lint and fix json files
|
lint-json-fix: node_modules ## lint and fix json files
|
||||||
pnpm exec eslint -c eslint.json.config.ts --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY) --fix
|
pnpm exec eslint -c eslint.json.config.ts $(ESLINT_ARGS) --fix
|
||||||
|
|
||||||
.PHONY: watch
|
.PHONY: watch
|
||||||
watch: ## watch everything and continuously rebuild
|
watch: ## watch everything and continuously rebuild
|
||||||
|
|||||||
+10
-34
@@ -3,7 +3,6 @@ import globals from 'globals';
|
|||||||
import importPlugin from 'eslint-plugin-import-x';
|
import importPlugin from 'eslint-plugin-import-x';
|
||||||
import playwright from 'eslint-plugin-playwright';
|
import playwright from 'eslint-plugin-playwright';
|
||||||
import regexp from 'eslint-plugin-regexp';
|
import regexp from 'eslint-plugin-regexp';
|
||||||
import sonarjs from 'eslint-plugin-sonarjs';
|
|
||||||
import stylistic from '@stylistic/eslint-plugin';
|
import stylistic from '@stylistic/eslint-plugin';
|
||||||
import typescriptParser from '@typescript-eslint/parser';
|
import typescriptParser from '@typescript-eslint/parser';
|
||||||
import typescriptPlugin from 'typescript-eslint';
|
import typescriptPlugin from 'typescript-eslint';
|
||||||
@@ -64,7 +63,6 @@ export default defineConfig([
|
|||||||
'gitea': {rules: {'unescaped-html-literal': unescapedHtmlLiteral}},
|
'gitea': {rules: {'unescaped-html-literal': unescapedHtmlLiteral}},
|
||||||
'import-x': importPlugin,
|
'import-x': importPlugin,
|
||||||
regexp,
|
regexp,
|
||||||
sonarjs,
|
|
||||||
unicorn,
|
unicorn,
|
||||||
wc,
|
wc,
|
||||||
},
|
},
|
||||||
@@ -570,7 +568,7 @@ export default defineConfig([
|
|||||||
'no-useless-constructor': [2],
|
'no-useless-constructor': [2],
|
||||||
'no-useless-escape': [2],
|
'no-useless-escape': [2],
|
||||||
'no-useless-rename': [2],
|
'no-useless-rename': [2],
|
||||||
'no-useless-return': [0], // handled by sonarjs/no-redundant-jump
|
'no-useless-return': [2],
|
||||||
'no-var': [2],
|
'no-var': [2],
|
||||||
'no-void': [2],
|
'no-void': [2],
|
||||||
'no-warning-comments': [0],
|
'no-warning-comments': [0],
|
||||||
@@ -676,37 +674,6 @@ export default defineConfig([
|
|||||||
'require-await': [0], // handled by @typescript-eslint/require-await
|
'require-await': [0], // handled by @typescript-eslint/require-await
|
||||||
'require-unicode-regexp': [0],
|
'require-unicode-regexp': [0],
|
||||||
'require-yield': [2],
|
'require-yield': [2],
|
||||||
'sonarjs/cognitive-complexity': [0],
|
|
||||||
'sonarjs/elseif-without-else': [0],
|
|
||||||
'sonarjs/max-switch-cases': [0],
|
|
||||||
'sonarjs/no-all-duplicated-branches': [2],
|
|
||||||
'sonarjs/no-collapsible-if': [0],
|
|
||||||
'sonarjs/no-collection-size-mischeck': [2],
|
|
||||||
'sonarjs/no-duplicate-string': [0],
|
|
||||||
'sonarjs/no-duplicated-branches': [0],
|
|
||||||
'sonarjs/no-element-overwrite': [2],
|
|
||||||
'sonarjs/no-empty-collection': [2],
|
|
||||||
'sonarjs/no-extra-arguments': [2],
|
|
||||||
'sonarjs/no-gratuitous-expressions': [2],
|
|
||||||
'sonarjs/no-identical-conditions': [0], // handled by no-dupe-else-if
|
|
||||||
'sonarjs/no-identical-expressions': [2],
|
|
||||||
'sonarjs/no-identical-functions': [2, 5],
|
|
||||||
'sonarjs/no-ignored-return': [2],
|
|
||||||
'sonarjs/no-inverted-boolean-check': [2],
|
|
||||||
'sonarjs/no-nested-switch': [0],
|
|
||||||
'sonarjs/no-nested-template-literals': [0],
|
|
||||||
'sonarjs/no-redundant-boolean': [2],
|
|
||||||
'sonarjs/no-redundant-jump': [2],
|
|
||||||
'sonarjs/no-same-line-conditional': [2],
|
|
||||||
'sonarjs/no-small-switch': [0],
|
|
||||||
'sonarjs/no-unused-collection': [2],
|
|
||||||
'sonarjs/no-use-of-empty-return-value': [2],
|
|
||||||
'sonarjs/no-useless-catch': [0], // handled by no-useless-catch
|
|
||||||
'sonarjs/non-existent-operator': [2],
|
|
||||||
'sonarjs/prefer-immediate-return': [0],
|
|
||||||
'sonarjs/prefer-object-literal': [0],
|
|
||||||
'sonarjs/prefer-single-boolean-return': [0],
|
|
||||||
'sonarjs/prefer-while': [2],
|
|
||||||
'sort-imports': [0],
|
'sort-imports': [0],
|
||||||
'sort-keys': [0],
|
'sort-keys': [0],
|
||||||
'sort-vars': [0],
|
'sort-vars': [0],
|
||||||
@@ -813,6 +780,8 @@ export default defineConfig([
|
|||||||
'unicorn/no-manually-wrapped-comments': [0], // too opinionated
|
'unicorn/no-manually-wrapped-comments': [0], // too opinionated
|
||||||
'unicorn/no-mismatched-map-key': [2],
|
'unicorn/no-mismatched-map-key': [2],
|
||||||
'unicorn/no-misrefactored-assignment': [2],
|
'unicorn/no-misrefactored-assignment': [2],
|
||||||
|
'unicorn/no-missing-local-resource': [0], // only applies to html/css/markdown languages
|
||||||
|
'unicorn/no-multiple-promise-resolver-calls': [2],
|
||||||
'unicorn/no-named-default': [2],
|
'unicorn/no-named-default': [2],
|
||||||
'unicorn/no-negated-array-predicate': [2],
|
'unicorn/no-negated-array-predicate': [2],
|
||||||
'unicorn/no-negated-comparison': [2],
|
'unicorn/no-negated-comparison': [2],
|
||||||
@@ -831,6 +800,7 @@ export default defineConfig([
|
|||||||
'unicorn/no-redundant-comparison': [2],
|
'unicorn/no-redundant-comparison': [2],
|
||||||
'unicorn/no-return-array-push': [2],
|
'unicorn/no-return-array-push': [2],
|
||||||
'unicorn/no-selector-as-dom-name': [2],
|
'unicorn/no-selector-as-dom-name': [2],
|
||||||
|
'unicorn/no-shorthand-property-overrides': [0], // only applies to css language
|
||||||
'unicorn/no-single-promise-in-promise-methods': [2],
|
'unicorn/no-single-promise-in-promise-methods': [2],
|
||||||
'unicorn/no-static-only-class': [2],
|
'unicorn/no-static-only-class': [2],
|
||||||
'unicorn/no-subtraction-comparison': [2],
|
'unicorn/no-subtraction-comparison': [2],
|
||||||
@@ -839,6 +809,7 @@ export default defineConfig([
|
|||||||
'unicorn/no-this-outside-of-class': [0], // gitea uses `this` in non-class functions
|
'unicorn/no-this-outside-of-class': [0], // gitea uses `this` in non-class functions
|
||||||
'unicorn/no-top-level-assignment-in-function': [0],
|
'unicorn/no-top-level-assignment-in-function': [0],
|
||||||
'unicorn/no-top-level-side-effects': [0],
|
'unicorn/no-top-level-side-effects': [0],
|
||||||
|
'unicorn/no-transition-all': [2],
|
||||||
'unicorn/no-typeof-undefined': [2],
|
'unicorn/no-typeof-undefined': [2],
|
||||||
'unicorn/no-uncalled-method': [2],
|
'unicorn/no-uncalled-method': [2],
|
||||||
'unicorn/no-undeclared-class-members': [2],
|
'unicorn/no-undeclared-class-members': [2],
|
||||||
@@ -853,6 +824,7 @@ export default defineConfig([
|
|||||||
'unicorn/no-unnecessary-polyfills': [2],
|
'unicorn/no-unnecessary-polyfills': [2],
|
||||||
'unicorn/no-unnecessary-slice-end': [2],
|
'unicorn/no-unnecessary-slice-end': [2],
|
||||||
'unicorn/no-unnecessary-splice': [2],
|
'unicorn/no-unnecessary-splice': [2],
|
||||||
|
'unicorn/no-unnecessary-string-trim': [2],
|
||||||
'unicorn/no-unreadable-array-destructuring': [0],
|
'unicorn/no-unreadable-array-destructuring': [0],
|
||||||
'unicorn/no-unreadable-for-of-expression': [0],
|
'unicorn/no-unreadable-for-of-expression': [0],
|
||||||
'unicorn/no-unreadable-iife': [0],
|
'unicorn/no-unreadable-iife': [0],
|
||||||
@@ -880,6 +852,7 @@ export default defineConfig([
|
|||||||
'unicorn/no-useless-logical-operand': [2],
|
'unicorn/no-useless-logical-operand': [2],
|
||||||
'unicorn/no-useless-override': [2],
|
'unicorn/no-useless-override': [2],
|
||||||
'unicorn/no-useless-promise-resolve-reject': [2],
|
'unicorn/no-useless-promise-resolve-reject': [2],
|
||||||
|
'unicorn/no-useless-re-export': [2],
|
||||||
'unicorn/no-useless-recursion': [0],
|
'unicorn/no-useless-recursion': [0],
|
||||||
'unicorn/no-useless-spread': [2],
|
'unicorn/no-useless-spread': [2],
|
||||||
'unicorn/no-useless-switch-case': [2],
|
'unicorn/no-useless-switch-case': [2],
|
||||||
@@ -929,6 +902,7 @@ export default defineConfig([
|
|||||||
'unicorn/prefer-else-if': [2],
|
'unicorn/prefer-else-if': [2],
|
||||||
'unicorn/prefer-error-is-error': [0],
|
'unicorn/prefer-error-is-error': [0],
|
||||||
'unicorn/prefer-event-target': [2],
|
'unicorn/prefer-event-target': [2],
|
||||||
|
'unicorn/prefer-explicit-viewport-units': [0], // only applies to css language
|
||||||
'unicorn/prefer-export-from': [0],
|
'unicorn/prefer-export-from': [0],
|
||||||
'unicorn/prefer-flat-math-min-max': [2],
|
'unicorn/prefer-flat-math-min-max': [2],
|
||||||
'unicorn/prefer-get-or-insert-computed': [2],
|
'unicorn/prefer-get-or-insert-computed': [2],
|
||||||
@@ -1009,6 +983,7 @@ export default defineConfig([
|
|||||||
'unicorn/prefer-switch': [0],
|
'unicorn/prefer-switch': [0],
|
||||||
'unicorn/prefer-temporal': [0],
|
'unicorn/prefer-temporal': [0],
|
||||||
'unicorn/prefer-ternary': [0],
|
'unicorn/prefer-ternary': [0],
|
||||||
|
'unicorn/prefer-then-catch': [2],
|
||||||
'unicorn/prefer-toggle-attribute': [2],
|
'unicorn/prefer-toggle-attribute': [2],
|
||||||
'unicorn/prefer-top-level-await': [0],
|
'unicorn/prefer-top-level-await': [0],
|
||||||
'unicorn/prefer-type-error': [0],
|
'unicorn/prefer-type-error': [0],
|
||||||
@@ -1025,6 +1000,7 @@ export default defineConfig([
|
|||||||
'unicorn/require-array-join-separator': [2],
|
'unicorn/require-array-join-separator': [2],
|
||||||
'unicorn/require-array-sort-compare': [0],
|
'unicorn/require-array-sort-compare': [0],
|
||||||
'unicorn/require-css-escape': [2],
|
'unicorn/require-css-escape': [2],
|
||||||
|
'unicorn/require-frontmatter-fields': [0], // only applies to markdown language
|
||||||
'unicorn/require-module-attributes': [2],
|
'unicorn/require-module-attributes': [2],
|
||||||
'unicorn/require-module-specifiers': [0],
|
'unicorn/require-module-specifiers': [0],
|
||||||
'unicorn/require-number-to-fixed-digits-argument': [2],
|
'unicorn/require-number-to-fixed-digits-argument': [2],
|
||||||
|
|||||||
@@ -3,9 +3,10 @@ import json from '@eslint/json';
|
|||||||
|
|
||||||
export default defineConfig([
|
export default defineConfig([
|
||||||
globalIgnores([
|
globalIgnores([
|
||||||
'**/.venv',
|
'public',
|
||||||
'**/node_modules',
|
'custom/public',
|
||||||
'**/public',
|
'data',
|
||||||
|
'.venv',
|
||||||
]),
|
]),
|
||||||
{
|
{
|
||||||
files: ['**/*.json'],
|
files: ['**/*.json'],
|
||||||
|
|||||||
+5
-6
@@ -87,16 +87,15 @@
|
|||||||
"@types/swagger-ui-dist": "3.30.6",
|
"@types/swagger-ui-dist": "3.30.6",
|
||||||
"@types/throttle-debounce": "5.0.2",
|
"@types/throttle-debounce": "5.0.2",
|
||||||
"@types/toastify-js": "1.12.4",
|
"@types/toastify-js": "1.12.4",
|
||||||
"@typescript-eslint/parser": "8.63.0",
|
"@typescript-eslint/parser": "8.64.0",
|
||||||
"@vitejs/plugin-vue": "6.0.7",
|
"@vitejs/plugin-vue": "6.0.7",
|
||||||
"@vitest/eslint-plugin": "1.6.22",
|
"@vitest/eslint-plugin": "1.6.23",
|
||||||
"eslint": "10.6.0",
|
"eslint": "10.7.0",
|
||||||
"eslint-import-resolver-typescript": "4.4.5",
|
"eslint-import-resolver-typescript": "4.4.5",
|
||||||
"eslint-plugin-import-x": "4.17.1",
|
"eslint-plugin-import-x": "4.17.1",
|
||||||
"eslint-plugin-playwright": "2.10.5",
|
"eslint-plugin-playwright": "2.10.5",
|
||||||
"eslint-plugin-regexp": "3.1.1",
|
"eslint-plugin-regexp": "3.1.1",
|
||||||
"eslint-plugin-sonarjs": "4.1.0",
|
"eslint-plugin-unicorn": "72.0.0",
|
||||||
"eslint-plugin-unicorn": "71.1.0",
|
|
||||||
"eslint-plugin-vue": "10.9.2",
|
"eslint-plugin-vue": "10.9.2",
|
||||||
"eslint-plugin-vue-scoped-css": "3.1.1",
|
"eslint-plugin-vue-scoped-css": "3.1.1",
|
||||||
"eslint-plugin-wc": "3.1.0",
|
"eslint-plugin-wc": "3.1.0",
|
||||||
@@ -114,7 +113,7 @@
|
|||||||
"stylelint-value-no-unknown-custom-properties": "6.1.1",
|
"stylelint-value-no-unknown-custom-properties": "6.1.1",
|
||||||
"svgo": "4.0.1",
|
"svgo": "4.0.1",
|
||||||
"typescript": "6.0.3",
|
"typescript": "6.0.3",
|
||||||
"typescript-eslint": "8.63.0",
|
"typescript-eslint": "8.64.0",
|
||||||
"updates": "17.18.2",
|
"updates": "17.18.2",
|
||||||
"vitest": "4.1.10",
|
"vitest": "4.1.10",
|
||||||
"vue-tsc": "3.3.7"
|
"vue-tsc": "3.3.7"
|
||||||
|
|||||||
Generated
+219
-209
@@ -206,7 +206,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@eslint-community/eslint-plugin-eslint-comments':
|
'@eslint-community/eslint-plugin-eslint-comments':
|
||||||
specifier: 4.7.2
|
specifier: 4.7.2
|
||||||
version: 4.7.2(eslint@10.6.0(jiti@2.7.0))
|
version: 4.7.2(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@eslint/json':
|
'@eslint/json':
|
||||||
specifier: 2.0.1
|
specifier: 2.0.1
|
||||||
version: 2.0.1
|
version: 2.0.1
|
||||||
@@ -215,7 +215,7 @@ importers:
|
|||||||
version: 1.61.1
|
version: 1.61.1
|
||||||
'@stylistic/eslint-plugin':
|
'@stylistic/eslint-plugin':
|
||||||
specifier: 5.10.0
|
specifier: 5.10.0
|
||||||
version: 5.10.0(eslint@10.6.0(jiti@2.7.0))
|
version: 5.10.0(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@stylistic/stylelint-plugin':
|
'@stylistic/stylelint-plugin':
|
||||||
specifier: 5.2.1
|
specifier: 5.2.1
|
||||||
version: 5.2.1(stylelint@17.14.0(typescript@6.0.3))
|
version: 5.2.1(stylelint@17.14.0(typescript@6.0.3))
|
||||||
@@ -247,41 +247,38 @@ importers:
|
|||||||
specifier: 1.12.4
|
specifier: 1.12.4
|
||||||
version: 1.12.4
|
version: 1.12.4
|
||||||
'@typescript-eslint/parser':
|
'@typescript-eslint/parser':
|
||||||
specifier: 8.63.0
|
specifier: 8.64.0
|
||||||
version: 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
version: 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
'@vitest/eslint-plugin':
|
'@vitest/eslint-plugin':
|
||||||
specifier: 1.6.22
|
specifier: 1.6.23
|
||||||
version: 1.6.22(@typescript-eslint/eslint-plugin@8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.1)(happy-dom@20.10.6)(jsdom@20.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)))
|
version: 1.6.23(@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.1)(happy-dom@20.10.6)(jsdom@20.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)))
|
||||||
eslint:
|
eslint:
|
||||||
specifier: 10.6.0
|
specifier: 10.7.0
|
||||||
version: 10.6.0(jiti@2.7.0)
|
version: 10.7.0(jiti@2.7.0)
|
||||||
eslint-import-resolver-typescript:
|
eslint-import-resolver-typescript:
|
||||||
specifier: 4.4.5
|
specifier: 4.4.5
|
||||||
version: 4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.6.0(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@10.6.0(jiti@2.7.0))
|
version: 4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint-plugin-import-x:
|
eslint-plugin-import-x:
|
||||||
specifier: 4.17.1
|
specifier: 4.17.1
|
||||||
version: 4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.6.0(jiti@2.7.0))
|
version: 4.17.1(@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint-plugin-playwright:
|
eslint-plugin-playwright:
|
||||||
specifier: 2.10.5
|
specifier: 2.10.5
|
||||||
version: 2.10.5(eslint@10.6.0(jiti@2.7.0))
|
version: 2.10.5(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint-plugin-regexp:
|
eslint-plugin-regexp:
|
||||||
specifier: 3.1.1
|
specifier: 3.1.1
|
||||||
version: 3.1.1(eslint@10.6.0(jiti@2.7.0))
|
version: 3.1.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint-plugin-sonarjs:
|
|
||||||
specifier: 4.1.0
|
|
||||||
version: 4.1.0(eslint@10.6.0(jiti@2.7.0))
|
|
||||||
eslint-plugin-unicorn:
|
eslint-plugin-unicorn:
|
||||||
specifier: 71.1.0
|
specifier: 72.0.0
|
||||||
version: 71.1.0(eslint@10.6.0(jiti@2.7.0))
|
version: 72.0.0(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint-plugin-vue:
|
eslint-plugin-vue:
|
||||||
specifier: 10.9.2
|
specifier: 10.9.2
|
||||||
version: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0)))(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.6.0(jiti@2.7.0)))
|
version: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0)))(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.7.0(jiti@2.7.0)))
|
||||||
eslint-plugin-vue-scoped-css:
|
eslint-plugin-vue-scoped-css:
|
||||||
specifier: 3.1.1
|
specifier: 3.1.1
|
||||||
version: 3.1.1(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.6.0(jiti@2.7.0)))
|
version: 3.1.1(eslint@10.7.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.7.0(jiti@2.7.0)))
|
||||||
eslint-plugin-wc:
|
eslint-plugin-wc:
|
||||||
specifier: 3.1.0
|
specifier: 3.1.0
|
||||||
version: 3.1.0(eslint@10.6.0(jiti@2.7.0))
|
version: 3.1.0(eslint@10.7.0(jiti@2.7.0))
|
||||||
globals:
|
globals:
|
||||||
specifier: 17.7.0
|
specifier: 17.7.0
|
||||||
version: 17.7.0
|
version: 17.7.0
|
||||||
@@ -325,8 +322,8 @@ importers:
|
|||||||
specifier: 6.0.3
|
specifier: 6.0.3
|
||||||
version: 6.0.3
|
version: 6.0.3
|
||||||
typescript-eslint:
|
typescript-eslint:
|
||||||
specifier: 8.63.0
|
specifier: 8.64.0
|
||||||
version: 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
version: 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
updates:
|
updates:
|
||||||
specifier: 17.18.2
|
specifier: 17.18.2
|
||||||
version: 17.18.2
|
version: 17.18.2
|
||||||
@@ -770,6 +767,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
|
resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||||
|
|
||||||
|
'@eslint/css-tree@4.0.4':
|
||||||
|
resolution: {integrity: sha512-nxMparyhqVWQvadx9x8dIfubfIPOE+X2b2waua8fzdnM9vdp9rgVtwEZlG0TmCwEUz/d/f40fzvO/eqBwdxz0A==}
|
||||||
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||||
|
|
||||||
'@eslint/json@2.0.1':
|
'@eslint/json@2.0.1':
|
||||||
resolution: {integrity: sha512-Thz2j92ceUF3Bq/0TuWb3MWn3Z+Cwc8k5ptF0fakl2D4Mp8mSx07Xr1aQM4R5NoihzarWUdxfOmQ8DesGy4jOg==}
|
resolution: {integrity: sha512-Thz2j92ceUF3Bq/0TuWb3MWn3Z+Cwc8k5ptF0fakl2D4Mp8mSx07Xr1aQM4R5NoihzarWUdxfOmQ8DesGy4jOg==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||||
@@ -1364,16 +1365,16 @@ packages:
|
|||||||
'@types/yargs@17.0.35':
|
'@types/yargs@17.0.35':
|
||||||
resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
|
resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.63.0':
|
'@typescript-eslint/eslint-plugin@8.64.0':
|
||||||
resolution: {integrity: sha512-rvwSgqT+DHpWdzfSzPatRLm02a0GlESt++9iy3hLCDY4BgkaLcl8LBi9Yh7XGFBpwcBE/K3024QuXWTpbz4FfQ==}
|
resolution: {integrity: sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==}
|
||||||
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.63.0
|
'@typescript-eslint/parser': ^8.64.0
|
||||||
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
typescript: '>=4.8.4 <6.1.0'
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.63.0':
|
'@typescript-eslint/parser@8.64.0':
|
||||||
resolution: {integrity: sha512-gwh4gvvlaVDKKxyfxMG+Gnu1u9X0OQBwyGLkbwB65dIzBKnxeRiJlNFqlI3zwVhNXJIs6qV7mlFCn/BIajlVig==}
|
resolution: {integrity: sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==}
|
||||||
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 || ^10.0.0
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
@@ -1385,18 +1386,34 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=4.8.4 <6.1.0'
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
|
'@typescript-eslint/project-service@8.64.0':
|
||||||
|
resolution: {integrity: sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
peerDependencies:
|
||||||
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
'@typescript-eslint/scope-manager@8.63.0':
|
'@typescript-eslint/scope-manager@8.63.0':
|
||||||
resolution: {integrity: sha512-uUyfMWCnDSN8bCpcrY8nGP2BLkQ9Xn0GsipcONcpIDWhwhO4ZSyHvyS14U3X75mzxWxL3I2UZIrenTzdzcJO8A==}
|
resolution: {integrity: sha512-uUyfMWCnDSN8bCpcrY8nGP2BLkQ9Xn0GsipcONcpIDWhwhO4ZSyHvyS14U3X75mzxWxL3I2UZIrenTzdzcJO8A==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
|
'@typescript-eslint/scope-manager@8.64.0':
|
||||||
|
resolution: {integrity: sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@typescript-eslint/tsconfig-utils@8.63.0':
|
'@typescript-eslint/tsconfig-utils@8.63.0':
|
||||||
resolution: {integrity: sha512-sUAbkulqBAsncKnbRP3+7CtQFRKicexnj7ZwNC6ddCR7EmrXvjvdCYMJbUIqMd6lwoEriZjwLo08aS5tSjVMHg==}
|
resolution: {integrity: sha512-sUAbkulqBAsncKnbRP3+7CtQFRKicexnj7ZwNC6ddCR7EmrXvjvdCYMJbUIqMd6lwoEriZjwLo08aS5tSjVMHg==}
|
||||||
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 <6.1.0'
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.63.0':
|
'@typescript-eslint/tsconfig-utils@8.64.0':
|
||||||
resolution: {integrity: sha512-Nzzh/OGxVCOjObjaj1CQF2RUasyYy2Jfuh+zZ3PjLzG2fYRriAiZLib9UKtO+CpQAS3YHiAS+ckZDclwqI1TPA==}
|
resolution: {integrity: sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
peerDependencies:
|
||||||
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
|
'@typescript-eslint/type-utils@8.64.0':
|
||||||
|
resolution: {integrity: sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==}
|
||||||
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 || ^10.0.0
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
@@ -1406,12 +1423,22 @@ packages:
|
|||||||
resolution: {integrity: sha512-xyLtl9DUBBFrcJS4x2pIqGLH68/tC2uOa4Z7pUteW09D3bXnnXUom4dyPikzWgB7llmIc1zoeI3aoUdC4rPK/Q==}
|
resolution: {integrity: sha512-xyLtl9DUBBFrcJS4x2pIqGLH68/tC2uOa4Z7pUteW09D3bXnnXUom4dyPikzWgB7llmIc1zoeI3aoUdC4rPK/Q==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
|
'@typescript-eslint/types@8.64.0':
|
||||||
|
resolution: {integrity: sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@typescript-eslint/typescript-estree@8.63.0':
|
'@typescript-eslint/typescript-estree@8.63.0':
|
||||||
resolution: {integrity: sha512-ygBkU+B7ex5UI/gKhaqexWev79uISfIv7XQCRNYO/jmD8rGLPyWLAb3KMRT6nd8Gt9bmUBi9+iX6tBdYfOY81Q==}
|
resolution: {integrity: sha512-ygBkU+B7ex5UI/gKhaqexWev79uISfIv7XQCRNYO/jmD8rGLPyWLAb3KMRT6nd8Gt9bmUBi9+iX6tBdYfOY81Q==}
|
||||||
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 <6.1.0'
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
|
'@typescript-eslint/typescript-estree@8.64.0':
|
||||||
|
resolution: {integrity: sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
peerDependencies:
|
||||||
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.63.0':
|
'@typescript-eslint/utils@8.63.0':
|
||||||
resolution: {integrity: sha512-fUKaeAvrTuQg/Tgt3nliAUSZHJM6DlCcfyEmxCvlX8kieWSStBX+5O5Fnidtc3i2JrH+9c/GL4RY2iasd/GPTA==}
|
resolution: {integrity: sha512-fUKaeAvrTuQg/Tgt3nliAUSZHJM6DlCcfyEmxCvlX8kieWSStBX+5O5Fnidtc3i2JrH+9c/GL4RY2iasd/GPTA==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
@@ -1419,10 +1446,21 @@ packages:
|
|||||||
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
typescript: '>=4.8.4 <6.1.0'
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
|
'@typescript-eslint/utils@8.64.0':
|
||||||
|
resolution: {integrity: sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
peerDependencies:
|
||||||
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
'@typescript-eslint/visitor-keys@8.63.0':
|
'@typescript-eslint/visitor-keys@8.63.0':
|
||||||
resolution: {integrity: sha512-UexrHGnGTpbuQHct2ExOc2ZcFbGUS9FOesCxxqdBGcpI1BxYu/LZ6U8Aq6/72XtF/qRBk9nhuGHFJIXXMhPMdw==}
|
resolution: {integrity: sha512-UexrHGnGTpbuQHct2ExOc2ZcFbGUS9FOesCxxqdBGcpI1BxYu/LZ6U8Aq6/72XtF/qRBk9nhuGHFJIXXMhPMdw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
|
'@typescript-eslint/visitor-keys@8.64.0':
|
||||||
|
resolution: {integrity: sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
||||||
resolution: {integrity: sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==}
|
resolution: {integrity: sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
@@ -1553,8 +1591,8 @@ packages:
|
|||||||
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
|
|
||||||
'@vitest/eslint-plugin@1.6.22':
|
'@vitest/eslint-plugin@1.6.23':
|
||||||
resolution: {integrity: sha512-SDHPcido/3V5NdQh1rmOIMTHSixtjUBdV3a/8aE/A3Iwx/EZtVuLRC+e0g1uenh4Yd1fjps0JIN5HUNmhdIpQQ==}
|
resolution: {integrity: sha512-CbrXxQpIUMbeyylGlxaxTgnWYM44et4Nx58swl7+vrTyC9Ttx+hQoy8BGCregbbZ08K5qFhRHeoad1VvERUbkg==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@typescript-eslint/eslint-plugin': '*'
|
'@typescript-eslint/eslint-plugin': '*'
|
||||||
@@ -1761,11 +1799,6 @@ packages:
|
|||||||
base64-js@1.5.1:
|
base64-js@1.5.1:
|
||||||
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
||||||
|
|
||||||
baseline-browser-mapping@2.10.33:
|
|
||||||
resolution: {integrity: sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==}
|
|
||||||
engines: {node: '>=6.0.0'}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
baseline-browser-mapping@2.10.43:
|
baseline-browser-mapping@2.10.43:
|
||||||
resolution: {integrity: sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==}
|
resolution: {integrity: sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
@@ -1789,11 +1822,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
browserslist@4.28.2:
|
|
||||||
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
|
|
||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
browserslist@4.28.6:
|
browserslist@4.28.6:
|
||||||
resolution: {integrity: sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==}
|
resolution: {integrity: sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==}
|
||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
@@ -1806,18 +1834,10 @@ packages:
|
|||||||
buffer@5.7.1:
|
buffer@5.7.1:
|
||||||
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
||||||
|
|
||||||
builtin-modules@3.3.0:
|
|
||||||
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
|
|
||||||
engines: {node: '>=6'}
|
|
||||||
|
|
||||||
builtin-modules@5.2.0:
|
builtin-modules@5.2.0:
|
||||||
resolution: {integrity: sha512-02yxLeyxF4dNl6SlY6/5HfRSrSdZ/sCPoxy2kZNP5dZZX8LSAD9aE2gtJIUgWrsQTiMPl3mxESyrobSwvRGisQ==}
|
resolution: {integrity: sha512-02yxLeyxF4dNl6SlY6/5HfRSrSdZ/sCPoxy2kZNP5dZZX8LSAD9aE2gtJIUgWrsQTiMPl3mxESyrobSwvRGisQ==}
|
||||||
engines: {node: '>=18.20'}
|
engines: {node: '>=18.20'}
|
||||||
|
|
||||||
bytes@3.1.2:
|
|
||||||
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
||||||
engines: {node: '>= 0.8'}
|
|
||||||
|
|
||||||
cacheable@2.3.5:
|
cacheable@2.3.5:
|
||||||
resolution: {integrity: sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==}
|
resolution: {integrity: sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==}
|
||||||
|
|
||||||
@@ -1841,9 +1861,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001793:
|
|
||||||
resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
|
|
||||||
|
|
||||||
caniuse-lite@1.0.30001805:
|
caniuse-lite@1.0.30001805:
|
||||||
resolution: {integrity: sha512-52noaS3DubycKSXaU30TwPGIp+POyQSUVa5jBEq3vkRkY0kjyb3LQgvhU6WGyCcyXqVLWO0Cw0Q6BSdD0kUfVA==}
|
resolution: {integrity: sha512-52noaS3DubycKSXaU30TwPGIp+POyQSUVa5jBEq3vkRkY0kjyb3LQgvhU6WGyCcyXqVLWO0Cw0Q6BSdD0kUfVA==}
|
||||||
|
|
||||||
@@ -2312,9 +2329,6 @@ packages:
|
|||||||
easymde@2.21.0:
|
easymde@2.21.0:
|
||||||
resolution: {integrity: sha512-5uE7I/DEN8gvGRwxaqAv7h1PMEK2ykNXVX5zL0dK3nCYROGja3AMbdQz8eCEELnfvCfy7tRkTmLuvyJG8uSWjQ==}
|
resolution: {integrity: sha512-5uE7I/DEN8gvGRwxaqAv7h1PMEK2ykNXVX5zL0dK3nCYROGja3AMbdQz8eCEELnfvCfy7tRkTmLuvyJG8uSWjQ==}
|
||||||
|
|
||||||
electron-to-chromium@1.5.364:
|
|
||||||
resolution: {integrity: sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==}
|
|
||||||
|
|
||||||
electron-to-chromium@1.5.389:
|
electron-to-chromium@1.5.389:
|
||||||
resolution: {integrity: sha512-cEto7aeOqBfU1D+c5py5pE+ooscKE75JifxLBdFUZsqAxRS6y7kebtxAZvICszSl05gPjYHDTjY+lXpyGvpJbg==}
|
resolution: {integrity: sha512-cEto7aeOqBfU1D+c5py5pE+ooscKE75JifxLBdFUZsqAxRS6y7kebtxAZvICszSl05gPjYHDTjY+lXpyGvpJbg==}
|
||||||
|
|
||||||
@@ -2480,13 +2494,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=9.38.0'
|
eslint: '>=9.38.0'
|
||||||
|
|
||||||
eslint-plugin-sonarjs@4.1.0:
|
eslint-plugin-unicorn@72.0.0:
|
||||||
resolution: {integrity: sha512-rh+FlVz0yfd2RNIb6WqSkuGh0addX/Qi5scwQ5FphXDFrM6fZKcxP1+attJ78yUKcyYfiu6MTaISPpAFPzqRJw==}
|
resolution: {integrity: sha512-hqO6ksoOHO+ZhdseTuKRVQbx9U7PRO/cv8qAR1mctwzdVO2hYud8uS9luAhp43RJgziYgHAph8eHyipT8GL0ng==}
|
||||||
peerDependencies:
|
|
||||||
eslint: ^8.0.0 || ^9.0.0 || ^10.0.0
|
|
||||||
|
|
||||||
eslint-plugin-unicorn@71.1.0:
|
|
||||||
resolution: {integrity: sha512-dn3YmR3qLLUeYyo/os3ubZ7UHQJ1WbBAgC9cIhnLTyMj9J6kivuc2U1fCmYetLexUlTDVYtBqhjSj/VaebTe6Q==}
|
|
||||||
engines: {node: '>=22'}
|
engines: {node: '>=22'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=10.4'
|
eslint: '>=10.4'
|
||||||
@@ -2540,8 +2549,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||||
|
|
||||||
eslint@10.6.0:
|
eslint@10.7.0:
|
||||||
resolution: {integrity: sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==}
|
resolution: {integrity: sha512-GVTD7s1vdIl6UYvAfriOPeY1Df8LIZjfofLvHwde+erDHGGuHyuM6xoxRxmHiebhYuD2p1vN4wWh0XzPARSGDQ==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -2685,9 +2694,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
|
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
functional-red-black-tree@1.0.1:
|
|
||||||
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
|
|
||||||
|
|
||||||
functions-have-names@1.2.3:
|
functions-have-names@1.2.3:
|
||||||
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
||||||
|
|
||||||
@@ -3121,10 +3127,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
|
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
jsx-ast-utils-x@0.1.0:
|
|
||||||
resolution: {integrity: sha512-eQQBjBnsVtGacsG9uJNB8qOr3yA8rga4wAaGG1qRcBzSIvfhERLrWxMAM1hp5fcS6Abo8M4+bUBTekYR0qTPQw==}
|
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
||||||
|
|
||||||
katex@0.16.47:
|
katex@0.16.47:
|
||||||
resolution: {integrity: sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==}
|
resolution: {integrity: sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -3250,9 +3252,6 @@ packages:
|
|||||||
lodash-es@4.18.1:
|
lodash-es@4.18.1:
|
||||||
resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
|
resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
|
||||||
|
|
||||||
lodash.merge@4.6.2:
|
|
||||||
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
||||||
|
|
||||||
lodash.truncate@4.4.2:
|
lodash.truncate@4.4.2:
|
||||||
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
|
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
|
||||||
|
|
||||||
@@ -3303,6 +3302,9 @@ packages:
|
|||||||
mdn-data@2.27.1:
|
mdn-data@2.27.1:
|
||||||
resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
|
resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
|
||||||
|
|
||||||
|
mdn-data@2.28.1:
|
||||||
|
resolution: {integrity: sha512-U9w+PzSZ00Z5m9rZ5ARVFL5xOfuCHdKYi/1RRwDCJsboFgJDNT3zT6PIPD7mZQYaQLhsZM3GfDRgSMRHhSmVng==}
|
||||||
|
|
||||||
mdurl@2.0.0:
|
mdurl@2.0.0:
|
||||||
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
|
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
|
||||||
|
|
||||||
@@ -3464,10 +3466,6 @@ packages:
|
|||||||
encoding:
|
encoding:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
node-releases@2.0.46:
|
|
||||||
resolution: {integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==}
|
|
||||||
engines: {node: '>=18'}
|
|
||||||
|
|
||||||
node-releases@2.0.51:
|
node-releases@2.0.51:
|
||||||
resolution: {integrity: sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==}
|
resolution: {integrity: sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
@@ -4209,8 +4207,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==}
|
resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
typescript-eslint@8.63.0:
|
typescript-eslint@8.64.0:
|
||||||
resolution: {integrity: sha512-xgwXyzG4sK9ALkBxbyGkTMMOS+imnW65iPhxCQMK83KhxyoDNW7l+IDqEf9vMdoUidHpOoS967RCq4eMiTexwQ==}
|
resolution: {integrity: sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==}
|
||||||
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 || ^10.0.0
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
@@ -4989,15 +4987,15 @@ snapshots:
|
|||||||
'@esbuild/win32-x64@0.28.1':
|
'@esbuild/win32-x64@0.28.1':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.6.0(jiti@2.7.0))':
|
'@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.7.0(jiti@2.7.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
escape-string-regexp: 4.0.0
|
escape-string-regexp: 4.0.0
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
ignore: 7.0.5
|
ignore: 7.0.5
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(jiti@2.7.0))':
|
'@eslint-community/eslint-utils@4.9.1(eslint@10.7.0(jiti@2.7.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-visitor-keys: 3.4.3
|
eslint-visitor-keys: 3.4.3
|
||||||
|
|
||||||
'@eslint-community/regexpp@4.12.2': {}
|
'@eslint-community/regexpp@4.12.2': {}
|
||||||
@@ -5018,6 +5016,11 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/json-schema': 7.0.15
|
'@types/json-schema': 7.0.15
|
||||||
|
|
||||||
|
'@eslint/css-tree@4.0.4':
|
||||||
|
dependencies:
|
||||||
|
mdn-data: 2.28.1
|
||||||
|
source-map-js: 1.2.1
|
||||||
|
|
||||||
'@eslint/json@2.0.1':
|
'@eslint/json@2.0.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint/core': 1.2.1
|
'@eslint/core': 1.2.1
|
||||||
@@ -5407,11 +5410,11 @@ snapshots:
|
|||||||
|
|
||||||
'@standard-schema/spec@1.1.0': {}
|
'@standard-schema/spec@1.1.0': {}
|
||||||
|
|
||||||
'@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0))':
|
'@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@typescript-eslint/types': 8.63.0
|
'@typescript-eslint/types': 8.63.0
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.1
|
||||||
espree: 10.4.0
|
espree: 10.4.0
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
@@ -5647,15 +5650,15 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/yargs-parser': 21.0.3
|
'@types/yargs-parser': 21.0.3
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)':
|
'@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/regexpp': 4.12.2
|
||||||
'@typescript-eslint/parser': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
'@typescript-eslint/scope-manager': 8.63.0
|
'@typescript-eslint/scope-manager': 8.64.0
|
||||||
'@typescript-eslint/type-utils': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
'@typescript-eslint/utils': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.63.0
|
'@typescript-eslint/visitor-keys': 8.64.0
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
ignore: 7.0.5
|
ignore: 7.0.5
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
ts-api-utils: 2.5.0(typescript@6.0.3)
|
ts-api-utils: 2.5.0(typescript@6.0.3)
|
||||||
@@ -5663,14 +5666,14 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)':
|
'@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/scope-manager': 8.63.0
|
'@typescript-eslint/scope-manager': 8.64.0
|
||||||
'@typescript-eslint/types': 8.63.0
|
'@typescript-eslint/types': 8.64.0
|
||||||
'@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
|
'@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.63.0
|
'@typescript-eslint/visitor-keys': 8.64.0
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -5684,22 +5687,40 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
'@typescript-eslint/project-service@8.64.0(typescript@6.0.3)':
|
||||||
|
dependencies:
|
||||||
|
'@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3)
|
||||||
|
'@typescript-eslint/types': 8.64.0
|
||||||
|
debug: 4.4.3
|
||||||
|
typescript: 6.0.3
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/scope-manager@8.63.0':
|
'@typescript-eslint/scope-manager@8.63.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.63.0
|
'@typescript-eslint/types': 8.63.0
|
||||||
'@typescript-eslint/visitor-keys': 8.63.0
|
'@typescript-eslint/visitor-keys': 8.63.0
|
||||||
|
|
||||||
|
'@typescript-eslint/scope-manager@8.64.0':
|
||||||
|
dependencies:
|
||||||
|
'@typescript-eslint/types': 8.64.0
|
||||||
|
'@typescript-eslint/visitor-keys': 8.64.0
|
||||||
|
|
||||||
'@typescript-eslint/tsconfig-utils@8.63.0(typescript@6.0.3)':
|
'@typescript-eslint/tsconfig-utils@8.63.0(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)':
|
'@typescript-eslint/tsconfig-utils@8.64.0(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.63.0
|
typescript: 6.0.3
|
||||||
'@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
|
|
||||||
'@typescript-eslint/utils': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/type-utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)':
|
||||||
|
dependencies:
|
||||||
|
'@typescript-eslint/types': 8.64.0
|
||||||
|
'@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
|
||||||
|
'@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
ts-api-utils: 2.5.0(typescript@6.0.3)
|
ts-api-utils: 2.5.0(typescript@6.0.3)
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -5707,6 +5728,8 @@ snapshots:
|
|||||||
|
|
||||||
'@typescript-eslint/types@8.63.0': {}
|
'@typescript-eslint/types@8.63.0': {}
|
||||||
|
|
||||||
|
'@typescript-eslint/types@8.64.0': {}
|
||||||
|
|
||||||
'@typescript-eslint/typescript-estree@8.63.0(typescript@6.0.3)':
|
'@typescript-eslint/typescript-estree@8.63.0(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/project-service': 8.63.0(typescript@6.0.3)
|
'@typescript-eslint/project-service': 8.63.0(typescript@6.0.3)
|
||||||
@@ -5715,20 +5738,46 @@ snapshots:
|
|||||||
'@typescript-eslint/visitor-keys': 8.63.0
|
'@typescript-eslint/visitor-keys': 8.63.0
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
minimatch: 10.2.5
|
minimatch: 10.2.5
|
||||||
semver: 7.8.4
|
semver: 7.8.5
|
||||||
tinyglobby: 0.2.17
|
tinyglobby: 0.2.17
|
||||||
ts-api-utils: 2.5.0(typescript@6.0.3)
|
ts-api-utils: 2.5.0(typescript@6.0.3)
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)':
|
'@typescript-eslint/typescript-estree@8.64.0(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
'@typescript-eslint/project-service': 8.64.0(typescript@6.0.3)
|
||||||
|
'@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3)
|
||||||
|
'@typescript-eslint/types': 8.64.0
|
||||||
|
'@typescript-eslint/visitor-keys': 8.64.0
|
||||||
|
debug: 4.4.3
|
||||||
|
minimatch: 10.2.5
|
||||||
|
semver: 7.8.5
|
||||||
|
tinyglobby: 0.2.17
|
||||||
|
ts-api-utils: 2.5.0(typescript@6.0.3)
|
||||||
|
typescript: 6.0.3
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
|
||||||
|
'@typescript-eslint/utils@8.63.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)':
|
||||||
|
dependencies:
|
||||||
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@typescript-eslint/scope-manager': 8.63.0
|
'@typescript-eslint/scope-manager': 8.63.0
|
||||||
'@typescript-eslint/types': 8.63.0
|
'@typescript-eslint/types': 8.63.0
|
||||||
'@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
|
'@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
|
typescript: 6.0.3
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
|
||||||
|
'@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)':
|
||||||
|
dependencies:
|
||||||
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
|
'@typescript-eslint/scope-manager': 8.64.0
|
||||||
|
'@typescript-eslint/types': 8.64.0
|
||||||
|
'@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
|
||||||
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -5738,6 +5787,11 @@ snapshots:
|
|||||||
'@typescript-eslint/types': 8.63.0
|
'@typescript-eslint/types': 8.63.0
|
||||||
eslint-visitor-keys: 5.0.1
|
eslint-visitor-keys: 5.0.1
|
||||||
|
|
||||||
|
'@typescript-eslint/visitor-keys@8.64.0':
|
||||||
|
dependencies:
|
||||||
|
'@typescript-eslint/types': 8.64.0
|
||||||
|
eslint-visitor-keys: 5.0.1
|
||||||
|
|
||||||
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -5819,13 +5873,13 @@ snapshots:
|
|||||||
vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
|
vite: 8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
|
||||||
vue: 3.5.39(typescript@6.0.3)
|
vue: 3.5.39(typescript@6.0.3)
|
||||||
|
|
||||||
'@vitest/eslint-plugin@1.6.22(@typescript-eslint/eslint-plugin@8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.1)(happy-dom@20.10.6)(jsdom@20.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)))':
|
'@vitest/eslint-plugin@1.6.23(@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.1)(happy-dom@20.10.6)(jsdom@20.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/scope-manager': 8.63.0
|
'@typescript-eslint/scope-manager': 8.63.0
|
||||||
'@typescript-eslint/utils': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/utils': 8.63.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/eslint-plugin': 8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/eslint-plugin': 8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
vitest: 4.1.10(@types/node@26.1.1)(happy-dom@20.10.6)(jsdom@20.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
|
vitest: 4.1.10(@types/node@26.1.1)(happy-dom@20.10.6)(jsdom@20.0.3)(vite@8.1.4(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -6093,8 +6147,6 @@ snapshots:
|
|||||||
|
|
||||||
base64-js@1.5.1: {}
|
base64-js@1.5.1: {}
|
||||||
|
|
||||||
baseline-browser-mapping@2.10.33: {}
|
|
||||||
|
|
||||||
baseline-browser-mapping@2.10.43: {}
|
baseline-browser-mapping@2.10.43: {}
|
||||||
|
|
||||||
binary-extensions@2.3.0: {}
|
binary-extensions@2.3.0: {}
|
||||||
@@ -6115,14 +6167,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
fill-range: 7.1.1
|
fill-range: 7.1.1
|
||||||
|
|
||||||
browserslist@4.28.2:
|
|
||||||
dependencies:
|
|
||||||
baseline-browser-mapping: 2.10.33
|
|
||||||
caniuse-lite: 1.0.30001793
|
|
||||||
electron-to-chromium: 1.5.364
|
|
||||||
node-releases: 2.0.46
|
|
||||||
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
|
||||||
|
|
||||||
browserslist@4.28.6:
|
browserslist@4.28.6:
|
||||||
dependencies:
|
dependencies:
|
||||||
baseline-browser-mapping: 2.10.43
|
baseline-browser-mapping: 2.10.43
|
||||||
@@ -6140,12 +6184,8 @@ snapshots:
|
|||||||
base64-js: 1.5.1
|
base64-js: 1.5.1
|
||||||
ieee754: 1.2.1
|
ieee754: 1.2.1
|
||||||
|
|
||||||
builtin-modules@3.3.0: {}
|
|
||||||
|
|
||||||
builtin-modules@5.2.0: {}
|
builtin-modules@5.2.0: {}
|
||||||
|
|
||||||
bytes@3.1.2: {}
|
|
||||||
|
|
||||||
cacheable@2.3.5:
|
cacheable@2.3.5:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@cacheable/memory': 2.0.9
|
'@cacheable/memory': 2.0.9
|
||||||
@@ -6177,8 +6217,6 @@ snapshots:
|
|||||||
|
|
||||||
camelcase-css@2.0.1: {}
|
camelcase-css@2.0.1: {}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001793: {}
|
|
||||||
|
|
||||||
caniuse-lite@1.0.30001805: {}
|
caniuse-lite@1.0.30001805: {}
|
||||||
|
|
||||||
chai@6.2.2: {}
|
chai@6.2.2: {}
|
||||||
@@ -6279,7 +6317,7 @@ snapshots:
|
|||||||
|
|
||||||
core-js-compat@3.49.0:
|
core-js-compat@3.49.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: 4.28.2
|
browserslist: 4.28.6
|
||||||
|
|
||||||
core-js@3.32.2: {}
|
core-js@3.32.2: {}
|
||||||
|
|
||||||
@@ -6661,8 +6699,6 @@ snapshots:
|
|||||||
codemirror-spell-checker: 1.1.2
|
codemirror-spell-checker: 1.1.2
|
||||||
marked: 4.3.0
|
marked: 4.3.0
|
||||||
|
|
||||||
electron-to-chromium@1.5.364: {}
|
|
||||||
|
|
||||||
electron-to-chromium@1.5.389: {}
|
electron-to-chromium@1.5.389: {}
|
||||||
|
|
||||||
elkjs@0.9.3: {}
|
elkjs@0.9.3: {}
|
||||||
@@ -6829,10 +6865,10 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
eslint-import-resolver-typescript@4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.6.0(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@10.6.0(jiti@2.7.0)):
|
eslint-import-resolver-typescript@4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-import-context: 0.1.9(unrs-resolver@1.12.2)
|
eslint-import-context: 0.1.9(unrs-resolver@1.12.2)
|
||||||
get-tsconfig: 4.14.0
|
get-tsconfig: 4.14.0
|
||||||
is-bun-module: 2.0.0
|
is-bun-module: 2.0.0
|
||||||
@@ -6840,29 +6876,29 @@ snapshots:
|
|||||||
tinyglobby: 0.2.17
|
tinyglobby: 0.2.17
|
||||||
unrs-resolver: 1.12.2
|
unrs-resolver: 1.12.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.5)(eslint@10.6.0(jiti@2.7.0))
|
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.5)(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.6.0(jiti@2.7.0))
|
eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@2.7.0))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-module-utils@2.13.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@4.4.5)(eslint@10.6.0(jiti@2.7.0)):
|
eslint-module-utils@2.13.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@4.4.5)(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-import-resolver-node: 0.3.10
|
eslint-import-resolver-node: 0.3.10
|
||||||
eslint-import-resolver-typescript: 4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.6.0(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@10.6.0(jiti@2.7.0))
|
eslint-import-resolver-typescript: 4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@10.7.0(jiti@2.7.0))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.6.0(jiti@2.7.0)):
|
eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.63.0
|
'@typescript-eslint/types': 8.63.0
|
||||||
comment-parser: 1.4.7
|
comment-parser: 1.4.7
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-import-context: 0.1.9(unrs-resolver@1.12.2)
|
eslint-import-context: 0.1.9(unrs-resolver@1.12.2)
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
minimatch: 10.2.5
|
minimatch: 10.2.5
|
||||||
@@ -6870,12 +6906,12 @@ snapshots:
|
|||||||
stable-hash-x: 0.2.0
|
stable-hash-x: 0.2.0
|
||||||
unrs-resolver: 1.12.2
|
unrs-resolver: 1.12.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/utils': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
eslint-import-resolver-node: 0.3.10
|
eslint-import-resolver-node: 0.3.10
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.5)(eslint@10.6.0(jiti@2.7.0)):
|
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.5)(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rtsao/scc': 1.1.0
|
'@rtsao/scc': 1.1.0
|
||||||
array-includes: 3.1.9
|
array-includes: 3.1.9
|
||||||
@@ -6884,9 +6920,9 @@ snapshots:
|
|||||||
array.prototype.flatmap: 1.3.3
|
array.prototype.flatmap: 1.3.3
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-import-resolver-node: 0.3.10
|
eslint-import-resolver-node: 0.3.10
|
||||||
eslint-module-utils: 2.13.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@4.4.5)(eslint@10.6.0(jiti@2.7.0))
|
eslint-module-utils: 2.13.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@4.4.5)(eslint@10.7.0(jiti@2.7.0))
|
||||||
hasown: 2.0.4
|
hasown: 2.0.4
|
||||||
is-core-module: 2.16.2
|
is-core-module: 2.16.2
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
@@ -6898,55 +6934,40 @@ snapshots:
|
|||||||
string.prototype.trimend: 1.0.9
|
string.prototype.trimend: 1.0.9
|
||||||
tsconfig-paths: 3.15.0
|
tsconfig-paths: 3.15.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint-import-resolver-typescript
|
- eslint-import-resolver-typescript
|
||||||
- eslint-import-resolver-webpack
|
- eslint-import-resolver-webpack
|
||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
eslint-plugin-playwright@2.10.5(eslint@10.6.0(jiti@2.7.0)):
|
eslint-plugin-playwright@2.10.5(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
globals: 17.7.0
|
globals: 17.7.0
|
||||||
|
|
||||||
eslint-plugin-regexp@3.1.1(eslint@10.6.0(jiti@2.7.0)):
|
eslint-plugin-regexp@3.1.1(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/regexpp': 4.12.2
|
||||||
comment-parser: 1.4.7
|
comment-parser: 1.4.7
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
jsdoc-type-pratt-parser: 7.2.0
|
jsdoc-type-pratt-parser: 7.2.0
|
||||||
refa: 0.12.1
|
refa: 0.12.1
|
||||||
regexp-ast-analysis: 0.7.1
|
regexp-ast-analysis: 0.7.1
|
||||||
scslre: 0.3.0
|
scslre: 0.3.0
|
||||||
|
|
||||||
eslint-plugin-sonarjs@4.1.0(eslint@10.6.0(jiti@2.7.0)):
|
eslint-plugin-unicorn@72.0.0(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
builtin-modules: 3.3.0
|
'@eslint/css-tree': 4.0.4
|
||||||
bytes: 3.1.2
|
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
|
||||||
functional-red-black-tree: 1.0.1
|
|
||||||
globals: 17.7.0
|
|
||||||
jsx-ast-utils-x: 0.1.0
|
|
||||||
lodash.merge: 4.6.2
|
|
||||||
minimatch: 10.2.5
|
|
||||||
scslre: 0.3.0
|
|
||||||
semver: 7.8.4
|
|
||||||
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
||||||
typescript: 6.0.3
|
|
||||||
yaml: 2.9.0
|
|
||||||
|
|
||||||
eslint-plugin-unicorn@71.1.0(eslint@10.6.0(jiti@2.7.0)):
|
|
||||||
dependencies:
|
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
||||||
browserslist: 4.28.6
|
browserslist: 4.28.6
|
||||||
change-case: 5.4.4
|
change-case: 5.4.4
|
||||||
ci-info: 4.4.0
|
ci-info: 4.4.0
|
||||||
core-js-compat: 3.49.0
|
core-js-compat: 3.49.0
|
||||||
detect-indent: 7.0.2
|
detect-indent: 7.0.2
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
entities: 4.5.0
|
||||||
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
find-up-simple: 1.0.1
|
find-up-simple: 1.0.1
|
||||||
globals: 17.7.0
|
globals: 17.7.0
|
||||||
indent-string: 5.0.0
|
indent-string: 5.0.0
|
||||||
@@ -6958,34 +6979,35 @@ snapshots:
|
|||||||
reserved-identifiers: 1.2.0
|
reserved-identifiers: 1.2.0
|
||||||
semver: 7.8.5
|
semver: 7.8.5
|
||||||
strip-indent: 4.1.1
|
strip-indent: 4.1.1
|
||||||
|
yaml: 2.9.0
|
||||||
|
|
||||||
eslint-plugin-vue-scoped-css@3.1.1(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.6.0(jiti@2.7.0))):
|
eslint-plugin-vue-scoped-css@3.1.1(eslint@10.7.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.7.0(jiti@2.7.0))):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
es-toolkit: 1.47.0
|
es-toolkit: 1.47.0
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
postcss: 8.5.16
|
postcss: 8.5.16
|
||||||
postcss-safe-parser: 7.0.1(postcss@8.5.16)
|
postcss-safe-parser: 7.0.1(postcss@8.5.16)
|
||||||
postcss-selector-parser: 7.1.4
|
postcss-selector-parser: 7.1.4
|
||||||
vue-eslint-parser: 10.4.0(eslint@10.6.0(jiti@2.7.0))
|
vue-eslint-parser: 10.4.0(eslint@10.7.0(jiti@2.7.0))
|
||||||
|
|
||||||
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0)))(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.6.0(jiti@2.7.0))):
|
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0)))(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.7.0(jiti@2.7.0))):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
nth-check: 2.1.1
|
nth-check: 2.1.1
|
||||||
postcss-selector-parser: 7.1.4
|
postcss-selector-parser: 7.1.4
|
||||||
semver: 7.8.4
|
semver: 7.8.4
|
||||||
vue-eslint-parser: 10.4.0(eslint@10.6.0(jiti@2.7.0))
|
vue-eslint-parser: 10.4.0(eslint@10.7.0(jiti@2.7.0))
|
||||||
xml-name-validator: 4.0.0
|
xml-name-validator: 4.0.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@stylistic/eslint-plugin': 5.10.0(eslint@10.6.0(jiti@2.7.0))
|
'@stylistic/eslint-plugin': 5.10.0(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@typescript-eslint/parser': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
|
|
||||||
eslint-plugin-wc@3.1.0(eslint@10.6.0(jiti@2.7.0)):
|
eslint-plugin-wc@3.1.0(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
is-valid-element-name: 1.0.0
|
is-valid-element-name: 1.0.0
|
||||||
js-levenshtein-esm: 2.0.0
|
js-levenshtein-esm: 2.0.0
|
||||||
|
|
||||||
@@ -7002,9 +7024,9 @@ snapshots:
|
|||||||
|
|
||||||
eslint-visitor-keys@5.0.1: {}
|
eslint-visitor-keys@5.0.1: {}
|
||||||
|
|
||||||
eslint@10.6.0(jiti@2.7.0):
|
eslint@10.7.0(jiti@2.7.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0))
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/regexpp': 4.12.2
|
||||||
'@eslint/config-array': 0.23.5
|
'@eslint/config-array': 0.23.5
|
||||||
'@eslint/config-helpers': 0.6.0
|
'@eslint/config-helpers': 0.6.0
|
||||||
@@ -7172,8 +7194,6 @@ snapshots:
|
|||||||
is-callable: 1.2.7
|
is-callable: 1.2.7
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
functional-red-black-tree@1.0.1: {}
|
|
||||||
|
|
||||||
functions-have-names@1.2.3:
|
functions-have-names@1.2.3:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -7666,8 +7686,6 @@ snapshots:
|
|||||||
|
|
||||||
jsonpointer@5.0.1: {}
|
jsonpointer@5.0.1: {}
|
||||||
|
|
||||||
jsx-ast-utils-x@0.1.0: {}
|
|
||||||
|
|
||||||
katex@0.16.47:
|
katex@0.16.47:
|
||||||
dependencies:
|
dependencies:
|
||||||
commander: 8.3.0
|
commander: 8.3.0
|
||||||
@@ -7765,8 +7783,6 @@ snapshots:
|
|||||||
|
|
||||||
lodash-es@4.18.1: {}
|
lodash-es@4.18.1: {}
|
||||||
|
|
||||||
lodash.merge@4.6.2: {}
|
|
||||||
|
|
||||||
lodash.truncate@4.4.2: {}
|
lodash.truncate@4.4.2: {}
|
||||||
|
|
||||||
magic-string@0.30.21:
|
magic-string@0.30.21:
|
||||||
@@ -7836,6 +7852,8 @@ snapshots:
|
|||||||
|
|
||||||
mdn-data@2.27.1: {}
|
mdn-data@2.27.1: {}
|
||||||
|
|
||||||
|
mdn-data@2.28.1: {}
|
||||||
|
|
||||||
mdurl@2.0.0: {}
|
mdurl@2.0.0: {}
|
||||||
|
|
||||||
meow@14.1.0: {}
|
meow@14.1.0: {}
|
||||||
@@ -8096,8 +8114,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
whatwg-url: 5.0.0
|
whatwg-url: 5.0.0
|
||||||
|
|
||||||
node-releases@2.0.46: {}
|
|
||||||
|
|
||||||
node-releases@2.0.51: {}
|
node-releases@2.0.51: {}
|
||||||
|
|
||||||
normalize-path@3.0.0: {}
|
normalize-path@3.0.0: {}
|
||||||
@@ -8964,13 +8980,13 @@ snapshots:
|
|||||||
reflect.getprototypeof: 1.0.10
|
reflect.getprototypeof: 1.0.10
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
typescript-eslint@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3):
|
typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/eslint-plugin': 8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/eslint-plugin': 8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
'@typescript-eslint/parser': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
'@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
|
'@typescript-eslint/typescript-estree': 8.64.0(typescript@6.0.3)
|
||||||
'@typescript-eslint/utils': 8.63.0(eslint@10.6.0(jiti@2.7.0))(typescript@6.0.3)
|
'@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -9024,12 +9040,6 @@ snapshots:
|
|||||||
'@unrs/resolver-binding-win32-ia32-msvc': 1.12.2
|
'@unrs/resolver-binding-win32-ia32-msvc': 1.12.2
|
||||||
'@unrs/resolver-binding-win32-x64-msvc': 1.12.2
|
'@unrs/resolver-binding-win32-x64-msvc': 1.12.2
|
||||||
|
|
||||||
update-browserslist-db@1.2.3(browserslist@4.28.2):
|
|
||||||
dependencies:
|
|
||||||
browserslist: 4.28.2
|
|
||||||
escalade: 3.2.0
|
|
||||||
picocolors: 1.1.1
|
|
||||||
|
|
||||||
update-browserslist-db@1.2.3(browserslist@4.28.6):
|
update-browserslist-db@1.2.3(browserslist@4.28.6):
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: 4.28.6
|
browserslist: 4.28.6
|
||||||
@@ -9107,15 +9117,15 @@ snapshots:
|
|||||||
chart.js: 4.5.1
|
chart.js: 4.5.1
|
||||||
vue: 3.5.39(typescript@6.0.3)
|
vue: 3.5.39(typescript@6.0.3)
|
||||||
|
|
||||||
vue-eslint-parser@10.4.0(eslint@10.6.0(jiti@2.7.0)):
|
vue-eslint-parser@10.4.0(eslint@10.7.0(jiti@2.7.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
eslint: 10.6.0(jiti@2.7.0)
|
eslint: 10.7.0(jiti@2.7.0)
|
||||||
eslint-scope: 9.1.2
|
eslint-scope: 9.1.2
|
||||||
eslint-visitor-keys: 5.0.1
|
eslint-visitor-keys: 5.0.1
|
||||||
espree: 11.2.0
|
espree: 11.2.0
|
||||||
esquery: 1.7.0
|
esquery: 1.7.0
|
||||||
semver: 7.8.4
|
semver: 7.8.5
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user