Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@storm-stack/unique-identifier

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@storm-stack/unique-identifier - npm Package Compare versions

Comparing version 1.2.10 to 1.2.11

dist/legacy/chunk-CEEZA37L.js

165

dist/legacy/cuid.global.js

@@ -337,2 +337,40 @@

// packages/utilities/src/type-checks/get-object-tag.ts
var getObjectTag = /* @__PURE__ */ __name((value) => {
if (value == null) {
return value === void 0 ? "[object Undefined]" : "[object Null]";
}
return Object.prototype.toString.call(value);
}, "getObjectTag");
// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/crypto/web-crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
// packages/utilities/src/type-checks/is-null.ts

@@ -407,2 +445,11 @@ var isNull = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-function.ts
var isFunction = /* @__PURE__ */ __name((value) => {
try {
return value instanceof Function || typeof value === "function" || !!(value && value.constructor && value?.call && value?.apply);
} catch (e) {
return false;
}
}, "isFunction");
// packages/utilities/src/type-checks/is-set.ts

@@ -417,2 +464,120 @@ var isSet = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-non-null-object.ts
var isNonNullObject = /* @__PURE__ */ __name((value) => {
return isSet(value) && isObject(value);
}, "isNonNullObject");
// packages/utilities/src/type-checks/is-react-element.ts
var isReactElement = /* @__PURE__ */ __name((value) => {
return value.$$typeof === (typeof Symbol === "function" && Symbol.for ? Symbol.for("react.element") : 60103);
}, "isReactElement");
// packages/utilities/src/type-checks/is-mergeable-object.ts
var isSpecialType = /* @__PURE__ */ __name((value) => {
const stringValue = Object.prototype.toString.call(value);
return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);
}, "isSpecialType");
var isMergeableObject = /* @__PURE__ */ __name((value) => {
return isNonNullObject(value) && !isSpecialType(value);
}, "isMergeableObject");
// packages/utilities/src/type-checks/property-exists.ts
var propertyExists = /* @__PURE__ */ __name((object, propertyKey) => {
try {
return isObject(object) && propertyKey in object;
} catch (_) {
return false;
}
}, "propertyExists");
var propertyUnsafe = /* @__PURE__ */ __name((object, propertyKey) => {
return propertyExists(object, propertyKey) && // Properties are safe to merge if they don't exist in the target yet,
!(Object.hasOwnProperty.call(object, propertyKey) && // unsafe if they exist up the prototype chain,
Object.propertyIsEnumerable.call(object, propertyKey));
}, "propertyUnsafe");
// packages/utilities/src/helper-fns/deep-copy.ts
var cloneBuffer = isBufferExists ? Buffer.from.bind(Buffer) : (
/**
* Clone the buffer instance.
*
* @param value
* @returns argument used if Buffer unsupported
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
/* @__PURE__ */ __name(function cloneBuffer2(value) {
return value;
}, "cloneBuffer")
);
// packages/utilities/src/helper-fns/deep-merge.ts
var emptyTarget = /* @__PURE__ */ __name((val) => {
return Array.isArray(val) ? [] : {};
}, "emptyTarget");
var cloneUnlessOtherwiseSpecified = /* @__PURE__ */ __name((value, options) => {
return options.clone !== false && options.isMergeableObject(value) ? deepMerge(emptyTarget(value), value, options) : value;
}, "cloneUnlessOtherwiseSpecified");
var defaultArrayMerge = /* @__PURE__ */ __name((target, source, options) => {
return target.concat(source).map((element) => {
return cloneUnlessOtherwiseSpecified(element, options);
});
}, "defaultArrayMerge");
var getMergeFunction = /* @__PURE__ */ __name((key, options) => {
if (!options.customMerge) {
return deepMerge;
}
const customMerge = options.customMerge(key);
return isFunction(customMerge) ? customMerge : deepMerge;
}, "getMergeFunction");
var getKeys = /* @__PURE__ */ __name((target) => {
return Object.keys(target).concat(Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(target).filter((symbol) => {
return Object.propertyIsEnumerable.call(target, symbol);
}) : []);
}, "getKeys");
var mergeObject = /* @__PURE__ */ __name((target, source, options) => {
const destination = {};
if (options.isMergeableObject(target)) {
getKeys(target).forEach((key) => {
destination[key] = cloneUnlessOtherwiseSpecified(target[key], options);
});
}
getKeys(source).forEach((key) => {
if (propertyExists(target, key)) {
return;
}
if (propertyUnsafe(target, key) && options.isMergeableObject(source[key])) {
destination[key] = getMergeFunction(key, options)(target[key], source[key], options);
} else {
destination[key] = cloneUnlessOtherwiseSpecified(source[key], options);
}
});
return destination;
}, "mergeObject");
var deepMerge = /* @__PURE__ */ __name((target, source, options = {}) => {
if (!target || !source) {
return target ? target : source;
}
options = options || {};
options.arrayMerge = options.arrayMerge || defaultArrayMerge;
options.isMergeableObject = options.isMergeableObject || isMergeableObject;
options.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;
const sourceIsArray = Array.isArray(source);
const targetIsArray = Array.isArray(target);
const sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
if (!sourceAndTargetTypesMatch) {
return cloneUnlessOtherwiseSpecified(source, options);
} else if (sourceIsArray) {
return options.arrayMerge(target, source, options);
} else {
return mergeObject(target, source, options);
}
}, "deepMerge");
deepMerge.all = /* @__PURE__ */ __name(function deepMergeAll(array, options) {
if (!Array.isArray(array)) {
throw new Error("first argument should be an array");
}
return array.reduce((prev, next) => {
return deepMerge(prev, next, options);
}, {});
}, "deepMergeAll");
// packages/unique-identifier/src/hash.ts

@@ -419,0 +584,0 @@ var DEFAULT_RADIX = 36;

4

dist/legacy/cuid.js

@@ -27,5 +27,5 @@

cuid
} from "./chunk-YYVNUVGC.js";
} from "./chunk-CEEZA37L.js";
import "./chunk-WUJFEWGT.js";
import "./chunk-PHEKJSD7.js";
import "./chunk-FQVT2KOP.js";
import "./chunk-HSNPINUR.js";

@@ -32,0 +32,0 @@ export {

@@ -337,2 +337,40 @@

// packages/utilities/src/type-checks/get-object-tag.ts
var getObjectTag = /* @__PURE__ */ __name((value) => {
if (value == null) {
return value === void 0 ? "[object Undefined]" : "[object Null]";
}
return Object.prototype.toString.call(value);
}, "getObjectTag");
// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/crypto/web-crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
// packages/utilities/src/type-checks/is-null.ts

@@ -407,2 +445,11 @@ var isNull = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-function.ts
var isFunction = /* @__PURE__ */ __name((value) => {
try {
return value instanceof Function || typeof value === "function" || !!(value && value.constructor && value?.call && value?.apply);
} catch (e) {
return false;
}
}, "isFunction");
// packages/utilities/src/type-checks/is-set.ts

@@ -417,2 +464,120 @@ var isSet = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-non-null-object.ts
var isNonNullObject = /* @__PURE__ */ __name((value) => {
return isSet(value) && isObject(value);
}, "isNonNullObject");
// packages/utilities/src/type-checks/is-react-element.ts
var isReactElement = /* @__PURE__ */ __name((value) => {
return value.$$typeof === (typeof Symbol === "function" && Symbol.for ? Symbol.for("react.element") : 60103);
}, "isReactElement");
// packages/utilities/src/type-checks/is-mergeable-object.ts
var isSpecialType = /* @__PURE__ */ __name((value) => {
const stringValue = Object.prototype.toString.call(value);
return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);
}, "isSpecialType");
var isMergeableObject = /* @__PURE__ */ __name((value) => {
return isNonNullObject(value) && !isSpecialType(value);
}, "isMergeableObject");
// packages/utilities/src/type-checks/property-exists.ts
var propertyExists = /* @__PURE__ */ __name((object, propertyKey) => {
try {
return isObject(object) && propertyKey in object;
} catch (_) {
return false;
}
}, "propertyExists");
var propertyUnsafe = /* @__PURE__ */ __name((object, propertyKey) => {
return propertyExists(object, propertyKey) && // Properties are safe to merge if they don't exist in the target yet,
!(Object.hasOwnProperty.call(object, propertyKey) && // unsafe if they exist up the prototype chain,
Object.propertyIsEnumerable.call(object, propertyKey));
}, "propertyUnsafe");
// packages/utilities/src/helper-fns/deep-copy.ts
var cloneBuffer = isBufferExists ? Buffer.from.bind(Buffer) : (
/**
* Clone the buffer instance.
*
* @param value
* @returns argument used if Buffer unsupported
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
/* @__PURE__ */ __name(function cloneBuffer2(value) {
return value;
}, "cloneBuffer")
);
// packages/utilities/src/helper-fns/deep-merge.ts
var emptyTarget = /* @__PURE__ */ __name((val) => {
return Array.isArray(val) ? [] : {};
}, "emptyTarget");
var cloneUnlessOtherwiseSpecified = /* @__PURE__ */ __name((value, options) => {
return options.clone !== false && options.isMergeableObject(value) ? deepMerge(emptyTarget(value), value, options) : value;
}, "cloneUnlessOtherwiseSpecified");
var defaultArrayMerge = /* @__PURE__ */ __name((target, source, options) => {
return target.concat(source).map((element) => {
return cloneUnlessOtherwiseSpecified(element, options);
});
}, "defaultArrayMerge");
var getMergeFunction = /* @__PURE__ */ __name((key, options) => {
if (!options.customMerge) {
return deepMerge;
}
const customMerge = options.customMerge(key);
return isFunction(customMerge) ? customMerge : deepMerge;
}, "getMergeFunction");
var getKeys = /* @__PURE__ */ __name((target) => {
return Object.keys(target).concat(Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(target).filter((symbol) => {
return Object.propertyIsEnumerable.call(target, symbol);
}) : []);
}, "getKeys");
var mergeObject = /* @__PURE__ */ __name((target, source, options) => {
const destination = {};
if (options.isMergeableObject(target)) {
getKeys(target).forEach((key) => {
destination[key] = cloneUnlessOtherwiseSpecified(target[key], options);
});
}
getKeys(source).forEach((key) => {
if (propertyExists(target, key)) {
return;
}
if (propertyUnsafe(target, key) && options.isMergeableObject(source[key])) {
destination[key] = getMergeFunction(key, options)(target[key], source[key], options);
} else {
destination[key] = cloneUnlessOtherwiseSpecified(source[key], options);
}
});
return destination;
}, "mergeObject");
var deepMerge = /* @__PURE__ */ __name((target, source, options = {}) => {
if (!target || !source) {
return target ? target : source;
}
options = options || {};
options.arrayMerge = options.arrayMerge || defaultArrayMerge;
options.isMergeableObject = options.isMergeableObject || isMergeableObject;
options.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;
const sourceIsArray = Array.isArray(source);
const targetIsArray = Array.isArray(target);
const sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
if (!sourceAndTargetTypesMatch) {
return cloneUnlessOtherwiseSpecified(source, options);
} else if (sourceIsArray) {
return options.arrayMerge(target, source, options);
} else {
return mergeObject(target, source, options);
}
}, "deepMerge");
deepMerge.all = /* @__PURE__ */ __name(function deepMergeAll(array, options) {
if (!Array.isArray(array)) {
throw new Error("first argument should be an array");
}
return array.reduce((prev, next) => {
return deepMerge(prev, next, options);
}, {});
}, "deepMergeAll");
// packages/unique-identifier/src/hash.ts

@@ -419,0 +584,0 @@ var DEFAULT_RADIX = 36;

@@ -27,3 +27,3 @@

hash
} from "./chunk-PHEKJSD7.js";
} from "./chunk-FQVT2KOP.js";
import "./chunk-HSNPINUR.js";

@@ -30,0 +30,0 @@ export {

@@ -345,2 +345,32 @@

// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/crypto/web-crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
// packages/utilities/src/type-checks/is-null.ts

@@ -373,29 +403,2 @@ var isNull = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/type-checks/is-buffer.ts

@@ -443,2 +446,11 @@ var isBufferExists = typeof Buffer !== "undefined";

// packages/utilities/src/type-checks/is-function.ts
var isFunction = /* @__PURE__ */ __name((value) => {
try {
return value instanceof Function || typeof value === "function" || !!(value && value.constructor && value?.call && value?.apply);
} catch (e) {
return false;
}
}, "isFunction");
// packages/utilities/src/type-checks/is-set.ts

@@ -453,2 +465,120 @@ var isSet = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-non-null-object.ts
var isNonNullObject = /* @__PURE__ */ __name((value) => {
return isSet(value) && isObject(value);
}, "isNonNullObject");
// packages/utilities/src/type-checks/is-react-element.ts
var isReactElement = /* @__PURE__ */ __name((value) => {
return value.$$typeof === (typeof Symbol === "function" && Symbol.for ? Symbol.for("react.element") : 60103);
}, "isReactElement");
// packages/utilities/src/type-checks/is-mergeable-object.ts
var isSpecialType = /* @__PURE__ */ __name((value) => {
const stringValue = Object.prototype.toString.call(value);
return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);
}, "isSpecialType");
var isMergeableObject = /* @__PURE__ */ __name((value) => {
return isNonNullObject(value) && !isSpecialType(value);
}, "isMergeableObject");
// packages/utilities/src/type-checks/property-exists.ts
var propertyExists = /* @__PURE__ */ __name((object, propertyKey) => {
try {
return isObject(object) && propertyKey in object;
} catch (_) {
return false;
}
}, "propertyExists");
var propertyUnsafe = /* @__PURE__ */ __name((object, propertyKey) => {
return propertyExists(object, propertyKey) && // Properties are safe to merge if they don't exist in the target yet,
!(Object.hasOwnProperty.call(object, propertyKey) && // unsafe if they exist up the prototype chain,
Object.propertyIsEnumerable.call(object, propertyKey));
}, "propertyUnsafe");
// packages/utilities/src/helper-fns/deep-copy.ts
var cloneBuffer = isBufferExists ? Buffer.from.bind(Buffer) : (
/**
* Clone the buffer instance.
*
* @param value
* @returns argument used if Buffer unsupported
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
/* @__PURE__ */ __name(function cloneBuffer2(value) {
return value;
}, "cloneBuffer")
);
// packages/utilities/src/helper-fns/deep-merge.ts
var emptyTarget = /* @__PURE__ */ __name((val) => {
return Array.isArray(val) ? [] : {};
}, "emptyTarget");
var cloneUnlessOtherwiseSpecified = /* @__PURE__ */ __name((value, options) => {
return options.clone !== false && options.isMergeableObject(value) ? deepMerge(emptyTarget(value), value, options) : value;
}, "cloneUnlessOtherwiseSpecified");
var defaultArrayMerge = /* @__PURE__ */ __name((target, source, options) => {
return target.concat(source).map((element) => {
return cloneUnlessOtherwiseSpecified(element, options);
});
}, "defaultArrayMerge");
var getMergeFunction = /* @__PURE__ */ __name((key, options) => {
if (!options.customMerge) {
return deepMerge;
}
const customMerge = options.customMerge(key);
return isFunction(customMerge) ? customMerge : deepMerge;
}, "getMergeFunction");
var getKeys = /* @__PURE__ */ __name((target) => {
return Object.keys(target).concat(Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(target).filter((symbol) => {
return Object.propertyIsEnumerable.call(target, symbol);
}) : []);
}, "getKeys");
var mergeObject = /* @__PURE__ */ __name((target, source, options) => {
const destination = {};
if (options.isMergeableObject(target)) {
getKeys(target).forEach((key) => {
destination[key] = cloneUnlessOtherwiseSpecified(target[key], options);
});
}
getKeys(source).forEach((key) => {
if (propertyExists(target, key)) {
return;
}
if (propertyUnsafe(target, key) && options.isMergeableObject(source[key])) {
destination[key] = getMergeFunction(key, options)(target[key], source[key], options);
} else {
destination[key] = cloneUnlessOtherwiseSpecified(source[key], options);
}
});
return destination;
}, "mergeObject");
var deepMerge = /* @__PURE__ */ __name((target, source, options = {}) => {
if (!target || !source) {
return target ? target : source;
}
options = options || {};
options.arrayMerge = options.arrayMerge || defaultArrayMerge;
options.isMergeableObject = options.isMergeableObject || isMergeableObject;
options.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;
const sourceIsArray = Array.isArray(source);
const targetIsArray = Array.isArray(target);
const sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
if (!sourceAndTargetTypesMatch) {
return cloneUnlessOtherwiseSpecified(source, options);
} else if (sourceIsArray) {
return options.arrayMerge(target, source, options);
} else {
return mergeObject(target, source, options);
}
}, "deepMerge");
deepMerge.all = /* @__PURE__ */ __name(function deepMergeAll(array, options) {
if (!Array.isArray(array)) {
throw new Error("first argument should be an array");
}
return array.reduce((prev, next) => {
return deepMerge(prev, next, options);
}, {});
}, "deepMergeAll");
// packages/unique-identifier/src/hash.ts

@@ -603,4 +733,4 @@ var DEFAULT_RADIX = 36;

// packages/unique-identifier/src/crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
var Crypto = WebCrypto;
var WebCrypto2 = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
var Crypto = WebCrypto2;

@@ -607,0 +737,0 @@ // packages/unique-identifier/src/uuid.ts

@@ -35,3 +35,3 @@

cuid
} from "./chunk-YYVNUVGC.js";
} from "./chunk-CEEZA37L.js";
import {

@@ -43,3 +43,3 @@ randomInteger,

hash
} from "./chunk-PHEKJSD7.js";
} from "./chunk-FQVT2KOP.js";
import "./chunk-F4SA26RI.js";

@@ -46,0 +46,0 @@ import "./chunk-HSNPINUR.js";

@@ -1,1 +0,1 @@

{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js":{"bytes":1816,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9951,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities/type-checks","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/legacy/index.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks","kind":"require-call","external":true},{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":353},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1878},"packages/unique-identifier/src/random.ts":{"bytesInOutput":369},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1172},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1797},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":18027},"dist/packages/unique-identifier/dist/legacy/uuid.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":274},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228}},"bytes":2303},"dist/packages/unique-identifier/dist/legacy/snowflake.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":2029}},"bytes":3747},"dist/packages/unique-identifier/dist/legacy/random.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":545}},"bytes":2260},"dist/packages/unique-identifier/dist/legacy/hash.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1994},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023}},"bytes":13841},"dist/packages/unique-identifier/dist/legacy/cuid.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1288},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1878},"packages/unique-identifier/src/random.ts":{"bytesInOutput":219}},"bytes":15320},"dist/packages/unique-identifier/dist/legacy/crypto.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":354}},"bytes":1979}}}
{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js":{"bytes":1816,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9923,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/legacy/index.cjs":{"imports":[{"path":"@storm-stack/utilities","kind":"require-call","external":true},{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":353},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1858},"packages/unique-identifier/src/random.ts":{"bytesInOutput":369},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1172},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1797},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":18007},"dist/packages/unique-identifier/dist/legacy/uuid.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":274},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228}},"bytes":2303},"dist/packages/unique-identifier/dist/legacy/snowflake.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":2029}},"bytes":3747},"dist/packages/unique-identifier/dist/legacy/random.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":545}},"bytes":2260},"dist/packages/unique-identifier/dist/legacy/hash.cjs":{"imports":[{"path":"@storm-stack/utilities","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1974},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023}},"bytes":13821},"dist/packages/unique-identifier/dist/legacy/cuid.cjs":{"imports":[{"path":"@storm-stack/utilities","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1288},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1858},"packages/unique-identifier/src/random.ts":{"bytesInOutput":219}},"bytes":15300},"dist/packages/unique-identifier/dist/legacy/crypto.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":354}},"bytes":1979}}}

@@ -1,1 +0,1 @@

{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9951,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities/type-checks","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/legacy/index.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-YYVNUVGC.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-PHEKJSD7.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid","deconstructSnowflake","hash","isValidSnowflake","randomInteger","randomLetter","snowflake","uuid"],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":0}},"bytes":1270},"dist/packages/unique-identifier/dist/legacy/uuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{},"bytes":906},"dist/packages/unique-identifier/dist/legacy/chunk-HPM7BBHV.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":1098},"dist/packages/unique-identifier/dist/legacy/snowflake.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{},"bytes":974},"dist/packages/unique-identifier/dist/legacy/chunk-M6TE3CEK.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1792}},"bytes":2738},"dist/packages/unique-identifier/dist/legacy/random.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{},"bytes":926},"dist/packages/unique-identifier/dist/legacy/hash.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-PHEKJSD7.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["hash"],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{},"bytes":876},"dist/packages/unique-identifier/dist/legacy/cuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-YYVNUVGC.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-PHEKJSD7.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{},"bytes":936},"dist/packages/unique-identifier/dist/legacy/chunk-YYVNUVGC.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-PHEKJSD7.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1170}},"bytes":2162},"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":369}},"bytes":1288},"dist/packages/unique-identifier/dist/legacy/chunk-PHEKJSD7.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"},{"path":"@storm-stack/utilities/type-checks","kind":"import-statement","external":true}],"exports":["hash"],"inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1804}},"bytes":12787},"dist/packages/unique-identifier/dist/legacy/crypto.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["Crypto"],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{},"bytes":880},"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true}],"exports":["Crypto"],"inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":199}},"bytes":1047},"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js":{"imports":[],"exports":["__name"],"inputs":{},"bytes":932}}}
{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9923,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/legacy/index.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-CEEZA37L.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-FQVT2KOP.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid","deconstructSnowflake","hash","isValidSnowflake","randomInteger","randomLetter","snowflake","uuid"],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":0}},"bytes":1270},"dist/packages/unique-identifier/dist/legacy/uuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{},"bytes":906},"dist/packages/unique-identifier/dist/legacy/chunk-HPM7BBHV.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":1098},"dist/packages/unique-identifier/dist/legacy/snowflake.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{},"bytes":974},"dist/packages/unique-identifier/dist/legacy/chunk-M6TE3CEK.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1792}},"bytes":2738},"dist/packages/unique-identifier/dist/legacy/random.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{},"bytes":926},"dist/packages/unique-identifier/dist/legacy/hash.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-FQVT2KOP.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["hash"],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{},"bytes":876},"dist/packages/unique-identifier/dist/legacy/cuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-CEEZA37L.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-FQVT2KOP.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{},"bytes":936},"dist/packages/unique-identifier/dist/legacy/chunk-CEEZA37L.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-FQVT2KOP.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1170}},"bytes":2162},"dist/packages/unique-identifier/dist/legacy/chunk-WUJFEWGT.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":369}},"bytes":1288},"dist/packages/unique-identifier/dist/legacy/chunk-FQVT2KOP.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"},{"path":"@storm-stack/utilities","kind":"import-statement","external":true}],"exports":["hash"],"inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1681},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6023},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1792}},"bytes":12775},"dist/packages/unique-identifier/dist/legacy/crypto.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["Crypto"],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{},"bytes":880},"dist/packages/unique-identifier/dist/legacy/chunk-F4SA26RI.js":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true}],"exports":["Crypto"],"inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":199}},"bytes":1047},"dist/packages/unique-identifier/dist/legacy/chunk-HSNPINUR.js":{"imports":[],"exports":["__name"],"inputs":{},"bytes":932}}}

@@ -1,1 +0,1 @@

{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytes":1262,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-null.ts":{"bytes":1078,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-undefined.ts":{"bytes":1134,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty.ts":{"bytes":1504,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-number.ts":{"bytes":3011,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytes":4464,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-object.ts":{"bytes":1492,"imports":[{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-array-like.ts":{"bytes":2138,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-async-iterable.ts":{"bytes":1482,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-bigint.ts":{"bytes":1447,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-boolean.ts":{"bytes":1375,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-buffer.ts":{"bytes":1624,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/type-detect.ts":{"bytes":17151,"imports":[{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-collection.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-date.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-object.ts":{"bytes":2543,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/types.ts":{"bytes":12551,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-string.ts":{"bytes":1089,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-string.ts":{"bytes":1503,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-error.ts":{"bytes":2672,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-function.ts":{"bytes":1725,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set.ts":{"bytes":1284,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytes":1448,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-react-element.ts":{"bytes":1978,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytes":1779,"imports":[{"path":"packages/utilities/src/type-checks/is-non-null-object.ts","kind":"import-statement","original":"./is-non-null-object"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-not-empty.ts":{"bytes":1871,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-primitive.ts":{"bytes":1853,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-promise.ts":{"bytes":1372,"imports":[{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-ref.ts":{"bytes":1272,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-select-option.ts":{"bytes":1552,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-object.ts":{"bytes":1487,"imports":[{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-string.ts":{"bytes":1692,"imports":[{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-symbol.ts":{"bytes":1445,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-typed.ts":{"bytes":1600,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/property-exists.ts":{"bytes":3576,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/index.ts":{"bytes":3462,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-array-like.ts","kind":"import-statement","original":"./is-array-like"},{"path":"packages/utilities/src/type-checks/is-async-iterable.ts","kind":"import-statement","original":"./is-async-iterable"},{"path":"packages/utilities/src/type-checks/is-bigint.ts","kind":"import-statement","original":"./is-bigint"},{"path":"packages/utilities/src/type-checks/is-boolean.ts","kind":"import-statement","original":"./is-boolean"},{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"packages/utilities/src/type-checks/is-collection.ts","kind":"import-statement","original":"./is-collection"},{"path":"packages/utilities/src/type-checks/is-date.ts","kind":"import-statement","original":"./is-date"},{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"packages/utilities/src/type-checks/is-error.ts","kind":"import-statement","original":"./is-error"},{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-mergeable-object.ts","kind":"import-statement","original":"./is-mergeable-object"},{"path":"packages/utilities/src/type-checks/is-not-empty.ts","kind":"import-statement","original":"./is-not-empty"},{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"packages/utilities/src/type-checks/is-primitive.ts","kind":"import-statement","original":"./is-primitive"},{"path":"packages/utilities/src/type-checks/is-promise.ts","kind":"import-statement","original":"./is-promise"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"packages/utilities/src/type-checks/is-ref.ts","kind":"import-statement","original":"./is-ref"},{"path":"packages/utilities/src/type-checks/is-select-option.ts","kind":"import-statement","original":"./is-select-option"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-set-object.ts","kind":"import-statement","original":"./is-set-object"},{"path":"packages/utilities/src/type-checks/is-set-string.ts","kind":"import-statement","original":"./is-set-string"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"packages/utilities/src/type-checks/is-symbol.ts","kind":"import-statement","original":"./is-symbol"},{"path":"packages/utilities/src/type-checks/is-typed.ts","kind":"import-statement","original":"./is-typed"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"packages/utilities/src/type-checks/property-exists.ts","kind":"import-statement","original":"./property-exists"},{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9951,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"@storm-stack/utilities/type-checks"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"@storm-stack/utilities/type-checks/is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/legacy/index.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1779},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6401},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":379},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226},"packages/unique-identifier/src/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1901},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":20789},"dist/packages/unique-identifier/dist/legacy/uuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":2495},"dist/packages/unique-identifier/dist/legacy/snowflake.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1896}},"bytes":2889},"dist/packages/unique-identifier/dist/legacy/random.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":379}},"bytes":1369},"dist/packages/unique-identifier/dist/legacy/hash.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1779},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6401},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":367},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846}},"bytes":15587},"dist/packages/unique-identifier/dist/legacy/cuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1779},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6401},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":227},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226}},"bytes":17134},"dist/packages/unique-identifier/dist/legacy/crypto.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130}},"bytes":2278}}}
{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytes":1262,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytes":4464,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-object.ts":{"bytes":1492,"imports":[{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/crypto/web-crypto.ts":{"bytes":1935,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"../type-checks/is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/crypto/sha-256.ts":{"bytes":1842,"imports":[{"path":"packages/utilities/src/crypto/web-crypto.ts","kind":"import-statement","original":"./web-crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/crypto/index.ts":{"bytes":343,"imports":[{"path":"packages/utilities/src/crypto/sha-256.ts","kind":"import-statement","original":"./sha-256"},{"path":"packages/utilities/src/crypto/web-crypto.ts","kind":"import-statement","original":"./web-crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-null.ts":{"bytes":1078,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-undefined.ts":{"bytes":1134,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty.ts":{"bytes":1504,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-number.ts":{"bytes":3011,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-array-like.ts":{"bytes":2138,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-async-iterable.ts":{"bytes":1482,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-bigint.ts":{"bytes":1447,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-boolean.ts":{"bytes":1375,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-buffer.ts":{"bytes":1624,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/type-detect.ts":{"bytes":17151,"imports":[{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-collection.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-date.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-object.ts":{"bytes":2543,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/types.ts":{"bytes":12551,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-string.ts":{"bytes":1089,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-string.ts":{"bytes":1503,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-error.ts":{"bytes":2672,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-function.ts":{"bytes":1725,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set.ts":{"bytes":1284,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytes":1448,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-react-element.ts":{"bytes":1978,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytes":1779,"imports":[{"path":"packages/utilities/src/type-checks/is-non-null-object.ts","kind":"import-statement","original":"./is-non-null-object"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-not-empty.ts":{"bytes":1871,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-primitive.ts":{"bytes":1853,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-promise.ts":{"bytes":1372,"imports":[{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-ref.ts":{"bytes":1272,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-select-option.ts":{"bytes":1552,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-object.ts":{"bytes":1487,"imports":[{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-string.ts":{"bytes":1692,"imports":[{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-symbol.ts":{"bytes":1445,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-typed.ts":{"bytes":1600,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/property-exists.ts":{"bytes":3576,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/index.ts":{"bytes":3462,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-array-like.ts","kind":"import-statement","original":"./is-array-like"},{"path":"packages/utilities/src/type-checks/is-async-iterable.ts","kind":"import-statement","original":"./is-async-iterable"},{"path":"packages/utilities/src/type-checks/is-bigint.ts","kind":"import-statement","original":"./is-bigint"},{"path":"packages/utilities/src/type-checks/is-boolean.ts","kind":"import-statement","original":"./is-boolean"},{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"packages/utilities/src/type-checks/is-collection.ts","kind":"import-statement","original":"./is-collection"},{"path":"packages/utilities/src/type-checks/is-date.ts","kind":"import-statement","original":"./is-date"},{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"packages/utilities/src/type-checks/is-error.ts","kind":"import-statement","original":"./is-error"},{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-mergeable-object.ts","kind":"import-statement","original":"./is-mergeable-object"},{"path":"packages/utilities/src/type-checks/is-not-empty.ts","kind":"import-statement","original":"./is-not-empty"},{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"packages/utilities/src/type-checks/is-primitive.ts","kind":"import-statement","original":"./is-primitive"},{"path":"packages/utilities/src/type-checks/is-promise.ts","kind":"import-statement","original":"./is-promise"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"packages/utilities/src/type-checks/is-ref.ts","kind":"import-statement","original":"./is-ref"},{"path":"packages/utilities/src/type-checks/is-select-option.ts","kind":"import-statement","original":"./is-select-option"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-set-object.ts","kind":"import-statement","original":"./is-set-object"},{"path":"packages/utilities/src/type-checks/is-set-string.ts","kind":"import-statement","original":"./is-set-string"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"packages/utilities/src/type-checks/is-symbol.ts","kind":"import-statement","original":"./is-symbol"},{"path":"packages/utilities/src/type-checks/is-typed.ts","kind":"import-statement","original":"./is-typed"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"packages/utilities/src/type-checks/property-exists.ts","kind":"import-statement","original":"./property-exists"},{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytes":24988,"imports":[{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"../type-checks"},{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytes":11548,"imports":[{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"../type-checks"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/upper-case-first.ts":{"bytes":1179,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/period-split.ts":{"bytes":2692,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/flatten-object.ts":{"bytes":2909,"imports":[{"path":"packages/utilities/src/string-fns/period-split.ts","kind":"import-statement","original":"../string-fns/period-split"},{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"../type-checks"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/is-runtime-server.ts":{"bytes":1233,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/noop.ts":{"bytes":1050,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/index.ts":{"bytes":652,"imports":[{"path":"packages/utilities/src/helper-fns/deep-copy.ts","kind":"import-statement","original":"./deep-copy"},{"path":"packages/utilities/src/helper-fns/deep-merge.ts","kind":"import-statement","original":"./deep-merge"},{"path":"packages/utilities/src/helper-fns/flatten-object.ts","kind":"import-statement","original":"./flatten-object"},{"path":"packages/utilities/src/helper-fns/is-runtime-server.ts","kind":"import-statement","original":"./is-runtime-server"},{"path":"packages/utilities/src/helper-fns/noop.ts","kind":"import-statement","original":"./noop"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/lower-case-first.ts":{"bytes":1174,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/pascal-case.ts":{"bytes":1588,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/camel-case.ts":{"bytes":1338,"imports":[{"path":"packages/utilities/src/string-fns/lower-case-first.ts","kind":"import-statement","original":"./lower-case-first"},{"path":"packages/utilities/src/string-fns/pascal-case.ts","kind":"import-statement","original":"./pascal-case"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/snake-case.ts":{"bytes":3620,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/constant-case.ts":{"bytes":1137,"imports":[{"path":"packages/utilities/src/string-fns/snake-case.ts","kind":"import-statement","original":"./snake-case"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/kebab-case.ts":{"bytes":2613,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/title-case.ts":{"bytes":1802,"imports":[{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/index.ts":{"bytes":1074,"imports":[{"path":"packages/utilities/src/string-fns/camel-case.ts","kind":"import-statement","original":"./camel-case"},{"path":"packages/utilities/src/string-fns/constant-case.ts","kind":"import-statement","original":"./constant-case"},{"path":"packages/utilities/src/string-fns/kebab-case.ts","kind":"import-statement","original":"./kebab-case"},{"path":"packages/utilities/src/string-fns/lower-case-first.ts","kind":"import-statement","original":"./lower-case-first"},{"path":"packages/utilities/src/string-fns/pascal-case.ts","kind":"import-statement","original":"./pascal-case"},{"path":"packages/utilities/src/string-fns/period-split.ts","kind":"import-statement","original":"./period-split"},{"path":"packages/utilities/src/string-fns/snake-case.ts","kind":"import-statement","original":"./snake-case"},{"path":"packages/utilities/src/string-fns/title-case.ts","kind":"import-statement","original":"./title-case"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/index.ts":{"bytes":1783,"imports":[{"path":"packages/utilities/src/crypto/index.ts","kind":"import-statement","original":"./crypto"},{"path":"packages/utilities/src/helper-fns/index.ts","kind":"import-statement","original":"./helper-fns"},{"path":"packages/utilities/src/string-fns/index.ts","kind":"import-statement","original":"./string-fns"},{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"./type-checks"},{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"./types"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9923,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"packages/utilities/src/index.ts","kind":"import-statement","original":"@storm-stack/utilities"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"@storm-stack/utilities/type-checks/is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/legacy/index.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1779},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6401},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/crypto/web-crypto.ts":{"bytesInOutput":104},"packages/utilities/src/crypto/index.ts":{"bytesInOutput":0},"packages/utilities/src/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-function.ts":{"bytesInOutput":265},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytesInOutput":129},"packages/utilities/src/type-checks/is-react-element.ts":{"bytesInOutput":197},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytesInOutput":399},"packages/utilities/src/type-checks/property-exists.ts":{"bytesInOutput":590},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytesInOutput":362},"packages/utilities/src/helper-fns/index.ts":{"bytesInOutput":0},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytesInOutput":3008},"packages/utilities/src/string-fns/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":379},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226},"packages/unique-identifier/src/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1901},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":132},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":26306},"dist/packages/unique-identifier/dist/legacy/uuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":2495},"dist/packages/unique-identifier/dist/legacy/snowflake.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1896}},"bytes":2889},"dist/packages/unique-identifier/dist/legacy/random.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":379}},"bytes":1369},"dist/packages/unique-identifier/dist/legacy/hash.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1779},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6401},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/crypto/web-crypto.ts":{"bytesInOutput":104},"packages/utilities/src/crypto/index.ts":{"bytesInOutput":0},"packages/utilities/src/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":367},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-function.ts":{"bytesInOutput":265},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytesInOutput":129},"packages/utilities/src/type-checks/is-react-element.ts":{"bytesInOutput":197},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytesInOutput":399},"packages/utilities/src/type-checks/property-exists.ts":{"bytesInOutput":590},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytesInOutput":362},"packages/utilities/src/helper-fns/index.ts":{"bytesInOutput":0},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytesInOutput":3008},"packages/utilities/src/string-fns/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846}},"bytes":22260},"dist/packages/unique-identifier/dist/legacy/cuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1779},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6401},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/crypto/web-crypto.ts":{"bytesInOutput":104},"packages/utilities/src/crypto/index.ts":{"bytesInOutput":0},"packages/utilities/src/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-function.ts":{"bytesInOutput":265},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytesInOutput":129},"packages/utilities/src/type-checks/is-react-element.ts":{"bytesInOutput":197},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytesInOutput":399},"packages/utilities/src/type-checks/property-exists.ts":{"bytesInOutput":590},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytesInOutput":362},"packages/utilities/src/helper-fns/index.ts":{"bytesInOutput":0},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytesInOutput":3008},"packages/utilities/src/string-fns/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":227},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226}},"bytes":23807},"dist/packages/unique-identifier/dist/legacy/crypto.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130}},"bytes":2278}}}

@@ -335,2 +335,40 @@

// packages/utilities/src/type-checks/get-object-tag.ts
var getObjectTag = /* @__PURE__ */ __name((value) => {
if (value == null) {
return value === void 0 ? "[object Undefined]" : "[object Null]";
}
return Object.prototype.toString.call(value);
}, "getObjectTag");
// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/crypto/web-crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
// packages/utilities/src/type-checks/is-null.ts

@@ -405,2 +443,11 @@ var isNull = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-function.ts
var isFunction = /* @__PURE__ */ __name((value) => {
try {
return value instanceof Function || typeof value === "function" || !!(value && value.constructor && value?.call && value?.apply);
} catch (e) {
return false;
}
}, "isFunction");
// packages/utilities/src/type-checks/is-set.ts

@@ -415,2 +462,120 @@ var isSet = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-non-null-object.ts
var isNonNullObject = /* @__PURE__ */ __name((value) => {
return isSet(value) && isObject(value);
}, "isNonNullObject");
// packages/utilities/src/type-checks/is-react-element.ts
var isReactElement = /* @__PURE__ */ __name((value) => {
return value.$$typeof === (typeof Symbol === "function" && Symbol.for ? Symbol.for("react.element") : 60103);
}, "isReactElement");
// packages/utilities/src/type-checks/is-mergeable-object.ts
var isSpecialType = /* @__PURE__ */ __name((value) => {
const stringValue = Object.prototype.toString.call(value);
return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);
}, "isSpecialType");
var isMergeableObject = /* @__PURE__ */ __name((value) => {
return isNonNullObject(value) && !isSpecialType(value);
}, "isMergeableObject");
// packages/utilities/src/type-checks/property-exists.ts
var propertyExists = /* @__PURE__ */ __name((object, propertyKey) => {
try {
return isObject(object) && propertyKey in object;
} catch (_) {
return false;
}
}, "propertyExists");
var propertyUnsafe = /* @__PURE__ */ __name((object, propertyKey) => {
return propertyExists(object, propertyKey) && // Properties are safe to merge if they don't exist in the target yet,
!(Object.hasOwnProperty.call(object, propertyKey) && // unsafe if they exist up the prototype chain,
Object.propertyIsEnumerable.call(object, propertyKey));
}, "propertyUnsafe");
// packages/utilities/src/helper-fns/deep-copy.ts
var cloneBuffer = isBufferExists ? Buffer.from.bind(Buffer) : (
/**
* Clone the buffer instance.
*
* @param value
* @returns argument used if Buffer unsupported
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
/* @__PURE__ */ __name(function cloneBuffer2(value) {
return value;
}, "cloneBuffer")
);
// packages/utilities/src/helper-fns/deep-merge.ts
var emptyTarget = /* @__PURE__ */ __name((val) => {
return Array.isArray(val) ? [] : {};
}, "emptyTarget");
var cloneUnlessOtherwiseSpecified = /* @__PURE__ */ __name((value, options) => {
return options.clone !== false && options.isMergeableObject(value) ? deepMerge(emptyTarget(value), value, options) : value;
}, "cloneUnlessOtherwiseSpecified");
var defaultArrayMerge = /* @__PURE__ */ __name((target, source, options) => {
return target.concat(source).map((element) => {
return cloneUnlessOtherwiseSpecified(element, options);
});
}, "defaultArrayMerge");
var getMergeFunction = /* @__PURE__ */ __name((key, options) => {
if (!options.customMerge) {
return deepMerge;
}
const customMerge = options.customMerge(key);
return isFunction(customMerge) ? customMerge : deepMerge;
}, "getMergeFunction");
var getKeys = /* @__PURE__ */ __name((target) => {
return Object.keys(target).concat(Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(target).filter((symbol) => {
return Object.propertyIsEnumerable.call(target, symbol);
}) : []);
}, "getKeys");
var mergeObject = /* @__PURE__ */ __name((target, source, options) => {
const destination = {};
if (options.isMergeableObject(target)) {
getKeys(target).forEach((key) => {
destination[key] = cloneUnlessOtherwiseSpecified(target[key], options);
});
}
getKeys(source).forEach((key) => {
if (propertyExists(target, key)) {
return;
}
if (propertyUnsafe(target, key) && options.isMergeableObject(source[key])) {
destination[key] = getMergeFunction(key, options)(target[key], source[key], options);
} else {
destination[key] = cloneUnlessOtherwiseSpecified(source[key], options);
}
});
return destination;
}, "mergeObject");
var deepMerge = /* @__PURE__ */ __name((target, source, options = {}) => {
if (!target || !source) {
return target ? target : source;
}
options = options || {};
options.arrayMerge = options.arrayMerge || defaultArrayMerge;
options.isMergeableObject = options.isMergeableObject || isMergeableObject;
options.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;
const sourceIsArray = Array.isArray(source);
const targetIsArray = Array.isArray(target);
const sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
if (!sourceAndTargetTypesMatch) {
return cloneUnlessOtherwiseSpecified(source, options);
} else if (sourceIsArray) {
return options.arrayMerge(target, source, options);
} else {
return mergeObject(target, source, options);
}
}, "deepMerge");
deepMerge.all = /* @__PURE__ */ __name(function deepMergeAll(array, options) {
if (!Array.isArray(array)) {
throw new Error("first argument should be an array");
}
return array.reduce((prev, next) => {
return deepMerge(prev, next, options);
}, {});
}, "deepMergeAll");
// packages/unique-identifier/src/hash.ts

@@ -417,0 +582,0 @@ var DEFAULT_RADIX = 36;

@@ -27,5 +27,5 @@

cuid
} from "./chunk-AZCBRFP3.js";
} from "./chunk-SOBIWSX3.js";
import "./chunk-WUJFEWGT.js";
import "./chunk-LFIOIIOY.js";
import "./chunk-BLF6PSXI.js";
import "./chunk-HSNPINUR.js";

@@ -32,0 +32,0 @@ export {

@@ -335,2 +335,40 @@

// packages/utilities/src/type-checks/get-object-tag.ts
var getObjectTag = /* @__PURE__ */ __name((value) => {
if (value == null) {
return value === void 0 ? "[object Undefined]" : "[object Null]";
}
return Object.prototype.toString.call(value);
}, "getObjectTag");
// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/crypto/web-crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
// packages/utilities/src/type-checks/is-null.ts

@@ -405,2 +443,11 @@ var isNull = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-function.ts
var isFunction = /* @__PURE__ */ __name((value) => {
try {
return value instanceof Function || typeof value === "function" || !!(value && value.constructor && value?.call && value?.apply);
} catch (e) {
return false;
}
}, "isFunction");
// packages/utilities/src/type-checks/is-set.ts

@@ -415,2 +462,120 @@ var isSet = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-non-null-object.ts
var isNonNullObject = /* @__PURE__ */ __name((value) => {
return isSet(value) && isObject(value);
}, "isNonNullObject");
// packages/utilities/src/type-checks/is-react-element.ts
var isReactElement = /* @__PURE__ */ __name((value) => {
return value.$$typeof === (typeof Symbol === "function" && Symbol.for ? Symbol.for("react.element") : 60103);
}, "isReactElement");
// packages/utilities/src/type-checks/is-mergeable-object.ts
var isSpecialType = /* @__PURE__ */ __name((value) => {
const stringValue = Object.prototype.toString.call(value);
return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);
}, "isSpecialType");
var isMergeableObject = /* @__PURE__ */ __name((value) => {
return isNonNullObject(value) && !isSpecialType(value);
}, "isMergeableObject");
// packages/utilities/src/type-checks/property-exists.ts
var propertyExists = /* @__PURE__ */ __name((object, propertyKey) => {
try {
return isObject(object) && propertyKey in object;
} catch (_) {
return false;
}
}, "propertyExists");
var propertyUnsafe = /* @__PURE__ */ __name((object, propertyKey) => {
return propertyExists(object, propertyKey) && // Properties are safe to merge if they don't exist in the target yet,
!(Object.hasOwnProperty.call(object, propertyKey) && // unsafe if they exist up the prototype chain,
Object.propertyIsEnumerable.call(object, propertyKey));
}, "propertyUnsafe");
// packages/utilities/src/helper-fns/deep-copy.ts
var cloneBuffer = isBufferExists ? Buffer.from.bind(Buffer) : (
/**
* Clone the buffer instance.
*
* @param value
* @returns argument used if Buffer unsupported
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
/* @__PURE__ */ __name(function cloneBuffer2(value) {
return value;
}, "cloneBuffer")
);
// packages/utilities/src/helper-fns/deep-merge.ts
var emptyTarget = /* @__PURE__ */ __name((val) => {
return Array.isArray(val) ? [] : {};
}, "emptyTarget");
var cloneUnlessOtherwiseSpecified = /* @__PURE__ */ __name((value, options) => {
return options.clone !== false && options.isMergeableObject(value) ? deepMerge(emptyTarget(value), value, options) : value;
}, "cloneUnlessOtherwiseSpecified");
var defaultArrayMerge = /* @__PURE__ */ __name((target, source, options) => {
return target.concat(source).map((element) => {
return cloneUnlessOtherwiseSpecified(element, options);
});
}, "defaultArrayMerge");
var getMergeFunction = /* @__PURE__ */ __name((key, options) => {
if (!options.customMerge) {
return deepMerge;
}
const customMerge = options.customMerge(key);
return isFunction(customMerge) ? customMerge : deepMerge;
}, "getMergeFunction");
var getKeys = /* @__PURE__ */ __name((target) => {
return Object.keys(target).concat(Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(target).filter((symbol) => {
return Object.propertyIsEnumerable.call(target, symbol);
}) : []);
}, "getKeys");
var mergeObject = /* @__PURE__ */ __name((target, source, options) => {
const destination = {};
if (options.isMergeableObject(target)) {
getKeys(target).forEach((key) => {
destination[key] = cloneUnlessOtherwiseSpecified(target[key], options);
});
}
getKeys(source).forEach((key) => {
if (propertyExists(target, key)) {
return;
}
if (propertyUnsafe(target, key) && options.isMergeableObject(source[key])) {
destination[key] = getMergeFunction(key, options)(target[key], source[key], options);
} else {
destination[key] = cloneUnlessOtherwiseSpecified(source[key], options);
}
});
return destination;
}, "mergeObject");
var deepMerge = /* @__PURE__ */ __name((target, source, options = {}) => {
if (!target || !source) {
return target ? target : source;
}
options = options || {};
options.arrayMerge = options.arrayMerge || defaultArrayMerge;
options.isMergeableObject = options.isMergeableObject || isMergeableObject;
options.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;
const sourceIsArray = Array.isArray(source);
const targetIsArray = Array.isArray(target);
const sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
if (!sourceAndTargetTypesMatch) {
return cloneUnlessOtherwiseSpecified(source, options);
} else if (sourceIsArray) {
return options.arrayMerge(target, source, options);
} else {
return mergeObject(target, source, options);
}
}, "deepMerge");
deepMerge.all = /* @__PURE__ */ __name(function deepMergeAll(array, options) {
if (!Array.isArray(array)) {
throw new Error("first argument should be an array");
}
return array.reduce((prev, next) => {
return deepMerge(prev, next, options);
}, {});
}, "deepMergeAll");
// packages/unique-identifier/src/hash.ts

@@ -417,0 +582,0 @@ var DEFAULT_RADIX = 36;

@@ -27,3 +27,3 @@

hash
} from "./chunk-LFIOIIOY.js";
} from "./chunk-BLF6PSXI.js";
import "./chunk-HSNPINUR.js";

@@ -30,0 +30,0 @@ export {

@@ -343,2 +343,32 @@

// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/crypto/web-crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
// packages/utilities/src/type-checks/is-null.ts

@@ -371,29 +401,2 @@ var isNull = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-plain-object.ts
var isObjectLike = /* @__PURE__ */ __name((obj) => {
return typeof obj === "object" && obj !== null;
}, "isObjectLike");
var isPlainObject = /* @__PURE__ */ __name((obj) => {
if (!isObjectLike(obj) || getObjectTag(obj) != "[object Object]") {
return false;
}
if (Object.getPrototypeOf(obj) === null) {
return true;
}
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto);
}
return Object.getPrototypeOf(obj) === proto;
}, "isPlainObject");
// packages/utilities/src/type-checks/is-object.ts
var isObject = /* @__PURE__ */ __name((value) => {
try {
return !!value && value.constructor === Object || isPlainObject(value);
} catch (e) {
return false;
}
}, "isObject");
// packages/utilities/src/type-checks/is-buffer.ts

@@ -441,2 +444,11 @@ var isBufferExists = typeof Buffer !== "undefined";

// packages/utilities/src/type-checks/is-function.ts
var isFunction = /* @__PURE__ */ __name((value) => {
try {
return value instanceof Function || typeof value === "function" || !!(value && value.constructor && value?.call && value?.apply);
} catch (e) {
return false;
}
}, "isFunction");
// packages/utilities/src/type-checks/is-set.ts

@@ -451,2 +463,120 @@ var isSet = /* @__PURE__ */ __name((value) => {

// packages/utilities/src/type-checks/is-non-null-object.ts
var isNonNullObject = /* @__PURE__ */ __name((value) => {
return isSet(value) && isObject(value);
}, "isNonNullObject");
// packages/utilities/src/type-checks/is-react-element.ts
var isReactElement = /* @__PURE__ */ __name((value) => {
return value.$$typeof === (typeof Symbol === "function" && Symbol.for ? Symbol.for("react.element") : 60103);
}, "isReactElement");
// packages/utilities/src/type-checks/is-mergeable-object.ts
var isSpecialType = /* @__PURE__ */ __name((value) => {
const stringValue = Object.prototype.toString.call(value);
return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);
}, "isSpecialType");
var isMergeableObject = /* @__PURE__ */ __name((value) => {
return isNonNullObject(value) && !isSpecialType(value);
}, "isMergeableObject");
// packages/utilities/src/type-checks/property-exists.ts
var propertyExists = /* @__PURE__ */ __name((object, propertyKey) => {
try {
return isObject(object) && propertyKey in object;
} catch (_) {
return false;
}
}, "propertyExists");
var propertyUnsafe = /* @__PURE__ */ __name((object, propertyKey) => {
return propertyExists(object, propertyKey) && // Properties are safe to merge if they don't exist in the target yet,
!(Object.hasOwnProperty.call(object, propertyKey) && // unsafe if they exist up the prototype chain,
Object.propertyIsEnumerable.call(object, propertyKey));
}, "propertyUnsafe");
// packages/utilities/src/helper-fns/deep-copy.ts
var cloneBuffer = isBufferExists ? Buffer.from.bind(Buffer) : (
/**
* Clone the buffer instance.
*
* @param value
* @returns argument used if Buffer unsupported
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
/* @__PURE__ */ __name(function cloneBuffer2(value) {
return value;
}, "cloneBuffer")
);
// packages/utilities/src/helper-fns/deep-merge.ts
var emptyTarget = /* @__PURE__ */ __name((val) => {
return Array.isArray(val) ? [] : {};
}, "emptyTarget");
var cloneUnlessOtherwiseSpecified = /* @__PURE__ */ __name((value, options) => {
return options.clone !== false && options.isMergeableObject(value) ? deepMerge(emptyTarget(value), value, options) : value;
}, "cloneUnlessOtherwiseSpecified");
var defaultArrayMerge = /* @__PURE__ */ __name((target, source, options) => {
return target.concat(source).map((element) => {
return cloneUnlessOtherwiseSpecified(element, options);
});
}, "defaultArrayMerge");
var getMergeFunction = /* @__PURE__ */ __name((key, options) => {
if (!options.customMerge) {
return deepMerge;
}
const customMerge = options.customMerge(key);
return isFunction(customMerge) ? customMerge : deepMerge;
}, "getMergeFunction");
var getKeys = /* @__PURE__ */ __name((target) => {
return Object.keys(target).concat(Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(target).filter((symbol) => {
return Object.propertyIsEnumerable.call(target, symbol);
}) : []);
}, "getKeys");
var mergeObject = /* @__PURE__ */ __name((target, source, options) => {
const destination = {};
if (options.isMergeableObject(target)) {
getKeys(target).forEach((key) => {
destination[key] = cloneUnlessOtherwiseSpecified(target[key], options);
});
}
getKeys(source).forEach((key) => {
if (propertyExists(target, key)) {
return;
}
if (propertyUnsafe(target, key) && options.isMergeableObject(source[key])) {
destination[key] = getMergeFunction(key, options)(target[key], source[key], options);
} else {
destination[key] = cloneUnlessOtherwiseSpecified(source[key], options);
}
});
return destination;
}, "mergeObject");
var deepMerge = /* @__PURE__ */ __name((target, source, options = {}) => {
if (!target || !source) {
return target ? target : source;
}
options = options || {};
options.arrayMerge = options.arrayMerge || defaultArrayMerge;
options.isMergeableObject = options.isMergeableObject || isMergeableObject;
options.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;
const sourceIsArray = Array.isArray(source);
const targetIsArray = Array.isArray(target);
const sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
if (!sourceAndTargetTypesMatch) {
return cloneUnlessOtherwiseSpecified(source, options);
} else if (sourceIsArray) {
return options.arrayMerge(target, source, options);
} else {
return mergeObject(target, source, options);
}
}, "deepMerge");
deepMerge.all = /* @__PURE__ */ __name(function deepMergeAll(array, options) {
if (!Array.isArray(array)) {
throw new Error("first argument should be an array");
}
return array.reduce((prev, next) => {
return deepMerge(prev, next, options);
}, {});
}, "deepMergeAll");
// packages/unique-identifier/src/hash.ts

@@ -601,4 +731,4 @@ var DEFAULT_RADIX = 36;

// packages/unique-identifier/src/crypto.ts
var WebCrypto = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
var Crypto = WebCrypto;
var WebCrypto2 = globalThis.crypto && isObject(typeof globalThis.crypto) ? globalThis.crypto : void 0;
var Crypto = WebCrypto2;

@@ -605,0 +735,0 @@ // packages/unique-identifier/src/uuid.ts

@@ -35,3 +35,3 @@

cuid
} from "./chunk-AZCBRFP3.js";
} from "./chunk-SOBIWSX3.js";
import {

@@ -43,3 +43,3 @@ randomInteger,

hash
} from "./chunk-LFIOIIOY.js";
} from "./chunk-BLF6PSXI.js";
import "./chunk-F4SA26RI.js";

@@ -46,0 +46,0 @@ import "./chunk-HSNPINUR.js";

@@ -1,1 +0,1 @@

{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js":{"bytes":1816,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9951,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities/type-checks","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/modern/index.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks","kind":"require-call","external":true},{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":353},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1878},"packages/unique-identifier/src/random.ts":{"bytesInOutput":369},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1172},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1797},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":18041},"dist/packages/unique-identifier/dist/modern/uuid.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":274},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228}},"bytes":2303},"dist/packages/unique-identifier/dist/modern/snowflake.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":2029}},"bytes":3747},"dist/packages/unique-identifier/dist/modern/random.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":545}},"bytes":2260},"dist/packages/unique-identifier/dist/modern/hash.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1994},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030}},"bytes":13855},"dist/packages/unique-identifier/dist/modern/cuid.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1288},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1878},"packages/unique-identifier/src/random.ts":{"bytesInOutput":219}},"bytes":15334},"dist/packages/unique-identifier/dist/modern/crypto.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":354}},"bytes":1979}}}
{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js":{"bytes":1816,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9923,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"/home/runner/work/storm-stack/storm-stack/node_modules/.pnpm/@storm-software+workspace-tools@1.30.14_@swc-node+register@1.6.8_@swc+core@1.3.100_@types+nod_6yvsr74i3uzjl3ucqmkfe7gx5i/node_modules/@storm-software/workspace-tools/assets/cjs_shims.js","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/modern/index.cjs":{"imports":[{"path":"@storm-stack/utilities","kind":"require-call","external":true},{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":353},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1858},"packages/unique-identifier/src/random.ts":{"bytesInOutput":369},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1172},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1797},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":18021},"dist/packages/unique-identifier/dist/modern/uuid.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":274},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":228}},"bytes":2303},"dist/packages/unique-identifier/dist/modern/snowflake.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":2029}},"bytes":3747},"dist/packages/unique-identifier/dist/modern/random.cjs":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":545}},"bytes":2260},"dist/packages/unique-identifier/dist/modern/hash.cjs":{"imports":[{"path":"@storm-stack/utilities","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1974},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030}},"bytes":13835},"dist/packages/unique-identifier/dist/modern/cuid.cjs":{"imports":[{"path":"@storm-stack/utilities","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1288},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1858},"packages/unique-identifier/src/random.ts":{"bytesInOutput":219}},"bytes":15314},"dist/packages/unique-identifier/dist/modern/crypto.cjs":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":354}},"bytes":1979}}}

@@ -1,1 +0,1 @@

{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9951,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities/type-checks","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/modern/index.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-AZCBRFP3.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-LFIOIIOY.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid","deconstructSnowflake","hash","isValidSnowflake","randomInteger","randomLetter","snowflake","uuid"],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":0}},"bytes":1270},"dist/packages/unique-identifier/dist/modern/uuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{},"bytes":906},"dist/packages/unique-identifier/dist/modern/chunk-HPM7BBHV.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":1098},"dist/packages/unique-identifier/dist/modern/snowflake.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{},"bytes":974},"dist/packages/unique-identifier/dist/modern/chunk-M6TE3CEK.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1792}},"bytes":2738},"dist/packages/unique-identifier/dist/modern/random.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{},"bytes":926},"dist/packages/unique-identifier/dist/modern/hash.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-LFIOIIOY.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["hash"],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{},"bytes":876},"dist/packages/unique-identifier/dist/modern/cuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-AZCBRFP3.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-LFIOIIOY.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{},"bytes":936},"dist/packages/unique-identifier/dist/modern/chunk-AZCBRFP3.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-LFIOIIOY.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1170}},"bytes":2162},"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":369}},"bytes":1288},"dist/packages/unique-identifier/dist/modern/chunk-LFIOIIOY.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"},{"path":"@storm-stack/utilities/type-checks","kind":"import-statement","external":true}],"exports":["hash"],"inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1804}},"bytes":12801},"dist/packages/unique-identifier/dist/modern/crypto.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["Crypto"],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{},"bytes":880},"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true}],"exports":["Crypto"],"inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":199}},"bytes":1047},"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js":{"imports":[],"exports":["__name"],"inputs":{},"bytes":932}}}
{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9923,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"@storm-stack/utilities","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/modern/index.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-SOBIWSX3.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-BLF6PSXI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid","deconstructSnowflake","hash","isValidSnowflake","randomInteger","randomLetter","snowflake","uuid"],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"packages/unique-identifier/src/index.ts":{"bytesInOutput":0}},"bytes":1270},"dist/packages/unique-identifier/dist/modern/uuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HPM7BBHV.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{},"bytes":906},"dist/packages/unique-identifier/dist/modern/chunk-HPM7BBHV.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["uuid"],"inputs":{"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":158}},"bytes":1098},"dist/packages/unique-identifier/dist/modern/snowflake.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-M6TE3CEK.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{},"bytes":974},"dist/packages/unique-identifier/dist/modern/chunk-M6TE3CEK.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["deconstructSnowflake","isValidSnowflake","snowflake"],"inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1792}},"bytes":2738},"dist/packages/unique-identifier/dist/modern/random.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{},"bytes":926},"dist/packages/unique-identifier/dist/modern/hash.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-BLF6PSXI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["hash"],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{},"bytes":876},"dist/packages/unique-identifier/dist/modern/cuid.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-SOBIWSX3.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-BLF6PSXI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{},"bytes":936},"dist/packages/unique-identifier/dist/modern/chunk-SOBIWSX3.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-BLF6PSXI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["cuid"],"inputs":{"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1170}},"bytes":2162},"dist/packages/unique-identifier/dist/modern/chunk-WUJFEWGT.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["randomInteger","randomLetter"],"inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":369}},"bytes":1288},"dist/packages/unique-identifier/dist/modern/chunk-BLF6PSXI.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"},{"path":"@storm-stack/utilities","kind":"import-statement","external":true}],"exports":["hash"],"inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":917},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1000},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1688},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6030},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1792}},"bytes":12789},"dist/packages/unique-identifier/dist/modern/crypto.js":{"imports":[{"path":"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js","kind":"import-statement"},{"path":"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js","kind":"import-statement"}],"exports":["Crypto"],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{},"bytes":880},"dist/packages/unique-identifier/dist/modern/chunk-F4SA26RI.js":{"imports":[{"path":"@storm-stack/utilities/type-checks/is-object","kind":"import-statement","external":true}],"exports":["Crypto"],"inputs":{"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":199}},"bytes":1047},"dist/packages/unique-identifier/dist/modern/chunk-HSNPINUR.js":{"imports":[],"exports":["__name"],"inputs":{},"bytes":932}}}

@@ -1,1 +0,1 @@

{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytes":1262,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-null.ts":{"bytes":1078,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-undefined.ts":{"bytes":1134,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty.ts":{"bytes":1504,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-number.ts":{"bytes":3011,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytes":4464,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-object.ts":{"bytes":1492,"imports":[{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-array-like.ts":{"bytes":2138,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-async-iterable.ts":{"bytes":1482,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-bigint.ts":{"bytes":1447,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-boolean.ts":{"bytes":1375,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-buffer.ts":{"bytes":1624,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/type-detect.ts":{"bytes":17151,"imports":[{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-collection.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-date.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-object.ts":{"bytes":2543,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/types.ts":{"bytes":12551,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-string.ts":{"bytes":1089,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-string.ts":{"bytes":1503,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-error.ts":{"bytes":2672,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-function.ts":{"bytes":1725,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set.ts":{"bytes":1284,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytes":1448,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-react-element.ts":{"bytes":1978,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytes":1779,"imports":[{"path":"packages/utilities/src/type-checks/is-non-null-object.ts","kind":"import-statement","original":"./is-non-null-object"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-not-empty.ts":{"bytes":1871,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-primitive.ts":{"bytes":1853,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-promise.ts":{"bytes":1372,"imports":[{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-ref.ts":{"bytes":1272,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-select-option.ts":{"bytes":1552,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-object.ts":{"bytes":1487,"imports":[{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-string.ts":{"bytes":1692,"imports":[{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-symbol.ts":{"bytes":1445,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-typed.ts":{"bytes":1600,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/property-exists.ts":{"bytes":3576,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/index.ts":{"bytes":3462,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-array-like.ts","kind":"import-statement","original":"./is-array-like"},{"path":"packages/utilities/src/type-checks/is-async-iterable.ts","kind":"import-statement","original":"./is-async-iterable"},{"path":"packages/utilities/src/type-checks/is-bigint.ts","kind":"import-statement","original":"./is-bigint"},{"path":"packages/utilities/src/type-checks/is-boolean.ts","kind":"import-statement","original":"./is-boolean"},{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"packages/utilities/src/type-checks/is-collection.ts","kind":"import-statement","original":"./is-collection"},{"path":"packages/utilities/src/type-checks/is-date.ts","kind":"import-statement","original":"./is-date"},{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"packages/utilities/src/type-checks/is-error.ts","kind":"import-statement","original":"./is-error"},{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-mergeable-object.ts","kind":"import-statement","original":"./is-mergeable-object"},{"path":"packages/utilities/src/type-checks/is-not-empty.ts","kind":"import-statement","original":"./is-not-empty"},{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"packages/utilities/src/type-checks/is-primitive.ts","kind":"import-statement","original":"./is-primitive"},{"path":"packages/utilities/src/type-checks/is-promise.ts","kind":"import-statement","original":"./is-promise"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"packages/utilities/src/type-checks/is-ref.ts","kind":"import-statement","original":"./is-ref"},{"path":"packages/utilities/src/type-checks/is-select-option.ts","kind":"import-statement","original":"./is-select-option"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-set-object.ts","kind":"import-statement","original":"./is-set-object"},{"path":"packages/utilities/src/type-checks/is-set-string.ts","kind":"import-statement","original":"./is-set-string"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"packages/utilities/src/type-checks/is-symbol.ts","kind":"import-statement","original":"./is-symbol"},{"path":"packages/utilities/src/type-checks/is-typed.ts","kind":"import-statement","original":"./is-typed"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"packages/utilities/src/type-checks/property-exists.ts","kind":"import-statement","original":"./property-exists"},{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9951,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"@storm-stack/utilities/type-checks"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"@storm-stack/utilities/type-checks/is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/modern/index.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1784},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6406},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":379},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226},"packages/unique-identifier/src/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1901},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":20799},"dist/packages/unique-identifier/dist/modern/uuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":2495},"dist/packages/unique-identifier/dist/modern/snowflake.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1896}},"bytes":2889},"dist/packages/unique-identifier/dist/modern/random.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":379}},"bytes":1369},"dist/packages/unique-identifier/dist/modern/hash.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1784},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6406},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":367},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846}},"bytes":15597},"dist/packages/unique-identifier/dist/modern/cuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1784},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6406},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":227},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226}},"bytes":17144},"dist/packages/unique-identifier/dist/modern/crypto.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130}},"bytes":2278}}}
{"inputs":{"<define:__STORM_CONFIG>":{"bytes":0,"imports":[]},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytes":5142,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytes":11808,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js":{"bytes":661,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytes":20474,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/crypto.js","kind":"import-statement","original":"@noble/hashes/crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytes":28790,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js","kind":"import-statement","original":"./_assert.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js","kind":"import-statement","original":"./_u64.js"},{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js","kind":"import-statement","original":"./utils.js"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytes":1262,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytes":4464,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-object.ts":{"bytes":1492,"imports":[{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/crypto/web-crypto.ts":{"bytes":1935,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"../type-checks/is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/crypto/sha-256.ts":{"bytes":1842,"imports":[{"path":"packages/utilities/src/crypto/web-crypto.ts","kind":"import-statement","original":"./web-crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/crypto/index.ts":{"bytes":343,"imports":[{"path":"packages/utilities/src/crypto/sha-256.ts","kind":"import-statement","original":"./sha-256"},{"path":"packages/utilities/src/crypto/web-crypto.ts","kind":"import-statement","original":"./web-crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-null.ts":{"bytes":1078,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-undefined.ts":{"bytes":1134,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty.ts":{"bytes":1504,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-number.ts":{"bytes":3011,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-array-like.ts":{"bytes":2138,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-async-iterable.ts":{"bytes":1482,"imports":[{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-bigint.ts":{"bytes":1447,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-boolean.ts":{"bytes":1375,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-buffer.ts":{"bytes":1624,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/type-detect.ts":{"bytes":17151,"imports":[{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-collection.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-date.ts":{"bytes":1629,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-object.ts":{"bytes":2543,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/types.ts":{"bytes":12551,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-string.ts":{"bytes":1089,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-empty-string.ts":{"bytes":1503,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-error.ts":{"bytes":2672,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-function.ts":{"bytes":1725,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set.ts":{"bytes":1284,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytes":1448,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-react-element.ts":{"bytes":1978,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytes":1779,"imports":[{"path":"packages/utilities/src/type-checks/is-non-null-object.ts","kind":"import-statement","original":"./is-non-null-object"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-not-empty.ts":{"bytes":1871,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-primitive.ts":{"bytes":1853,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-promise.ts":{"bytes":1372,"imports":[{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-ref.ts":{"bytes":1272,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-select-option.ts":{"bytes":1552,"imports":[{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-object.ts":{"bytes":1487,"imports":[{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-set-string.ts":{"bytes":1692,"imports":[{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-symbol.ts":{"bytes":1445,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/is-typed.ts":{"bytes":1600,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/property-exists.ts":{"bytes":3576,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/type-checks/index.ts":{"bytes":3462,"imports":[{"path":"packages/utilities/src/type-checks/get-object-tag.ts","kind":"import-statement","original":"./get-object-tag"},{"path":"packages/utilities/src/type-checks/is-array-like.ts","kind":"import-statement","original":"./is-array-like"},{"path":"packages/utilities/src/type-checks/is-async-iterable.ts","kind":"import-statement","original":"./is-async-iterable"},{"path":"packages/utilities/src/type-checks/is-bigint.ts","kind":"import-statement","original":"./is-bigint"},{"path":"packages/utilities/src/type-checks/is-boolean.ts","kind":"import-statement","original":"./is-boolean"},{"path":"packages/utilities/src/type-checks/is-buffer.ts","kind":"import-statement","original":"./is-buffer"},{"path":"packages/utilities/src/type-checks/is-collection.ts","kind":"import-statement","original":"./is-collection"},{"path":"packages/utilities/src/type-checks/is-date.ts","kind":"import-statement","original":"./is-date"},{"path":"packages/utilities/src/type-checks/is-empty.ts","kind":"import-statement","original":"./is-empty"},{"path":"packages/utilities/src/type-checks/is-empty-object.ts","kind":"import-statement","original":"./is-empty-object"},{"path":"packages/utilities/src/type-checks/is-empty-string.ts","kind":"import-statement","original":"./is-empty-string"},{"path":"packages/utilities/src/type-checks/is-error.ts","kind":"import-statement","original":"./is-error"},{"path":"packages/utilities/src/type-checks/is-function.ts","kind":"import-statement","original":"./is-function"},{"path":"packages/utilities/src/type-checks/is-mergeable-object.ts","kind":"import-statement","original":"./is-mergeable-object"},{"path":"packages/utilities/src/type-checks/is-not-empty.ts","kind":"import-statement","original":"./is-not-empty"},{"path":"packages/utilities/src/type-checks/is-null.ts","kind":"import-statement","original":"./is-null"},{"path":"packages/utilities/src/type-checks/is-number.ts","kind":"import-statement","original":"./is-number"},{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"./is-object"},{"path":"packages/utilities/src/type-checks/is-plain-object.ts","kind":"import-statement","original":"./is-plain-object"},{"path":"packages/utilities/src/type-checks/is-primitive.ts","kind":"import-statement","original":"./is-primitive"},{"path":"packages/utilities/src/type-checks/is-promise.ts","kind":"import-statement","original":"./is-promise"},{"path":"packages/utilities/src/type-checks/is-react-element.ts","kind":"import-statement","original":"./is-react-element"},{"path":"packages/utilities/src/type-checks/is-ref.ts","kind":"import-statement","original":"./is-ref"},{"path":"packages/utilities/src/type-checks/is-select-option.ts","kind":"import-statement","original":"./is-select-option"},{"path":"packages/utilities/src/type-checks/is-set.ts","kind":"import-statement","original":"./is-set"},{"path":"packages/utilities/src/type-checks/is-set-object.ts","kind":"import-statement","original":"./is-set-object"},{"path":"packages/utilities/src/type-checks/is-set-string.ts","kind":"import-statement","original":"./is-set-string"},{"path":"packages/utilities/src/type-checks/is-string.ts","kind":"import-statement","original":"./is-string"},{"path":"packages/utilities/src/type-checks/is-symbol.ts","kind":"import-statement","original":"./is-symbol"},{"path":"packages/utilities/src/type-checks/is-typed.ts","kind":"import-statement","original":"./is-typed"},{"path":"packages/utilities/src/type-checks/is-undefined.ts","kind":"import-statement","original":"./is-undefined"},{"path":"packages/utilities/src/type-checks/property-exists.ts","kind":"import-statement","original":"./property-exists"},{"path":"packages/utilities/src/type-checks/type-detect.ts","kind":"import-statement","original":"./type-detect"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytes":24988,"imports":[{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"../type-checks"},{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytes":11548,"imports":[{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"../type-checks"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/upper-case-first.ts":{"bytes":1179,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/period-split.ts":{"bytes":2692,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/flatten-object.ts":{"bytes":2909,"imports":[{"path":"packages/utilities/src/string-fns/period-split.ts","kind":"import-statement","original":"../string-fns/period-split"},{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"../type-checks"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/is-runtime-server.ts":{"bytes":1233,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/noop.ts":{"bytes":1050,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/helper-fns/index.ts":{"bytes":652,"imports":[{"path":"packages/utilities/src/helper-fns/deep-copy.ts","kind":"import-statement","original":"./deep-copy"},{"path":"packages/utilities/src/helper-fns/deep-merge.ts","kind":"import-statement","original":"./deep-merge"},{"path":"packages/utilities/src/helper-fns/flatten-object.ts","kind":"import-statement","original":"./flatten-object"},{"path":"packages/utilities/src/helper-fns/is-runtime-server.ts","kind":"import-statement","original":"./is-runtime-server"},{"path":"packages/utilities/src/helper-fns/noop.ts","kind":"import-statement","original":"./noop"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/lower-case-first.ts":{"bytes":1174,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/pascal-case.ts":{"bytes":1588,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/camel-case.ts":{"bytes":1338,"imports":[{"path":"packages/utilities/src/string-fns/lower-case-first.ts","kind":"import-statement","original":"./lower-case-first"},{"path":"packages/utilities/src/string-fns/pascal-case.ts","kind":"import-statement","original":"./pascal-case"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/snake-case.ts":{"bytes":3620,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/constant-case.ts":{"bytes":1137,"imports":[{"path":"packages/utilities/src/string-fns/snake-case.ts","kind":"import-statement","original":"./snake-case"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/kebab-case.ts":{"bytes":2613,"imports":[{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"../types"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/title-case.ts":{"bytes":1802,"imports":[{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/string-fns/index.ts":{"bytes":1074,"imports":[{"path":"packages/utilities/src/string-fns/camel-case.ts","kind":"import-statement","original":"./camel-case"},{"path":"packages/utilities/src/string-fns/constant-case.ts","kind":"import-statement","original":"./constant-case"},{"path":"packages/utilities/src/string-fns/kebab-case.ts","kind":"import-statement","original":"./kebab-case"},{"path":"packages/utilities/src/string-fns/lower-case-first.ts","kind":"import-statement","original":"./lower-case-first"},{"path":"packages/utilities/src/string-fns/pascal-case.ts","kind":"import-statement","original":"./pascal-case"},{"path":"packages/utilities/src/string-fns/period-split.ts","kind":"import-statement","original":"./period-split"},{"path":"packages/utilities/src/string-fns/snake-case.ts","kind":"import-statement","original":"./snake-case"},{"path":"packages/utilities/src/string-fns/title-case.ts","kind":"import-statement","original":"./title-case"},{"path":"packages/utilities/src/string-fns/upper-case-first.ts","kind":"import-statement","original":"./upper-case-first"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/utilities/src/index.ts":{"bytes":1783,"imports":[{"path":"packages/utilities/src/crypto/index.ts","kind":"import-statement","original":"./crypto"},{"path":"packages/utilities/src/helper-fns/index.ts","kind":"import-statement","original":"./helper-fns"},{"path":"packages/utilities/src/string-fns/index.ts","kind":"import-statement","original":"./string-fns"},{"path":"packages/utilities/src/type-checks/index.ts","kind":"import-statement","original":"./type-checks"},{"path":"packages/utilities/src/types.ts","kind":"import-statement","original":"./types"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/hash.ts":{"bytes":9923,"imports":[{"path":"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js","kind":"import-statement","original":"@noble/hashes/sha3"},{"path":"packages/utilities/src/index.ts","kind":"import-statement","original":"@storm-stack/utilities"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/random.ts":{"bytes":2251,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/cuid.ts":{"bytes":7854,"imports":[{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/snowflake.ts":{"bytes":11777,"imports":[{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/crypto.ts":{"bytes":983,"imports":[{"path":"packages/utilities/src/type-checks/is-object.ts","kind":"import-statement","original":"@storm-stack/utilities/type-checks/is-object"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/uuid.ts":{"bytes":1806,"imports":[{"path":"packages/unique-identifier/src/crypto.ts","kind":"import-statement","original":"./crypto"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/unique-identifier/src/index.ts":{"bytes":581,"imports":[{"path":"packages/unique-identifier/src/cuid.ts","kind":"import-statement","original":"./cuid"},{"path":"packages/unique-identifier/src/hash.ts","kind":"import-statement","original":"./hash"},{"path":"packages/unique-identifier/src/random.ts","kind":"import-statement","original":"./random"},{"path":"packages/unique-identifier/src/snowflake.ts","kind":"import-statement","original":"./snowflake"},{"path":"packages/unique-identifier/src/uuid.ts","kind":"import-statement","original":"./uuid"},{"path":"<define:__STORM_CONFIG>","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/packages/unique-identifier/dist/modern/index.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/index.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1784},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6406},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/crypto/web-crypto.ts":{"bytesInOutput":104},"packages/utilities/src/crypto/index.ts":{"bytesInOutput":0},"packages/utilities/src/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-function.ts":{"bytesInOutput":265},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytesInOutput":129},"packages/utilities/src/type-checks/is-react-element.ts":{"bytesInOutput":197},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytesInOutput":399},"packages/utilities/src/type-checks/property-exists.ts":{"bytesInOutput":590},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytesInOutput":362},"packages/utilities/src/helper-fns/index.ts":{"bytesInOutput":0},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytesInOutput":3008},"packages/utilities/src/string-fns/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":379},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226},"packages/unique-identifier/src/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1901},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":132},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":26316},"dist/packages/unique-identifier/dist/modern/uuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/uuid.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130},"packages/unique-identifier/src/uuid.ts":{"bytesInOutput":172}},"bytes":2495},"dist/packages/unique-identifier/dist/modern/snowflake.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/snowflake.ts","inputs":{"packages/unique-identifier/src/snowflake.ts":{"bytesInOutput":1896}},"bytes":2889},"dist/packages/unique-identifier/dist/modern/random.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/random.ts","inputs":{"packages/unique-identifier/src/random.ts":{"bytesInOutput":379}},"bytes":1369},"dist/packages/unique-identifier/dist/modern/hash.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/hash.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1784},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6406},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/crypto/web-crypto.ts":{"bytesInOutput":104},"packages/utilities/src/crypto/index.ts":{"bytesInOutput":0},"packages/utilities/src/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":367},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-function.ts":{"bytesInOutput":265},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytesInOutput":129},"packages/utilities/src/type-checks/is-react-element.ts":{"bytesInOutput":197},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytesInOutput":399},"packages/utilities/src/type-checks/property-exists.ts":{"bytesInOutput":590},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytesInOutput":362},"packages/utilities/src/helper-fns/index.ts":{"bytesInOutput":0},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytesInOutput":3008},"packages/utilities/src/string-fns/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846}},"bytes":22270},"dist/packages/unique-identifier/dist/modern/cuid.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/cuid.ts","inputs":{"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_assert.js":{"bytesInOutput":971},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/_u64.js":{"bytesInOutput":1068},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/utils.js":{"bytesInOutput":1784},"node_modules/.pnpm/@noble+hashes@1.3.2/node_modules/@noble/hashes/esm/sha3.js":{"bytesInOutput":6406},"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/utilities/src/crypto/web-crypto.ts":{"bytesInOutput":104},"packages/utilities/src/crypto/index.ts":{"bytesInOutput":0},"packages/utilities/src/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/index.ts":{"bytesInOutput":0},"packages/utilities/src/type-checks/is-null.ts":{"bytesInOutput":150},"packages/utilities/src/type-checks/is-undefined.ts":{"bytesInOutput":162},"packages/utilities/src/type-checks/is-empty.ts":{"bytesInOutput":173},"packages/utilities/src/type-checks/is-buffer.ts":{"bytesInOutput":431},"packages/utilities/src/type-checks/type-detect.ts":{"bytesInOutput":369},"packages/utilities/src/types.ts":{"bytesInOutput":44},"packages/utilities/src/type-checks/is-string.ts":{"bytesInOutput":165},"packages/utilities/src/type-checks/is-function.ts":{"bytesInOutput":265},"packages/utilities/src/type-checks/is-set.ts":{"bytesInOutput":149},"packages/utilities/src/type-checks/is-non-null-object.ts":{"bytesInOutput":129},"packages/utilities/src/type-checks/is-react-element.ts":{"bytesInOutput":197},"packages/utilities/src/type-checks/is-mergeable-object.ts":{"bytesInOutput":399},"packages/utilities/src/type-checks/property-exists.ts":{"bytesInOutput":590},"packages/utilities/src/helper-fns/deep-copy.ts":{"bytesInOutput":362},"packages/utilities/src/helper-fns/index.ts":{"bytesInOutput":0},"packages/utilities/src/helper-fns/deep-merge.ts":{"bytesInOutput":3008},"packages/utilities/src/string-fns/index.ts":{"bytesInOutput":0},"packages/unique-identifier/src/hash.ts":{"bytesInOutput":1846},"packages/unique-identifier/src/random.ts":{"bytesInOutput":227},"packages/unique-identifier/src/cuid.ts":{"bytesInOutput":1226}},"bytes":23817},"dist/packages/unique-identifier/dist/modern/crypto.global.js":{"imports":[],"exports":[],"entryPoint":"packages/unique-identifier/src/crypto.ts","inputs":{"packages/utilities/src/type-checks/get-object-tag.ts":{"bytesInOutput":232},"packages/utilities/src/type-checks/is-plain-object.ts":{"bytesInOutput":550},"packages/utilities/src/type-checks/is-object.ts":{"bytesInOutput":203},"packages/unique-identifier/src/crypto.ts":{"bytesInOutput":130}},"bytes":2278}}}
{
"name": "@storm-stack/unique-identifier",
"version": "1.2.10",
"version": "1.2.11",
"private": false,

@@ -5,0 +5,0 @@ "description": "This package provides a simple way to generate various types of unique identifiers.",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc