umt 2.13.0 → 2.15.0

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.
Files changed (199) hide show
  1. package/module/Array/arraysJoin.js +9 -1
  2. package/module/Array/arraysJoin.js.map +1 -1
  3. package/module/Array/sum.js +35 -2
  4. package/module/Array/sum.js.map +1 -1
  5. package/module/Array/ultraNumberSort.js +8 -3
  6. package/module/Array/ultraNumberSort.js.map +1 -1
  7. package/module/Array/zip.js +21 -5
  8. package/module/Array/zip.js.map +1 -1
  9. package/module/Array/zipLongest.js +23 -4
  10. package/module/Array/zipLongest.js.map +1 -1
  11. package/module/Crypto/decodeBase32.js +3 -2
  12. package/module/Crypto/decodeBase32.js.map +1 -1
  13. package/module/Crypto/decodeBase58.js +6 -4
  14. package/module/Crypto/decodeBase58.js.map +1 -1
  15. package/module/Crypto/encodeBase32.js +11 -6
  16. package/module/Crypto/encodeBase32.js.map +1 -1
  17. package/module/Crypto/encodeBase58.js +5 -2
  18. package/module/Crypto/encodeBase58.js.map +1 -1
  19. package/module/DataStructure/priorityQueue.js +8 -1
  20. package/module/DataStructure/priorityQueue.js.map +1 -1
  21. package/module/IP/ipToBinaryString.js +3 -1
  22. package/module/IP/ipToBinaryString.js.map +1 -1
  23. package/module/IP/longToIp.d.ts +1 -1
  24. package/module/IP/longToIp.js +2 -7
  25. package/module/IP/longToIp.js.map +1 -1
  26. package/module/Math/addition.js +4 -11
  27. package/module/Math/addition.js.map +1 -1
  28. package/module/Math/multiplication.js +14 -6
  29. package/module/Math/multiplication.js.map +1 -1
  30. package/module/Math/nCr.js +6 -2
  31. package/module/Math/nCr.js.map +1 -1
  32. package/module/Math/standardDeviation.js +12 -7
  33. package/module/Math/standardDeviation.js.map +1 -1
  34. package/module/Math/subtract.js +5 -9
  35. package/module/Math/subtract.js.map +1 -1
  36. package/module/Object/deepClone.d.ts +10 -0
  37. package/module/Object/deepClone.js +16 -6
  38. package/module/Object/deepClone.js.map +1 -1
  39. package/module/Object/getObjectsCommon.d.ts +10 -0
  40. package/module/Object/getObjectsCommon.js +10 -0
  41. package/module/Object/getObjectsCommon.js.map +1 -1
  42. package/module/Object/getObjectsDiff.d.ts +10 -0
  43. package/module/Object/getObjectsDiff.js +17 -6
  44. package/module/Object/getObjectsDiff.js.map +1 -1
  45. package/module/Object/has.d.ts +10 -0
  46. package/module/Object/has.js +10 -0
  47. package/module/Object/has.js.map +1 -1
  48. package/module/Object/index.d.ts +4 -0
  49. package/module/Object/index.js +4 -0
  50. package/module/Object/index.js.map +1 -1
  51. package/module/Object/keyBy.d.ts +10 -0
  52. package/module/Object/keyBy.js +10 -0
  53. package/module/Object/keyBy.js.map +1 -1
  54. package/module/Object/mapKeys.d.ts +10 -0
  55. package/module/Object/mapKeys.js +12 -1
  56. package/module/Object/mapKeys.js.map +1 -1
  57. package/module/Object/mapValues.d.ts +10 -0
  58. package/module/Object/mapValues.js +10 -0
  59. package/module/Object/mapValues.js.map +1 -1
  60. package/module/Object/merge.d.ts +10 -0
  61. package/module/Object/merge.js +17 -1
  62. package/module/Object/merge.js.map +1 -1
  63. package/module/Object/mergeDeep.d.ts +10 -0
  64. package/module/Object/mergeDeep.js +29 -15
  65. package/module/Object/mergeDeep.js.map +1 -1
  66. package/module/Object/pickDeep.d.ts +10 -0
  67. package/module/Object/pickDeep.js +10 -5
  68. package/module/Object/pickDeep.js.map +1 -1
  69. package/module/Object/removePrototype.d.ts +15 -0
  70. package/module/Object/removePrototype.js +25 -0
  71. package/module/Object/removePrototype.js.map +1 -0
  72. package/module/Object/removePrototypeDeep.d.ts +11 -0
  73. package/module/Object/removePrototypeDeep.js +60 -0
  74. package/module/Object/removePrototypeDeep.js.map +1 -0
  75. package/module/Object/removePrototypeMap.d.ts +9 -0
  76. package/module/Object/removePrototypeMap.js +13 -0
  77. package/module/Object/removePrototypeMap.js.map +1 -0
  78. package/module/Object/removePrototypeMapDeep.d.ts +9 -0
  79. package/module/Object/removePrototypeMapDeep.js +13 -0
  80. package/module/Object/removePrototypeMapDeep.js.map +1 -0
  81. package/module/String/escapeHtml.js +11 -2
  82. package/module/String/escapeHtml.js.map +1 -1
  83. package/module/String/formatString/applyFormatter.js +5 -5
  84. package/module/String/formatString/applyFormatter.js.map +1 -1
  85. package/module/String/formatString/getValue.js +3 -1
  86. package/module/String/formatString/getValue.js.map +1 -1
  87. package/module/String/levenshteinDistance.js +41 -24
  88. package/module/String/levenshteinDistance.js.map +1 -1
  89. package/module/String/slugify.js +7 -5
  90. package/module/String/slugify.js.map +1 -1
  91. package/module/String/trimEndCharacters.js +3 -1
  92. package/module/String/trimEndCharacters.js.map +1 -1
  93. package/module/String/trimStartCharacters.js +3 -1
  94. package/module/String/trimStartCharacters.js.map +1 -1
  95. package/module/String/unescapeHtml.d.ts +1 -1
  96. package/module/String/unescapeHtml.js +48 -4
  97. package/module/String/unescapeHtml.js.map +1 -1
  98. package/module/Tool/parseJson.js +13 -1
  99. package/module/Tool/parseJson.js.map +1 -1
  100. package/module/URL/buildUrl.js +4 -0
  101. package/module/URL/buildUrl.js.map +1 -1
  102. package/module/URL/parseQueryString.js +4 -0
  103. package/module/URL/parseQueryString.js.map +1 -1
  104. package/module/Validate/isDeepEqual.js +7 -5
  105. package/module/Validate/isDeepEqual.js.map +1 -1
  106. package/module/Validate/isPrimeNumber.js +12 -2
  107. package/module/Validate/isPrimeNumber.js.map +1 -1
  108. package/module/Validate/object/index.d.ts +2 -0
  109. package/module/Validate/object/index.js +2 -0
  110. package/module/Validate/object/index.js.map +1 -1
  111. package/module/Validate/object/intersection.d.ts +10 -0
  112. package/module/Validate/object/intersection.js +25 -0
  113. package/module/Validate/object/intersection.js.map +1 -0
  114. package/module/Validate/object/optional.d.ts +6 -0
  115. package/module/Validate/object/optional.js +6 -0
  116. package/module/Validate/object/optional.js.map +1 -1
  117. package/module/Validate/object/union.d.ts +9 -0
  118. package/module/Validate/object/union.js +27 -0
  119. package/module/Validate/object/union.js.map +1 -0
  120. package/module/Validate/parseEmail.js +6 -0
  121. package/module/Validate/parseEmail.js.map +1 -1
  122. package/module/Validate/string/uuid.d.ts +1 -5
  123. package/module/Validate/string/uuid.js +19 -2
  124. package/module/Validate/string/uuid.js.map +1 -1
  125. package/module/es5/Array/arraysJoin.js +20 -2
  126. package/module/es5/Array/sum.js +38 -4
  127. package/module/es5/Array/ultraNumberSort.js +31 -45
  128. package/module/es5/Array/zip.js +23 -17
  129. package/module/es5/Array/zipLongest.js +27 -14
  130. package/module/es5/Crypto/decodeBase32.js +11 -2
  131. package/module/es5/Crypto/decodeBase58.js +13 -6
  132. package/module/es5/Crypto/encodeBase32.js +12 -6
  133. package/module/es5/Crypto/encodeBase58.js +6 -2
  134. package/module/es5/DataStructure/priorityQueue.js +8 -3
  135. package/module/es5/IP/ipToBinaryString.js +2 -2
  136. package/module/es5/IP/longToIp.d.ts +1 -1
  137. package/module/es5/IP/longToIp.js +2 -13
  138. package/module/es5/Math/addition.js +4 -13
  139. package/module/es5/Math/multiplication.js +37 -6
  140. package/module/es5/Math/nCr.js +7 -2
  141. package/module/es5/Math/standardDeviation.js +25 -10
  142. package/module/es5/Math/subtract.js +12 -9
  143. package/module/es5/Object/deepClone.d.ts +10 -0
  144. package/module/es5/Object/deepClone.js +16 -6
  145. package/module/es5/Object/getObjectsCommon.d.ts +10 -0
  146. package/module/es5/Object/getObjectsCommon.js +10 -0
  147. package/module/es5/Object/getObjectsDiff.d.ts +10 -0
  148. package/module/es5/Object/getObjectsDiff.js +32 -17
  149. package/module/es5/Object/has.d.ts +10 -0
  150. package/module/es5/Object/has.js +10 -0
  151. package/module/es5/Object/index.d.ts +4 -0
  152. package/module/es5/Object/index.js +44 -0
  153. package/module/es5/Object/keyBy.d.ts +10 -0
  154. package/module/es5/Object/keyBy.js +10 -0
  155. package/module/es5/Object/mapKeys.d.ts +10 -0
  156. package/module/es5/Object/mapKeys.js +12 -1
  157. package/module/es5/Object/mapValues.d.ts +10 -0
  158. package/module/es5/Object/mapValues.js +10 -0
  159. package/module/es5/Object/merge.d.ts +10 -0
  160. package/module/es5/Object/merge.js +19 -1
  161. package/module/es5/Object/mergeDeep.d.ts +10 -0
  162. package/module/es5/Object/mergeDeep.js +34 -18
  163. package/module/es5/Object/pickDeep.d.ts +10 -0
  164. package/module/es5/Object/pickDeep.js +10 -3
  165. package/module/es5/Object/removePrototype.d.ts +15 -0
  166. package/module/es5/Object/removePrototype.js +31 -0
  167. package/module/es5/Object/removePrototypeDeep.d.ts +11 -0
  168. package/module/es5/Object/removePrototypeDeep.js +81 -0
  169. package/module/es5/Object/removePrototypeMap.d.ts +9 -0
  170. package/module/es5/Object/removePrototypeMap.js +20 -0
  171. package/module/es5/Object/removePrototypeMapDeep.d.ts +9 -0
  172. package/module/es5/Object/removePrototypeMapDeep.js +20 -0
  173. package/module/es5/String/escapeHtml.js +12 -3
  174. package/module/es5/String/formatString/applyFormatter.js +5 -5
  175. package/module/es5/String/formatString/getValue.js +4 -1
  176. package/module/es5/String/levenshteinDistance.js +43 -28
  177. package/module/es5/String/slugify.js +8 -1
  178. package/module/es5/String/trimEndCharacters.js +3 -1
  179. package/module/es5/String/trimStartCharacters.js +3 -1
  180. package/module/es5/String/unescapeHtml.d.ts +1 -1
  181. package/module/es5/String/unescapeHtml.js +46 -4
  182. package/module/es5/Tool/parseJson.js +14 -1
  183. package/module/es5/URL/buildUrl.js +4 -0
  184. package/module/es5/URL/parseQueryString.js +4 -0
  185. package/module/es5/Validate/isDeepEqual.js +48 -39
  186. package/module/es5/Validate/isPrimeNumber.js +14 -2
  187. package/module/es5/Validate/object/index.d.ts +2 -0
  188. package/module/es5/Validate/object/index.js +22 -0
  189. package/module/es5/Validate/object/intersection.d.ts +10 -0
  190. package/module/es5/Validate/object/intersection.js +34 -0
  191. package/module/es5/Validate/object/optional.d.ts +6 -0
  192. package/module/es5/Validate/object/optional.js +6 -0
  193. package/module/es5/Validate/object/union.d.ts +9 -0
  194. package/module/es5/Validate/object/union.js +36 -0
  195. package/module/es5/Validate/parseEmail.js +8 -0
  196. package/module/es5/Validate/string/uuid.d.ts +1 -5
  197. package/module/es5/Validate/string/uuid.js +24 -2
  198. package/package.json +33 -28
  199. package/module/es5/tsconfig.tsbuildinfo +0 -1
@@ -0,0 +1,10 @@
1
+ import type { UnionToIntersection } from "../../types/logic";
2
+ import type { ValidateCoreReturnType } from "../../Validate/type";
3
+ type ExtractValidatedType<V> = V extends (value: never) => ValidateCoreReturnType<infer T> ? T : never;
4
+ /**
5
+ * Creates an intersection validator that passes only if all given validators pass
6
+ * @param validators - Validator functions to compose as an intersection (logical AND)
7
+ * @returns {Function} - Validator that checks if the value matches all validators
8
+ */
9
+ export declare const intersection: <Vs extends ((value: never) => ValidateCoreReturnType<unknown>)[]>(...validators: [...Vs]) => (value: UnionToIntersection<ExtractValidatedType<Vs[number]>>) => ValidateCoreReturnType<UnionToIntersection<ExtractValidatedType<Vs[number]>>>;
10
+ export {};
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.intersection = void 0;
7
+ /**
8
+ * Creates an intersection validator that passes only if all given validators pass
9
+ * @param validators - Validator functions to compose as an intersection (logical AND)
10
+ * @returns {Function} - Validator that checks if the value matches all validators
11
+ */
12
+ var intersection = exports.intersection = function intersection() {
13
+ for (var _len = arguments.length, validators = new Array(_len), _key = 0; _key < _len; _key++) {
14
+ validators[_key] = arguments[_key];
15
+ }
16
+ return function (value) {
17
+ for (var _i = 0, _validators = validators; _i < _validators.length; _i++) {
18
+ var validator = _validators[_i];
19
+ var result = validator(value);
20
+ if (!result.validate) {
21
+ return {
22
+ validate: false,
23
+ message: result.message,
24
+ type: value
25
+ };
26
+ }
27
+ }
28
+ return {
29
+ validate: true,
30
+ message: "",
31
+ type: value
32
+ };
33
+ };
34
+ };
@@ -1,2 +1,8 @@
1
1
  import type { ValidateCoreReturnType } from "../../Validate/type";
2
+ /**
3
+ * Wraps a validator to accept undefined values
4
+ * @template T - The type of value the wrapped validator expects
5
+ * @param {Function} validator - Validator function to make optional
6
+ * @returns {Function} - Validator that passes for undefined or delegates to the wrapped validator
7
+ */
2
8
  export declare const optional: <T>(validator: (value: T) => ValidateCoreReturnType<T>) => ((value?: T) => ValidateCoreReturnType<T | undefined>);
@@ -4,6 +4,12 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.optional = void 0;
7
+ /**
8
+ * Wraps a validator to accept undefined values
9
+ * @template T - The type of value the wrapped validator expects
10
+ * @param {Function} validator - Validator function to make optional
11
+ * @returns {Function} - Validator that passes for undefined or delegates to the wrapped validator
12
+ */
7
13
  var optional = exports.optional = function optional(validator) {
8
14
  var optionalValidator = function optionalValidator(value) {
9
15
  if (value === undefined) {
@@ -0,0 +1,9 @@
1
+ import type { ValidateCoreReturnType } from "../../Validate/type";
2
+ type ExtractValidatedType<V> = V extends (value: never) => ValidateCoreReturnType<infer T> ? T : never;
3
+ /**
4
+ * Creates a union validator that passes if any of the given validators pass
5
+ * @param validators - Validator functions to compose as a union (logical OR)
6
+ * @returns {Function} - Validator that checks if the value matches any of the validators
7
+ */
8
+ export declare const union: <Vs extends ((value: never) => ValidateCoreReturnType<unknown>)[]>(...validators: [...Vs]) => (value: ExtractValidatedType<Vs[number]>) => ValidateCoreReturnType<ExtractValidatedType<Vs[number]>>;
9
+ export {};
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.union = void 0;
7
+ /**
8
+ * Creates a union validator that passes if any of the given validators pass
9
+ * @param validators - Validator functions to compose as a union (logical OR)
10
+ * @returns {Function} - Validator that checks if the value matches any of the validators
11
+ */
12
+ var union = exports.union = function union() {
13
+ for (var _len = arguments.length, validators = new Array(_len), _key = 0; _key < _len; _key++) {
14
+ validators[_key] = arguments[_key];
15
+ }
16
+ return function (value) {
17
+ var lastMessage = "";
18
+ for (var _i = 0, _validators = validators; _i < _validators.length; _i++) {
19
+ var validator = _validators[_i];
20
+ var result = validator(value);
21
+ if (result.validate) {
22
+ return {
23
+ validate: true,
24
+ message: "",
25
+ type: value
26
+ };
27
+ }
28
+ lastMessage = result.message;
29
+ }
30
+ return {
31
+ validate: false,
32
+ message: lastMessage,
33
+ type: value
34
+ };
35
+ };
36
+ };
@@ -33,6 +33,14 @@ var EMAIL_PATTERNS = {
33
33
  var parseEmail = exports.parseEmail = function parseEmail(_ref) {
34
34
  var email = _ref.email,
35
35
  options = _ref.options;
36
+ // ReDoS mitigation: reject excessively long inputs before regex evaluation
37
+ // RFC 5321 specifies max 256 characters for a full email address
38
+ var MAX_EMAIL_LENGTH = 320;
39
+ if (email.length > MAX_EMAIL_LENGTH) {
40
+ return {
41
+ valid: false
42
+ };
43
+ }
36
44
  var level = options.level;
37
45
  var pattern = EMAIL_PATTERNS[level];
38
46
  var match = pattern.exec(email);
@@ -1,11 +1,7 @@
1
1
  import type { ValidateReturnType } from "../../Validate/type";
2
- /**
3
- * String validation module for UUID strings
4
- * Provides validation functionality for checking if a string is a valid UUID
5
- */
6
2
  /**
7
3
  * Creates a validator for checking if a string is a valid UUID
8
- * @param {number[]} [versions=[4]] - Array of supported UUID versions
4
+ * @param {number[]} [versions=[4]] - Array of supported UUID versions (1-7)
9
5
  * @param {string} [message] - Custom error message for validation failure
10
6
  * @returns {ValidateReturnType<string>} - Validator for UUID strings
11
7
  */
@@ -11,16 +11,38 @@ function _taggedTemplateLiteral(e, t) { return t || (t = e.slice(0)), Object.fre
11
11
  * Provides validation functionality for checking if a string is a valid UUID
12
12
  */
13
13
 
14
+ // Security: Valid UUID versions are single-digit integers (1-7).
15
+ // The version value is interpolated into a RegExp constructor, so untrusted
16
+ // input could inject arbitrary regex patterns (regex injection / ReDoS).
17
+ // We validate each version is a safe integer in the expected range before use.
18
+ var VALID_UUID_VERSIONS = new Set([1, 2, 3, 4, 5, 6, 7]);
19
+
14
20
  /**
15
21
  * Creates a validator for checking if a string is a valid UUID
16
- * @param {number[]} [versions=[4]] - Array of supported UUID versions
22
+ * @param {number[]} [versions=[4]] - Array of supported UUID versions (1-7)
17
23
  * @param {string} [message] - Custom error message for validation failure
18
24
  * @returns {ValidateReturnType<string>} - Validator for UUID strings
19
25
  */
20
26
  var uuid = exports.uuid = function uuid() {
21
27
  var versions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [4];
22
28
  var message = arguments.length > 1 ? arguments[1] : undefined;
23
- var versionRegexes = versions.map(function (version) {
29
+ // Security: Sanitize version input to prevent regex injection.
30
+ // Only allow known UUID version numbers (integers 1-7) to be interpolated
31
+ // into the RegExp pattern. Reject anything else to block arbitrary regex
32
+ // metacharacter injection via untrusted input.
33
+ var safeVersions = versions.filter(function (v) {
34
+ return VALID_UUID_VERSIONS.has(v);
35
+ });
36
+ if (safeVersions.length === 0) {
37
+ return {
38
+ type: "string",
39
+ message: message,
40
+ validate: function validate() {
41
+ return false;
42
+ }
43
+ };
44
+ }
45
+ var versionRegexes = safeVersions.map(function (version) {
24
46
  return new RegExp(String.raw(_templateObject || (_templateObject = _taggedTemplateLiteral(["^[da-f]{8}-?[da-f]{4}-?", "[da-f]{3}-?[89ab][da-f]{3}-?[da-f]{12}$"], ["^[\\da-f]{8}-?[\\da-f]{4}-?", "[\\da-f]{3}-?[89ab][\\da-f]{3}-?[\\da-f]{12}$"])), version), "i");
25
47
  });
26
48
  return {
package/package.json CHANGED
@@ -7,43 +7,38 @@
7
7
  "devDependencies": {
8
8
  "@babel/cli": "7.28.6",
9
9
  "@babel/core": "7.29.0",
10
- "@babel/preset-env": "7.29.0",
10
+ "@babel/preset-env": "7.29.2",
11
11
  "@babel/preset-typescript": "7.28.5",
12
- "@biomejs/biome": "2.4.4",
12
+ "@biomejs/biome": "2.4.11",
13
13
  "@codecov/bundle-analyzer": "1.9.1",
14
14
  "@eslint/js": "10.0.1",
15
- "@swc/core": "1.15.18",
15
+ "@swc/core": "1.15.24",
16
16
  "@swc/jest": "0.2.39",
17
- "@types/bun": "1.3.9",
17
+ "@types/bun": "1.3.12",
18
18
  "@types/jest": "30.0.0",
19
19
  "@types/lodash": "4.17.24",
20
- "@types/node": "25.3.3",
21
- "@typescript-eslint/eslint-plugin": "8.56.1",
22
- "@typescript-eslint/parser": "8.56.1",
23
- "bun-types": "1.3.10",
24
- "dependency-cruiser": "17.3.8",
25
- "es-toolkit": "1.44.0",
26
- "eslint": "10.0.2",
27
- "eslint-plugin-baseline-js": "0.5.0",
20
+ "@types/node": "25.6.0",
21
+ "@typescript-eslint/eslint-plugin": "8.58.2",
22
+ "@typescript-eslint/parser": "8.58.2",
23
+ "bun-types": "1.3.12",
24
+ "dependency-cruiser": "17.3.10",
25
+ "es-toolkit": "1.45.1",
26
+ "eslint": "10.2.0",
27
+ "eslint-plugin-baseline-js": "0.6.1",
28
28
  "eslint-plugin-import": "2.32.0",
29
- "eslint-plugin-unicorn": "63.0.0",
29
+ "eslint-plugin-unicorn": "64.0.0",
30
30
  "fast-sort": "3.4.1",
31
31
  "gh-pages": "6.3.0",
32
- "jest": "30.2.0",
32
+ "jest": "30.3.0",
33
33
  "jest-junit": "16.0.0",
34
- "lodash": "4.17.23",
34
+ "lodash": "4.18.1",
35
35
  "mitata": "1.0.34",
36
- "ts-jest": "29.4.6",
36
+ "ts-jest": "29.4.9",
37
37
  "ts-node": "10.9.2",
38
38
  "tsc-alias": "1.8.16",
39
- "typedoc": "0.28.17",
40
- "typescript": "5.9.3",
41
- "typescript-eslint": "8.56.1"
42
- },
43
- "directories": {
44
- "doc": "doc",
45
- "lib": "lib",
46
- "test": "tests"
39
+ "typedoc": "0.28.19",
40
+ "typescript": "6.0.2",
41
+ "typescript-eslint": "8.58.2"
47
42
  },
48
43
  "exports": {
49
44
  ".": {
@@ -184,14 +179,25 @@
184
179
  "!module/es5/tests"
185
180
  ],
186
181
  "homepage": "https://github.com/riya-amemiya/UMT#readme",
187
- "keywords": [],
182
+ "keywords": [
183
+ "typescript",
184
+ "utility",
185
+ "utils",
186
+ "toolkit",
187
+ "array",
188
+ "math",
189
+ "string",
190
+ "date",
191
+ "functional"
192
+ ],
193
+ "sideEffects": false,
188
194
  "license": "MIT",
189
195
  "main": "module/index.js",
190
196
  "module": "module/index.js",
191
197
  "name": "umt",
192
198
  "repository": {
193
199
  "type": "git",
194
- "url": "git://github.com/riya-amemiya/UMT.git"
200
+ "url": "git+https://github.com/riya-amemiya/UMT.git"
195
201
  },
196
202
  "scripts": {
197
203
  "build": "tsc && tsc-alias -p tsconfig.json",
@@ -201,7 +207,6 @@
201
207
  "build:full": "bun run build && bun run build:cjs && bun run build:babel && bun run build:cjs:babel",
202
208
  "build:clean": "rm -rf module && bun run build",
203
209
  "build:clean:full": "rm -rf module && rm -rf common-module && bun run build:full",
204
- "clean-build": "rm -rf module && bun run build",
205
210
  "deploy": "bun run typedoc && gh-pages -d doc",
206
211
  "eslint": "eslint src",
207
212
  "format": "biome format . --write",
@@ -213,5 +218,5 @@
213
218
  },
214
219
  "type": "module",
215
220
  "types": "module/index.d.ts",
216
- "version": "2.13.0"
221
+ "version": "2.15.0"
217
222
  }