@alextheman/eslint-plugin 5.8.2 → 5.9.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.
@@ -2,8 +2,8 @@ import { TSESTree } from "@typescript-eslint/utils";
2
2
  import "typedoc";
3
3
  import "typedoc-plugin-markdown";
4
4
  import { Linter } from "eslint";
5
- import { JSONSchema4 } from "@typescript-eslint/utils/json-schema";
6
5
  import z from "zod";
6
+ import { JSONSchema4 } from "@typescript-eslint/utils/json-schema";
7
7
  import { RuleContext, RuleFix, RuleFixer } from "@typescript-eslint/utils/ts-eslint";
8
8
 
9
9
  //#region src/utility/public/checkCallExpression.d.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alextheman/eslint-plugin",
3
- "version": "5.8.2",
3
+ "version": "5.9.1",
4
4
  "description": "A package to provide custom ESLint rules and configs.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,6 +17,12 @@
17
17
  "require": "./dist/index.cjs",
18
18
  "default": "./dist/index.js"
19
19
  },
20
+ "./internal": {
21
+ "types": "./dist/internal/index.d.ts",
22
+ "import": "./dist/internal/index.js",
23
+ "require": "./dist/internal/index.cjs",
24
+ "default": "./dist/internal/index.js"
25
+ },
20
26
  "./utility": {
21
27
  "types": "./dist/utility/index.d.ts",
22
28
  "import": "./dist/utility/index.js",
@@ -24,8 +30,6 @@
24
30
  "default": "./dist/utility/index.js"
25
31
  }
26
32
  },
27
- "main": "dist/index.js",
28
- "types": "dist/index.d.ts",
29
33
  "files": [
30
34
  "dist"
31
35
  ],
@@ -61,9 +65,11 @@
61
65
  "eslint-plugin-react-hooks": "^7.0.1",
62
66
  "eslint-plugin-react-refresh": "^0.5.0",
63
67
  "eslint-vitest-rule-tester": "^3.1.0",
68
+ "execa": "^9.6.1",
64
69
  "globals": "^17.3.0",
65
70
  "husky": "^9.1.7",
66
71
  "jsdom": "^28.1.0",
72
+ "tempy": "^3.2.0",
67
73
  "tsdown": "^0.20.3",
68
74
  "tsx": "^4.21.0",
69
75
  "typedoc": "^0.28.17",
@@ -118,6 +124,7 @@
118
124
  "lint-tsc": "tsc --noEmit",
119
125
  "pre-commit": "alex-c-line pre-commit-2",
120
126
  "test": "vitest run",
127
+ "test-end-to-end": "RUN_END_TO_END=true vitest run tests/end-to-end --reporter verbose",
121
128
  "test-watch": "vitest",
122
129
  "update-dependencies": "pnpm update --latest && pnpm update",
123
130
  "use-local-package": "bash -c 'alex-c-line use-local-package $@' --"