@eslint-react/kit 2.0.0-next.21 → 2.0.0-next.23

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.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as typescript from 'typescript';
2
2
  import * as tseslint from '@typescript-eslint/utils/ts-eslint';
3
3
  import { ReportDescriptor } from '@typescript-eslint/utils/ts-eslint';
4
- import * as z from '@zod/mini';
4
+ import { z } from 'zod/v4';
5
5
  import { _ } from '@eslint-react/eff';
6
6
  import { TSESTree } from '@typescript-eslint/utils';
7
7
 
@@ -81,14 +81,14 @@ declare namespace index$1 {
81
81
  /**
82
82
  * @internal
83
83
  */
84
- declare const LanguagePreferenceSchema: z.ZodMiniObject<{
85
- indentStyle: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"tab">, z.ZodMiniLiteral<"space">]>>;
86
- indentWidth: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
87
- quoteStyle: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"single">, z.ZodMiniLiteral<"double">]>>;
88
- semicolons: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"always">, z.ZodMiniLiteral<"asNeeded">]>>;
89
- trailingCommas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"all">, z.ZodMiniLiteral<"es5">, z.ZodMiniLiteral<"none">]>>;
90
- jsxQuoteStyle: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"single">, z.ZodMiniLiteral<"double">]>>;
91
- }, {}, {}>;
84
+ declare const LanguagePreferenceSchema: z.ZodObject<{
85
+ indentStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"tab">, z.ZodLiteral<"space">]>>;
86
+ indentWidth: z.ZodOptional<z.ZodNumber>;
87
+ quoteStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"single">, z.ZodLiteral<"double">]>>;
88
+ semicolons: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"always">, z.ZodLiteral<"asNeeded">]>>;
89
+ trailingCommas: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"all">, z.ZodLiteral<"es5">, z.ZodLiteral<"none">]>>;
90
+ jsxQuoteStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"single">, z.ZodLiteral<"double">]>>;
91
+ }, z.core.$strip>;
92
92
 
93
93
  /**
94
94
  * @internal
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { dual, getOrElseUpdate } from '@eslint-react/eff';
2
- import * as z from '@zod/mini';
2
+ import { z } from 'zod/v4';
3
3
 
4
4
  var __defProp = Object.defineProperty;
5
5
  var __export = (target, all) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint-react/kit",
3
- "version": "2.0.0-next.21",
3
+ "version": "2.0.0-next.23",
4
4
  "description": "ESLint React's plugin kit for building plugins and rules.",
5
5
  "homepage": "https://github.com/Rel1cx/eslint-react",
6
6
  "bugs": {
@@ -28,9 +28,9 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "@typescript-eslint/utils": "^8.32.1",
31
- "@zod/mini": "^4.0.0-beta.20250505T195954",
32
31
  "ts-pattern": "^5.7.1",
33
- "@eslint-react/eff": "2.0.0-next.21"
32
+ "zod": "^3.25.28",
33
+ "@eslint-react/eff": "2.0.0-next.23"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@tsconfig/node22": "^22.0.2",