@eslint-react/jsx 1.5.6 → 1.5.7-beta.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/index.js +21 -17
- package/dist/index.mjs +21 -17
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ var __export = (target, all3) => {
|
|
|
17
17
|
__defProp(target, name, { get: all3[name], enumerable: true });
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
20
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Function.js
|
|
21
21
|
var Function_exports = {};
|
|
22
22
|
__export(Function_exports, {
|
|
23
23
|
SK: () => SK,
|
|
@@ -192,11 +192,11 @@ function flow(ab, bc, cd, de, ef, fg, gh, hi, ij) {
|
|
|
192
192
|
var hole = /* @__PURE__ */ unsafeCoerce(absurd);
|
|
193
193
|
var SK = (_2, b2) => b2;
|
|
194
194
|
|
|
195
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
196
|
-
var moduleVersion = "2.4.
|
|
195
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/version.js
|
|
196
|
+
var moduleVersion = "2.4.11";
|
|
197
197
|
var getCurrentVersion = () => moduleVersion;
|
|
198
198
|
|
|
199
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
199
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/GlobalValue.js
|
|
200
200
|
var globalStoreId = /* @__PURE__ */ Symbol.for(`effect/GlobalValue/globalStoreId/${/* @__PURE__ */ getCurrentVersion()}`);
|
|
201
201
|
if (!(globalStoreId in globalThis)) {
|
|
202
202
|
globalThis[globalStoreId] = /* @__PURE__ */ new Map();
|
|
@@ -209,7 +209,7 @@ var globalValue = (id, compute) => {
|
|
|
209
209
|
return globalStore.get(id);
|
|
210
210
|
};
|
|
211
211
|
|
|
212
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
212
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Predicate.js
|
|
213
213
|
var Predicate_exports = {};
|
|
214
214
|
__export(Predicate_exports, {
|
|
215
215
|
all: () => all,
|
|
@@ -235,12 +235,14 @@ __export(Predicate_exports, {
|
|
|
235
235
|
isNumber: () => isNumber,
|
|
236
236
|
isObject: () => isObject,
|
|
237
237
|
isPromise: () => isPromise,
|
|
238
|
+
isPromiseLike: () => isPromiseLike,
|
|
238
239
|
isReadonlyRecord: () => isReadonlyRecord,
|
|
239
240
|
isRecord: () => isRecord,
|
|
240
241
|
isSet: () => isSet,
|
|
241
242
|
isString: () => isString,
|
|
242
243
|
isSymbol: () => isSymbol,
|
|
243
244
|
isTagged: () => isTagged,
|
|
245
|
+
isTruthy: () => isTruthy,
|
|
244
246
|
isUint8Array: () => isUint8Array,
|
|
245
247
|
isUndefined: () => isUndefined,
|
|
246
248
|
isUnknown: () => isUnknown,
|
|
@@ -257,6 +259,7 @@ __export(Predicate_exports, {
|
|
|
257
259
|
xor: () => xor
|
|
258
260
|
});
|
|
259
261
|
var mapInput = /* @__PURE__ */ dual(2, (self, f2) => (b2) => self(f2(b2)));
|
|
262
|
+
var isTruthy = (input) => !!input;
|
|
260
263
|
var isSet = (input) => input instanceof Set;
|
|
261
264
|
var isMap = (input) => input instanceof Map;
|
|
262
265
|
var isString = (input) => typeof input === "string";
|
|
@@ -284,6 +287,7 @@ var isIterable = (input) => hasProperty(input, Symbol.iterator);
|
|
|
284
287
|
var isRecord = (input) => isRecordOrArray(input) && !Array.isArray(input);
|
|
285
288
|
var isReadonlyRecord = isRecord;
|
|
286
289
|
var isPromise = (input) => hasProperty(input, "then") && "catch" in input && isFunction2(input.then) && isFunction2(input.catch);
|
|
290
|
+
var isPromiseLike = (input) => hasProperty(input, "then") && isFunction2(input.then);
|
|
287
291
|
var compose2 = /* @__PURE__ */ dual(2, (ab, bc) => (a2) => ab(a2) && bc(a2));
|
|
288
292
|
var product = (self, that) => ([a2, b2]) => self(a2) && that(b2);
|
|
289
293
|
var all = (collection) => {
|
|
@@ -342,7 +346,7 @@ var some = (collection) => (a2) => {
|
|
|
342
346
|
return false;
|
|
343
347
|
};
|
|
344
348
|
|
|
345
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
349
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Utils.js
|
|
346
350
|
var GenKindTypeId = /* @__PURE__ */ Symbol.for("effect/Gen/GenKind");
|
|
347
351
|
var GenKindImpl = class {
|
|
348
352
|
value;
|
|
@@ -562,7 +566,7 @@ function add64(out, aHi, aLo, bHi, bLo) {
|
|
|
562
566
|
out[1] = lo;
|
|
563
567
|
}
|
|
564
568
|
|
|
565
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
569
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Hash.js
|
|
566
570
|
var randomHashCache = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/randomHashCache"), () => /* @__PURE__ */ new WeakMap());
|
|
567
571
|
var pcgr = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/pcgr"), () => new PCGRandom());
|
|
568
572
|
var symbol = /* @__PURE__ */ Symbol.for("effect/Hash");
|
|
@@ -648,7 +652,7 @@ var cached = function() {
|
|
|
648
652
|
return hash2;
|
|
649
653
|
};
|
|
650
654
|
|
|
651
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
655
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Equal.js
|
|
652
656
|
var symbol2 = /* @__PURE__ */ Symbol.for("effect/Equal");
|
|
653
657
|
function equals() {
|
|
654
658
|
if (arguments.length === 1) {
|
|
@@ -674,10 +678,10 @@ function compareBoth(self, that) {
|
|
|
674
678
|
var isEqual = (u2) => hasProperty(u2, symbol2);
|
|
675
679
|
var equivalence = () => equals;
|
|
676
680
|
|
|
677
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
681
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Equivalence.js
|
|
678
682
|
var make = (isEquivalent) => (self, that) => self === that || isEquivalent(self, that);
|
|
679
683
|
|
|
680
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
684
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Inspectable.js
|
|
681
685
|
var NodeInspectSymbol = /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom");
|
|
682
686
|
var toJSON = (x2) => {
|
|
683
687
|
if (hasProperty(x2, "toJSON") && isFunction2(x2["toJSON"]) && x2["toJSON"].length === 0) {
|
|
@@ -689,7 +693,7 @@ var toJSON = (x2) => {
|
|
|
689
693
|
};
|
|
690
694
|
var format = (x2) => JSON.stringify(x2, null, 2);
|
|
691
695
|
|
|
692
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
696
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Option.js
|
|
693
697
|
var Option_exports = {};
|
|
694
698
|
__export(Option_exports, {
|
|
695
699
|
Do: () => Do,
|
|
@@ -751,7 +755,7 @@ __export(Option_exports, {
|
|
|
751
755
|
zipWith: () => zipWith
|
|
752
756
|
});
|
|
753
757
|
|
|
754
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
758
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Pipeable.js
|
|
755
759
|
var pipeArguments = (self, args) => {
|
|
756
760
|
switch (args.length) {
|
|
757
761
|
case 1:
|
|
@@ -782,7 +786,7 @@ var pipeArguments = (self, args) => {
|
|
|
782
786
|
}
|
|
783
787
|
};
|
|
784
788
|
|
|
785
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
789
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/effectable.js
|
|
786
790
|
var EffectTypeId = /* @__PURE__ */ Symbol.for("effect/Effect");
|
|
787
791
|
var StreamTypeId = /* @__PURE__ */ Symbol.for("effect/Stream");
|
|
788
792
|
var SinkTypeId = /* @__PURE__ */ Symbol.for("effect/Sink");
|
|
@@ -840,7 +844,7 @@ var EffectPrototype = {
|
|
|
840
844
|
}
|
|
841
845
|
};
|
|
842
846
|
|
|
843
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
847
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/option.js
|
|
844
848
|
var TypeId = /* @__PURE__ */ Symbol.for("effect/Option");
|
|
845
849
|
var CommonProto = {
|
|
846
850
|
...EffectPrototype,
|
|
@@ -898,7 +902,7 @@ var some2 = (value) => {
|
|
|
898
902
|
return a2;
|
|
899
903
|
};
|
|
900
904
|
|
|
901
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
905
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/either.js
|
|
902
906
|
var TypeId2 = /* @__PURE__ */ Symbol.for("effect/Either");
|
|
903
907
|
var CommonProto2 = {
|
|
904
908
|
...EffectPrototype,
|
|
@@ -962,10 +966,10 @@ var right = (right2) => {
|
|
|
962
966
|
var getLeft = (self) => isRight(self) ? none : some2(self.left);
|
|
963
967
|
var getRight = (self) => isLeft(self) ? none : some2(self.right);
|
|
964
968
|
|
|
965
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
969
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Order.js
|
|
966
970
|
var make2 = (compare) => (self, that) => self === that ? 0 : compare(self, that);
|
|
967
971
|
|
|
968
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
972
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Option.js
|
|
969
973
|
var TypeId3 = /* @__PURE__ */ Symbol.for("effect/Option");
|
|
970
974
|
var none2 = () => none;
|
|
971
975
|
var some3 = some2;
|
package/dist/index.mjs
CHANGED
|
@@ -11,7 +11,7 @@ var __export = (target, all3) => {
|
|
|
11
11
|
__defProp(target, name, { get: all3[name], enumerable: true });
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
14
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Function.js
|
|
15
15
|
var Function_exports = {};
|
|
16
16
|
__export(Function_exports, {
|
|
17
17
|
SK: () => SK,
|
|
@@ -186,11 +186,11 @@ function flow(ab, bc, cd, de, ef, fg, gh, hi, ij) {
|
|
|
186
186
|
var hole = /* @__PURE__ */ unsafeCoerce(absurd);
|
|
187
187
|
var SK = (_2, b2) => b2;
|
|
188
188
|
|
|
189
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
190
|
-
var moduleVersion = "2.4.
|
|
189
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/version.js
|
|
190
|
+
var moduleVersion = "2.4.11";
|
|
191
191
|
var getCurrentVersion = () => moduleVersion;
|
|
192
192
|
|
|
193
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
193
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/GlobalValue.js
|
|
194
194
|
var globalStoreId = /* @__PURE__ */ Symbol.for(`effect/GlobalValue/globalStoreId/${/* @__PURE__ */ getCurrentVersion()}`);
|
|
195
195
|
if (!(globalStoreId in globalThis)) {
|
|
196
196
|
globalThis[globalStoreId] = /* @__PURE__ */ new Map();
|
|
@@ -203,7 +203,7 @@ var globalValue = (id, compute) => {
|
|
|
203
203
|
return globalStore.get(id);
|
|
204
204
|
};
|
|
205
205
|
|
|
206
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
206
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Predicate.js
|
|
207
207
|
var Predicate_exports = {};
|
|
208
208
|
__export(Predicate_exports, {
|
|
209
209
|
all: () => all,
|
|
@@ -229,12 +229,14 @@ __export(Predicate_exports, {
|
|
|
229
229
|
isNumber: () => isNumber,
|
|
230
230
|
isObject: () => isObject,
|
|
231
231
|
isPromise: () => isPromise,
|
|
232
|
+
isPromiseLike: () => isPromiseLike,
|
|
232
233
|
isReadonlyRecord: () => isReadonlyRecord,
|
|
233
234
|
isRecord: () => isRecord,
|
|
234
235
|
isSet: () => isSet,
|
|
235
236
|
isString: () => isString,
|
|
236
237
|
isSymbol: () => isSymbol,
|
|
237
238
|
isTagged: () => isTagged,
|
|
239
|
+
isTruthy: () => isTruthy,
|
|
238
240
|
isUint8Array: () => isUint8Array,
|
|
239
241
|
isUndefined: () => isUndefined,
|
|
240
242
|
isUnknown: () => isUnknown,
|
|
@@ -251,6 +253,7 @@ __export(Predicate_exports, {
|
|
|
251
253
|
xor: () => xor
|
|
252
254
|
});
|
|
253
255
|
var mapInput = /* @__PURE__ */ dual(2, (self, f2) => (b2) => self(f2(b2)));
|
|
256
|
+
var isTruthy = (input) => !!input;
|
|
254
257
|
var isSet = (input) => input instanceof Set;
|
|
255
258
|
var isMap = (input) => input instanceof Map;
|
|
256
259
|
var isString = (input) => typeof input === "string";
|
|
@@ -278,6 +281,7 @@ var isIterable = (input) => hasProperty(input, Symbol.iterator);
|
|
|
278
281
|
var isRecord = (input) => isRecordOrArray(input) && !Array.isArray(input);
|
|
279
282
|
var isReadonlyRecord = isRecord;
|
|
280
283
|
var isPromise = (input) => hasProperty(input, "then") && "catch" in input && isFunction2(input.then) && isFunction2(input.catch);
|
|
284
|
+
var isPromiseLike = (input) => hasProperty(input, "then") && isFunction2(input.then);
|
|
281
285
|
var compose2 = /* @__PURE__ */ dual(2, (ab, bc) => (a2) => ab(a2) && bc(a2));
|
|
282
286
|
var product = (self, that) => ([a2, b2]) => self(a2) && that(b2);
|
|
283
287
|
var all = (collection) => {
|
|
@@ -336,7 +340,7 @@ var some = (collection) => (a2) => {
|
|
|
336
340
|
return false;
|
|
337
341
|
};
|
|
338
342
|
|
|
339
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
343
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Utils.js
|
|
340
344
|
var GenKindTypeId = /* @__PURE__ */ Symbol.for("effect/Gen/GenKind");
|
|
341
345
|
var GenKindImpl = class {
|
|
342
346
|
value;
|
|
@@ -556,7 +560,7 @@ function add64(out, aHi, aLo, bHi, bLo) {
|
|
|
556
560
|
out[1] = lo;
|
|
557
561
|
}
|
|
558
562
|
|
|
559
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
563
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Hash.js
|
|
560
564
|
var randomHashCache = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/randomHashCache"), () => /* @__PURE__ */ new WeakMap());
|
|
561
565
|
var pcgr = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/pcgr"), () => new PCGRandom());
|
|
562
566
|
var symbol = /* @__PURE__ */ Symbol.for("effect/Hash");
|
|
@@ -642,7 +646,7 @@ var cached = function() {
|
|
|
642
646
|
return hash2;
|
|
643
647
|
};
|
|
644
648
|
|
|
645
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
649
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Equal.js
|
|
646
650
|
var symbol2 = /* @__PURE__ */ Symbol.for("effect/Equal");
|
|
647
651
|
function equals() {
|
|
648
652
|
if (arguments.length === 1) {
|
|
@@ -668,10 +672,10 @@ function compareBoth(self, that) {
|
|
|
668
672
|
var isEqual = (u2) => hasProperty(u2, symbol2);
|
|
669
673
|
var equivalence = () => equals;
|
|
670
674
|
|
|
671
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
675
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Equivalence.js
|
|
672
676
|
var make = (isEquivalent) => (self, that) => self === that || isEquivalent(self, that);
|
|
673
677
|
|
|
674
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
678
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Inspectable.js
|
|
675
679
|
var NodeInspectSymbol = /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom");
|
|
676
680
|
var toJSON = (x2) => {
|
|
677
681
|
if (hasProperty(x2, "toJSON") && isFunction2(x2["toJSON"]) && x2["toJSON"].length === 0) {
|
|
@@ -683,7 +687,7 @@ var toJSON = (x2) => {
|
|
|
683
687
|
};
|
|
684
688
|
var format = (x2) => JSON.stringify(x2, null, 2);
|
|
685
689
|
|
|
686
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
690
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Option.js
|
|
687
691
|
var Option_exports = {};
|
|
688
692
|
__export(Option_exports, {
|
|
689
693
|
Do: () => Do,
|
|
@@ -745,7 +749,7 @@ __export(Option_exports, {
|
|
|
745
749
|
zipWith: () => zipWith
|
|
746
750
|
});
|
|
747
751
|
|
|
748
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
752
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Pipeable.js
|
|
749
753
|
var pipeArguments = (self, args) => {
|
|
750
754
|
switch (args.length) {
|
|
751
755
|
case 1:
|
|
@@ -776,7 +780,7 @@ var pipeArguments = (self, args) => {
|
|
|
776
780
|
}
|
|
777
781
|
};
|
|
778
782
|
|
|
779
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
783
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/effectable.js
|
|
780
784
|
var EffectTypeId = /* @__PURE__ */ Symbol.for("effect/Effect");
|
|
781
785
|
var StreamTypeId = /* @__PURE__ */ Symbol.for("effect/Stream");
|
|
782
786
|
var SinkTypeId = /* @__PURE__ */ Symbol.for("effect/Sink");
|
|
@@ -834,7 +838,7 @@ var EffectPrototype = {
|
|
|
834
838
|
}
|
|
835
839
|
};
|
|
836
840
|
|
|
837
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
841
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/option.js
|
|
838
842
|
var TypeId = /* @__PURE__ */ Symbol.for("effect/Option");
|
|
839
843
|
var CommonProto = {
|
|
840
844
|
...EffectPrototype,
|
|
@@ -892,7 +896,7 @@ var some2 = (value) => {
|
|
|
892
896
|
return a2;
|
|
893
897
|
};
|
|
894
898
|
|
|
895
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
899
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/internal/either.js
|
|
896
900
|
var TypeId2 = /* @__PURE__ */ Symbol.for("effect/Either");
|
|
897
901
|
var CommonProto2 = {
|
|
898
902
|
...EffectPrototype,
|
|
@@ -956,10 +960,10 @@ var right = (right2) => {
|
|
|
956
960
|
var getLeft = (self) => isRight(self) ? none : some2(self.left);
|
|
957
961
|
var getRight = (self) => isLeft(self) ? none : some2(self.right);
|
|
958
962
|
|
|
959
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
963
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Order.js
|
|
960
964
|
var make2 = (compare) => (self, that) => self === that ? 0 : compare(self, that);
|
|
961
965
|
|
|
962
|
-
// ../../../node_modules/.pnpm/effect@2.4.
|
|
966
|
+
// ../../../node_modules/.pnpm/effect@2.4.11/node_modules/effect/dist/esm/Option.js
|
|
963
967
|
var TypeId3 = /* @__PURE__ */ Symbol.for("effect/Option");
|
|
964
968
|
var none2 = () => none;
|
|
965
969
|
var some3 = some2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/jsx",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.7-beta.3",
|
|
4
4
|
"description": "ESLint React's TSESTree AST utility module for static analysis of JSX.",
|
|
5
5
|
"homepage": "https://github.com/rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
"./package.json"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@typescript-eslint/scope-manager": "7.
|
|
39
|
-
"@typescript-eslint/types": "7.
|
|
40
|
-
"@typescript-eslint/utils": "7.
|
|
38
|
+
"@typescript-eslint/scope-manager": "7.3.1",
|
|
39
|
+
"@typescript-eslint/types": "7.3.1",
|
|
40
|
+
"@typescript-eslint/utils": "7.3.1",
|
|
41
41
|
"micro-memoize": "4.1.2",
|
|
42
|
-
"@eslint-react/ast": "1.5.
|
|
43
|
-
"@eslint-react/shared": "1.5.
|
|
44
|
-
"@eslint-react/
|
|
45
|
-
"@eslint-react/var": "1.5.
|
|
46
|
-
"@eslint-react/
|
|
42
|
+
"@eslint-react/ast": "1.5.7-beta.3",
|
|
43
|
+
"@eslint-react/shared": "1.5.7-beta.3",
|
|
44
|
+
"@eslint-react/types": "1.5.7-beta.3",
|
|
45
|
+
"@eslint-react/var": "1.5.7-beta.3",
|
|
46
|
+
"@eslint-react/tools": "1.5.7-beta.3"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"effect": "2.4.
|
|
49
|
+
"effect": "2.4.11"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup",
|