diff --git a/examples/dual-react-dom-lib/package.json b/examples/dual-react-dom-lib/package.json
index f1c621b64..01c6b2bae 100644
--- a/examples/dual-react-dom-lib/package.json
+++ b/examples/dual-react-dom-lib/package.json
@@ -30,7 +30,7 @@
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.24.1",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.10",
diff --git a/examples/next-app/package.json b/examples/next-app/package.json
index 2ac6bdbf0..c15bf2eb6 100644
--- a/examples/next-app/package.json
+++ b/examples/next-app/package.json
@@ -18,7 +18,7 @@
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.24.1",
"@eslint/config-inspector": "^1.0.0",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@next/eslint-plugin-next": "^15.1.6",
"@types/negotiator": "^0.6.3",
"@types/node": "^22.10.10",
diff --git a/examples/vite-react-dom-app/package.json b/examples/vite-react-dom-app/package.json
index 0a12018fa..597ee1f6e 100644
--- a/examples/vite-react-dom-app/package.json
+++ b/examples/vite-react-dom-app/package.json
@@ -17,7 +17,7 @@
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.24.1",
"@eslint/config-inspector": "^1.0.0",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/react": "^19.0.8",
diff --git a/examples/vite-react-dom-js-app/package.json b/examples/vite-react-dom-js-app/package.json
index d6f13ea66..e4f133c4b 100644
--- a/examples/vite-react-dom-js-app/package.json
+++ b/examples/vite-react-dom-js-app/package.json
@@ -17,7 +17,7 @@
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.24.1",
"@eslint/config-inspector": "^1.0.0",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
diff --git a/examples/vite-react-dom-js-with-babel-app/package.json b/examples/vite-react-dom-js-with-babel-app/package.json
index 1df3b5a15..f61322e85 100644
--- a/examples/vite-react-dom-js-with-babel-app/package.json
+++ b/examples/vite-react-dom-js-with-babel-app/package.json
@@ -15,13 +15,13 @@
"react-dom": "^19.0.0"
},
"devDependencies": {
- "@babel/core": "^7.26.0",
+ "@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
- "@babel/preset-env": "^7.26.0",
+ "@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@eslint-react/eslint-plugin": "^1.24.1",
"@eslint/config-inspector": "^1.0.0",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@types/babel__core": "~7.20.5",
"@types/babel__preset-env": "~7.9.7",
"@types/react": "^19.0.8",
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/.gitignore b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/.gitignore
new file mode 100644
index 000000000..8b7e50214
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/.gitignore
@@ -0,0 +1,22 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/.vscode/extensions.json b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/.vscode/extensions.json
new file mode 100644
index 000000000..b308e5891
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/.vscode/extensions.json
@@ -0,0 +1,5 @@
+{
+ "recommendations": [
+ "dbaeumer.vscode-eslint"
+ ]
+}
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/eslint.config.d.ts b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/eslint.config.d.ts
new file mode 100644
index 000000000..1e0dfc650
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/eslint.config.d.ts
@@ -0,0 +1,3 @@
+declare module "@eslint/js";
+declare module "eslint-plugin-react-hooks";
+declare module "eslint-plugin-react-refresh";
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/eslint.config.js b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/eslint.config.js
new file mode 100644
index 000000000..9777787f1
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/eslint.config.js
@@ -0,0 +1,73 @@
+// @ts-check
+import eslintJs from "@eslint/js";
+import eslintReact from "@eslint-react/eslint-plugin";
+import eslintPluginReactHooks from "eslint-plugin-react-hooks";
+import eslintPluginReactRefresh from "eslint-plugin-react-refresh";
+import globals from "globals";
+import * as tsBlankEslintParser from "ts-blank-eslint-parser";
+
+import TSCONFIG from "./tsconfig.json" with { type: "json" };
+import TSCONFIG_NODE from "./tsconfig.node.json" with { type: "json" };
+
+const GLOB_TS = ["**/*.ts", "**/*.tsx"];
+
+export default [
+ // base configuration for browser environment source files
+ {
+ files: TSCONFIG.include,
+ languageOptions: {
+ globals: {
+ ...globals.browser,
+ },
+ parser: tsBlankEslintParser,
+ parserOptions: {
+ jsxPragma: "React",
+ sourceType: "module",
+ },
+ },
+ rules: {
+ ...eslintJs.configs.recommended.rules,
+ },
+ },
+ // base configuration for node environment source files (*.config.js, etc.)
+ {
+ files: TSCONFIG_NODE.include,
+ ignores: TSCONFIG_NODE.exclude,
+ languageOptions: {
+ globals: {
+ ...globals.node,
+ },
+ parser: tsBlankEslintParser,
+ parserOptions: {
+ sourceType: "module",
+ },
+ },
+ rules: {
+ ...eslintJs.configs.recommended.rules,
+ "no-console": "off",
+ },
+ },
+ // React configuration
+ {
+ files: TSCONFIG.include,
+ ...eslintReact.configs.recommended,
+ },
+ // React Hooks configuration
+ {
+ files: TSCONFIG.include,
+ plugins: {
+ "react-hooks": eslintPluginReactHooks,
+ },
+ rules: eslintPluginReactHooks.configs.recommended.rules,
+ },
+ // React Refresh configuration
+ {
+ files: TSCONFIG.include,
+ plugins: {
+ "react-refresh": eslintPluginReactRefresh,
+ },
+ rules: {
+ "react-refresh/only-export-components": "warn",
+ },
+ },
+];
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/index.html b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/index.html
new file mode 100644
index 000000000..c010dd3c0
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/index.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ eslint-react-example
+
+
+
+
+
+
+
+
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/package.json b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/package.json
new file mode 100644
index 000000000..baa3538c2
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "@examples/vite-react-dom-with-ts-blank-eslint-parser-app",
+ "version": "0.0.0",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "build": "tsc && vite build",
+ "dev": "vite",
+ "inspect:eslint-config": "eslint-config-inspector",
+ "lint": "eslint .",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0"
+ },
+ "devDependencies": {
+ "@eslint-react/eslint-plugin": "^1.24.1",
+ "@eslint/config-inspector": "^1.0.0",
+ "@eslint/js": "^9.19.0",
+ "@tsconfig/node22": "^22.0.0",
+ "@tsconfig/strictest": "^2.0.5",
+ "@types/react": "^19.0.8",
+ "@types/react-dom": "^19.0.3",
+ "@vitejs/plugin-react": "^4.3.4",
+ "eslint": "^9.18.0",
+ "eslint-plugin-react-hooks": "^5.1.0",
+ "eslint-plugin-react-refresh": "^0.4.18",
+ "globals": "^15.14.0",
+ "ts-blank-eslint-parser": "alpha",
+ "typescript": "^5.7.3",
+ "vite": "^6.0.11"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+}
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/App.css b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/App.css
new file mode 100644
index 000000000..655c06f48
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/App.css
@@ -0,0 +1,41 @@
+#root {
+ max-width: 1280px;
+ margin: 0 auto;
+ padding: 2rem;
+ text-align: center;
+}
+
+.logo {
+ height: 8em;
+ padding: 1.5em;
+ will-change: filter;
+ transition: filter 300ms;
+}
+
+.logo:hover {
+ filter: drop-shadow(0 0 2em #646cffaa);
+}
+
+.logo.react:hover {
+ filter: drop-shadow(0 0 2em #61dafbaa);
+}
+
+@keyframes logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ a>.logo {
+ animation: logo-spin infinite 20s linear;
+ }
+}
+
+.card {
+ padding: 2em;
+}
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/App.tsx b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/App.tsx
new file mode 100644
index 000000000..3af45273b
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/App.tsx
@@ -0,0 +1,26 @@
+import "./App.css";
+
+import { useState } from "react";
+
+import logo from "./assets/eslint-react.svg";
+
+function App() {
+ const [count, setCount] = useState(0n);
+
+ return (
+
+
+
+
+
+
+ );
+}
+
+export default App;
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/assets/eslint-react.svg b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/assets/eslint-react.svg
new file mode 100644
index 000000000..5573445ab
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/assets/eslint-react.svg
@@ -0,0 +1,13 @@
+
+
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/assets/react.svg b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/assets/react.svg
new file mode 100644
index 000000000..bbcc554ee
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/assets/react.svg
@@ -0,0 +1,6 @@
+
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/index.css b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/index.css
new file mode 100644
index 000000000..f5ac7a386
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/index.css
@@ -0,0 +1,88 @@
+:root {
+ font-family: ui-sans-serif,
+ system-ui,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ Roboto,
+ 'Helvetica Neue',
+ Arial,
+ 'Noto Sans',
+ sans-serif,
+ 'Apple Color Emoji',
+ 'Segoe UI Emoji',
+ 'Segoe UI Symbol',
+ 'Noto Color Emoji';
+
+ line-height: 1.5;
+ font-weight: 400;
+
+ color-scheme: light dark;
+ color: rgba(255, 255, 255, 0.87);
+ background-color: #242424;
+
+ font-synthesis: none;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-text-size-adjust: 100%;
+}
+
+a {
+ font-weight: 500;
+ color: #646cff;
+ text-decoration: inherit;
+}
+
+a:hover {
+ color: #535bf2;
+}
+
+body {
+ margin: 0;
+ display: flex;
+ place-items: center;
+ min-width: 320px;
+ min-height: 100vh;
+}
+
+h1 {
+ font-size: 3.2em;
+ line-height: 1.1;
+}
+
+button {
+ border-radius: 8px;
+ border: 1px solid transparent;
+ padding: 0.6em 1.2em;
+ font-size: 1em;
+ font-weight: 500;
+ font-family: inherit;
+ background-color: #1a1a1a;
+ cursor: pointer;
+ transition: border-color 0.25s;
+}
+
+button:hover {
+ border-color: #646cff;
+}
+
+button:focus,
+button:focus-visible {
+ outline: 4px auto -webkit-focus-ring-color;
+}
+
+@media (prefers-color-scheme: light) {
+ :root {
+ color: #213547;
+ background-color: #ffffff;
+ }
+
+ a:hover {
+ color: #747bff;
+ }
+
+ button {
+ background-color: #f9f9f9;
+ }
+}
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/main.ts b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/main.ts
new file mode 100644
index 000000000..18c08d5d8
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/main.ts
@@ -0,0 +1,7 @@
+import "./index.css";
+
+import ReactDOM from "react-dom/client";
+
+import { root } from "./root";
+
+ReactDOM.createRoot(document.querySelector("#root")!).render(root);
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/root.tsx b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/root.tsx
new file mode 100644
index 000000000..df78caa03
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/src/root.tsx
@@ -0,0 +1,9 @@
+import React from "react";
+
+import App from "./App";
+
+export const root = (
+
+
+
+);
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/tsconfig.json b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/tsconfig.json
new file mode 100644
index 000000000..b28e48283
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/tsconfig.json
@@ -0,0 +1,35 @@
+{
+ "extends": [
+ "@tsconfig/strictest/tsconfig.json"
+ ],
+ "compilerOptions": {
+ "target": "ES2021",
+ "useDefineForClassFields": true,
+ "lib": [
+ "ES2021",
+ "DOM",
+ "DOM.Iterable"
+ ],
+ "types": [
+ "vite/client"
+ ],
+ "module": "ESNext",
+ "skipLibCheck": true,
+ "moduleDetection": "force",
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx",
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noPropertyAccessFromIndexSignature": false,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": [
+ "src/**/*.ts",
+ "src/**/*.tsx"
+ ]
+}
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/tsconfig.node.json b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/tsconfig.node.json
new file mode 100644
index 000000000..5ccb8de72
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/tsconfig.node.json
@@ -0,0 +1,27 @@
+{
+ "extends": [
+ "@tsconfig/strictest/tsconfig.json",
+ "@tsconfig/node22/tsconfig.json"
+ ],
+ "compilerOptions": {
+ "incremental": false,
+ "skipLibCheck": true,
+ "module": "ESNext",
+ "moduleDetection": "force",
+ "moduleResolution": "bundler",
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true
+ },
+ "include": [
+ "*.ts",
+ "*.cts",
+ "*.mts",
+ "*.d.ts"
+ ],
+ "exclude": [
+ "node_modules",
+ "dist",
+ "src",
+ "benchmark"
+ ]
+}
diff --git a/examples/vite-react-dom-with-ts-blank-eslint-parser-app/vite.config.ts b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/vite.config.ts
new file mode 100644
index 000000000..a88da26ab
--- /dev/null
+++ b/examples/vite-react-dom-with-ts-blank-eslint-parser-app/vite.config.ts
@@ -0,0 +1,9 @@
+import react from "@vitejs/plugin-react";
+import { defineConfig } from "vite";
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ plugins: [
+ react(),
+ ],
+});
diff --git a/package.json b/package.json
index a60407eff..e02d5a8ba 100644
--- a/package.json
+++ b/package.json
@@ -52,7 +52,7 @@
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@eslint/config-inspector": "^1.0.0",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@eslint/markdown": "^6.2.2",
"@napi-rs/canvas": "^0.1.65",
"@stylistic/eslint-plugin": "^2.13.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index fb82bf306..d8c0c5c5f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -28,8 +28,8 @@ importers:
specifier: ^1.0.0
version: 1.0.0(eslint@9.18.0(jiti@2.4.2))
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@eslint/markdown':
specifier: ^6.2.2
version: 6.2.2
@@ -190,8 +190,8 @@ importers:
specifier: ^1.24.1
version: 1.24.1(eslint@9.18.0(jiti@2.4.2))(ts-api-utils@2.0.0(typescript@5.7.3))(typescript@5.7.3)
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@tsconfig/node22':
specifier: ^22.0.0
version: 22.0.0
@@ -251,8 +251,8 @@ importers:
specifier: ^1.0.0
version: 1.0.0(eslint@9.18.0(jiti@2.4.2))
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@next/eslint-plugin-next':
specifier: ^15.1.6
version: 15.1.6
@@ -312,8 +312,8 @@ importers:
specifier: ^1.0.0
version: 1.0.0(eslint@9.18.0(jiti@2.4.2))
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@tsconfig/node22':
specifier: ^22.0.0
version: 22.0.0
@@ -364,8 +364,8 @@ importers:
specifier: ^1.0.0
version: 1.0.0(eslint@9.18.0(jiti@2.4.2))
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@types/react':
specifier: ^19.0.8
version: 19.0.8
@@ -401,17 +401,17 @@ importers:
version: 19.0.0(react@19.0.0)
devDependencies:
'@babel/core':
- specifier: ^7.26.0
- version: 7.26.0
+ specifier: ^7.26.7
+ version: 7.26.7
'@babel/eslint-parser':
specifier: ^7.26.5
- version: 7.26.5(@babel/core@7.26.0)(eslint@9.18.0(jiti@2.4.2))
+ version: 7.26.5(@babel/core@7.26.7)(eslint@9.18.0(jiti@2.4.2))
'@babel/preset-env':
- specifier: ^7.26.0
- version: 7.26.0(@babel/core@7.26.0)
+ specifier: ^7.26.7
+ version: 7.26.7(@babel/core@7.26.7)
'@babel/preset-react':
specifier: ^7.26.3
- version: 7.26.3(@babel/core@7.26.0)
+ version: 7.26.3(@babel/core@7.26.7)
'@eslint-react/eslint-plugin':
specifier: ^1.24.1
version: 1.24.1(eslint@9.18.0(jiti@2.4.2))(ts-api-utils@2.0.0(typescript@5.7.3))(typescript@5.7.3)
@@ -419,8 +419,8 @@ importers:
specifier: ^1.0.0
version: 1.0.0(eslint@9.18.0(jiti@2.4.2))
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@types/babel__core':
specifier: ~7.20.5
version: 7.20.5
@@ -452,6 +452,61 @@ importers:
specifier: ^6.0.11
version: 6.0.11(@types/node@22.10.10)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)
+ examples/vite-react-dom-with-ts-blank-eslint-parser-app:
+ dependencies:
+ react:
+ specifier: ^19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: ^19.0.0
+ version: 19.0.0(react@19.0.0)
+ devDependencies:
+ '@eslint-react/eslint-plugin':
+ specifier: ^1.24.1
+ version: 1.24.1(eslint@9.18.0(jiti@2.4.2))(ts-api-utils@2.0.0(typescript@5.7.3))(typescript@5.7.3)
+ '@eslint/config-inspector':
+ specifier: ^1.0.0
+ version: 1.0.0(eslint@9.18.0(jiti@2.4.2))
+ '@eslint/js':
+ specifier: ^9.19.0
+ version: 9.19.0
+ '@tsconfig/node22':
+ specifier: ^22.0.0
+ version: 22.0.0
+ '@tsconfig/strictest':
+ specifier: ^2.0.5
+ version: 2.0.5
+ '@types/react':
+ specifier: ^19.0.8
+ version: 19.0.8
+ '@types/react-dom':
+ specifier: ^19.0.3
+ version: 19.0.3(@types/react@19.0.8)
+ '@vitejs/plugin-react':
+ specifier: ^4.3.4
+ version: 4.3.4(vite@6.0.11(@types/node@22.10.10)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0))
+ eslint:
+ specifier: ^9.18.0
+ version: 9.18.0(jiti@2.4.2)
+ eslint-plugin-react-hooks:
+ specifier: ^5.1.0
+ version: 5.1.0(eslint@9.18.0(jiti@2.4.2))
+ eslint-plugin-react-refresh:
+ specifier: ^0.4.18
+ version: 0.4.18(eslint@9.18.0(jiti@2.4.2))
+ globals:
+ specifier: ^15.14.0
+ version: 15.14.0
+ ts-blank-eslint-parser:
+ specifier: alpha
+ version: 0.0.1(hermes-eslint@0.26.0)(ts-blank-space@0.5.0)
+ typescript:
+ specifier: ^5.7.3
+ version: 5.7.3
+ vite:
+ specifier: ^6.0.11
+ version: 6.0.11(@types/node@22.10.10)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)
+
packages/core:
dependencies:
'@eslint-react/ast':
@@ -1077,8 +1132,8 @@ importers:
specifier: workspace:*
version: link:../packages/plugins/eslint-plugin
'@eslint/js':
- specifier: ^9.18.0
- version: 9.18.0
+ specifier: ^9.19.0
+ version: 9.19.0
'@eslint/markdown':
specifier: ^6.2.2
version: 6.2.2
@@ -1226,6 +1281,10 @@ packages:
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.26.7':
+ resolution: {integrity: sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/eslint-parser@7.26.5':
resolution: {integrity: sha512-Kkm8C8uxI842AwQADxl0GbcG1rupELYLShazYEZO/2DYjhyWXJIOUVOE3tBYm6JXzUCNJOZEzqc4rCW/jsEQYQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
@@ -1320,11 +1379,20 @@ packages:
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.26.7':
+ resolution: {integrity: sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==}
+ engines: {node: '>=6.9.0'}
+
'@babel/parser@7.26.5':
resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.26.7':
+ resolution: {integrity: sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
@@ -1691,8 +1759,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.25.9':
- resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
+ '@babel/plugin-transform-typeof-symbol@7.26.7':
+ resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1721,8 +1789,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.26.0':
- resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
+ '@babel/preset-env@7.26.7':
+ resolution: {integrity: sha512-Ycg2tnXwixaXOVb29rana8HNPgLVBof8qqtNQ9LE22IoyZboQbGSxI6ZySMdW3K5nAe6gu35IaJefUJflhUFTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1750,10 +1818,18 @@ packages:
resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.26.7':
+ resolution: {integrity: sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.26.5':
resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.26.7':
+ resolution: {integrity: sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==}
+ engines: {node: '>=6.9.0'}
+
'@changesets/apply-release-plan@7.0.8':
resolution: {integrity: sha512-qjMUj4DYQ1Z6qHawsn7S71SujrExJ+nceyKKyI9iB+M5p9lCL55afuEd6uLBPRpLGWQwkwvWegDHtwHJb1UjpA==}
@@ -2458,6 +2534,10 @@ packages:
resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/js@9.19.0':
+ resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/markdown@6.2.2':
resolution: {integrity: sha512-U0/KgzI9BVUuHDQ9M2fuVgB0QZ1fSyzwm8jKmHr1dlsLHGHYzoeIA9yqLMdTbV3ivZfp6rTdt6zqre3TfNExUQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5247,6 +5327,15 @@ packages:
hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+ hermes-eslint@0.26.0:
+ resolution: {integrity: sha512-SLMolASQQThPQ372LkA1z0GOSUtJ8LOsLolQnvskRiVfnoU+pVlR69cD75q3aEAncVGoAw+ZX+fFpMsBmVj0Gg==}
+
+ hermes-estree@0.26.0:
+ resolution: {integrity: sha512-If1T7lhfXnGlVLbnsmwerNB5cyJm2oIE8TN1UKEq6/OUX1nOGUhjXMpqAwZ1wkkn9Brda0VRyJEWOGT2GgVcAQ==}
+
+ hermes-parser@0.26.0:
+ resolution: {integrity: sha512-fWT40jJ/BtlzuyiiQS7lzNIlB5h6flVZoN8Jn8v5l987HL5dK9s+/4+py0FaBmeIEROC2zxt5qMLwXFTPLQ7BA==}
+
homedir-polyfill@1.0.3:
resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
engines: {node: '>=0.10.0'}
@@ -7107,6 +7196,17 @@ packages:
peerDependencies:
typescript: ^5.7.3
+ ts-blank-eslint-parser@0.0.1:
+ resolution: {integrity: sha512-NZZIFFJIY28aibtypNbsNT55GlUOxW6azS3pfHPVCFcGRuG+yFv4TftgDwj+m4vmJJd2neSP0FiC8tjYLA/hCw==}
+ engines: {node: '>=18.18.0'}
+ peerDependencies:
+ hermes-eslint: ^0.26.0
+ ts-blank-space: ^0.5.0
+
+ ts-blank-space@0.5.0:
+ resolution: {integrity: sha512-qFJAuJsXm+qV/IQbfJ8Rx9tVELrTjU4DijxtX7LO3foHEYwJx7Z90t2eOEocZBunM91NA+ia1xEgVBluiQO6/w==}
+ engines: {node: '>=18.0.0'}
+
ts-declaration-location@1.0.5:
resolution: {integrity: sha512-WqmlO9IoeYwCqJ2E9kHMcY9GZhhfLYItC3VnHDlPOrg6nNdUWS4wn4hhDZUPt60m1EvtjPIZyprTjpI992Bgzw==}
peerDependencies:
@@ -7590,9 +7690,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.26.5(@babel/core@7.26.0)(eslint@9.18.0(jiti@2.4.2))':
+ '@babel/core@7.26.7':
dependencies:
- '@babel/core': 7.26.0
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.5
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
+ '@babel/helpers': 7.26.7
+ '@babel/parser': 7.26.7
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.7
+ '@babel/types': 7.26.7
+ convert-source-map: 2.0.0
+ debug: 4.4.0
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/eslint-parser@7.26.5(@babel/core@7.26.7)(eslint@9.18.0(jiti@2.4.2))':
+ dependencies:
+ '@babel/core': 7.26.7
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 9.18.0(jiti@2.4.2)
eslint-visitor-keys: 2.1.0
@@ -7618,29 +7738,29 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0)
+ '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/traverse': 7.26.5
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
debug: 4.4.0
@@ -7672,24 +7792,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.7)':
+ dependencies:
+ '@babel/core': 7.26.7
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
'@babel/types': 7.26.5
'@babel/helper-plugin-utils@7.26.5': {}
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
'@babel/traverse': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.0)':
+ '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/traverse': 7.26.5
@@ -7722,330 +7851,339 @@ snapshots:
'@babel/template': 7.25.9
'@babel/types': 7.26.5
+ '@babel/helpers@7.26.7':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.7
+
'@babel/parser@7.26.5':
dependencies:
'@babel/types': 7.26.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
+ '@babel/parser@7.26.7':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/types': 7.26.7
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.7)':
+ dependencies:
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.7)
'@babel/traverse': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0)
+ '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
'@babel/traverse': 7.26.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.0)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0)
+ '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.7)
transitivePeerDependencies:
- supports-color
@@ -8059,182 +8197,182 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.7)
'@babel/types': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ '@babel/preset-env@7.26.7(@babel/core@7.26.7)':
dependencies:
'@babel/compat-data': 7.26.5
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.7)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.7)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.7)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.7)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.7)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.7)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.7)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.7)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.7)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.7)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.7)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.7)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.7)
core-js-compat: 3.40.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/types': 7.26.5
esutils: 2.0.3
- '@babel/preset-react@7.26.3(@babel/core@7.26.0)':
+ '@babel/preset-react@7.26.3(@babel/core@7.26.7)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.7
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.7)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.7)
transitivePeerDependencies:
- supports-color
@@ -8260,11 +8398,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.26.7':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.5
+ '@babel/parser': 7.26.7
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.7
+ debug: 4.4.0
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.26.5':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
+ '@babel/types@7.26.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
'@changesets/apply-release-plan@7.0.8':
dependencies:
'@changesets/config': 3.0.5
@@ -8968,6 +9123,8 @@ snapshots:
'@eslint/js@9.18.0': {}
+ '@eslint/js@9.19.0': {}
+
'@eslint/markdown@6.2.2':
dependencies:
'@eslint/core': 0.10.0
@@ -10567,27 +10724,27 @@ snapshots:
transitivePeerDependencies:
- debug
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.7):
dependencies:
'@babel/compat-data': 7.26.5
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.7):
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.7)
core-js-compat: 3.40.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
+ babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.7):
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.7
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.7)
transitivePeerDependencies:
- supports-color
@@ -12075,6 +12232,18 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
+ hermes-eslint@0.26.0:
+ dependencies:
+ esrecurse: 4.3.0
+ hermes-estree: 0.26.0
+ hermes-parser: 0.26.0
+
+ hermes-estree@0.26.0: {}
+
+ hermes-parser@0.26.0:
+ dependencies:
+ hermes-estree: 0.26.0
+
homedir-polyfill@1.0.3:
dependencies:
parse-passwd: 1.0.0
@@ -14263,6 +14432,15 @@ snapshots:
dependencies:
typescript: 5.7.3
+ ts-blank-eslint-parser@0.0.1(hermes-eslint@0.26.0)(ts-blank-space@0.5.0):
+ dependencies:
+ hermes-eslint: 0.26.0
+ ts-blank-space: 0.5.0
+
+ ts-blank-space@0.5.0:
+ dependencies:
+ typescript: 5.7.3
+
ts-declaration-location@1.0.5(typescript@5.7.3):
dependencies:
minimatch: 10.0.1
diff --git a/website/package.json b/website/package.json
index 7ada4214b..f0a603a6d 100644
--- a/website/package.json
+++ b/website/package.json
@@ -24,7 +24,7 @@
},
"devDependencies": {
"@eslint-react/eslint-plugin": "workspace:*",
- "@eslint/js": "^9.18.0",
+ "@eslint/js": "^9.19.0",
"@eslint/markdown": "^6.2.2",
"@mdx-js/mdx": "^3.1.0",
"@next/eslint-plugin-next": "^15.1.6",