@8ms/helpers 2.3.8 → 2.3.10
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/.yarn/install-state.gz +0 -0
- package/dist/_class/index.mjs +3 -4
- package/dist/array/index.mjs +1 -3
- package/dist/aws/s3/server/index.mjs +1 -2
- package/dist/aws/ses/server/index.mjs +1 -2
- package/dist/boolean/index.mjs +1 -3
- package/dist/lodash/index.d.mts +33 -0
- package/dist/lodash/index.mjs +144 -0
- package/dist/object/index.mjs +1 -1
- package/dist/prisma/index.mjs +1 -2
- package/dist/string/index.mjs +3 -7
- package/dist/upTimeRobot/server/index.mjs +3 -4
- package/dist/url/index.mjs +1 -1
- package/dist/util/index.d.mts +1 -1
- package/dist/util/index.mjs +1 -1
- package/package.json +2 -3
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/dist/_class/index.mjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
+
import { set } from "../lodash/index.mjs";
|
|
1
2
|
import { defaultTo } from "../util/index.mjs";
|
|
2
3
|
import { isServer } from "../environment/index.mjs";
|
|
3
|
-
import isArray from "lodash/isArray";
|
|
4
|
-
import set from "lodash/set";
|
|
5
4
|
|
|
6
5
|
//#region src/_class/BaseClass.ts
|
|
7
6
|
var BaseClass = class {
|
|
@@ -9,7 +8,7 @@ var BaseClass = class {
|
|
|
9
8
|
* Shortcut to set a value to an array and return the instance.
|
|
10
9
|
*/
|
|
11
10
|
_setArray = (fields, input) => {
|
|
12
|
-
if (isArray(input)) set(this, fields, input);
|
|
11
|
+
if (Array.isArray(input)) set(this, fields, input);
|
|
13
12
|
else set(this, fields, [input]);
|
|
14
13
|
return this;
|
|
15
14
|
};
|
|
@@ -25,7 +24,7 @@ var BaseClass = class {
|
|
|
25
24
|
*/
|
|
26
25
|
_push = (fields, input) => {
|
|
27
26
|
let temp = this._get(fields, []);
|
|
28
|
-
if (isArray(input)) temp = temp.concat(input);
|
|
27
|
+
if (Array.isArray(input)) temp = temp.concat(input);
|
|
29
28
|
else temp = temp.push(input);
|
|
30
29
|
set(this, fields, temp);
|
|
31
30
|
return this;
|
package/dist/array/index.mjs
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import isArray from "lodash/isArray";
|
|
2
|
-
|
|
3
1
|
//#region src/array/array.ts
|
|
4
2
|
/**
|
|
5
3
|
* Shorthand to check if an array or string contains a needle.
|
|
@@ -8,7 +6,7 @@ const contains = (haystack, needle) => -1 !== haystack.indexOf(needle);
|
|
|
8
6
|
/**
|
|
9
7
|
* Convert an array into an array or return if already an array.
|
|
10
8
|
*/
|
|
11
|
-
const getArray = (input) => isArray(input) ? input : [input];
|
|
9
|
+
const getArray = (input) => Array.isArray(input) ? input : [input];
|
|
12
10
|
|
|
13
11
|
//#endregion
|
|
14
12
|
export { contains, getArray };
|
|
@@ -5,7 +5,6 @@ import { n as isResponse200, t as getConfig } from "../../../server-Dbl5Ic6I.mjs
|
|
|
5
5
|
import { getBrotliCompressed, getBrotliDecompressed, getGzipCompressed, getGzipDecompressed } from "../../../util/server/index.mjs";
|
|
6
6
|
import { z } from "zod/v4";
|
|
7
7
|
import axios from "axios";
|
|
8
|
-
import cloneDeep from "lodash/cloneDeep";
|
|
9
8
|
|
|
10
9
|
//#region src/aws/s3/server/AwsS3Namespace.ts
|
|
11
10
|
var AwsS3Namespace = class extends BaseNamespace {
|
|
@@ -189,7 +188,7 @@ var AwsS3Namespace = class extends BaseNamespace {
|
|
|
189
188
|
};
|
|
190
189
|
readFile = async (bucket, key, options = {}) => {
|
|
191
190
|
await this.ensureInit();
|
|
192
|
-
let response =
|
|
191
|
+
let response = structuredClone(readFileDefault);
|
|
193
192
|
const today = getToday();
|
|
194
193
|
getToday(true);
|
|
195
194
|
try {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { BaseClass, BaseNamespace } from "../../../_class/index.mjs";
|
|
2
2
|
import { t as getConfig } from "../../../server-Dbl5Ic6I.mjs";
|
|
3
|
-
import uniq from "lodash/uniq";
|
|
4
3
|
|
|
5
4
|
//#region src/aws/ses/server/AwsSesNamespace.ts
|
|
6
5
|
var AwsSesNamespace = class extends BaseNamespace {
|
|
@@ -250,7 +249,7 @@ var SimpleEmail = class extends BaseClass {
|
|
|
250
249
|
let response = this[field].filter((recipient) => recipient && null !== recipient);
|
|
251
250
|
response = response.map((recipient) => recipient.toLowerCase().trim());
|
|
252
251
|
response = response.filter((recipient) => "" !== recipient);
|
|
253
|
-
response =
|
|
252
|
+
response = [...new Set(response)];
|
|
254
253
|
return response;
|
|
255
254
|
};
|
|
256
255
|
};
|
package/dist/boolean/index.mjs
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
import isBoolean from "lodash/isBoolean";
|
|
2
|
-
|
|
3
1
|
//#region src/boolean/boolean.ts
|
|
4
2
|
/**
|
|
5
3
|
* Convert an input from a variety of forms into boolean.
|
|
6
4
|
*/
|
|
7
5
|
const getBoolean = (input, defaultValue = false) => {
|
|
8
|
-
if (
|
|
6
|
+
if ("boolean" === typeof input) return input;
|
|
9
7
|
else if ("string" === typeof input) return "true" === input || "1" === input || "yes" === input || "y" === input;
|
|
10
8
|
else if ("number" === typeof input) return 1 === input;
|
|
11
9
|
return defaultValue;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/lodash/set.d.ts
|
|
2
|
+
declare const set: <T extends object>(obj: T, path: string | string[], value: unknown) => T;
|
|
3
|
+
//#endregion
|
|
4
|
+
//#region src/lodash/trim.d.ts
|
|
5
|
+
declare const trim: (str: string, chars?: string) => string;
|
|
6
|
+
//#endregion
|
|
7
|
+
//#region src/lodash/isDate.d.ts
|
|
8
|
+
declare const isDate: (value: unknown) => value is Date;
|
|
9
|
+
//#endregion
|
|
10
|
+
//#region src/lodash/isEmpty.d.ts
|
|
11
|
+
declare const isEmpty: (value: unknown) => boolean;
|
|
12
|
+
//#endregion
|
|
13
|
+
//#region src/lodash/isEqual.d.ts
|
|
14
|
+
declare const isEqual: (a: unknown, b: unknown) => boolean;
|
|
15
|
+
//#endregion
|
|
16
|
+
//#region src/lodash/isObject.d.ts
|
|
17
|
+
declare const isObject: (value: unknown) => value is object;
|
|
18
|
+
//#endregion
|
|
19
|
+
//#region src/lodash/merge.d.ts
|
|
20
|
+
declare const merge: <T extends object>(target: T, ...sources: any[]) => T;
|
|
21
|
+
//#endregion
|
|
22
|
+
//#region src/lodash/orderBy.d.ts
|
|
23
|
+
type OrderDirection = "asc" | "desc";
|
|
24
|
+
type Iteratee<T> = ((item: T) => unknown) | string;
|
|
25
|
+
declare const orderBy: <T>(collection: T[], iteratees: Iteratee<T> | Iteratee<T>[], orders?: OrderDirection | OrderDirection[]) => T[];
|
|
26
|
+
//#endregion
|
|
27
|
+
//#region src/lodash/unescape.d.ts
|
|
28
|
+
declare const unescape: (str: string) => string;
|
|
29
|
+
//#endregion
|
|
30
|
+
//#region src/lodash/uniq.d.ts
|
|
31
|
+
declare const uniq: (arr: any[]) => any[];
|
|
32
|
+
//#endregion
|
|
33
|
+
export { isDate, isEmpty, isEqual, isObject, merge, orderBy, set, trim, unescape, uniq };
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
//#region src/lodash/set.ts
|
|
2
|
+
const set = (obj, path, value) => {
|
|
3
|
+
if (obj == null) return obj;
|
|
4
|
+
const keys = Array.isArray(path) ? path : path.replace(/\[(\d+)\]/g, ".$1").split(".").filter(Boolean);
|
|
5
|
+
let current = obj;
|
|
6
|
+
for (let i = 0; i < keys.length - 1; i++) {
|
|
7
|
+
const key = keys[i];
|
|
8
|
+
const nextKey = keys[i + 1];
|
|
9
|
+
const nextIsIndex = /^\d+$/.test(nextKey);
|
|
10
|
+
if (current[key] == null || typeof current[key] !== "object") current[key] = nextIsIndex ? [] : {};
|
|
11
|
+
current = current[key];
|
|
12
|
+
}
|
|
13
|
+
current[keys[keys.length - 1]] = value;
|
|
14
|
+
return obj;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
//#endregion
|
|
18
|
+
//#region src/lodash/trim.ts
|
|
19
|
+
const trim = (str, chars) => {
|
|
20
|
+
if (!chars) return str.trim();
|
|
21
|
+
const escaped = chars.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
|
22
|
+
const pattern = new RegExp(`^[${escaped}]+|[${escaped}]+$`, "g");
|
|
23
|
+
return str.replace(pattern, "");
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
//#endregion
|
|
27
|
+
//#region src/lodash/isDate.ts
|
|
28
|
+
const isDate = (value) => {
|
|
29
|
+
return value instanceof Date && !isNaN(value.getTime());
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
//#endregion
|
|
33
|
+
//#region src/lodash/isEmpty.ts
|
|
34
|
+
const isEmpty = (value) => {
|
|
35
|
+
if (value == null) return true;
|
|
36
|
+
if (typeof value === "boolean" || typeof value === "number") return true;
|
|
37
|
+
if (typeof value === "string" || Array.isArray(value)) return value.length === 0;
|
|
38
|
+
if (value instanceof Map || value instanceof Set) return value.size === 0;
|
|
39
|
+
if (typeof value === "object") return Object.keys(value).length === 0;
|
|
40
|
+
return true;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
//#endregion
|
|
44
|
+
//#region src/lodash/isEqual.ts
|
|
45
|
+
const isEqual = (a, b) => {
|
|
46
|
+
if (a === b) return true;
|
|
47
|
+
if (a == null || b == null) return a === b;
|
|
48
|
+
if (typeof a !== typeof b) return false;
|
|
49
|
+
if (a instanceof Date && b instanceof Date) return a.getTime() === b.getTime();
|
|
50
|
+
if (a instanceof RegExp && b instanceof RegExp) return a.toString() === b.toString();
|
|
51
|
+
if (Array.isArray(a) && Array.isArray(b)) {
|
|
52
|
+
if (a.length !== b.length) return false;
|
|
53
|
+
return a.every((item, i) => isEqual(item, b[i]));
|
|
54
|
+
}
|
|
55
|
+
if (Array.isArray(a) !== Array.isArray(b)) return false;
|
|
56
|
+
if (a instanceof Map && b instanceof Map) {
|
|
57
|
+
if (a.size !== b.size) return false;
|
|
58
|
+
for (const [key, val] of a) if (!b.has(key) || !isEqual(val, b.get(key))) return false;
|
|
59
|
+
return true;
|
|
60
|
+
}
|
|
61
|
+
if (a instanceof Set && b instanceof Set) {
|
|
62
|
+
if (a.size !== b.size) return false;
|
|
63
|
+
for (const val of a) if (!b.has(val)) return false;
|
|
64
|
+
return true;
|
|
65
|
+
}
|
|
66
|
+
if (typeof a === "object" && typeof b === "object") {
|
|
67
|
+
const keysA = Object.keys(a);
|
|
68
|
+
const keysB = Object.keys(b);
|
|
69
|
+
if (keysA.length !== keysB.length) return false;
|
|
70
|
+
return keysA.every((key) => Object.prototype.hasOwnProperty.call(b, key) && isEqual(a[key], b[key]));
|
|
71
|
+
}
|
|
72
|
+
return false;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
//#endregion
|
|
76
|
+
//#region src/lodash/isObject.ts
|
|
77
|
+
const isObject = (value) => {
|
|
78
|
+
const type = typeof value;
|
|
79
|
+
return value != null && (type === "object" || type === "function");
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
//#endregion
|
|
83
|
+
//#region src/lodash/merge.ts
|
|
84
|
+
const merge = (target, ...sources) => {
|
|
85
|
+
for (const source of sources) {
|
|
86
|
+
if (source == null) continue;
|
|
87
|
+
for (const key of Object.keys(source)) {
|
|
88
|
+
const sourceVal = source[key];
|
|
89
|
+
const targetVal = target[key];
|
|
90
|
+
if (Array.isArray(sourceVal) && Array.isArray(targetVal)) {
|
|
91
|
+
const merged = [...targetVal];
|
|
92
|
+
for (let i = 0; i < sourceVal.length; i++) if (sourceVal[i] != null && typeof sourceVal[i] === "object") merged[i] = merge(targetVal[i] ?? {}, sourceVal[i]);
|
|
93
|
+
else merged[i] = sourceVal[i];
|
|
94
|
+
target[key] = merged;
|
|
95
|
+
} else if (sourceVal != null && typeof sourceVal === "object" && !Array.isArray(sourceVal) && !(sourceVal instanceof Date)) target[key] = merge(targetVal != null && typeof targetVal === "object" ? targetVal : {}, sourceVal);
|
|
96
|
+
else if (sourceVal !== void 0) target[key] = sourceVal;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return target;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
//#endregion
|
|
103
|
+
//#region src/lodash/orderBy.ts
|
|
104
|
+
const orderBy = (collection, iteratees, orders = "asc") => {
|
|
105
|
+
const keys = Array.isArray(iteratees) ? iteratees : [iteratees];
|
|
106
|
+
const dirs = Array.isArray(orders) ? orders : [orders];
|
|
107
|
+
const getValue = (item, key) => {
|
|
108
|
+
if (typeof key === "function") return key(item);
|
|
109
|
+
return key.split(".").reduce((acc, part) => acc?.[part], item);
|
|
110
|
+
};
|
|
111
|
+
return [...collection].sort((a, b) => {
|
|
112
|
+
for (let i = 0; i < keys.length; i++) {
|
|
113
|
+
const dir = dirs[i] === "desc" ? -1 : 1;
|
|
114
|
+
const aVal = getValue(a, keys[i]);
|
|
115
|
+
const bVal = getValue(b, keys[i]);
|
|
116
|
+
if (aVal === bVal) continue;
|
|
117
|
+
if (aVal == null) return 1;
|
|
118
|
+
if (bVal == null) return -1;
|
|
119
|
+
if (typeof aVal === "string" && typeof bVal === "string") return aVal.localeCompare(bVal) * dir;
|
|
120
|
+
return (aVal < bVal ? -1 : 1) * dir;
|
|
121
|
+
}
|
|
122
|
+
return 0;
|
|
123
|
+
});
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
//#endregion
|
|
127
|
+
//#region src/lodash/unescape.ts
|
|
128
|
+
const unescape = (str) => {
|
|
129
|
+
const htmlEntities = {
|
|
130
|
+
"&": "&",
|
|
131
|
+
"<": "<",
|
|
132
|
+
">": ">",
|
|
133
|
+
""": "\"",
|
|
134
|
+
"'": "'"
|
|
135
|
+
};
|
|
136
|
+
return str.replace(/&(?:amp|lt|gt|quot|#39);/g, (match) => htmlEntities[match]);
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
//#endregion
|
|
140
|
+
//#region src/lodash/uniq.ts
|
|
141
|
+
const uniq = (arr) => [...new Set(arr)];
|
|
142
|
+
|
|
143
|
+
//#endregion
|
|
144
|
+
export { isDate, isEmpty, isEqual, isObject, merge, orderBy, set, trim, unescape, uniq };
|
package/dist/object/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
const replaceKeys = (instance, getNewKey) => {
|
|
7
7
|
let response = instance;
|
|
8
|
-
if (Array.isArray(instance)) {
|
|
8
|
+
if (Array.Array.isArray(instance)) {
|
|
9
9
|
response = [];
|
|
10
10
|
for (let i = 0; i < instance.length; i++) response[i] = replaceKeys(instance[i], getNewKey);
|
|
11
11
|
} else if ("object" === typeof instance) {
|
package/dist/prisma/index.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { t as getDecimal$1 } from "../getDecimal-DRv1J8WD.mjs";
|
|
2
|
-
import isArray from "lodash/isArray";
|
|
3
2
|
|
|
4
3
|
//#region src/prisma/getDecimal.ts
|
|
5
4
|
/**
|
|
@@ -7,7 +6,7 @@ import isArray from "lodash/isArray";
|
|
|
7
6
|
*/
|
|
8
7
|
const getDecimal = (input, dp = 2) => {
|
|
9
8
|
let numberString = "";
|
|
10
|
-
if (isArray(input?.d)) numberString = input.absoluteValue();
|
|
9
|
+
if (Array.isArray(input?.d)) numberString = input.absoluteValue();
|
|
11
10
|
else numberString = input.toString();
|
|
12
11
|
return getDecimal$1(numberString, dp);
|
|
13
12
|
};
|
package/dist/string/index.mjs
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
+
import { isDate, isObject, trim, unescape } from "../lodash/index.mjs";
|
|
1
2
|
import { getYmdString } from "../date/index.mjs";
|
|
2
|
-
import isArray from "lodash/isArray";
|
|
3
|
-
import isObject from "lodash/isObject";
|
|
4
|
-
import isDate from "lodash/isDate";
|
|
5
|
-
import _unescape from "lodash/unescape";
|
|
6
|
-
import trim from "lodash/trim";
|
|
7
3
|
|
|
8
4
|
//#region src/string/reservedWords.ts
|
|
9
5
|
const reservedWords = [
|
|
@@ -51,7 +47,7 @@ const getString = (input) => {
|
|
|
51
47
|
let string = "";
|
|
52
48
|
if ("string" === typeof input) string = input;
|
|
53
49
|
else if ("number" === typeof input) string = input.toString();
|
|
54
|
-
else if (isObject(input) || isArray(input)) string = JSON.stringify(input);
|
|
50
|
+
else if (isObject(input) || Array.isArray(input)) string = JSON.stringify(input);
|
|
55
51
|
else if (isDate(input)) string = getYmdString(input);
|
|
56
52
|
return string;
|
|
57
53
|
};
|
|
@@ -139,7 +135,7 @@ const getUnescaped = (input) => {
|
|
|
139
135
|
let el = document.createElement("textarea");
|
|
140
136
|
el.innerHTML = response;
|
|
141
137
|
response = el.value;
|
|
142
|
-
} else response =
|
|
138
|
+
} else response = unescape(response);
|
|
143
139
|
return response;
|
|
144
140
|
};
|
|
145
141
|
|
|
@@ -2,7 +2,6 @@ import { BaseNamespace } from "../../_class/index.mjs";
|
|
|
2
2
|
import "../../api-BlYy5Efh.mjs";
|
|
3
3
|
import { post } from "../../axios/index.mjs";
|
|
4
4
|
import { onePasswordClient } from "../../onePassword/server/index.mjs";
|
|
5
|
-
import isArray from "lodash/isArray";
|
|
6
5
|
|
|
7
6
|
//#region src/upTimeRobot/server/UpTimeRobotNamespace.ts
|
|
8
7
|
/**
|
|
@@ -21,9 +20,9 @@ var UpTimeRobotNamespace = class extends BaseNamespace {
|
|
|
21
20
|
let finalParams = {};
|
|
22
21
|
if (void 0 !== props) {
|
|
23
22
|
finalParams = { ...props };
|
|
24
|
-
if (void 0 !== props.monitors && isArray(props.monitors)) finalParams["monitors"] = props.monitors.join("-");
|
|
25
|
-
if (void 0 !== props.statuses && isArray(props.statuses)) finalParams["statuses"] = props.statuses.join("-");
|
|
26
|
-
if (void 0 !== props.types && isArray(props.types)) finalParams["types"] = props.types.join("-");
|
|
23
|
+
if (void 0 !== props.monitors && Array.isArray(props.monitors)) finalParams["monitors"] = props.monitors.join("-");
|
|
24
|
+
if (void 0 !== props.statuses && Array.isArray(props.statuses)) finalParams["statuses"] = props.statuses.join("-");
|
|
25
|
+
if (void 0 !== props.types && Array.isArray(props.types)) finalParams["types"] = props.types.join("-");
|
|
27
26
|
}
|
|
28
27
|
const apiResponse = await post(`https://api.uptimerobot.com/v2/getMonitors?api_key=${this.config.apiKey}`, finalParams);
|
|
29
28
|
if (apiResponse.isSuccess()) response = apiResponse.getBody();
|
package/dist/url/index.mjs
CHANGED
package/dist/util/index.d.mts
CHANGED
|
@@ -39,7 +39,7 @@ declare const isUndefined: (instance: any, keys: any | any[]) => boolean;
|
|
|
39
39
|
* Chunk a queue of promises into controlled chunks to prevent overloading.
|
|
40
40
|
* https://stackoverflow.com/a/53964407
|
|
41
41
|
*/
|
|
42
|
-
declare const promiseChunks: (promises: Promise<any>[], size: number, sleepSeconds?: number, callbackFunction?: Function) => Promise<any
|
|
42
|
+
declare const promiseChunks: (promises: Promise<any>[], size: number, sleepSeconds?: number, callbackFunction?: Function) => Promise<any>;
|
|
43
43
|
//#endregion
|
|
44
44
|
//#region src/util/sleep.d.ts
|
|
45
45
|
declare const sleep: (seconds: number) => Promise<void>;
|
package/dist/util/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@8ms/helpers",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
|
-
"version": "2.3.
|
|
4
|
+
"version": "2.3.10",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/8millionstories-organisation/8ms-helpers-ts.git"
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"axios": "^1.13.5",
|
|
20
|
-
"lodash": "^4.17.23",
|
|
21
20
|
"luxon": "^3.7.2",
|
|
22
21
|
"zod": "^4.3.6"
|
|
23
22
|
},
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"@types/crypto-js": "^4.2.2",
|
|
172
171
|
"@types/fs-extra": "11.0.4",
|
|
173
172
|
"@types/jest": "30.0.0",
|
|
174
|
-
"@types/lodash": "^4.17.23",
|
|
175
173
|
"@types/luxon": "3.7.1",
|
|
176
174
|
"@types/node": "^24.10.13",
|
|
177
175
|
"@types/react": "^19.2.14",
|
|
@@ -237,6 +235,7 @@
|
|
|
237
235
|
"./inngest": "./dist/inngest/index.mjs",
|
|
238
236
|
"./json": "./dist/json/index.mjs",
|
|
239
237
|
"./littleWarden/server": "./dist/littleWarden/server/index.mjs",
|
|
238
|
+
"./lodash": "./dist/lodash/index.mjs",
|
|
240
239
|
"./lumar/api/server": "./dist/lumar/api/server/index.mjs",
|
|
241
240
|
"./lumar/graphql/server": "./dist/lumar/graphql/server/index.mjs",
|
|
242
241
|
"./myTarget/server": "./dist/myTarget/server/index.mjs",
|