@askviraj/linter 1.1.0 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/presets/markdown.js +5 -1
- package/node_modules/{astro-eslint-parser/node_modules/@typescript-eslint/types → @astrojs/compiler-binding}/LICENSE +1 -1
- package/node_modules/@astrojs/compiler-binding/browser.js +1 -0
- package/node_modules/@astrojs/compiler-binding/index.d.ts +337 -0
- package/node_modules/@astrojs/compiler-binding/index.js +599 -0
- package/node_modules/@astrojs/compiler-binding/package.json +83 -0
- package/node_modules/@astrojs/compiler-binding/webcontainer-fallback.cjs +23 -0
- package/node_modules/@astrojs/compiler-binding-linux-x64-gnu/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-linux-x64-gnu/astro.linux-x64-gnu.node +0 -0
- package/node_modules/@astrojs/compiler-binding-linux-x64-gnu/package.json +40 -0
- package/node_modules/{astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys → @astrojs/compiler-rs}/LICENSE +1 -1
- package/node_modules/@astrojs/compiler-rs/README.md +62 -0
- package/node_modules/@astrojs/compiler-rs/async.d.ts +1 -0
- package/node_modules/@astrojs/compiler-rs/dist/async.d.mts +9 -0
- package/node_modules/@astrojs/compiler-rs/dist/async.mjs +1 -0
- package/node_modules/@astrojs/compiler-rs/dist/index.d.mts +9 -0
- package/node_modules/@astrojs/compiler-rs/dist/index.mjs +1 -0
- package/node_modules/@astrojs/compiler-rs/dist/shared.d.mts +45 -0
- package/node_modules/@astrojs/compiler-rs/dist/shared.mjs +1 -0
- package/node_modules/@astrojs/compiler-rs/dist/types.d.mts +94 -0
- package/node_modules/@astrojs/compiler-rs/dist/types.mjs +1 -0
- package/node_modules/@astrojs/compiler-rs/dist/utils.d.mts +4 -0
- package/node_modules/@astrojs/compiler-rs/dist/utils.mjs +1 -0
- package/node_modules/@astrojs/compiler-rs/package.json +55 -0
- package/node_modules/@astrojs/compiler-rs/types.d.ts +1 -0
- package/node_modules/@eslint/config-helpers/README.md +2 -2
- package/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +27 -26
- package/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +13 -12
- package/node_modules/@eslint/config-helpers/dist/cjs/types.cts +4 -2
- package/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +13 -12
- package/node_modules/@eslint/config-helpers/dist/esm/index.js +27 -26
- package/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +2 -0
- package/node_modules/@eslint/config-helpers/dist/esm/types.ts +4 -2
- package/node_modules/@eslint/config-helpers/package.json +1 -1
- package/node_modules/@eslint/css/README.md +2 -2
- package/node_modules/@eslint/css/dist/build/rules.d.ts +75 -21
- package/node_modules/@eslint/css/dist/build/rules.js +15 -15
- package/node_modules/@eslint/css/dist/data/baseline-data.js +256 -32
- package/node_modules/@eslint/css/dist/index.js +1 -1
- package/node_modules/@eslint/css/dist/rules/font-family-fallbacks.d.ts +15 -15
- package/node_modules/@eslint/css/dist/rules/font-family-fallbacks.js +2 -5
- package/node_modules/@eslint/css/dist/rules/no-duplicate-imports.d.ts +18 -18
- package/node_modules/@eslint/css/dist/rules/no-duplicate-imports.js +9 -12
- package/node_modules/@eslint/css/dist/rules/no-duplicate-keyframe-selectors.d.ts +14 -14
- package/node_modules/@eslint/css/dist/rules/no-duplicate-keyframe-selectors.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-empty-blocks.d.ts +14 -14
- package/node_modules/@eslint/css/dist/rules/no-empty-blocks.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-important.d.ts +16 -16
- package/node_modules/@eslint/css/dist/rules/no-important.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-invalid-at-rule-placement.d.ts +16 -16
- package/node_modules/@eslint/css/dist/rules/no-invalid-at-rule-placement.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-invalid-at-rules.d.ts +21 -21
- package/node_modules/@eslint/css/dist/rules/no-invalid-at-rules.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-invalid-named-grid-areas.d.ts +16 -16
- package/node_modules/@eslint/css/dist/rules/no-invalid-named-grid-areas.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-invalid-properties.d.ts +18 -18
- package/node_modules/@eslint/css/dist/rules/no-invalid-properties.js +2 -3
- package/node_modules/@eslint/css/dist/rules/no-unmatchable-selectors.d.ts +14 -14
- package/node_modules/@eslint/css/dist/rules/no-unmatchable-selectors.js +2 -3
- package/node_modules/@eslint/css/dist/rules/prefer-logical-properties.d.ts +22 -19
- package/node_modules/@eslint/css/dist/rules/prefer-logical-properties.js +66 -23
- package/node_modules/@eslint/css/dist/rules/relative-font-units.d.ts +16 -16
- package/node_modules/@eslint/css/dist/rules/relative-font-units.js +13 -7
- package/node_modules/@eslint/css/dist/rules/selector-complexity.d.ts +17 -17
- package/node_modules/@eslint/css/dist/rules/selector-complexity.js +2 -3
- package/node_modules/@eslint/css/dist/rules/use-baseline.d.ts +22 -22
- package/node_modules/@eslint/css/dist/rules/use-baseline.js +2 -3
- package/node_modules/@eslint/css/dist/rules/use-layers.d.ts +18 -18
- package/node_modules/@eslint/css/dist/rules/use-layers.js +3 -4
- package/node_modules/@eslint/css/package.json +7 -12
- package/node_modules/@eslint/css-tree/README.md +2 -2
- package/node_modules/@eslint/css-tree/dist/csstree.esm.js +1 -1
- package/node_modules/@eslint/css-tree/dist/csstree.js +1 -1
- package/node_modules/@eslint/css-tree/dist/data.cjs +4 -1
- package/node_modules/@eslint/css-tree/dist/data.js +4 -1
- package/node_modules/@eslint/css-tree/dist/version.cjs +1 -1
- package/node_modules/@eslint/css-tree/dist/version.js +1 -1
- package/node_modules/@eslint/css-tree/package.json +3 -3
- package/node_modules/@eslint/json/README.md +2 -2
- package/node_modules/@eslint/json/dist/index.js +1 -1
- package/node_modules/@eslint/json/package.json +4 -9
- package/node_modules/@eslint/markdown/README.md +3 -3
- package/node_modules/@eslint/markdown/dist/build/rules.d.ts +105 -27
- package/node_modules/@eslint/markdown/dist/build/rules.js +21 -21
- package/node_modules/@eslint/markdown/dist/index.d.ts +2 -2
- package/node_modules/@eslint/markdown/dist/index.js +4 -4
- package/node_modules/@eslint/markdown/dist/processor.d.ts +4 -9
- package/node_modules/@eslint/markdown/dist/processor.js +12 -15
- package/node_modules/@eslint/markdown/dist/rules/fenced-code-language.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/fenced-code-language.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/fenced-code-meta.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/fenced-code-meta.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/heading-increment.d.ts +16 -16
- package/node_modules/@eslint/markdown/dist/rules/heading-increment.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-bare-urls.d.ts +14 -14
- package/node_modules/@eslint/markdown/dist/rules/no-bare-urls.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-duplicate-definitions.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/no-duplicate-definitions.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-duplicate-headings.d.ts +15 -15
- package/node_modules/@eslint/markdown/dist/rules/no-duplicate-headings.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-empty-definitions.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/no-empty-definitions.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-empty-images.d.ts +14 -14
- package/node_modules/@eslint/markdown/dist/rules/no-empty-images.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-empty-links.d.ts +14 -14
- package/node_modules/@eslint/markdown/dist/rules/no-empty-links.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-html.d.ts +15 -15
- package/node_modules/@eslint/markdown/dist/rules/no-html.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-invalid-label-refs.d.ts +14 -14
- package/node_modules/@eslint/markdown/dist/rules/no-invalid-label-refs.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-missing-atx-heading-space.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/no-missing-atx-heading-space.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-missing-label-refs.d.ts +16 -16
- package/node_modules/@eslint/markdown/dist/rules/no-missing-label-refs.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-missing-link-fragments.d.ts +16 -16
- package/node_modules/@eslint/markdown/dist/rules/no-missing-link-fragments.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-multiple-h1.d.ts +16 -16
- package/node_modules/@eslint/markdown/dist/rules/no-multiple-h1.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-reference-like-urls.d.ts +15 -15
- package/node_modules/@eslint/markdown/dist/rules/no-reference-like-urls.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-reversed-media-syntax.d.ts +15 -15
- package/node_modules/@eslint/markdown/dist/rules/no-reversed-media-syntax.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-space-in-emphasis.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/no-space-in-emphasis.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/no-unused-definitions.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/no-unused-definitions.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/require-alt-text.d.ts +14 -14
- package/node_modules/@eslint/markdown/dist/rules/require-alt-text.js +2 -3
- package/node_modules/@eslint/markdown/dist/rules/table-column-count.d.ts +17 -17
- package/node_modules/@eslint/markdown/dist/rules/table-column-count.js +2 -3
- package/node_modules/@eslint/markdown/package.json +5 -10
- package/node_modules/@eslint-community/eslint-utils/index.js +1 -1
- package/node_modules/@eslint-community/eslint-utils/index.js.map +1 -1
- package/node_modules/@eslint-community/eslint-utils/index.mjs +1 -1
- package/node_modules/@eslint-community/eslint-utils/index.mjs.map +1 -1
- package/node_modules/@eslint-community/eslint-utils/package.json +12 -7
- package/node_modules/@html-eslint/core/dist/index.js +1 -0
- package/node_modules/@html-eslint/core/dist/index.js.map +1 -1
- package/node_modules/@html-eslint/core/dist/index.mjs +1 -0
- package/node_modules/@html-eslint/core/dist/index.mjs.map +1 -1
- package/node_modules/@html-eslint/core/package.json +3 -3
- package/node_modules/@html-eslint/eslint-plugin/lib/rules/require-content.js +20 -1
- package/node_modules/@html-eslint/eslint-plugin/lib/rules/require-input-label.js +110 -8
- package/node_modules/@html-eslint/eslint-plugin/lib/rules/utils/node.js +13 -0
- package/node_modules/@html-eslint/eslint-plugin/package.json +7 -7
- package/node_modules/@html-eslint/eslint-plugin/types/rules/require-content.d.ts.map +1 -1
- package/node_modules/@html-eslint/eslint-plugin/types/rules/require-input-label.d.ts.map +1 -1
- package/node_modules/@html-eslint/eslint-plugin/types/rules/utils/node.d.ts +7 -0
- package/node_modules/@html-eslint/eslint-plugin/types/rules/utils/node.d.ts.map +1 -1
- package/node_modules/@html-eslint/parser/lib/parser.js +0 -1
- package/node_modules/@html-eslint/parser/package.json +4 -4
- package/node_modules/@html-eslint/parser/types/parser.d.ts.map +1 -1
- package/node_modules/@html-eslint/template-parser/package.json +3 -3
- package/node_modules/@html-eslint/template-syntax-parser/package.json +3 -3
- package/node_modules/@html-eslint/types/package.json +2 -2
- package/node_modules/@rviscomi/capo.js/README.md +4 -4
- package/node_modules/@rviscomi/capo.js/dist/adapters/adapter.cjs +7 -2
- package/node_modules/@rviscomi/capo.js/dist/adapters/browser.cjs +31 -3
- package/node_modules/@rviscomi/capo.js/dist/adapters/index.cjs +36 -4
- package/node_modules/@rviscomi/capo.js/dist/adapters/test-suite.cjs +6 -1
- package/node_modules/@rviscomi/capo.js/dist/analyzer.cjs +53 -24
- package/node_modules/@rviscomi/capo.js/dist/chrome/README.md +53 -0
- package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/capo.html +1 -1
- package/node_modules/@rviscomi/capo.js/dist/chrome/capo.js +3 -0
- package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/chrome.js +56 -18
- package/node_modules/@rviscomi/capo.js/dist/chrome/manifest.json +26 -0
- package/node_modules/@rviscomi/capo.js/dist/chrome/options/options.js +1 -0
- package/node_modules/@rviscomi/capo.js/dist/chrome.zip +0 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/README.md +53 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/background.js +7 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/capo.css +59 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/capo.html +12 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/capo.js +3 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/chrome.js +120 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/images/icon128.png +0 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/manifest.json +39 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/options/options.css +81 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/options/options.html +43 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/options/options.js +1 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox/styles/open-props.css +291 -0
- package/node_modules/@rviscomi/capo.js/dist/firefox.zip +0 -0
- package/node_modules/@rviscomi/capo.js/dist/index.cjs +93 -33
- package/node_modules/@rviscomi/capo.js/dist/lib/colors.cjs +1 -0
- package/node_modules/@rviscomi/capo.js/dist/lib/io.cjs +137 -28
- package/node_modules/@rviscomi/capo.js/dist/lib/options.cjs +61 -0
- package/node_modules/@rviscomi/capo.js/dist/lib/rules.cjs +28 -13
- package/node_modules/@rviscomi/capo.js/dist/lib/validation.cjs +31 -16
- package/node_modules/@rviscomi/capo.js/dist/source.zip +0 -0
- package/node_modules/@rviscomi/capo.js/dist/types/adapters/adapter.d.ts +105 -0
- package/node_modules/@rviscomi/capo.js/dist/types/adapters/browser.d.ts +107 -0
- package/node_modules/@rviscomi/capo.js/dist/types/adapters/index.d.ts +7 -0
- package/node_modules/@rviscomi/capo.js/dist/types/adapters/test-suite.d.ts +52 -0
- package/node_modules/@rviscomi/capo.js/dist/types/analyzer.d.ts +195 -0
- package/node_modules/@rviscomi/capo.js/dist/types/index.d.ts +29 -0
- package/node_modules/@rviscomi/capo.js/dist/types/lib/colors.d.ts +20 -0
- package/node_modules/@rviscomi/capo.js/dist/types/lib/io.d.ts +166 -0
- package/node_modules/@rviscomi/capo.js/dist/types/lib/options.d.ts +114 -0
- package/node_modules/@rviscomi/capo.js/dist/types/lib/rules.d.ts +111 -0
- package/node_modules/@rviscomi/capo.js/dist/types/lib/validation.d.ts +61 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/adapters/adapter.d.ts +105 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/adapters/browser.d.ts +107 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/adapters/index.d.ts +7 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/adapters/test-suite.d.ts +52 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/analyzer.d.ts +195 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/index.d.ts +13 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/lib/colors.d.ts +20 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/lib/io.d.ts +166 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/lib/options.d.ts +114 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/lib/rules.d.ts +111 -0
- package/node_modules/@rviscomi/capo.js/dist/types/src/lib/validation.d.ts +61 -0
- package/node_modules/@rviscomi/capo.js/package.json +34 -16
- package/node_modules/@rviscomi/capo.js/src/adapters/adapter.js +16 -5
- package/node_modules/@rviscomi/capo.js/src/adapters/browser.js +30 -4
- package/node_modules/@rviscomi/capo.js/src/adapters/test-suite.js +11 -10
- package/node_modules/@rviscomi/capo.js/src/analyzer.js +47 -25
- package/node_modules/@rviscomi/capo.js/src/extension/README.md +53 -0
- package/node_modules/@rviscomi/capo.js/src/extension/background.js +7 -0
- package/node_modules/@rviscomi/capo.js/src/extension/capo.css +59 -0
- package/node_modules/@rviscomi/capo.js/src/extension/capo.html +12 -0
- package/node_modules/@rviscomi/capo.js/src/extension/capo.js +93 -0
- package/node_modules/@rviscomi/capo.js/src/extension/chrome.js +120 -0
- package/node_modules/@rviscomi/capo.js/src/extension/images/icon128.png +0 -0
- package/node_modules/@rviscomi/capo.js/src/extension/images/icon256.png +0 -0
- package/node_modules/@rviscomi/capo.js/{crx → src/extension}/manifest.json +1 -1
- package/node_modules/@rviscomi/capo.js/src/extension/options/options.css +81 -0
- package/node_modules/@rviscomi/capo.js/src/extension/options/options.html +43 -0
- package/node_modules/@rviscomi/capo.js/src/extension/options.js +87 -0
- package/node_modules/@rviscomi/capo.js/src/extension/styles/open-props.css +291 -0
- package/node_modules/@rviscomi/capo.js/src/index.js +10 -0
- package/node_modules/@rviscomi/capo.js/src/lib/colors.js +14 -0
- package/node_modules/@rviscomi/capo.js/src/lib/io.js +171 -32
- package/node_modules/@rviscomi/capo.js/src/lib/options.js +82 -1
- package/node_modules/@rviscomi/capo.js/src/lib/rules.js +120 -43
- package/node_modules/@rviscomi/capo.js/src/lib/validation.js +211 -86
- package/node_modules/@rviscomi/capo.js/src/web/capo.js +5 -8
- package/node_modules/@types/hast/README.md +2 -2
- package/node_modules/@types/hast/index.d.ts +642 -0
- package/node_modules/@types/hast/package.json +9 -3
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.d.ts +0 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.js +0 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.js +0 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/index.d.ts +0 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +47 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.d.ts +0 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +4 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.d.ts +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +23 -10
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +16 -2
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +41 -3
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.d.ts +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +5 -4
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.js +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.js +2 -2
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +5 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +2 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +36 -9
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.js +11 -2
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/legacy.js +11 -2
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/package.json +1 -1
- package/node_modules/@typescript-eslint/eslint-plugin/package.json +22 -11
- package/node_modules/@typescript-eslint/parser/dist/index.js +47 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.js +11 -6
- package/node_modules/@typescript-eslint/parser/package.json +9 -7
- package/node_modules/@typescript-eslint/project-service/package.json +7 -5
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +2 -2
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +1 -0
- package/node_modules/@typescript-eslint/scope-manager/package.json +8 -6
- package/node_modules/@typescript-eslint/tsconfig-utils/package.json +5 -3
- package/node_modules/@typescript-eslint/type-utils/package.json +9 -7
- package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +10 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +13 -0
- package/node_modules/@typescript-eslint/types/package.json +5 -3
- package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.js +22 -6
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +5 -4
- package/node_modules/@typescript-eslint/typescript-estree/dist/getImportClausePhaseModifier.d.ts +4 -0
- package/node_modules/{astro-eslint-parser/node_modules/@typescript-eslint/types/dist/ts-estree.js → @typescript-eslint/typescript-estree/dist/getImportClausePhaseModifier.js} +21 -2
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.js +1 -1
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.d.ts +1 -1
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js +27 -18
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/package.json +9 -7
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +1 -1
- package/node_modules/@typescript-eslint/utils/package.json +8 -6
- package/node_modules/@typescript-eslint/visitor-keys/package.json +6 -4
- package/node_modules/acorn/CHANGELOG.md +12 -0
- package/node_modules/acorn/README.md +5 -0
- package/node_modules/acorn/dist/acorn.d.mts +8 -0
- package/node_modules/acorn/dist/acorn.d.ts +8 -0
- package/node_modules/acorn/dist/acorn.js +16 -7
- package/node_modules/acorn/dist/acorn.mjs +16 -7
- package/node_modules/acorn/package.json +1 -1
- package/node_modules/astro-eslint-parser/lib/index.d.mts +113 -18
- package/node_modules/astro-eslint-parser/lib/index.mjs +871 -1172
- package/node_modules/astro-eslint-parser/package.json +7 -9
- package/node_modules/brace-expansion/README.md +11 -0
- package/node_modules/brace-expansion/dist/commonjs/index.d.ts +2 -0
- package/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -1
- package/node_modules/brace-expansion/dist/commonjs/index.js +167 -79
- package/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -1
- package/node_modules/brace-expansion/dist/esm/index.d.ts +2 -0
- package/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -1
- package/node_modules/brace-expansion/dist/esm/index.js +166 -78
- package/node_modules/brace-expansion/dist/esm/index.js.map +1 -1
- package/node_modules/brace-expansion/package.json +3 -3
- package/node_modules/eslint/README.md +2 -2
- package/node_modules/eslint/lib/cli-engine/formatters/html.js +1 -1
- package/node_modules/eslint/lib/languages/js/index.js +1 -1
- package/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +1 -1
- package/node_modules/eslint/lib/linter/vfile.js +1 -1
- package/node_modules/eslint/lib/rules/class-methods-use-this.js +6 -5
- package/node_modules/eslint/lib/rules/complexity.js +1 -1
- package/node_modules/eslint/lib/rules/eqeqeq.js +26 -6
- package/node_modules/eslint/lib/rules/func-name-matching.js +3 -3
- package/node_modules/eslint/lib/rules/generator-star-spacing.js +4 -6
- package/node_modules/eslint/lib/rules/indent.js +4 -6
- package/node_modules/eslint/lib/rules/key-spacing.js +5 -7
- package/node_modules/eslint/lib/rules/max-len.js +1 -1
- package/node_modules/eslint/lib/rules/max-nested-callbacks.js +11 -1
- package/node_modules/eslint/lib/rules/no-compare-neg-zero.js +91 -8
- package/node_modules/eslint/lib/rules/no-control-regex.js +3 -0
- package/node_modules/eslint/lib/rules/no-implicit-coercion.js +22 -8
- package/node_modules/eslint/lib/rules/no-invalid-regexp.js +3 -1
- package/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +5 -7
- package/node_modules/eslint/lib/rules/no-promise-executor-return.js +5 -7
- package/node_modules/eslint/lib/rules/no-script-url.js +4 -6
- package/node_modules/eslint/lib/rules/no-shadow.js +14 -20
- package/node_modules/eslint/lib/rules/no-unreachable-loop.js +8 -4
- package/node_modules/eslint/lib/rules/prefer-numeric-literals.js +14 -6
- package/node_modules/eslint/lib/rules/prefer-object-has-own.js +4 -6
- package/node_modules/eslint/lib/rules/prefer-object-spread.js +9 -1
- package/node_modules/eslint/lib/rules/prefer-template.js +1 -1
- package/node_modules/eslint/lib/rules/preserve-caught-error.js +268 -116
- package/node_modules/eslint/lib/rules/quotes.js +1 -1
- package/node_modules/eslint/lib/rules/radix.js +58 -57
- package/node_modules/eslint/lib/rules/use-isnan.js +20 -12
- package/node_modules/eslint/lib/rules/utils/ast-utils.js +1 -1
- package/node_modules/eslint/lib/shared/serialization.js +1 -1
- package/node_modules/eslint/lib/shared/translate-cli-options.js +3 -3
- package/node_modules/eslint/lib/types/config-api.d.ts +8 -1
- package/node_modules/eslint/lib/types/index.d.ts +3 -6
- package/node_modules/eslint/lib/types/rules.d.ts +17 -9
- package/node_modules/eslint/package.json +7 -7
- package/node_modules/eslint-plugin-astro/README.md +10 -2
- package/node_modules/eslint-plugin-astro/lib/index.d.mts +0 -1
- package/node_modules/eslint-plugin-astro/lib/index.mjs +76 -637
- package/node_modules/eslint-plugin-astro/package.json +11 -11
- package/node_modules/eslint-plugin-toml/README.md +2 -0
- package/node_modules/eslint-plugin-toml/lib/index.d.mts +6 -5
- package/node_modules/eslint-plugin-toml/lib/index.mjs +32 -3
- package/node_modules/eslint-plugin-toml/package.json +7 -7
- package/node_modules/eslint-plugin-yml/lib/index.mjs +49 -19
- package/node_modules/eslint-plugin-yml/package.json +2 -2
- package/node_modules/flatted/golang/pkg/flatted/flatted.go +16 -14
- package/node_modules/flatted/package.json +10 -5
- package/node_modules/flatted/types/index.d.ts +1 -1
- package/node_modules/globals/globals.json +105 -33
- package/node_modules/globals/index.d.ts +105 -33
- package/node_modules/globals/package.json +2 -2
- package/node_modules/mdn-data/css/properties.json +64 -16
- package/node_modules/mdn-data/css/properties.schema.json +1 -7
- package/node_modules/mdn-data/css/syntaxes.json +1 -1
- package/node_modules/mdn-data/l10n/css.json +3 -62
- package/node_modules/mdn-data/package.json +1 -1
- package/node_modules/minimatch/package.json +9 -9
- package/node_modules/nanoid/non-secure/index.cjs +2 -2
- package/node_modules/nanoid/non-secure/index.js +2 -2
- package/node_modules/nanoid/package.json +1 -1
- package/node_modules/picomatch/README.md +15 -21
- package/node_modules/picomatch/lib/parse.js +39 -9
- package/node_modules/picomatch/lib/picomatch.js +14 -2
- package/node_modules/picomatch/package.json +3 -2
- package/node_modules/postcss/README.md +1 -5
- package/node_modules/postcss/lib/container.js +81 -34
- package/node_modules/postcss/lib/fromJSON.js +76 -23
- package/node_modules/postcss/lib/input.js +13 -4
- package/node_modules/postcss/lib/lazy-result.js +77 -14
- package/node_modules/postcss/lib/list.js +1 -0
- package/node_modules/postcss/lib/node.d.ts +2 -2
- package/node_modules/postcss/lib/node.js +105 -60
- package/node_modules/postcss/lib/postcss.d.ts +4 -1
- package/node_modules/postcss/lib/previous-map.js +6 -3
- package/node_modules/postcss/lib/processor.js +1 -1
- package/node_modules/postcss/lib/root.js +16 -1
- package/node_modules/postcss/lib/stringifier.js +112 -25
- package/node_modules/postcss/lib/warning.js +10 -0
- package/node_modules/postcss/package.json +2 -2
- package/node_modules/typescript-eslint/dist/index.js +47 -0
- package/node_modules/typescript-eslint/package.json +14 -6
- package/node_modules/yaml-eslint-parser/lib/index.d.mts +2 -2
- package/node_modules/yaml-eslint-parser/lib/index.mjs +164 -157
- package/node_modules/yaml-eslint-parser/package.json +17 -18
- package/package.json +23 -23
- package/node_modules/@astrojs/compiler/LICENSE +0 -53
- package/node_modules/@astrojs/compiler/README.md +0 -72
- package/node_modules/@astrojs/compiler/dist/astro.wasm +0 -0
- package/node_modules/@astrojs/compiler/dist/browser/index.cjs +0 -2
- package/node_modules/@astrojs/compiler/dist/browser/index.d.ts +0 -11
- package/node_modules/@astrojs/compiler/dist/browser/index.js +0 -1
- package/node_modules/@astrojs/compiler/dist/browser/utils.cjs +0 -3
- package/node_modules/@astrojs/compiler/dist/browser/utils.d.ts +0 -29
- package/node_modules/@astrojs/compiler/dist/browser/utils.js +0 -3
- package/node_modules/@astrojs/compiler/dist/browser/wasm_exec.cjs +0 -2
- package/node_modules/@astrojs/compiler/dist/browser/wasm_exec.d.ts +0 -37
- package/node_modules/@astrojs/compiler/dist/browser/wasm_exec.js +0 -1
- package/node_modules/@astrojs/compiler/dist/chunk-QR6QDSEV.js +0 -2
- package/node_modules/@astrojs/compiler/dist/chunk-W5DTLHV4.js +0 -1
- package/node_modules/@astrojs/compiler/dist/node/index.cjs +0 -1
- package/node_modules/@astrojs/compiler/dist/node/index.d.ts +0 -12
- package/node_modules/@astrojs/compiler/dist/node/index.js +0 -1
- package/node_modules/@astrojs/compiler/dist/node/sync.cjs +0 -1
- package/node_modules/@astrojs/compiler/dist/node/sync.d.ts +0 -16
- package/node_modules/@astrojs/compiler/dist/node/sync.js +0 -1
- package/node_modules/@astrojs/compiler/dist/node/utils.cjs +0 -3
- package/node_modules/@astrojs/compiler/dist/node/utils.d.ts +0 -29
- package/node_modules/@astrojs/compiler/dist/node/utils.js +0 -3
- package/node_modules/@astrojs/compiler/dist/node/wasm_exec.cjs +0 -1
- package/node_modules/@astrojs/compiler/dist/node/wasm_exec.d.ts +0 -37
- package/node_modules/@astrojs/compiler/dist/node/wasm_exec.js +0 -1
- package/node_modules/@astrojs/compiler/dist/shared/ast.cjs +0 -1
- package/node_modules/@astrojs/compiler/dist/shared/ast.d.ts +0 -74
- package/node_modules/@astrojs/compiler/dist/shared/ast.js +0 -0
- package/node_modules/@astrojs/compiler/dist/shared/diagnostics.cjs +0 -1
- package/node_modules/@astrojs/compiler/dist/shared/diagnostics.d.ts +0 -18
- package/node_modules/@astrojs/compiler/dist/shared/diagnostics.js +0 -1
- package/node_modules/@astrojs/compiler/dist/shared/types.cjs +0 -1
- package/node_modules/@astrojs/compiler/dist/shared/types.d.ts +0 -153
- package/node_modules/@astrojs/compiler/dist/shared/types.js +0 -1
- package/node_modules/@astrojs/compiler/package.json +0 -58
- package/node_modules/@astrojs/compiler/sync.d.ts +0 -1
- package/node_modules/@astrojs/compiler/types.d.ts +0 -1
- package/node_modules/@astrojs/compiler/utils.d.ts +0 -1
- package/node_modules/@nodelib/fs.scandir/LICENSE +0 -21
- package/node_modules/@nodelib/fs.scandir/README.md +0 -171
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +0 -20
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +0 -19
- package/node_modules/@nodelib/fs.scandir/out/constants.d.ts +0 -4
- package/node_modules/@nodelib/fs.scandir/out/constants.js +0 -17
- package/node_modules/@nodelib/fs.scandir/out/index.d.ts +0 -12
- package/node_modules/@nodelib/fs.scandir/out/index.js +0 -26
- package/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +0 -7
- package/node_modules/@nodelib/fs.scandir/out/providers/async.js +0 -104
- package/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +0 -1
- package/node_modules/@nodelib/fs.scandir/out/providers/common.js +0 -13
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +0 -5
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.js +0 -54
- package/node_modules/@nodelib/fs.scandir/out/settings.d.ts +0 -20
- package/node_modules/@nodelib/fs.scandir/out/settings.js +0 -24
- package/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +0 -20
- package/node_modules/@nodelib/fs.scandir/out/types/index.js +0 -2
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +0 -2
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.js +0 -19
- package/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +0 -2
- package/node_modules/@nodelib/fs.scandir/out/utils/index.js +0 -5
- package/node_modules/@nodelib/fs.scandir/package.json +0 -44
- package/node_modules/@nodelib/fs.stat/LICENSE +0 -21
- package/node_modules/@nodelib/fs.stat/README.md +0 -126
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +0 -13
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.js +0 -17
- package/node_modules/@nodelib/fs.stat/out/index.d.ts +0 -12
- package/node_modules/@nodelib/fs.stat/out/index.js +0 -26
- package/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +0 -4
- package/node_modules/@nodelib/fs.stat/out/providers/async.js +0 -36
- package/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +0 -3
- package/node_modules/@nodelib/fs.stat/out/providers/sync.js +0 -23
- package/node_modules/@nodelib/fs.stat/out/settings.d.ts +0 -16
- package/node_modules/@nodelib/fs.stat/out/settings.js +0 -16
- package/node_modules/@nodelib/fs.stat/out/types/index.d.ts +0 -4
- package/node_modules/@nodelib/fs.stat/out/types/index.js +0 -2
- package/node_modules/@nodelib/fs.stat/package.json +0 -37
- package/node_modules/@nodelib/fs.walk/LICENSE +0 -21
- package/node_modules/@nodelib/fs.walk/README.md +0 -215
- package/node_modules/@nodelib/fs.walk/out/index.d.ts +0 -14
- package/node_modules/@nodelib/fs.walk/out/index.js +0 -34
- package/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +0 -12
- package/node_modules/@nodelib/fs.walk/out/providers/async.js +0 -30
- package/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +0 -4
- package/node_modules/@nodelib/fs.walk/out/providers/index.js +0 -9
- package/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +0 -12
- package/node_modules/@nodelib/fs.walk/out/providers/stream.js +0 -34
- package/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +0 -10
- package/node_modules/@nodelib/fs.walk/out/providers/sync.js +0 -14
- package/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +0 -30
- package/node_modules/@nodelib/fs.walk/out/readers/async.js +0 -97
- package/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +0 -7
- package/node_modules/@nodelib/fs.walk/out/readers/common.js +0 -31
- package/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +0 -6
- package/node_modules/@nodelib/fs.walk/out/readers/reader.js +0 -11
- package/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +0 -15
- package/node_modules/@nodelib/fs.walk/out/readers/sync.js +0 -59
- package/node_modules/@nodelib/fs.walk/out/settings.d.ts +0 -30
- package/node_modules/@nodelib/fs.walk/out/settings.js +0 -26
- package/node_modules/@nodelib/fs.walk/out/types/index.d.ts +0 -8
- package/node_modules/@nodelib/fs.walk/out/types/index.js +0 -2
- package/node_modules/@nodelib/fs.walk/package.json +0 -44
- package/node_modules/@pkgr/core/index.d.cts +0 -3
- package/node_modules/@pkgr/core/lib/constants.d.ts +0 -6
- package/node_modules/@pkgr/core/lib/constants.js +0 -9
- package/node_modules/@pkgr/core/lib/constants.js.map +0 -1
- package/node_modules/@pkgr/core/lib/helpers.d.ts +0 -19
- package/node_modules/@pkgr/core/lib/helpers.js +0 -67
- package/node_modules/@pkgr/core/lib/helpers.js.map +0 -1
- package/node_modules/@pkgr/core/lib/index.cjs +0 -91
- package/node_modules/@pkgr/core/lib/index.d.ts +0 -2
- package/node_modules/@pkgr/core/lib/index.js +0 -3
- package/node_modules/@pkgr/core/lib/index.js.map +0 -1
- package/node_modules/@pkgr/core/package.json +0 -38
- package/node_modules/@rviscomi/capo.js/crx/README.md +0 -10
- package/node_modules/@rviscomi/capo.js/crx/capo.js +0 -3
- package/node_modules/@rviscomi/capo.js/crx/options/options.js +0 -1
- package/node_modules/@rviscomi/capo.js/docs/.vscode/extensions.json +0 -4
- package/node_modules/@rviscomi/capo.js/docs/.vscode/launch.json +0 -11
- package/node_modules/@rviscomi/capo.js/docs/README.md +0 -51
- package/node_modules/@rviscomi/capo.js/docs/astro.config.mjs +0 -82
- package/node_modules/@rviscomi/capo.js/docs/package-lock.json +0 -7439
- package/node_modules/@rviscomi/capo.js/docs/package.json +0 -21
- package/node_modules/@rviscomi/capo.js/docs/public/capo-social-alt.webp +0 -0
- package/node_modules/@rviscomi/capo.js/docs/public/capo-social.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/public/capo-social.webp +0 -0
- package/node_modules/@rviscomi/capo.js/docs/public/favicon.svg +0 -13
- package/node_modules/@rviscomi/capo.js/docs/src/assets/bookmarklet-setup.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/bookmarklet.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/capo-chrome.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/capo-extension.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/capo800.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-console-expanded.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-console-interactive.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-console.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-hover-validation.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-menu.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-options-dark.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-options-light.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/crx-store.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/custom-palette.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/developer-mode.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/devtools-console.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/devtools-snippet.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/devtools-sources.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/houston.webp +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/load-unpacked.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-areas.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-base.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-crx-stripes.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-csp.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-invalid-element.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-origin-trial.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/assets/validation-title.png +0 -0
- package/node_modules/@rviscomi/capo.js/docs/src/components/CapoClient.astro +0 -165
- package/node_modules/@rviscomi/capo.js/docs/src/components/CapoOptions.astro +0 -10
- package/node_modules/@rviscomi/capo.js/docs/src/components/CapoPalette.astro +0 -26
- package/node_modules/@rviscomi/capo.js/docs/src/components/InlineCapoIcon.astro +0 -15
- package/node_modules/@rviscomi/capo.js/docs/src/components/InlineCapoWeightBars.astro +0 -39
- package/node_modules/@rviscomi/capo.js/docs/src/components/VirtualConsole.astro +0 -11
- package/node_modules/@rviscomi/capo.js/docs/src/content/config.ts +0 -7
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/developer/contributing.mdx +0 -8
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/developer/crx-local.mdx +0 -28
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/developer/custom-adapters.mdx +0 -273
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/index.mdx +0 -108
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/migration-v2.mdx +0 -62
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/actionability.mdx +0 -6
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/assessment-mode.mdx +0 -29
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/config.mdx +0 -195
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/demo.mdx +0 -9
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/extension.mdx +0 -116
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/performance.mdx +0 -6
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/quick-start.mdx +0 -26
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/rules.mdx +0 -202
- package/node_modules/@rviscomi/capo.js/docs/src/content/docs/user/validation.mdx +0 -197
- package/node_modules/@rviscomi/capo.js/docs/src/env.d.ts +0 -2
- package/node_modules/@rviscomi/capo.js/docs/src/lib/VirtualConsole.js +0 -190
- package/node_modules/@rviscomi/capo.js/docs/src/lib/capo.js +0 -1533
- package/node_modules/@rviscomi/capo.js/docs/src/styles/custom.css +0 -7
- package/node_modules/@rviscomi/capo.js/docs/src/styles/virtual-console.css +0 -131
- package/node_modules/@rviscomi/capo.js/docs/tests/VirtualConsole.test.js +0 -108
- package/node_modules/@rviscomi/capo.js/docs/tsconfig.json +0 -3
- package/node_modules/@rviscomi/capo.js/src/crx/capo.js +0 -62
- package/node_modules/@rviscomi/capo.js/src/crx/options.js +0 -69
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/LICENSE +0 -21
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/README.md +0 -10
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/ID.js +0 -19
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +0 -77
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +0 -189
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +0 -53
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +0 -41
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +0 -1
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/assert.js +0 -9
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +0 -33
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +0 -34
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +0 -9
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +0 -18
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +0 -29
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/index.js +0 -30
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +0 -22
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +0 -25
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +0 -1812
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +0 -23
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +0 -34
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +0 -62
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +0 -32
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +0 -47
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +0 -14
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +0 -28
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +0 -19
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +0 -22
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +0 -20
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +0 -23
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +0 -30
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +0 -18
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +0 -18
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +0 -26
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +0 -26
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +0 -26
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.js +0 -28
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.js +0 -19
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.js +0 -26
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +0 -118
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +0 -32
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +0 -14
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +0 -20
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +0 -23
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +0 -27
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.js +0 -19
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.js +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +0 -34
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +0 -18
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +0 -247
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +0 -15
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +0 -26
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +0 -842
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +0 -27
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +0 -178
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +0 -71
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +0 -36
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +0 -27
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +0 -94
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +0 -87
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +0 -119
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +0 -91
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +0 -558
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +0 -31
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +0 -221
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +0 -13
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +0 -29
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +0 -21
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +0 -67
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +0 -1
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +0 -5
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +0 -9
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +0 -35
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +0 -17
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +0 -60
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +0 -19
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +0 -96
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +0 -308
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +0 -20
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +0 -24
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +0 -8
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +0 -11
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +0 -9
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +0 -21
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +0 -19
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +0 -35
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +0 -32
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +0 -35
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +0 -27
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +0 -26
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +0 -16
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +0 -32
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +0 -42
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +0 -47
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +0 -6
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +0 -9
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/scope-manager/package.json +0 -82
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/README.md +0 -12
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +0 -2194
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +0 -200
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/index.d.ts +0 -4
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/index.js +0 -23
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/lib.d.ts +0 -1
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/lib.js +0 -6
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +0 -68
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/parser-options.js +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +0 -188
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/types/package.json +0 -103
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/README.md +0 -10
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +0 -5
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/dist/index.js +0 -7
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +0 -2
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +0 -194
- package/node_modules/astro-eslint-parser/node_modules/@typescript-eslint/visitor-keys/package.json +0 -76
- package/node_modules/astrojs-compiler-sync/LICENSE +0 -53
- package/node_modules/astrojs-compiler-sync/README.md +0 -3
- package/node_modules/astrojs-compiler-sync/browser/index.d.ts +0 -6
- package/node_modules/astrojs-compiler-sync/browser/index.js +0 -76
- package/node_modules/astrojs-compiler-sync/browser/wasm_exec.js +0 -665
- package/node_modules/astrojs-compiler-sync/lib/astrojs-compiler-worker.js +0 -5
- package/node_modules/astrojs-compiler-sync/lib/compiler-sync.cjs +0 -31
- package/node_modules/astrojs-compiler-sync/lib/index.cjs +0 -30
- package/node_modules/astrojs-compiler-sync/lib/index.d.cts +0 -3
- package/node_modules/astrojs-compiler-sync/lib/index.d.ts +0 -14
- package/node_modules/astrojs-compiler-sync/lib/index.js +0 -18
- package/node_modules/astrojs-compiler-sync/package.json +0 -100
- package/node_modules/braces/LICENSE +0 -21
- package/node_modules/braces/README.md +0 -586
- package/node_modules/braces/index.js +0 -170
- package/node_modules/braces/lib/compile.js +0 -60
- package/node_modules/braces/lib/constants.js +0 -57
- package/node_modules/braces/lib/expand.js +0 -113
- package/node_modules/braces/lib/parse.js +0 -331
- package/node_modules/braces/lib/stringify.js +0 -32
- package/node_modules/braces/lib/utils.js +0 -122
- package/node_modules/braces/package.json +0 -77
- package/node_modules/entities/LICENSE +0 -11
- package/node_modules/entities/dist/decode-codepoint.d.ts +0 -8
- package/node_modules/entities/dist/decode-codepoint.d.ts.map +0 -1
- package/node_modules/entities/dist/decode-codepoint.js +0 -46
- package/node_modules/entities/dist/decode-codepoint.js.map +0 -1
- package/node_modules/entities/dist/decode.d.ts +0 -194
- package/node_modules/entities/dist/decode.d.ts.map +0 -1
- package/node_modules/entities/dist/decode.js +0 -544
- package/node_modules/entities/dist/decode.js.map +0 -1
- package/node_modules/entities/dist/encode.d.ts +0 -24
- package/node_modules/entities/dist/encode.d.ts.map +0 -1
- package/node_modules/entities/dist/encode.js +0 -90
- package/node_modules/entities/dist/encode.js.map +0 -1
- package/node_modules/entities/dist/escape.d.ts +0 -48
- package/node_modules/entities/dist/escape.d.ts.map +0 -1
- package/node_modules/entities/dist/escape.js +0 -132
- package/node_modules/entities/dist/escape.js.map +0 -1
- package/node_modules/entities/dist/generated/decode-data-html.d.ts +0 -3
- package/node_modules/entities/dist/generated/decode-data-html.d.ts.map +0 -1
- package/node_modules/entities/dist/generated/decode-data-html.js +0 -5
- package/node_modules/entities/dist/generated/decode-data-html.js.map +0 -1
- package/node_modules/entities/dist/generated/decode-data-xml.d.ts +0 -3
- package/node_modules/entities/dist/generated/decode-data-xml.d.ts.map +0 -1
- package/node_modules/entities/dist/generated/decode-data-xml.js +0 -5
- package/node_modules/entities/dist/generated/decode-data-xml.js.map +0 -1
- package/node_modules/entities/dist/generated/encode-html.d.ts +0 -5
- package/node_modules/entities/dist/generated/encode-html.d.ts.map +0 -1
- package/node_modules/entities/dist/generated/encode-html.js +0 -12
- package/node_modules/entities/dist/generated/encode-html.js.map +0 -1
- package/node_modules/entities/dist/index.d.ts +0 -89
- package/node_modules/entities/dist/index.d.ts.map +0 -1
- package/node_modules/entities/dist/index.js +0 -91
- package/node_modules/entities/dist/index.js.map +0 -1
- package/node_modules/entities/dist/internal/bin-trie-flags.d.ts +0 -17
- package/node_modules/entities/dist/internal/bin-trie-flags.d.ts.map +0 -1
- package/node_modules/entities/dist/internal/bin-trie-flags.js +0 -18
- package/node_modules/entities/dist/internal/bin-trie-flags.js.map +0 -1
- package/node_modules/entities/dist/internal/decode-shared.d.ts +0 -7
- package/node_modules/entities/dist/internal/decode-shared.d.ts.map +0 -1
- package/node_modules/entities/dist/internal/decode-shared.js +0 -17
- package/node_modules/entities/dist/internal/decode-shared.js.map +0 -1
- package/node_modules/entities/dist/internal/encode-shared.d.ts +0 -33
- package/node_modules/entities/dist/internal/encode-shared.d.ts.map +0 -1
- package/node_modules/entities/dist/internal/encode-shared.js +0 -93
- package/node_modules/entities/dist/internal/encode-shared.js.map +0 -1
- package/node_modules/entities/package.json +0 -83
- package/node_modules/entities/readme.md +0 -131
- package/node_modules/entities/src/decode-codepoint.ts +0 -50
- package/node_modules/entities/src/decode.ts +0 -671
- package/node_modules/entities/src/encode.ts +0 -95
- package/node_modules/entities/src/escape.ts +0 -160
- package/node_modules/entities/src/generated/decode-data-html.ts +0 -7
- package/node_modules/entities/src/generated/decode-data-xml.ts +0 -7
- package/node_modules/entities/src/generated/encode-html.ts +0 -18
- package/node_modules/entities/src/index.ts +0 -162
- package/node_modules/entities/src/internal/bin-trie-flags.ts +0 -16
- package/node_modules/entities/src/internal/decode-shared.ts +0 -18
- package/node_modules/entities/src/internal/encode-shared.ts +0 -123
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/LICENSE +0 -21
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/README.md +0 -10
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/ID.js +0 -19
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +0 -77
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +0 -189
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +0 -53
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +0 -41
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +0 -1
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/assert.js +0 -9
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +0 -33
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +0 -34
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +0 -9
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +0 -18
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +0 -29
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/index.js +0 -30
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +0 -22
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +0 -25
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +0 -1812
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +0 -23
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +0 -34
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +0 -62
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +0 -32
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +0 -47
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +0 -14
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +0 -28
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +0 -19
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +0 -22
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +0 -20
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +0 -23
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +0 -30
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +0 -18
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +0 -18
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +0 -26
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +0 -26
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +0 -26
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.js +0 -28
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.js +0 -19
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.js +0 -26
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +0 -118
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +0 -32
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +0 -14
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +0 -20
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +0 -23
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +0 -27
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.js +0 -19
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.js +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +0 -34
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +0 -18
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +0 -247
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +0 -15
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +0 -26
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +0 -842
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +0 -27
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +0 -178
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +0 -71
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +0 -36
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +0 -27
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +0 -94
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +0 -87
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +0 -119
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +0 -91
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +0 -558
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +0 -31
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +0 -221
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +0 -13
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +0 -29
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +0 -21
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +0 -67
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +0 -1
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +0 -5
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +0 -9
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +0 -35
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +0 -17
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +0 -60
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +0 -19
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +0 -96
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +0 -308
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +0 -20
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +0 -24
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +0 -8
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +0 -11
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +0 -9
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +0 -21
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +0 -19
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +0 -35
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +0 -32
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +0 -35
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +0 -27
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +0 -26
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +0 -16
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +0 -32
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +0 -42
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +0 -47
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +0 -6
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +0 -9
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/scope-manager/package.json +0 -82
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/LICENSE +0 -21
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/README.md +0 -12
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +0 -2194
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +0 -200
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/index.d.ts +0 -4
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/index.js +0 -23
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/lib.d.ts +0 -1
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/lib.js +0 -6
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +0 -68
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/parser-options.js +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +0 -188
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/dist/ts-estree.js +0 -37
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/types/package.json +0 -103
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/LICENSE +0 -21
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/README.md +0 -10
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +0 -5
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/dist/index.js +0 -7
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +0 -194
- package/node_modules/eslint-plugin-astro/node_modules/@typescript-eslint/visitor-keys/package.json +0 -76
- package/node_modules/eslint-plugin-astro/node_modules/astro-eslint-parser/LICENSE +0 -21
- package/node_modules/eslint-plugin-astro/node_modules/astro-eslint-parser/README.md +0 -238
- package/node_modules/eslint-plugin-astro/node_modules/astro-eslint-parser/lib/index.d.mts +0 -300
- package/node_modules/eslint-plugin-astro/node_modules/astro-eslint-parser/lib/index.mjs +0 -2434
- package/node_modules/eslint-plugin-astro/node_modules/astro-eslint-parser/package.json +0 -126
- package/node_modules/eslint-plugin-astro/node_modules/globals/globals.json +0 -4104
- package/node_modules/eslint-plugin-astro/node_modules/globals/index.d.ts +0 -4227
- package/node_modules/eslint-plugin-astro/node_modules/globals/index.js +0 -2
- package/node_modules/eslint-plugin-astro/node_modules/globals/license +0 -9
- package/node_modules/eslint-plugin-astro/node_modules/globals/package.json +0 -121
- package/node_modules/eslint-plugin-astro/node_modules/globals/readme.md +0 -42
- package/node_modules/fast-glob/LICENSE +0 -21
- package/node_modules/fast-glob/README.md +0 -830
- package/node_modules/fast-glob/node_modules/glob-parent/LICENSE +0 -15
- package/node_modules/fast-glob/node_modules/glob-parent/README.md +0 -137
- package/node_modules/fast-glob/node_modules/glob-parent/index.js +0 -42
- package/node_modules/fast-glob/node_modules/glob-parent/package.json +0 -48
- package/node_modules/fast-glob/out/index.d.ts +0 -40
- package/node_modules/fast-glob/out/index.js +0 -102
- package/node_modules/fast-glob/out/managers/tasks.d.ts +0 -22
- package/node_modules/fast-glob/out/managers/tasks.js +0 -110
- package/node_modules/fast-glob/out/providers/async.d.ts +0 -9
- package/node_modules/fast-glob/out/providers/async.js +0 -23
- package/node_modules/fast-glob/out/providers/filters/deep.d.ts +0 -16
- package/node_modules/fast-glob/out/providers/filters/deep.js +0 -62
- package/node_modules/fast-glob/out/providers/filters/entry.d.ts +0 -17
- package/node_modules/fast-glob/out/providers/filters/entry.js +0 -85
- package/node_modules/fast-glob/out/providers/filters/error.d.ts +0 -8
- package/node_modules/fast-glob/out/providers/filters/error.js +0 -15
- package/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +0 -33
- package/node_modules/fast-glob/out/providers/matchers/matcher.js +0 -45
- package/node_modules/fast-glob/out/providers/matchers/partial.d.ts +0 -4
- package/node_modules/fast-glob/out/providers/matchers/partial.js +0 -38
- package/node_modules/fast-glob/out/providers/provider.d.ts +0 -19
- package/node_modules/fast-glob/out/providers/provider.js +0 -48
- package/node_modules/fast-glob/out/providers/stream.d.ts +0 -11
- package/node_modules/fast-glob/out/providers/stream.js +0 -31
- package/node_modules/fast-glob/out/providers/sync.d.ts +0 -9
- package/node_modules/fast-glob/out/providers/sync.js +0 -23
- package/node_modules/fast-glob/out/providers/transformers/entry.d.ts +0 -8
- package/node_modules/fast-glob/out/providers/transformers/entry.js +0 -26
- package/node_modules/fast-glob/out/readers/async.d.ts +0 -10
- package/node_modules/fast-glob/out/readers/async.js +0 -35
- package/node_modules/fast-glob/out/readers/reader.d.ts +0 -15
- package/node_modules/fast-glob/out/readers/reader.js +0 -33
- package/node_modules/fast-glob/out/readers/stream.d.ts +0 -14
- package/node_modules/fast-glob/out/readers/stream.js +0 -55
- package/node_modules/fast-glob/out/readers/sync.d.ts +0 -12
- package/node_modules/fast-glob/out/readers/sync.js +0 -43
- package/node_modules/fast-glob/out/settings.d.ts +0 -164
- package/node_modules/fast-glob/out/settings.js +0 -59
- package/node_modules/fast-glob/out/types/index.d.ts +0 -31
- package/node_modules/fast-glob/out/types/index.js +0 -2
- package/node_modules/fast-glob/out/utils/array.d.ts +0 -2
- package/node_modules/fast-glob/out/utils/array.js +0 -22
- package/node_modules/fast-glob/out/utils/errno.d.ts +0 -2
- package/node_modules/fast-glob/out/utils/errno.js +0 -7
- package/node_modules/fast-glob/out/utils/fs.d.ts +0 -4
- package/node_modules/fast-glob/out/utils/fs.js +0 -19
- package/node_modules/fast-glob/out/utils/index.d.ts +0 -8
- package/node_modules/fast-glob/out/utils/index.js +0 -17
- package/node_modules/fast-glob/out/utils/path.d.ts +0 -13
- package/node_modules/fast-glob/out/utils/path.js +0 -68
- package/node_modules/fast-glob/out/utils/pattern.d.ts +0 -49
- package/node_modules/fast-glob/out/utils/pattern.js +0 -206
- package/node_modules/fast-glob/out/utils/stream.d.ts +0 -4
- package/node_modules/fast-glob/out/utils/stream.js +0 -17
- package/node_modules/fast-glob/out/utils/string.d.ts +0 -2
- package/node_modules/fast-glob/out/utils/string.js +0 -11
- package/node_modules/fast-glob/package.json +0 -81
- package/node_modules/fastq/LICENSE +0 -13
- package/node_modules/fastq/README.md +0 -310
- package/node_modules/fastq/SECURITY.md +0 -15
- package/node_modules/fastq/bench.js +0 -66
- package/node_modules/fastq/eslint.config.js +0 -11
- package/node_modules/fastq/example.js +0 -14
- package/node_modules/fastq/example.mjs +0 -9
- package/node_modules/fastq/index.d.ts +0 -59
- package/node_modules/fastq/package.json +0 -49
- package/node_modules/fastq/queue.js +0 -346
- package/node_modules/fastq/test/example.ts +0 -83
- package/node_modules/fastq/test/promise.js +0 -325
- package/node_modules/fastq/test/test.js +0 -733
- package/node_modules/fastq/test/tsconfig.json +0 -11
- package/node_modules/fill-range/LICENSE +0 -21
- package/node_modules/fill-range/README.md +0 -237
- package/node_modules/fill-range/index.js +0 -248
- package/node_modules/fill-range/package.json +0 -74
- package/node_modules/is-number/LICENSE +0 -21
- package/node_modules/is-number/README.md +0 -187
- package/node_modules/is-number/index.js +0 -18
- package/node_modules/is-number/package.json +0 -82
- package/node_modules/merge2/LICENSE +0 -21
- package/node_modules/merge2/README.md +0 -144
- package/node_modules/merge2/index.js +0 -144
- package/node_modules/merge2/package.json +0 -43
- package/node_modules/micromatch/LICENSE +0 -21
- package/node_modules/micromatch/README.md +0 -1024
- package/node_modules/micromatch/index.js +0 -474
- package/node_modules/micromatch/node_modules/picomatch/LICENSE +0 -21
- package/node_modules/micromatch/node_modules/picomatch/README.md +0 -716
- package/node_modules/micromatch/node_modules/picomatch/index.js +0 -3
- package/node_modules/micromatch/node_modules/picomatch/lib/constants.js +0 -184
- package/node_modules/micromatch/node_modules/picomatch/lib/parse.js +0 -1392
- package/node_modules/micromatch/node_modules/picomatch/lib/picomatch.js +0 -342
- package/node_modules/micromatch/node_modules/picomatch/lib/scan.js +0 -391
- package/node_modules/micromatch/node_modules/picomatch/lib/utils.js +0 -64
- package/node_modules/micromatch/node_modules/picomatch/package.json +0 -81
- package/node_modules/micromatch/package.json +0 -119
- package/node_modules/parse5/LICENSE +0 -19
- package/node_modules/parse5/README.md +0 -38
- package/node_modules/parse5/dist/common/doctype.d.ts +0 -4
- package/node_modules/parse5/dist/common/doctype.js +0 -114
- package/node_modules/parse5/dist/common/error-codes.d.ts +0 -67
- package/node_modules/parse5/dist/common/error-codes.js +0 -63
- package/node_modules/parse5/dist/common/foreign-content.d.ts +0 -9
- package/node_modules/parse5/dist/common/foreign-content.js +0 -228
- package/node_modules/parse5/dist/common/html.d.ts +0 -289
- package/node_modules/parse5/dist/common/html.js +0 -523
- package/node_modules/parse5/dist/common/token.d.ts +0 -84
- package/node_modules/parse5/dist/common/token.js +0 -20
- package/node_modules/parse5/dist/common/unicode.d.ts +0 -42
- package/node_modules/parse5/dist/common/unicode.js +0 -62
- package/node_modules/parse5/dist/index.d.ts +0 -71
- package/node_modules/parse5/dist/index.js +0 -42
- package/node_modules/parse5/dist/parser/formatting-element-list.d.ts +0 -36
- package/node_modules/parse5/dist/parser/formatting-element-list.js +0 -110
- package/node_modules/parse5/dist/parser/index.d.ts +0 -221
- package/node_modules/parse5/dist/parser/index.js +0 -3245
- package/node_modules/parse5/dist/parser/open-element-stack.d.ts +0 -53
- package/node_modules/parse5/dist/parser/open-element-stack.js +0 -324
- package/node_modules/parse5/dist/serializer/index.d.ts +0 -60
- package/node_modules/parse5/dist/serializer/index.js +0 -168
- package/node_modules/parse5/dist/tokenizer/index.d.ts +0 -247
- package/node_modules/parse5/dist/tokenizer/index.js +0 -2712
- package/node_modules/parse5/dist/tokenizer/preprocessor.d.ts +0 -36
- package/node_modules/parse5/dist/tokenizer/preprocessor.js +0 -196
- package/node_modules/parse5/dist/tree-adapters/default.d.ts +0 -84
- package/node_modules/parse5/dist/tree-adapters/default.js +0 -173
- package/node_modules/parse5/dist/tree-adapters/interface.d.ts +0 -255
- package/node_modules/parse5/dist/tree-adapters/interface.js +0 -1
- package/node_modules/parse5/package.json +0 -53
- package/node_modules/queue-microtask/LICENSE +0 -20
- package/node_modules/queue-microtask/README.md +0 -90
- package/node_modules/queue-microtask/index.d.ts +0 -2
- package/node_modules/queue-microtask/index.js +0 -9
- package/node_modules/queue-microtask/package.json +0 -55
- package/node_modules/reusify/.github/dependabot.yml +0 -7
- package/node_modules/reusify/.github/workflows/ci.yml +0 -96
- package/node_modules/reusify/LICENSE +0 -22
- package/node_modules/reusify/README.md +0 -139
- package/node_modules/reusify/SECURITY.md +0 -15
- package/node_modules/reusify/benchmarks/createNoCodeFunction.js +0 -30
- package/node_modules/reusify/benchmarks/fib.js +0 -13
- package/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +0 -38
- package/node_modules/reusify/eslint.config.js +0 -14
- package/node_modules/reusify/package.json +0 -50
- package/node_modules/reusify/reusify.d.ts +0 -14
- package/node_modules/reusify/reusify.js +0 -33
- package/node_modules/reusify/test.js +0 -66
- package/node_modules/reusify/tsconfig.json +0 -11
- package/node_modules/run-parallel/LICENSE +0 -20
- package/node_modules/run-parallel/README.md +0 -85
- package/node_modules/run-parallel/index.js +0 -51
- package/node_modules/run-parallel/package.json +0 -58
- package/node_modules/synckit/LICENSE +0 -21
- package/node_modules/synckit/README.md +0 -256
- package/node_modules/synckit/lib/common.d.ts +0 -5
- package/node_modules/synckit/lib/common.js +0 -22
- package/node_modules/synckit/lib/common.js.map +0 -1
- package/node_modules/synckit/lib/constants.d.ts +0 -38
- package/node_modules/synckit/lib/constants.js +0 -54
- package/node_modules/synckit/lib/constants.js.map +0 -1
- package/node_modules/synckit/lib/helpers.d.ts +0 -27
- package/node_modules/synckit/lib/helpers.js +0 -411
- package/node_modules/synckit/lib/helpers.js.map +0 -1
- package/node_modules/synckit/lib/index.cjs +0 -588
- package/node_modules/synckit/lib/index.d.cts +0 -138
- package/node_modules/synckit/lib/index.d.ts +0 -7
- package/node_modules/synckit/lib/index.js +0 -68
- package/node_modules/synckit/lib/index.js.map +0 -1
- package/node_modules/synckit/lib/types.d.ts +0 -48
- package/node_modules/synckit/lib/types.js +0 -2
- package/node_modules/synckit/lib/types.js.map +0 -1
- package/node_modules/synckit/package.json +0 -45
- package/node_modules/to-regex-range/LICENSE +0 -21
- package/node_modules/to-regex-range/README.md +0 -305
- package/node_modules/to-regex-range/index.js +0 -288
- package/node_modules/to-regex-range/package.json +0 -88
- package/node_modules/yaml-eslint-parser/lib/chunk-15K8U1wQ.mjs +0 -18
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/background.js +0 -0
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/capo.css +0 -0
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/images/icon128.png +0 -0
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/images/icon256.png +0 -0
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/options/options.css +0 -0
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/options/options.html +0 -0
- /package/node_modules/@rviscomi/capo.js/{crx → dist/chrome}/styles/open-props.css +0 -0
- /package/node_modules/@rviscomi/capo.js/{docs/src/assets/capo256.png → dist/firefox/images/icon256.png} +0 -0
- /package/node_modules/{eslint-plugin-astro/node_modules/astro-eslint-parser → eslint-plugin-toml}/lib/rolldown-runtime-D7D4PA-g.mjs +0 -0
- /package/node_modules/{eslint-plugin-toml → yaml-eslint-parser}/lib/chunk-CfYAbeIz.mjs +0 -0
|
@@ -1,588 +0,0 @@
|
|
|
1
|
-
//#region rolldown:runtime
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
10
|
-
key = keys[i];
|
|
11
|
-
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
12
|
-
get: ((k) => from[k]).bind(null, key),
|
|
13
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
19
|
-
value: mod,
|
|
20
|
-
enumerable: true
|
|
21
|
-
}) : target, mod));
|
|
22
|
-
|
|
23
|
-
//#endregion
|
|
24
|
-
const node_path = __toESM(require("node:path"));
|
|
25
|
-
const node_url = __toESM(require("node:url"));
|
|
26
|
-
const node_worker_threads = __toESM(require("node:worker_threads"));
|
|
27
|
-
const node_crypto = __toESM(require("node:crypto"));
|
|
28
|
-
const node_fs = __toESM(require("node:fs"));
|
|
29
|
-
const __pkgr_core = __toESM(require("@pkgr/core"));
|
|
30
|
-
|
|
31
|
-
//#region src/common.ts
|
|
32
|
-
var _process$env$NODE_OPT;
|
|
33
|
-
const NODE_OPTIONS$1 = (_process$env$NODE_OPT = process.env.NODE_OPTIONS) === null || _process$env$NODE_OPT === void 0 ? void 0 : _process$env$NODE_OPT.split(/\s+/);
|
|
34
|
-
const hasFlag = (flag) => (NODE_OPTIONS$1 === null || NODE_OPTIONS$1 === void 0 ? void 0 : NODE_OPTIONS$1.includes(flag)) || process.argv.includes(flag);
|
|
35
|
-
const parseVersion = (version) => version.split(".").map(Number.parseFloat);
|
|
36
|
-
const compareVersion = (version1, version2) => {
|
|
37
|
-
const versions1 = parseVersion(version1);
|
|
38
|
-
const versions2 = parseVersion(version2);
|
|
39
|
-
const length = Math.max(versions1.length, versions2.length);
|
|
40
|
-
for (let i = 0; i < length; i++) {
|
|
41
|
-
const v1 = versions1[i] || 0;
|
|
42
|
-
const v2 = versions2[i] || 0;
|
|
43
|
-
if (v1 > v2) return 1;
|
|
44
|
-
if (v1 < v2) return -1;
|
|
45
|
-
}
|
|
46
|
-
return 0;
|
|
47
|
-
};
|
|
48
|
-
const NODE_VERSION = process.versions.node;
|
|
49
|
-
const compareNodeVersion = (version) => compareVersion(NODE_VERSION, version);
|
|
50
|
-
|
|
51
|
-
//#endregion
|
|
52
|
-
//#region src/constants.ts
|
|
53
|
-
const TsRunner = {
|
|
54
|
-
Node: "node",
|
|
55
|
-
Bun: "bun",
|
|
56
|
-
TsNode: "ts-node",
|
|
57
|
-
EsbuildRegister: "esbuild-register",
|
|
58
|
-
EsbuildRunner: "esbuild-runner",
|
|
59
|
-
OXC: "oxc",
|
|
60
|
-
SWC: "swc",
|
|
61
|
-
TSX: "tsx"
|
|
62
|
-
};
|
|
63
|
-
const { NODE_OPTIONS: NODE_OPTIONS_ = "", SYNCKIT_EXEC_ARGV = "", SYNCKIT_GLOBAL_SHIMS, SYNCKIT_TIMEOUT, SYNCKIT_TS_RUNNER } = process.env;
|
|
64
|
-
const TS_ESM_PARTIAL_SUPPORTED = compareNodeVersion("16") >= 0 && compareNodeVersion("18.19") < 0;
|
|
65
|
-
const MTS_SUPPORTED = compareNodeVersion("20.8") >= 0;
|
|
66
|
-
const MODULE_REGISTER_SUPPORTED = MTS_SUPPORTED || compareNodeVersion("18.19") >= 0;
|
|
67
|
-
const STRIP_TYPES_NODE_VERSION = "22.6";
|
|
68
|
-
const TRANSFORM_TYPES_NODE_VERSION = "22.7";
|
|
69
|
-
const FEATURE_TYPESCRIPT_NODE_VERSION = "22.10";
|
|
70
|
-
const DEFAULT_TYPES_NODE_VERSION = "23.6";
|
|
71
|
-
const STRIP_TYPES_FLAG = "--experimental-strip-types";
|
|
72
|
-
const TRANSFORM_TYPES_FLAG = "--experimental-transform-types";
|
|
73
|
-
const NO_STRIP_TYPES_FLAG = "--no-experimental-strip-types";
|
|
74
|
-
const NODE_OPTIONS = NODE_OPTIONS_.split(/\s+/);
|
|
75
|
-
const NO_STRIP_TYPES = hasFlag(NO_STRIP_TYPES_FLAG) && (compareNodeVersion(FEATURE_TYPESCRIPT_NODE_VERSION) >= 0 ? process.features.typescript === false : !hasFlag(STRIP_TYPES_FLAG) && !hasFlag(TRANSFORM_TYPES_FLAG));
|
|
76
|
-
const DEFAULT_TIMEOUT = SYNCKIT_TIMEOUT ? +SYNCKIT_TIMEOUT : void 0;
|
|
77
|
-
const DEFAULT_EXEC_ARGV = SYNCKIT_EXEC_ARGV.split(",");
|
|
78
|
-
const DEFAULT_TS_RUNNER = SYNCKIT_TS_RUNNER;
|
|
79
|
-
const DEFAULT_GLOBAL_SHIMS = ["1", "true"].includes(SYNCKIT_GLOBAL_SHIMS);
|
|
80
|
-
const DEFAULT_GLOBAL_SHIMS_PRESET = [{
|
|
81
|
-
moduleName: "node-fetch",
|
|
82
|
-
globalName: "fetch"
|
|
83
|
-
}, {
|
|
84
|
-
moduleName: "node:perf_hooks",
|
|
85
|
-
globalName: "performance",
|
|
86
|
-
named: "performance"
|
|
87
|
-
}];
|
|
88
|
-
const IMPORT_FLAG = "--import";
|
|
89
|
-
const REQUIRE_FLAG = "--require";
|
|
90
|
-
const REQUIRE_ABBR_FLAG = "-r";
|
|
91
|
-
const REQUIRE_FLAGS = new Set([REQUIRE_FLAG, REQUIRE_ABBR_FLAG]);
|
|
92
|
-
const LOADER_FLAG = "--loader";
|
|
93
|
-
const EXPERIMENTAL_LOADER_FLAG = "--experimental-loader";
|
|
94
|
-
const LOADER_FLAGS = new Set([LOADER_FLAG, EXPERIMENTAL_LOADER_FLAG]);
|
|
95
|
-
const IMPORT_FLAG_SUPPORTED = compareNodeVersion("20.6") >= 0;
|
|
96
|
-
const INT32_BYTES = 4;
|
|
97
|
-
|
|
98
|
-
//#endregion
|
|
99
|
-
//#region src/helpers.ts
|
|
100
|
-
const isFile = (path$2) => {
|
|
101
|
-
try {
|
|
102
|
-
var _fs$statSync;
|
|
103
|
-
return !!((_fs$statSync = node_fs.default.statSync(path$2, { throwIfNoEntry: false })) === null || _fs$statSync === void 0 ? void 0 : _fs$statSync.isFile());
|
|
104
|
-
} catch {
|
|
105
|
-
/* istanbul ignore next */
|
|
106
|
-
return false;
|
|
107
|
-
}
|
|
108
|
-
};
|
|
109
|
-
const dataUrl = (code) => new URL(`data:text/javascript,${encodeURIComponent(code)}`);
|
|
110
|
-
const hasRequireFlag = (execArgv) => execArgv.some((execArg) => REQUIRE_FLAGS.has(execArg));
|
|
111
|
-
const hasImportFlag = (execArgv) => execArgv.includes(IMPORT_FLAG);
|
|
112
|
-
const hasLoaderFlag = (execArgv) => execArgv.some((execArg) => LOADER_FLAGS.has(execArg));
|
|
113
|
-
const setupTsRunner = (workerPath, { execArgv = DEFAULT_EXEC_ARGV, tsRunner } = {}) => {
|
|
114
|
-
let ext = node_path.default.extname(workerPath);
|
|
115
|
-
if (!/([/\\])node_modules\1/.test(workerPath) && (!ext || /^\.[cm]?js$/.test(ext))) {
|
|
116
|
-
const workPathWithoutExt = ext ? workerPath.slice(0, -ext.length) : workerPath;
|
|
117
|
-
let extensions;
|
|
118
|
-
switch (ext) {
|
|
119
|
-
case ".cjs": {
|
|
120
|
-
extensions = [".cts", ".cjs"];
|
|
121
|
-
break;
|
|
122
|
-
}
|
|
123
|
-
case ".mjs": {
|
|
124
|
-
extensions = [".mts", ".mjs"];
|
|
125
|
-
break;
|
|
126
|
-
}
|
|
127
|
-
default: {
|
|
128
|
-
extensions = [".ts", ".js"];
|
|
129
|
-
break;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
const found = (0, __pkgr_core.tryExtensions)(workPathWithoutExt, extensions);
|
|
133
|
-
let differentExt;
|
|
134
|
-
if (found && (!ext || (differentExt = found !== workPathWithoutExt))) {
|
|
135
|
-
workerPath = found;
|
|
136
|
-
if (differentExt) ext = node_path.default.extname(workerPath);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
const isTs = /\.[cm]?ts$/.test(workerPath);
|
|
140
|
-
let jsUseEsm = ext === ".mjs";
|
|
141
|
-
let tsUseEsm = ext === ".mts";
|
|
142
|
-
if (isTs) {
|
|
143
|
-
if (!tsUseEsm && ext !== ".cts") {
|
|
144
|
-
const pkg = (0, __pkgr_core.findUp)(workerPath);
|
|
145
|
-
if (pkg) tsUseEsm = (0, __pkgr_core.cjsRequire)(pkg).type === "module";
|
|
146
|
-
}
|
|
147
|
-
const stripTypesIndex = execArgv.indexOf(STRIP_TYPES_FLAG);
|
|
148
|
-
const transformTypesIndex = execArgv.indexOf(TRANSFORM_TYPES_FLAG);
|
|
149
|
-
const noStripTypesIndex = execArgv.indexOf(NO_STRIP_TYPES_FLAG);
|
|
150
|
-
const execArgvNoStripTypes = noStripTypesIndex > stripTypesIndex || noStripTypesIndex > transformTypesIndex;
|
|
151
|
-
const noStripTypes = execArgvNoStripTypes || stripTypesIndex === -1 && transformTypesIndex === -1 && NO_STRIP_TYPES;
|
|
152
|
-
if (tsRunner == null) {
|
|
153
|
-
if (process.versions.bun) tsRunner = TsRunner.Bun;
|
|
154
|
-
else if (!noStripTypes && compareNodeVersion(STRIP_TYPES_NODE_VERSION) >= 0) tsRunner = TsRunner.Node;
|
|
155
|
-
else if ((0, __pkgr_core.isPkgAvailable)(TsRunner.TsNode)) tsRunner = TsRunner.TsNode;
|
|
156
|
-
}
|
|
157
|
-
switch (tsRunner) {
|
|
158
|
-
case TsRunner.Bun: break;
|
|
159
|
-
case TsRunner.Node: {
|
|
160
|
-
if (compareNodeVersion(STRIP_TYPES_NODE_VERSION) < 0) throw new Error("type stripping is not supported in this node version");
|
|
161
|
-
if (noStripTypes) throw new Error("type stripping is disabled explicitly");
|
|
162
|
-
if (compareNodeVersion(DEFAULT_TYPES_NODE_VERSION) >= 0) break;
|
|
163
|
-
if (compareNodeVersion(TRANSFORM_TYPES_NODE_VERSION) >= 0 && !execArgv.includes(TRANSFORM_TYPES_FLAG)) execArgv = [TRANSFORM_TYPES_FLAG, ...execArgv];
|
|
164
|
-
else if (compareNodeVersion(STRIP_TYPES_NODE_VERSION) >= 0 && !execArgv.includes(STRIP_TYPES_FLAG)) execArgv = [STRIP_TYPES_FLAG, ...execArgv];
|
|
165
|
-
break;
|
|
166
|
-
}
|
|
167
|
-
case TsRunner.TsNode: {
|
|
168
|
-
if (tsUseEsm) {
|
|
169
|
-
if (!execArgv.includes(LOADER_FLAG)) execArgv = [
|
|
170
|
-
LOADER_FLAG,
|
|
171
|
-
`${TsRunner.TsNode}/esm`,
|
|
172
|
-
...execArgv
|
|
173
|
-
];
|
|
174
|
-
} else if (!hasRequireFlag(execArgv)) execArgv = [
|
|
175
|
-
REQUIRE_ABBR_FLAG,
|
|
176
|
-
`${TsRunner.TsNode}/register`,
|
|
177
|
-
...execArgv
|
|
178
|
-
];
|
|
179
|
-
break;
|
|
180
|
-
}
|
|
181
|
-
case TsRunner.EsbuildRegister: {
|
|
182
|
-
if (tsUseEsm) {
|
|
183
|
-
if (!hasLoaderFlag(execArgv)) execArgv = [
|
|
184
|
-
LOADER_FLAG,
|
|
185
|
-
`${TsRunner.EsbuildRegister}/loader`,
|
|
186
|
-
...execArgv
|
|
187
|
-
];
|
|
188
|
-
} else if (!hasRequireFlag(execArgv)) execArgv = [
|
|
189
|
-
REQUIRE_ABBR_FLAG,
|
|
190
|
-
TsRunner.EsbuildRegister,
|
|
191
|
-
...execArgv
|
|
192
|
-
];
|
|
193
|
-
break;
|
|
194
|
-
}
|
|
195
|
-
case TsRunner.EsbuildRunner: {
|
|
196
|
-
if (!hasRequireFlag(execArgv)) execArgv = [
|
|
197
|
-
REQUIRE_ABBR_FLAG,
|
|
198
|
-
`${TsRunner.EsbuildRunner}/register`,
|
|
199
|
-
...execArgv
|
|
200
|
-
];
|
|
201
|
-
break;
|
|
202
|
-
}
|
|
203
|
-
case TsRunner.OXC: {
|
|
204
|
-
if (!execArgv.includes(IMPORT_FLAG)) execArgv = [
|
|
205
|
-
IMPORT_FLAG,
|
|
206
|
-
`@${TsRunner.OXC}-node/core/register`,
|
|
207
|
-
...execArgv
|
|
208
|
-
];
|
|
209
|
-
break;
|
|
210
|
-
}
|
|
211
|
-
case TsRunner.SWC: {
|
|
212
|
-
if (tsUseEsm) {
|
|
213
|
-
if (IMPORT_FLAG_SUPPORTED) {
|
|
214
|
-
if (!hasImportFlag(execArgv)) execArgv = [
|
|
215
|
-
IMPORT_FLAG,
|
|
216
|
-
`@${TsRunner.SWC}-node/register/esm-register`,
|
|
217
|
-
...execArgv
|
|
218
|
-
];
|
|
219
|
-
} else if (!hasLoaderFlag(execArgv)) execArgv = [
|
|
220
|
-
LOADER_FLAG,
|
|
221
|
-
`@${TsRunner.SWC}-node/register/esm`,
|
|
222
|
-
...execArgv
|
|
223
|
-
];
|
|
224
|
-
} else if (!hasRequireFlag(execArgv)) execArgv = [
|
|
225
|
-
REQUIRE_ABBR_FLAG,
|
|
226
|
-
`@${TsRunner.SWC}-node/register`,
|
|
227
|
-
...execArgv
|
|
228
|
-
];
|
|
229
|
-
break;
|
|
230
|
-
}
|
|
231
|
-
case TsRunner.TSX: {
|
|
232
|
-
if (IMPORT_FLAG_SUPPORTED) {
|
|
233
|
-
if (!execArgv.includes(IMPORT_FLAG)) execArgv = [
|
|
234
|
-
IMPORT_FLAG,
|
|
235
|
-
TsRunner.TSX,
|
|
236
|
-
...execArgv
|
|
237
|
-
];
|
|
238
|
-
} else if (!execArgv.includes(LOADER_FLAG)) execArgv = [
|
|
239
|
-
LOADER_FLAG,
|
|
240
|
-
TsRunner.TSX,
|
|
241
|
-
...execArgv
|
|
242
|
-
];
|
|
243
|
-
break;
|
|
244
|
-
}
|
|
245
|
-
default: throw new Error(`Unknown ts runner: ${String(tsRunner)}`);
|
|
246
|
-
}
|
|
247
|
-
} else if (!jsUseEsm && ext !== ".cjs") {
|
|
248
|
-
const pkg = (0, __pkgr_core.findUp)(workerPath);
|
|
249
|
-
if (pkg) jsUseEsm = (0, __pkgr_core.cjsRequire)(pkg).type === "module";
|
|
250
|
-
}
|
|
251
|
-
let resolvedPnpLoaderPath;
|
|
252
|
-
/* istanbul ignore if -- https://github.com/facebook/jest/issues/5274 */
|
|
253
|
-
if (process.versions.pnp) {
|
|
254
|
-
let pnpApiPath;
|
|
255
|
-
try {
|
|
256
|
-
/** @see https://github.com/facebook/jest/issues/9543 */
|
|
257
|
-
pnpApiPath = __pkgr_core.cjsRequire.resolve("pnpapi");
|
|
258
|
-
} catch {}
|
|
259
|
-
if (pnpApiPath && !NODE_OPTIONS.some((option, index) => REQUIRE_FLAGS.has(option) && pnpApiPath === __pkgr_core.cjsRequire.resolve(NODE_OPTIONS[index + 1])) && !execArgv.includes(pnpApiPath)) {
|
|
260
|
-
execArgv = [
|
|
261
|
-
REQUIRE_ABBR_FLAG,
|
|
262
|
-
pnpApiPath,
|
|
263
|
-
...execArgv
|
|
264
|
-
];
|
|
265
|
-
const pnpLoaderPath = node_path.default.resolve(pnpApiPath, "../.pnp.loader.mjs");
|
|
266
|
-
if (isFile(pnpLoaderPath)) {
|
|
267
|
-
resolvedPnpLoaderPath = (0, node_url.pathToFileURL)(pnpLoaderPath).href;
|
|
268
|
-
execArgv = [
|
|
269
|
-
LOADER_FLAG,
|
|
270
|
-
resolvedPnpLoaderPath,
|
|
271
|
-
...execArgv
|
|
272
|
-
];
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
return {
|
|
277
|
-
ext,
|
|
278
|
-
isTs,
|
|
279
|
-
jsUseEsm,
|
|
280
|
-
tsRunner,
|
|
281
|
-
tsUseEsm,
|
|
282
|
-
workerPath,
|
|
283
|
-
pnpLoaderPath: resolvedPnpLoaderPath,
|
|
284
|
-
execArgv
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
const md5Hash = (text) => (0, node_crypto.createHash)("md5").update(text).digest("hex");
|
|
288
|
-
const encodeImportModule = (moduleNameOrGlobalShim, type = "import") => {
|
|
289
|
-
const { moduleName, globalName, named, conditional } = typeof moduleNameOrGlobalShim === "string" ? { moduleName: moduleNameOrGlobalShim } : moduleNameOrGlobalShim;
|
|
290
|
-
const importStatement = type === "import" ? `import${globalName ? " " + (named === null ? "* as " + globalName : (named === null || named === void 0 ? void 0 : named.trim()) ? `{${named}}` : globalName) + " from" : ""} '${node_path.default.isAbsolute(moduleName) ? String((0, node_url.pathToFileURL)(moduleName)) : moduleName}'` : `${globalName ? "const " + ((named === null || named === void 0 ? void 0 : named.trim()) ? `{${named}}` : globalName) + "=" : ""}require('${moduleName.replace(/\\/g, "\\\\")}')`;
|
|
291
|
-
if (!globalName) return importStatement;
|
|
292
|
-
const overrideStatement = `globalThis.${globalName}=${(named === null || named === void 0 ? void 0 : named.trim()) ? named : globalName}`;
|
|
293
|
-
return importStatement + (conditional === false ? `;${overrideStatement}` : `;if(!globalThis.${globalName})${overrideStatement}`);
|
|
294
|
-
};
|
|
295
|
-
/** @internal */
|
|
296
|
-
const _generateGlobals = (globalShims, type) => globalShims.reduce((acc, shim) => `${acc}${acc ? ";" : ""}${encodeImportModule(shim, type)}`, "");
|
|
297
|
-
let globalsCache;
|
|
298
|
-
let tmpdir;
|
|
299
|
-
const _dirname = typeof __dirname === "undefined" ? node_path.default.dirname((0, node_url.fileURLToPath)(require("url").pathToFileURL(__filename).href)) : __dirname;
|
|
300
|
-
const generateGlobals = (workerPath, globalShims, type = "import") => {
|
|
301
|
-
if (globalShims.length === 0) return "";
|
|
302
|
-
globalsCache ?? (globalsCache = new Map());
|
|
303
|
-
const cached = globalsCache.get(workerPath);
|
|
304
|
-
if (cached) {
|
|
305
|
-
const [content$1, filepath$1] = cached;
|
|
306
|
-
if (type === "require" && !filepath$1 || type === "import" && filepath$1 && isFile(filepath$1)) return content$1;
|
|
307
|
-
}
|
|
308
|
-
const globals = _generateGlobals(globalShims, type);
|
|
309
|
-
let content = globals;
|
|
310
|
-
let filepath;
|
|
311
|
-
if (type === "import") {
|
|
312
|
-
if (!tmpdir) tmpdir = node_path.default.resolve((0, __pkgr_core.findUp)(_dirname), "../node_modules/.synckit");
|
|
313
|
-
node_fs.default.mkdirSync(tmpdir, { recursive: true });
|
|
314
|
-
filepath = node_path.default.resolve(tmpdir, md5Hash(workerPath) + ".mjs");
|
|
315
|
-
content = encodeImportModule(filepath);
|
|
316
|
-
node_fs.default.writeFileSync(filepath, globals);
|
|
317
|
-
}
|
|
318
|
-
globalsCache.set(workerPath, [content, filepath]);
|
|
319
|
-
return content;
|
|
320
|
-
};
|
|
321
|
-
/**
|
|
322
|
-
* Creates a shallow copy of the enumerable properties from the provided object.
|
|
323
|
-
*
|
|
324
|
-
* @param object - An optional object whose properties are to be extracted.
|
|
325
|
-
* @returns A new object containing the enumerable properties of the input, or
|
|
326
|
-
* undefined if no valid object is provided.
|
|
327
|
-
*/
|
|
328
|
-
function extractProperties(object) {
|
|
329
|
-
if (object && typeof object === "object") {
|
|
330
|
-
const properties = {};
|
|
331
|
-
for (const key in object) properties[key] = object[key];
|
|
332
|
-
return properties;
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
let sharedBuffer;
|
|
336
|
-
let sharedBufferView;
|
|
337
|
-
/**
|
|
338
|
-
* Spawns a worker thread and returns a synchronous function to dispatch tasks.
|
|
339
|
-
*
|
|
340
|
-
* The function initializes a worker thread with the specified script and
|
|
341
|
-
* configuration, setting up a dedicated message channel for bidirectional
|
|
342
|
-
* communication. It applies TypeScript runner settings, execution arguments,
|
|
343
|
-
* and global shims as needed. The returned function sends tasks to the worker,
|
|
344
|
-
* waits synchronously for a response using shared memory synchronization, and
|
|
345
|
-
* then returns the computed result.
|
|
346
|
-
*
|
|
347
|
-
* @param workerPath - The file path of the worker script to execute.
|
|
348
|
-
* @param options - An object containing configuration parameters:
|
|
349
|
-
*
|
|
350
|
-
* - Timeout: Maximum time in milliseconds to wait for the worker's response.
|
|
351
|
-
* - ExecArgv: Array of Node.js execution arguments for the worker.
|
|
352
|
-
* - TsRunner: Specifies the TypeScript runner to use if the worker script is
|
|
353
|
-
* TypeScript.
|
|
354
|
-
* - TransferList: List of additional transferable objects to pass to the worker.
|
|
355
|
-
* - GlobalShims: Modules to import as global shims; if true, a default preset is
|
|
356
|
-
* used.
|
|
357
|
-
*
|
|
358
|
-
* @returns A synchronous function that accepts task arguments intended for the
|
|
359
|
-
* worker thread and returns its result.
|
|
360
|
-
* @throws {Error} If a TypeScript runner is required but not specified, or if
|
|
361
|
-
* an unsupported TypeScript runner is used for the file type.
|
|
362
|
-
* @throws {Error} If internal synchronization fails or if the message
|
|
363
|
-
* identifier does not match the expected value.
|
|
364
|
-
*/
|
|
365
|
-
function startWorkerThread(workerPath, { timeout = DEFAULT_TIMEOUT, execArgv = DEFAULT_EXEC_ARGV, tsRunner = DEFAULT_TS_RUNNER, transferList = [], globalShims = DEFAULT_GLOBAL_SHIMS } = {}) {
|
|
366
|
-
const { port1: mainPort, port2: workerPort } = new node_worker_threads.MessageChannel();
|
|
367
|
-
const { isTs, ext, jsUseEsm, tsUseEsm, tsRunner: finalTsRunner, workerPath: finalWorkerPath, pnpLoaderPath, execArgv: finalExecArgv } = setupTsRunner(workerPath, {
|
|
368
|
-
execArgv,
|
|
369
|
-
tsRunner
|
|
370
|
-
});
|
|
371
|
-
const workerPathUrl = (0, node_url.pathToFileURL)(finalWorkerPath);
|
|
372
|
-
if (/\.[cm]ts$/.test(finalWorkerPath)) {
|
|
373
|
-
const isTsxSupported = !tsUseEsm || TS_ESM_PARTIAL_SUPPORTED;
|
|
374
|
-
/* istanbul ignore if */
|
|
375
|
-
if (!finalTsRunner) throw new Error("No ts runner specified, ts worker path is not supported");
|
|
376
|
-
else if ([
|
|
377
|
-
TsRunner.EsbuildRegister,
|
|
378
|
-
TsRunner.EsbuildRunner,
|
|
379
|
-
...TS_ESM_PARTIAL_SUPPORTED ? [TsRunner.OXC, TsRunner.SWC] : [],
|
|
380
|
-
...isTsxSupported ? [] : [TsRunner.TSX]
|
|
381
|
-
].includes(finalTsRunner)) throw new Error(`${finalTsRunner} is not supported for ${ext} files yet` + (isTsxSupported ? ", you can try [tsx](https://github.com/esbuild-kit/tsx) instead" : MTS_SUPPORTED ? ", you can try [oxc](https://github.com/oxc-project/oxc-node) or [swc](https://github.com/swc-project/swc-node/tree/master/packages/register) instead" : ""));
|
|
382
|
-
}
|
|
383
|
-
const finalGlobalShims = (globalShims === true ? DEFAULT_GLOBAL_SHIMS_PRESET : Array.isArray(globalShims) ? globalShims : []).filter(({ moduleName }) => (0, __pkgr_core.isPkgAvailable)(moduleName));
|
|
384
|
-
sharedBufferView ?? (sharedBufferView = new Int32Array(sharedBuffer ?? (sharedBuffer = new SharedArrayBuffer(INT32_BYTES)), 0, 1));
|
|
385
|
-
const useGlobals = finalGlobalShims.length > 0;
|
|
386
|
-
const useEval = isTs ? !tsUseEsm : !jsUseEsm && useGlobals;
|
|
387
|
-
const worker = new node_worker_threads.Worker(jsUseEsm && useGlobals || tsUseEsm && finalTsRunner === TsRunner.TsNode ? dataUrl(`${generateGlobals(finalWorkerPath, finalGlobalShims)};import '${String(workerPathUrl)}'`) : useEval ? `${generateGlobals(finalWorkerPath, finalGlobalShims, "require")};${encodeImportModule(finalWorkerPath, "require")}` : workerPathUrl, {
|
|
388
|
-
eval: useEval,
|
|
389
|
-
workerData: {
|
|
390
|
-
sharedBufferView,
|
|
391
|
-
workerPort,
|
|
392
|
-
pnpLoaderPath
|
|
393
|
-
},
|
|
394
|
-
transferList: [workerPort, ...transferList],
|
|
395
|
-
execArgv: finalExecArgv
|
|
396
|
-
});
|
|
397
|
-
let nextID = 0;
|
|
398
|
-
const receiveMessageWithId = (port, expectedId, waitingTimeout) => {
|
|
399
|
-
const start = Date.now();
|
|
400
|
-
const status = Atomics.wait(sharedBufferView, 0, 0, waitingTimeout);
|
|
401
|
-
Atomics.store(sharedBufferView, 0, 0);
|
|
402
|
-
if (!["ok", "not-equal"].includes(status)) {
|
|
403
|
-
const abortMsg = {
|
|
404
|
-
id: expectedId,
|
|
405
|
-
cmd: "abort"
|
|
406
|
-
};
|
|
407
|
-
port.postMessage(abortMsg);
|
|
408
|
-
throw new Error("Internal error: Atomics.wait() failed: " + status);
|
|
409
|
-
}
|
|
410
|
-
const result = (0, node_worker_threads.receiveMessageOnPort)(mainPort);
|
|
411
|
-
const msg = result === null || result === void 0 ? void 0 : result.message;
|
|
412
|
-
if ((msg === null || msg === void 0 ? void 0 : msg.id) == null || msg.id < expectedId) {
|
|
413
|
-
const waitingTime = Date.now() - start;
|
|
414
|
-
return receiveMessageWithId(port, expectedId, waitingTimeout ? waitingTimeout - waitingTime : void 0);
|
|
415
|
-
}
|
|
416
|
-
const { id,...message } = msg;
|
|
417
|
-
if (expectedId !== id) throw new Error(`Internal error: Expected id ${expectedId} but got id ${id}`);
|
|
418
|
-
return {
|
|
419
|
-
id,
|
|
420
|
-
...message
|
|
421
|
-
};
|
|
422
|
-
};
|
|
423
|
-
const syncFn = (...args) => {
|
|
424
|
-
const id = nextID++;
|
|
425
|
-
const msg = {
|
|
426
|
-
id,
|
|
427
|
-
args
|
|
428
|
-
};
|
|
429
|
-
worker.postMessage(msg);
|
|
430
|
-
const { result, error, properties, stdio } = receiveMessageWithId(mainPort, id, timeout);
|
|
431
|
-
for (const { type, chunk, encoding } of stdio) process[type].write(chunk, encoding);
|
|
432
|
-
if (error) throw Object.assign(error, properties);
|
|
433
|
-
return result;
|
|
434
|
-
};
|
|
435
|
-
worker.unref();
|
|
436
|
-
return syncFn;
|
|
437
|
-
}
|
|
438
|
-
const overrideStdio = (stdio) => {
|
|
439
|
-
for (const type of ["stdout", "stderr"]) process[type]._writev = (chunks, callback) => {
|
|
440
|
-
for (const { chunk, encoding } of chunks) stdio.push({
|
|
441
|
-
type,
|
|
442
|
-
chunk,
|
|
443
|
-
encoding
|
|
444
|
-
});
|
|
445
|
-
callback();
|
|
446
|
-
};
|
|
447
|
-
};
|
|
448
|
-
|
|
449
|
-
//#endregion
|
|
450
|
-
//#region src/index.ts
|
|
451
|
-
let syncFnCache;
|
|
452
|
-
/**
|
|
453
|
-
* Creates a synchronous worker function.
|
|
454
|
-
*
|
|
455
|
-
* Converts the provided worker path (URL or string) to an absolute file path,
|
|
456
|
-
* retrieves a cached synchronous function if one exists, or starts a new worker
|
|
457
|
-
* thread to handle task execution. The resulting function is cached to avoid
|
|
458
|
-
* redundant initialization.
|
|
459
|
-
*
|
|
460
|
-
* @param workerPath - The absolute file path or URL of the worker script. If
|
|
461
|
-
* given as a URL, it is converted to a file path.
|
|
462
|
-
* @param timeoutOrOptions - Optional timeout in milliseconds or an options
|
|
463
|
-
* object to configure the worker thread.
|
|
464
|
-
* @returns A synchronous function that executes tasks on the specified worker
|
|
465
|
-
* thread.
|
|
466
|
-
* @throws {Error} If the resulting worker path is not absolute.
|
|
467
|
-
*/
|
|
468
|
-
function createSyncFn(workerPath, timeoutOrOptions) {
|
|
469
|
-
syncFnCache ?? (syncFnCache = new Map());
|
|
470
|
-
if (typeof workerPath !== "string" || workerPath.startsWith("file://")) workerPath = (0, node_url.fileURLToPath)(workerPath);
|
|
471
|
-
const cachedSyncFn = syncFnCache.get(workerPath);
|
|
472
|
-
if (cachedSyncFn) return cachedSyncFn;
|
|
473
|
-
if (!node_path.default.isAbsolute(workerPath)) throw new Error("`workerPath` must be absolute");
|
|
474
|
-
const syncFn = startWorkerThread(
|
|
475
|
-
workerPath,
|
|
476
|
-
/* istanbul ignore next */
|
|
477
|
-
typeof timeoutOrOptions === "number" ? { timeout: timeoutOrOptions } : timeoutOrOptions
|
|
478
|
-
);
|
|
479
|
-
syncFnCache.set(workerPath, syncFn);
|
|
480
|
-
return syncFn;
|
|
481
|
-
}
|
|
482
|
-
/* istanbul ignore next */
|
|
483
|
-
/**
|
|
484
|
-
* Configures the worker thread to listen for messages from the parent process
|
|
485
|
-
* and execute a provided function.
|
|
486
|
-
*
|
|
487
|
-
* If the worker is not initialized with the required data, the function exits
|
|
488
|
-
* without further action. Otherwise, it optionally registers a custom module
|
|
489
|
-
* loader when a valid loader path is provided and captures output generated
|
|
490
|
-
* during execution. It listens for messages containing an identifier and
|
|
491
|
-
* arguments, then invokes the supplied function asynchronously with those
|
|
492
|
-
* arguments. If an abort command is received for the same message, the response
|
|
493
|
-
* is suppressed. Upon completing execution, it posts a message back with either
|
|
494
|
-
* the result or error details, including extracted error properties.
|
|
495
|
-
*
|
|
496
|
-
* @param fn - The function to execute when a message is received.
|
|
497
|
-
*/
|
|
498
|
-
function runAsWorker(fn) {
|
|
499
|
-
if (!node_worker_threads.workerData) return;
|
|
500
|
-
const stdio = [];
|
|
501
|
-
overrideStdio(stdio);
|
|
502
|
-
const { workerPort, sharedBufferView: sharedBufferView$1 } = node_worker_threads.workerData;
|
|
503
|
-
node_worker_threads.parentPort.on("message", ({ id, args }) => {
|
|
504
|
-
(async () => {
|
|
505
|
-
let isAborted = false;
|
|
506
|
-
const handleAbortMessage = (msg$1) => {
|
|
507
|
-
if (msg$1.id === id && msg$1.cmd === "abort") isAborted = true;
|
|
508
|
-
};
|
|
509
|
-
workerPort.on("message", handleAbortMessage);
|
|
510
|
-
let msg;
|
|
511
|
-
try {
|
|
512
|
-
msg = {
|
|
513
|
-
id,
|
|
514
|
-
stdio,
|
|
515
|
-
result: await fn(...args)
|
|
516
|
-
};
|
|
517
|
-
} catch (error) {
|
|
518
|
-
msg = {
|
|
519
|
-
id,
|
|
520
|
-
stdio,
|
|
521
|
-
error,
|
|
522
|
-
properties: extractProperties(error)
|
|
523
|
-
};
|
|
524
|
-
}
|
|
525
|
-
workerPort.off("message", handleAbortMessage);
|
|
526
|
-
if (isAborted) {
|
|
527
|
-
stdio.length = 0;
|
|
528
|
-
return;
|
|
529
|
-
}
|
|
530
|
-
try {
|
|
531
|
-
workerPort.postMessage(msg);
|
|
532
|
-
Atomics.add(sharedBufferView$1, 0, 1);
|
|
533
|
-
Atomics.notify(sharedBufferView$1, 0);
|
|
534
|
-
} finally {
|
|
535
|
-
stdio.length = 0;
|
|
536
|
-
}
|
|
537
|
-
})();
|
|
538
|
-
});
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
//#endregion
|
|
542
|
-
exports.DEFAULT_EXEC_ARGV = DEFAULT_EXEC_ARGV;
|
|
543
|
-
exports.DEFAULT_GLOBAL_SHIMS = DEFAULT_GLOBAL_SHIMS;
|
|
544
|
-
exports.DEFAULT_GLOBAL_SHIMS_PRESET = DEFAULT_GLOBAL_SHIMS_PRESET;
|
|
545
|
-
exports.DEFAULT_TIMEOUT = DEFAULT_TIMEOUT;
|
|
546
|
-
exports.DEFAULT_TS_RUNNER = DEFAULT_TS_RUNNER;
|
|
547
|
-
exports.DEFAULT_TYPES_NODE_VERSION = DEFAULT_TYPES_NODE_VERSION;
|
|
548
|
-
exports.EXPERIMENTAL_LOADER_FLAG = EXPERIMENTAL_LOADER_FLAG;
|
|
549
|
-
exports.FEATURE_TYPESCRIPT_NODE_VERSION = FEATURE_TYPESCRIPT_NODE_VERSION;
|
|
550
|
-
exports.IMPORT_FLAG = IMPORT_FLAG;
|
|
551
|
-
exports.IMPORT_FLAG_SUPPORTED = IMPORT_FLAG_SUPPORTED;
|
|
552
|
-
exports.INT32_BYTES = INT32_BYTES;
|
|
553
|
-
exports.LOADER_FLAG = LOADER_FLAG;
|
|
554
|
-
exports.LOADER_FLAGS = LOADER_FLAGS;
|
|
555
|
-
exports.MODULE_REGISTER_SUPPORTED = MODULE_REGISTER_SUPPORTED;
|
|
556
|
-
exports.MTS_SUPPORTED = MTS_SUPPORTED;
|
|
557
|
-
exports.NODE_OPTIONS = NODE_OPTIONS;
|
|
558
|
-
exports.NODE_VERSION = NODE_VERSION;
|
|
559
|
-
exports.NO_STRIP_TYPES = NO_STRIP_TYPES;
|
|
560
|
-
exports.NO_STRIP_TYPES_FLAG = NO_STRIP_TYPES_FLAG;
|
|
561
|
-
exports.REQUIRE_ABBR_FLAG = REQUIRE_ABBR_FLAG;
|
|
562
|
-
exports.REQUIRE_FLAG = REQUIRE_FLAG;
|
|
563
|
-
exports.REQUIRE_FLAGS = REQUIRE_FLAGS;
|
|
564
|
-
exports.STRIP_TYPES_FLAG = STRIP_TYPES_FLAG;
|
|
565
|
-
exports.STRIP_TYPES_NODE_VERSION = STRIP_TYPES_NODE_VERSION;
|
|
566
|
-
exports.TRANSFORM_TYPES_FLAG = TRANSFORM_TYPES_FLAG;
|
|
567
|
-
exports.TRANSFORM_TYPES_NODE_VERSION = TRANSFORM_TYPES_NODE_VERSION;
|
|
568
|
-
exports.TS_ESM_PARTIAL_SUPPORTED = TS_ESM_PARTIAL_SUPPORTED;
|
|
569
|
-
exports.TsRunner = TsRunner;
|
|
570
|
-
exports._generateGlobals = _generateGlobals;
|
|
571
|
-
exports.compareNodeVersion = compareNodeVersion;
|
|
572
|
-
exports.compareVersion = compareVersion;
|
|
573
|
-
exports.createSyncFn = createSyncFn;
|
|
574
|
-
exports.dataUrl = dataUrl;
|
|
575
|
-
exports.encodeImportModule = encodeImportModule;
|
|
576
|
-
exports.extractProperties = extractProperties;
|
|
577
|
-
exports.generateGlobals = generateGlobals;
|
|
578
|
-
exports.hasFlag = hasFlag;
|
|
579
|
-
exports.hasImportFlag = hasImportFlag;
|
|
580
|
-
exports.hasLoaderFlag = hasLoaderFlag;
|
|
581
|
-
exports.hasRequireFlag = hasRequireFlag;
|
|
582
|
-
exports.isFile = isFile;
|
|
583
|
-
exports.md5Hash = md5Hash;
|
|
584
|
-
exports.overrideStdio = overrideStdio;
|
|
585
|
-
exports.parseVersion = parseVersion;
|
|
586
|
-
exports.runAsWorker = runAsWorker;
|
|
587
|
-
exports.setupTsRunner = setupTsRunner;
|
|
588
|
-
exports.startWorkerThread = startWorkerThread;
|