@alextheman/eslint-plugin 5.17.0 → 5.17.1
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/index.cjs +44 -44
- package/dist/index.js +43 -43
- package/package.json +20 -20
package/dist/index.cjs
CHANGED
|
@@ -44,8 +44,6 @@ let eslint_plugin_perfectionist = require("eslint-plugin-perfectionist");
|
|
|
44
44
|
eslint_plugin_perfectionist = __toESM(eslint_plugin_perfectionist, 1);
|
|
45
45
|
let eslint_plugin_prettier = require("eslint-plugin-prettier");
|
|
46
46
|
eslint_plugin_prettier = __toESM(eslint_plugin_prettier, 1);
|
|
47
|
-
let typescript_eslint = require("typescript-eslint");
|
|
48
|
-
typescript_eslint = __toESM(typescript_eslint, 1);
|
|
49
47
|
let _eslint_react_eslint_plugin = require("@eslint-react/eslint-plugin");
|
|
50
48
|
_eslint_react_eslint_plugin = __toESM(_eslint_react_eslint_plugin, 1);
|
|
51
49
|
let _stylistic_eslint_plugin = require("@stylistic/eslint-plugin");
|
|
@@ -58,6 +56,8 @@ let eslint_plugin_react_hooks = require("eslint-plugin-react-hooks");
|
|
|
58
56
|
eslint_plugin_react_hooks = __toESM(eslint_plugin_react_hooks, 1);
|
|
59
57
|
let eslint_plugin_package_json = require("eslint-plugin-package-json");
|
|
60
58
|
eslint_plugin_package_json = __toESM(eslint_plugin_package_json, 1);
|
|
59
|
+
let typescript_eslint = require("typescript-eslint");
|
|
60
|
+
typescript_eslint = __toESM(typescript_eslint, 1);
|
|
61
61
|
let eslint_plugin_jsdoc = require("eslint-plugin-jsdoc");
|
|
62
62
|
eslint_plugin_jsdoc = __toESM(eslint_plugin_jsdoc, 1);
|
|
63
63
|
let _alextheman_utility_node = require("@alextheman/utility/node");
|
|
@@ -4485,38 +4485,6 @@ const generalJavaScript = [
|
|
|
4485
4485
|
//#region src/configs/external/prettierConfig.ts
|
|
4486
4486
|
const prettierConfig = { printWidth: 100 };
|
|
4487
4487
|
//#endregion
|
|
4488
|
-
//#region src/configs/helpers/reactLanguageOptions.ts
|
|
4489
|
-
const reactLanguageOptions = {
|
|
4490
|
-
ecmaVersion: 2020,
|
|
4491
|
-
globals: import_globals.default.browser,
|
|
4492
|
-
parserOptions: { ecmaFeatures: { jsx: true } }
|
|
4493
|
-
};
|
|
4494
|
-
//#endregion
|
|
4495
|
-
//#region src/configs/helpers/typeScriptLanguageOptions.ts
|
|
4496
|
-
const typeScriptLanguageOptions = {
|
|
4497
|
-
parser: typescript_eslint.default.parser,
|
|
4498
|
-
parserOptions: {
|
|
4499
|
-
ecmaVersion: "latest",
|
|
4500
|
-
projectService: true,
|
|
4501
|
-
sourceType: "module",
|
|
4502
|
-
tsconfigRootDir: process.cwd()
|
|
4503
|
-
}
|
|
4504
|
-
};
|
|
4505
|
-
//#endregion
|
|
4506
|
-
//#region src/configs/helpers/restrictedImports/personalRestrictedImports.ts
|
|
4507
|
-
const personalRestrictedImports = combineRestrictedImports(generalRestrictedImports, { paths: [...["fs", "node:fs"].map((name) => {
|
|
4508
|
-
return {
|
|
4509
|
-
message: "Please use node:fs/promises instead.",
|
|
4510
|
-
name
|
|
4511
|
-
};
|
|
4512
|
-
})] });
|
|
4513
|
-
//#endregion
|
|
4514
|
-
//#region src/configs/helpers/restrictedImports/reactRestrictedImports.ts
|
|
4515
|
-
const reactRestrictedImports = combineRestrictedImports(generalRestrictedImports, { patterns: [{
|
|
4516
|
-
message: "Please use `import Component from \"@mui/[package]/Component\"` instead. See https://mui.com/material-ui/guides/minimizing-bundle-size/ for more information.",
|
|
4517
|
-
regex: "^@mui/[^/]+$"
|
|
4518
|
-
}] });
|
|
4519
|
-
//#endregion
|
|
4520
4488
|
//#region src/configs/helpers/sorting/sortClasses.ts
|
|
4521
4489
|
const sortClasses = {
|
|
4522
4490
|
customGroups: [],
|
|
@@ -4616,6 +4584,14 @@ const sortObjects = {
|
|
|
4616
4584
|
useConfigurationIf: {}
|
|
4617
4585
|
};
|
|
4618
4586
|
//#endregion
|
|
4587
|
+
//#region src/configs/helpers/restrictedImports/personalRestrictedImports.ts
|
|
4588
|
+
const personalRestrictedImports = combineRestrictedImports(generalRestrictedImports, { paths: [...["fs", "node:fs"].map((name) => {
|
|
4589
|
+
return {
|
|
4590
|
+
message: "Please use node:fs/promises instead.",
|
|
4591
|
+
name
|
|
4592
|
+
};
|
|
4593
|
+
})] });
|
|
4594
|
+
//#endregion
|
|
4619
4595
|
//#region src/configs/helpers/sorting/sortNamedImports.ts
|
|
4620
4596
|
const sortNamedImports = {
|
|
4621
4597
|
fallbackSort: { type: "unsorted" },
|
|
@@ -4698,6 +4674,13 @@ const reactHooks = {
|
|
|
4698
4674
|
}
|
|
4699
4675
|
};
|
|
4700
4676
|
//#endregion
|
|
4677
|
+
//#region src/configs/helpers/reactLanguageOptions.ts
|
|
4678
|
+
const reactLanguageOptions = {
|
|
4679
|
+
ecmaVersion: 2020,
|
|
4680
|
+
globals: import_globals.default.browser,
|
|
4681
|
+
parserOptions: { ecmaFeatures: { jsx: true } }
|
|
4682
|
+
};
|
|
4683
|
+
//#endregion
|
|
4701
4684
|
//#region src/configs/general/react.ts
|
|
4702
4685
|
const generalReact = [eslint_plugin_jsx_a11y_x.default.configs.recommended, {
|
|
4703
4686
|
languageOptions: reactLanguageOptions,
|
|
@@ -4727,6 +4710,12 @@ const generalReact = [eslint_plugin_jsx_a11y_x.default.configs.recommended, {
|
|
|
4727
4710
|
settings: { react: { version: "detect" } }
|
|
4728
4711
|
}];
|
|
4729
4712
|
//#endregion
|
|
4713
|
+
//#region src/configs/helpers/restrictedImports/reactRestrictedImports.ts
|
|
4714
|
+
const reactRestrictedImports = combineRestrictedImports(generalRestrictedImports, { patterns: [{
|
|
4715
|
+
message: "Please use `import Component from \"@mui/[package]/Component\"` instead. See https://mui.com/material-ui/guides/minimizing-bundle-size/ for more information.",
|
|
4716
|
+
regex: "^@mui/[^/]+$"
|
|
4717
|
+
}] });
|
|
4718
|
+
//#endregion
|
|
4730
4719
|
//#region src/configs/internal/react.ts
|
|
4731
4720
|
const internalReact = [{
|
|
4732
4721
|
languageOptions: reactLanguageOptions,
|
|
@@ -4765,6 +4754,17 @@ const generalPackageJson = [eslint_plugin_package_json.default.configs.recommend
|
|
|
4765
4754
|
rules: { "package-json/scripts-name-casing": "error" }
|
|
4766
4755
|
}];
|
|
4767
4756
|
//#endregion
|
|
4757
|
+
//#region src/configs/helpers/typeScriptLanguageOptions.ts
|
|
4758
|
+
const typeScriptLanguageOptions = {
|
|
4759
|
+
parser: typescript_eslint.default.parser,
|
|
4760
|
+
parserOptions: {
|
|
4761
|
+
ecmaVersion: "latest",
|
|
4762
|
+
projectService: true,
|
|
4763
|
+
sourceType: "module",
|
|
4764
|
+
tsconfigRootDir: process.cwd()
|
|
4765
|
+
}
|
|
4766
|
+
};
|
|
4767
|
+
//#endregion
|
|
4768
4768
|
//#region src/configs/general/typeScript.ts
|
|
4769
4769
|
const generalTypeScript = [
|
|
4770
4770
|
...typescript_eslint.default.configs.recommended,
|
|
@@ -5012,15 +5012,6 @@ function internalEslintPluginRules(plugin) {
|
|
|
5012
5012
|
}];
|
|
5013
5013
|
}
|
|
5014
5014
|
//#endregion
|
|
5015
|
-
//#region src/configs/internal/eslintPlugin/utility.ts
|
|
5016
|
-
function internalEslintPluginUtility(plugin) {
|
|
5017
|
-
return [...internalEslintPluginBase(plugin), {
|
|
5018
|
-
files: ["**/*.ts"],
|
|
5019
|
-
name: "@alextheman/internal/eslint-plugin-utility",
|
|
5020
|
-
rules: { "jsdoc/require-jsdoc": ["error", requireJsdocOptions] }
|
|
5021
|
-
}];
|
|
5022
|
-
}
|
|
5023
|
-
//#endregion
|
|
5024
5015
|
//#region src/configs/internal/utility/base.ts
|
|
5025
5016
|
function internalUtilityBase(plugin) {
|
|
5026
5017
|
return [...combinedTypeScriptPackage(plugin), {
|
|
@@ -5078,6 +5069,15 @@ function combinedTypeScriptReact(plugin) {
|
|
|
5078
5069
|
];
|
|
5079
5070
|
}
|
|
5080
5071
|
//#endregion
|
|
5072
|
+
//#region src/configs/internal/eslintPlugin/utility.ts
|
|
5073
|
+
function internalEslintPluginUtility(plugin) {
|
|
5074
|
+
return [...internalEslintPluginBase(plugin), {
|
|
5075
|
+
files: ["**/*.ts"],
|
|
5076
|
+
name: "@alextheman/internal/eslint-plugin-utility",
|
|
5077
|
+
rules: { "jsdoc/require-jsdoc": ["error", requireJsdocOptions] }
|
|
5078
|
+
}];
|
|
5079
|
+
}
|
|
5080
|
+
//#endregion
|
|
5081
5081
|
//#region src/configs/internal/packageJson.ts
|
|
5082
5082
|
const internalPackageJson = [...generalPackageJson, {
|
|
5083
5083
|
files: ["**/package.json"],
|
|
@@ -5516,7 +5516,7 @@ function parseUseObjectShorthandOptions(data) {
|
|
|
5516
5516
|
const alexPlugin = {
|
|
5517
5517
|
meta: {
|
|
5518
5518
|
name: "@alextheman/eslint-plugin",
|
|
5519
|
-
version: "5.17.
|
|
5519
|
+
version: "5.17.1",
|
|
5520
5520
|
namespace: "alextheman"
|
|
5521
5521
|
},
|
|
5522
5522
|
configs: {},
|
package/dist/index.js
CHANGED
|
@@ -9,13 +9,13 @@ import importPlugin from "eslint-plugin-import-x";
|
|
|
9
9
|
import nodePlugin from "eslint-plugin-n";
|
|
10
10
|
import perfectionist from "eslint-plugin-perfectionist";
|
|
11
11
|
import prettierPlugin from "eslint-plugin-prettier";
|
|
12
|
-
import tseslint from "typescript-eslint";
|
|
13
12
|
import reactPlugin from "@eslint-react/eslint-plugin";
|
|
14
13
|
import stylistic from "@stylistic/eslint-plugin";
|
|
15
14
|
import jsxA11y from "eslint-plugin-jsx-a11y-x";
|
|
16
15
|
import reactRefresh from "eslint-plugin-react-refresh";
|
|
17
16
|
import reactHooksPlugin from "eslint-plugin-react-hooks";
|
|
18
17
|
import packageJson from "eslint-plugin-package-json";
|
|
18
|
+
import tseslint from "typescript-eslint";
|
|
19
19
|
import jsdoc from "eslint-plugin-jsdoc";
|
|
20
20
|
import { normalizeImportPath } from "@alextheman/utility/node";
|
|
21
21
|
//#region \0rolldown/runtime.js
|
|
@@ -4465,38 +4465,6 @@ const generalJavaScript = [
|
|
|
4465
4465
|
//#region src/configs/external/prettierConfig.ts
|
|
4466
4466
|
const prettierConfig = { printWidth: 100 };
|
|
4467
4467
|
//#endregion
|
|
4468
|
-
//#region src/configs/helpers/reactLanguageOptions.ts
|
|
4469
|
-
const reactLanguageOptions = {
|
|
4470
|
-
ecmaVersion: 2020,
|
|
4471
|
-
globals: import_globals.default.browser,
|
|
4472
|
-
parserOptions: { ecmaFeatures: { jsx: true } }
|
|
4473
|
-
};
|
|
4474
|
-
//#endregion
|
|
4475
|
-
//#region src/configs/helpers/typeScriptLanguageOptions.ts
|
|
4476
|
-
const typeScriptLanguageOptions = {
|
|
4477
|
-
parser: tseslint.parser,
|
|
4478
|
-
parserOptions: {
|
|
4479
|
-
ecmaVersion: "latest",
|
|
4480
|
-
projectService: true,
|
|
4481
|
-
sourceType: "module",
|
|
4482
|
-
tsconfigRootDir: process.cwd()
|
|
4483
|
-
}
|
|
4484
|
-
};
|
|
4485
|
-
//#endregion
|
|
4486
|
-
//#region src/configs/helpers/restrictedImports/personalRestrictedImports.ts
|
|
4487
|
-
const personalRestrictedImports = combineRestrictedImports(generalRestrictedImports, { paths: [...["fs", "node:fs"].map((name) => {
|
|
4488
|
-
return {
|
|
4489
|
-
message: "Please use node:fs/promises instead.",
|
|
4490
|
-
name
|
|
4491
|
-
};
|
|
4492
|
-
})] });
|
|
4493
|
-
//#endregion
|
|
4494
|
-
//#region src/configs/helpers/restrictedImports/reactRestrictedImports.ts
|
|
4495
|
-
const reactRestrictedImports = combineRestrictedImports(generalRestrictedImports, { patterns: [{
|
|
4496
|
-
message: "Please use `import Component from \"@mui/[package]/Component\"` instead. See https://mui.com/material-ui/guides/minimizing-bundle-size/ for more information.",
|
|
4497
|
-
regex: "^@mui/[^/]+$"
|
|
4498
|
-
}] });
|
|
4499
|
-
//#endregion
|
|
4500
4468
|
//#region src/configs/helpers/sorting/sortClasses.ts
|
|
4501
4469
|
const sortClasses = {
|
|
4502
4470
|
customGroups: [],
|
|
@@ -4596,6 +4564,14 @@ const sortObjects = {
|
|
|
4596
4564
|
useConfigurationIf: {}
|
|
4597
4565
|
};
|
|
4598
4566
|
//#endregion
|
|
4567
|
+
//#region src/configs/helpers/restrictedImports/personalRestrictedImports.ts
|
|
4568
|
+
const personalRestrictedImports = combineRestrictedImports(generalRestrictedImports, { paths: [...["fs", "node:fs"].map((name) => {
|
|
4569
|
+
return {
|
|
4570
|
+
message: "Please use node:fs/promises instead.",
|
|
4571
|
+
name
|
|
4572
|
+
};
|
|
4573
|
+
})] });
|
|
4574
|
+
//#endregion
|
|
4599
4575
|
//#region src/configs/helpers/sorting/sortNamedImports.ts
|
|
4600
4576
|
const sortNamedImports = {
|
|
4601
4577
|
fallbackSort: { type: "unsorted" },
|
|
@@ -4678,6 +4654,13 @@ const reactHooks = {
|
|
|
4678
4654
|
}
|
|
4679
4655
|
};
|
|
4680
4656
|
//#endregion
|
|
4657
|
+
//#region src/configs/helpers/reactLanguageOptions.ts
|
|
4658
|
+
const reactLanguageOptions = {
|
|
4659
|
+
ecmaVersion: 2020,
|
|
4660
|
+
globals: import_globals.default.browser,
|
|
4661
|
+
parserOptions: { ecmaFeatures: { jsx: true } }
|
|
4662
|
+
};
|
|
4663
|
+
//#endregion
|
|
4681
4664
|
//#region src/configs/general/react.ts
|
|
4682
4665
|
const generalReact = [jsxA11y.configs.recommended, {
|
|
4683
4666
|
languageOptions: reactLanguageOptions,
|
|
@@ -4707,6 +4690,12 @@ const generalReact = [jsxA11y.configs.recommended, {
|
|
|
4707
4690
|
settings: { react: { version: "detect" } }
|
|
4708
4691
|
}];
|
|
4709
4692
|
//#endregion
|
|
4693
|
+
//#region src/configs/helpers/restrictedImports/reactRestrictedImports.ts
|
|
4694
|
+
const reactRestrictedImports = combineRestrictedImports(generalRestrictedImports, { patterns: [{
|
|
4695
|
+
message: "Please use `import Component from \"@mui/[package]/Component\"` instead. See https://mui.com/material-ui/guides/minimizing-bundle-size/ for more information.",
|
|
4696
|
+
regex: "^@mui/[^/]+$"
|
|
4697
|
+
}] });
|
|
4698
|
+
//#endregion
|
|
4710
4699
|
//#region src/configs/internal/react.ts
|
|
4711
4700
|
const internalReact = [{
|
|
4712
4701
|
languageOptions: reactLanguageOptions,
|
|
@@ -4745,6 +4734,17 @@ const generalPackageJson = [packageJson.configs.recommended, {
|
|
|
4745
4734
|
rules: { "package-json/scripts-name-casing": "error" }
|
|
4746
4735
|
}];
|
|
4747
4736
|
//#endregion
|
|
4737
|
+
//#region src/configs/helpers/typeScriptLanguageOptions.ts
|
|
4738
|
+
const typeScriptLanguageOptions = {
|
|
4739
|
+
parser: tseslint.parser,
|
|
4740
|
+
parserOptions: {
|
|
4741
|
+
ecmaVersion: "latest",
|
|
4742
|
+
projectService: true,
|
|
4743
|
+
sourceType: "module",
|
|
4744
|
+
tsconfigRootDir: process.cwd()
|
|
4745
|
+
}
|
|
4746
|
+
};
|
|
4747
|
+
//#endregion
|
|
4748
4748
|
//#region src/configs/general/typeScript.ts
|
|
4749
4749
|
const generalTypeScript = [
|
|
4750
4750
|
...tseslint.configs.recommended,
|
|
@@ -4992,15 +4992,6 @@ function internalEslintPluginRules(plugin) {
|
|
|
4992
4992
|
}];
|
|
4993
4993
|
}
|
|
4994
4994
|
//#endregion
|
|
4995
|
-
//#region src/configs/internal/eslintPlugin/utility.ts
|
|
4996
|
-
function internalEslintPluginUtility(plugin) {
|
|
4997
|
-
return [...internalEslintPluginBase(plugin), {
|
|
4998
|
-
files: ["**/*.ts"],
|
|
4999
|
-
name: "@alextheman/internal/eslint-plugin-utility",
|
|
5000
|
-
rules: { "jsdoc/require-jsdoc": ["error", requireJsdocOptions] }
|
|
5001
|
-
}];
|
|
5002
|
-
}
|
|
5003
|
-
//#endregion
|
|
5004
4995
|
//#region src/configs/internal/utility/base.ts
|
|
5005
4996
|
function internalUtilityBase(plugin) {
|
|
5006
4997
|
return [...combinedTypeScriptPackage(plugin), {
|
|
@@ -5058,6 +5049,15 @@ function combinedTypeScriptReact(plugin) {
|
|
|
5058
5049
|
];
|
|
5059
5050
|
}
|
|
5060
5051
|
//#endregion
|
|
5052
|
+
//#region src/configs/internal/eslintPlugin/utility.ts
|
|
5053
|
+
function internalEslintPluginUtility(plugin) {
|
|
5054
|
+
return [...internalEslintPluginBase(plugin), {
|
|
5055
|
+
files: ["**/*.ts"],
|
|
5056
|
+
name: "@alextheman/internal/eslint-plugin-utility",
|
|
5057
|
+
rules: { "jsdoc/require-jsdoc": ["error", requireJsdocOptions] }
|
|
5058
|
+
}];
|
|
5059
|
+
}
|
|
5060
|
+
//#endregion
|
|
5061
5061
|
//#region src/configs/internal/packageJson.ts
|
|
5062
5062
|
const internalPackageJson = [...generalPackageJson, {
|
|
5063
5063
|
files: ["**/package.json"],
|
|
@@ -5496,7 +5496,7 @@ function parseUseObjectShorthandOptions(data) {
|
|
|
5496
5496
|
const alexPlugin = {
|
|
5497
5497
|
meta: {
|
|
5498
5498
|
name: "@alextheman/eslint-plugin",
|
|
5499
|
-
version: "5.17.
|
|
5499
|
+
version: "5.17.1",
|
|
5500
5500
|
namespace: "alextheman"
|
|
5501
5501
|
},
|
|
5502
5502
|
configs: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/eslint-plugin",
|
|
3
|
-
"version": "5.17.
|
|
3
|
+
"version": "5.17.1",
|
|
4
4
|
"description": "A package to provide custom ESLint rules and configs.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,37 +37,37 @@
|
|
|
37
37
|
"node": ">=22.3.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@alextheman/utility": "5.
|
|
40
|
+
"@alextheman/utility": "5.21.1",
|
|
41
41
|
"@eslint/compat": "2.1.0",
|
|
42
|
-
"@typescript-eslint/types": "8.
|
|
43
|
-
"@typescript-eslint/utils": "8.
|
|
42
|
+
"@typescript-eslint/types": "8.61.0",
|
|
43
|
+
"@typescript-eslint/utils": "8.61.0",
|
|
44
44
|
"common-tags": "1.8.2",
|
|
45
|
-
"prettier": "3.8.
|
|
45
|
+
"prettier": "3.8.4",
|
|
46
46
|
"zod": "4.4.3"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@eslint-react/eslint-plugin": "5.
|
|
49
|
+
"@eslint-react/eslint-plugin": "5.9.0",
|
|
50
50
|
"@eslint/js": "10.0.1",
|
|
51
51
|
"@stylistic/eslint-plugin": "5.10.0",
|
|
52
52
|
"@types/common-tags": "1.8.4",
|
|
53
53
|
"@types/eslint": "9.6.1",
|
|
54
54
|
"@types/eslint-plugin-jsx-a11y": "6.10.1",
|
|
55
|
-
"@types/node": "25.9.
|
|
56
|
-
"@typescript-eslint/rule-tester": "8.
|
|
57
|
-
"alex-c-line": "2.
|
|
55
|
+
"@types/node": "25.9.3",
|
|
56
|
+
"@typescript-eslint/rule-tester": "8.61.0",
|
|
57
|
+
"alex-c-line": "2.9.3",
|
|
58
58
|
"dotenv-cli": "11.0.0",
|
|
59
|
-
"eslint": "10.
|
|
59
|
+
"eslint": "10.5.0",
|
|
60
60
|
"eslint-config-prettier": "10.1.8",
|
|
61
|
-
"eslint-import-resolver-typescript": "4.4.
|
|
61
|
+
"eslint-import-resolver-typescript": "4.4.5",
|
|
62
62
|
"eslint-plugin-import-x": "4.16.2",
|
|
63
|
-
"eslint-plugin-jsdoc": "63.0.
|
|
63
|
+
"eslint-plugin-jsdoc": "63.0.2",
|
|
64
64
|
"eslint-plugin-jsx-a11y-x": "0.2.0",
|
|
65
|
-
"eslint-plugin-n": "18.0
|
|
66
|
-
"eslint-plugin-package-json": "1.
|
|
65
|
+
"eslint-plugin-n": "18.1.0",
|
|
66
|
+
"eslint-plugin-package-json": "1.3.0",
|
|
67
67
|
"eslint-plugin-perfectionist": "5.9.0",
|
|
68
68
|
"eslint-plugin-prettier": "5.5.6",
|
|
69
69
|
"eslint-plugin-react-hooks": "7.1.1",
|
|
70
|
-
"eslint-plugin-react-refresh": "0.5.
|
|
70
|
+
"eslint-plugin-react-refresh": "0.5.3",
|
|
71
71
|
"eslint-vitest-rule-tester": "3.1.0",
|
|
72
72
|
"execa": "9.6.1",
|
|
73
73
|
"globals": "17.6.0",
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
"jsdom": "29.1.1",
|
|
76
76
|
"markdownlint-cli2": "0.22.1",
|
|
77
77
|
"tempy": "3.2.0",
|
|
78
|
-
"tsdown": "0.22.
|
|
79
|
-
"tsx": "4.22.
|
|
78
|
+
"tsdown": "0.22.2",
|
|
79
|
+
"tsx": "4.22.4",
|
|
80
80
|
"typescript": "6.0.3",
|
|
81
|
-
"typescript-eslint": "8.
|
|
82
|
-
"vite": "8.0.
|
|
83
|
-
"vitest": "4.1.
|
|
81
|
+
"typescript-eslint": "8.61.0",
|
|
82
|
+
"vite": "8.0.16",
|
|
83
|
+
"vitest": "4.1.8"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
86
|
"@eslint-react/eslint-plugin": ">=5.8.4",
|