diff --git a/.lldbinit b/.lldbinit index b54a4195c3..a2357365bb 100644 --- a/.lldbinit +++ b/.lldbinit @@ -1,4 +1,4 @@ -command script import vendor/zig/tools/lldb_pretty_printers.py +# command script import vendor/zig/tools/lldb_pretty_printers.py command script import vendor/WebKit/Tools/lldb/lldb_webkit.py # type summary add --summary-string "${var} | inner=${var[0-30]}, source=${var[33-64]}, tag=${var[31-32]}" "unsigned long" diff --git a/src/bun.zig b/src/bun.zig index b96006c618..77d75c1f0d 100644 --- a/src/bun.zig +++ b/src/bun.zig @@ -1871,6 +1871,14 @@ pub const StringSet = struct { } } + pub fn contains(self: *StringSet, key: []const u8) bool { + return self.map.contains(key); + } + + pub fn swapRemove(self: *StringSet, key: []const u8) bool { + return self.map.swapRemove(key); + } + pub fn deinit(self: *StringSet) void { for (self.map.keys()) |key| { self.map.allocator.free(key); diff --git a/src/cli/outdated_command.zig b/src/cli/outdated_command.zig index 447f309bea..caa67f7b38 100644 --- a/src/cli/outdated_command.zig +++ b/src/cli/outdated_command.zig @@ -453,10 +453,10 @@ pub const OutdatedCommand = struct { for (workspace_pkg_ids) |workspace_pkg_id| { inline for ( .{ - Behavior{ .normal = true }, - Behavior{ .dev = true }, - Behavior{ .peer = true }, - Behavior{ .optional = true }, + Behavior.prod, + Behavior.dev, + Behavior.peer, + Behavior.optional, }, ) |group_behavior| { for (outdated_ids.items) |ids| { @@ -465,7 +465,7 @@ pub const OutdatedCommand = struct { const dep_id = ids.dep_id; const dep = dependencies[dep_id]; - if (@as(u8, @bitCast(group_behavior)) & @as(u8, @bitCast(dep.behavior)) == 0) continue; + if (!dep.behavior.includes(group_behavior)) continue; const package_name = pkg_names[package_id].slice(string_buf); const resolution = pkg_resolutions[package_id]; diff --git a/src/cli/pack_command.zig b/src/cli/pack_command.zig index 763ecead80..8918c21233 100644 --- a/src/cli/pack_command.zig +++ b/src/cli/pack_command.zig @@ -510,8 +510,8 @@ pub const PackCommand = struct { const dir = root_dir.openDirZ("node_modules", .{ .iterate = true }) catch |err| { switch (err) { - // ignore node_modules if it isn't a directory - error.NotDir => return bundled_pack_queue, + // ignore node_modules if it isn't a directory, or doesn't exist + error.NotDir, error.FileNotFound => return bundled_pack_queue, else => { Output.err(err, "failed to open \"node_modules\" to pack bundled dependencies", .{}); diff --git a/src/install/bun.lock.zig b/src/install/bun.lock.zig index 6a212b46f4..a865e21978 100644 --- a/src/install/bun.lock.zig +++ b/src/install/bun.lock.zig @@ -624,7 +624,7 @@ pub const Stringifier = struct { res.value.folder.fmtJson(buf, .{ .quote = false }), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.writeByte(']'); }, @@ -634,7 +634,7 @@ pub const Stringifier = struct { res.value.local_tarball.fmtJson(buf, .{ .quote = false }), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.writeByte(']'); }, @@ -644,7 +644,7 @@ pub const Stringifier = struct { res.value.remote_tarball.fmtJson(buf, .{ .quote = false }), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.writeByte(']'); }, @@ -654,7 +654,7 @@ pub const Stringifier = struct { res.value.symlink.fmtJson(buf, .{ .quote = false }), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.writeByte(']'); }, @@ -672,7 +672,7 @@ pub const Stringifier = struct { res.value.npm.url.slice(buf), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.print(", \"{}\"]", .{ pkg_meta.integrity, @@ -684,7 +684,7 @@ pub const Stringifier = struct { res.value.workspace.fmtJson(buf, .{ .quote = false }), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.writeByte(']'); }, @@ -695,7 +695,7 @@ pub const Stringifier = struct { repo.fmt(if (comptime tag == .git) "git+" else "github:", buf), }); - try writePackageInfoObject(writer, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); + try writePackageInfoObject(writer, dep.behavior, deps_buf, pkg_deps_sort_buf.items, &pkg_meta, &pkg_bin, buf, &optional_peers_buf, lockfile.buffers.extern_strings.items); try writer.print(", {}]", .{ repo.resolved.fmtJson(buf, .{}), @@ -720,6 +720,7 @@ pub const Stringifier = struct { /// { "devDependencies": { "one": "1.1.1", "two": "2.2.2" }, "os": "none" } fn writePackageInfoObject( writer: anytype, + dep_behavior: Dependency.Behavior, deps_buf: []const Dependency, pkg_dep_ids: []const DependencyID, meta: *const Meta, @@ -789,6 +790,18 @@ pub const Stringifier = struct { try writer.writeByte(']'); } + if (dep_behavior.isBundled()) { + if (any) { + try writer.writeByte(','); + } else { + any = true; + } + + try writer.writeAll( + \\ "bundled": true + ); + } + // TODO(dylan-conway) // if (meta.libc != .all) { // try writer.writeAll( @@ -977,7 +990,7 @@ pub const Stringifier = struct { }; const workspace_dependency_groups = [4]struct { []const u8, Dependency.Behavior }{ - .{ "dependencies", Dependency.Behavior.normal }, + .{ "dependencies", Dependency.Behavior.prod }, .{ "devDependencies", Dependency.Behavior.dev }, .{ "optionalDependencies", Dependency.Behavior.optional }, .{ "peerDependencies", Dependency.Behavior.peer }, @@ -1242,14 +1255,15 @@ pub fn parseIntoBinaryLockfile( const name = value.get("name").?.asString(allocator).?; const name_hash = String.Builder.stringHash(name); - var dep: Dependency = .{}; - dep.name = try string_buf.appendWithHash(name, name_hash); - dep.name_hash = name_hash; - dep.behavior = Dependency.Behavior.workspace; - dep.version = .{ - .tag = .workspace, - .value = .{ - .workspace = try string_buf.append(path), + const dep: Dependency = .{ + .name = try string_buf.appendWithHash(name, name_hash), + .name_hash = name_hash, + .behavior = Dependency.Behavior.workspace, + .version = .{ + .tag = .workspace, + .value = .{ + .workspace = try string_buf.append(path), + }, }, }; @@ -1267,7 +1281,11 @@ pub fn parseIntoBinaryLockfile( try lockfile.getOrPutID(0, root_pkg.name_hash); } - var pkg_map = bun.StringArrayHashMap(PackageID).init(allocator); + const PkgMapEntry = struct { + pkg_id: PackageID, + bundled: bool, + }; + var pkg_map = bun.StringArrayHashMap(PkgMapEntry).init(allocator); defer pkg_map.deinit(); if (root.get("packages")) |pkgs_expr| { @@ -1355,6 +1373,8 @@ pub fn parseIntoBinaryLockfile( var pkg: BinaryLockfile.Package = .{}; + var bundled = false; + // dependencies, os, cpu, libc switch (res.tag) { .npm, .folder, .git, .github, .local_tarball, .remote_tarball, .symlink, .workspace => { @@ -1363,29 +1383,38 @@ pub fn parseIntoBinaryLockfile( return error.InvalidPackageInfo; } - const deps_os_cpu_libc_bin_obj = pkg_info.at(i); + const deps_os_cpu_libc_bin_bundle_obj = pkg_info.at(i); i += 1; - if (!deps_os_cpu_libc_bin_obj.isObject()) { - try log.addError(source, deps_os_cpu_libc_bin_obj.loc, "Expected an object"); + if (!deps_os_cpu_libc_bin_bundle_obj.isObject()) { + try log.addError(source, deps_os_cpu_libc_bin_bundle_obj.loc, "Expected an object"); return error.InvalidPackageInfo; } - const off, const len = try parseAppendDependencies(lockfile, allocator, deps_os_cpu_libc_bin_obj, &string_buf, log, source, &optional_peers_buf); + if (deps_os_cpu_libc_bin_bundle_obj.get("bundled")) |bundled_expr| { + if (!bundled_expr.isBoolean()) { + try log.addError(source, bundled_expr.loc, "Expected a boolean"); + return error.InvalidPackageInfo; + } + + bundled = bundled_expr.data.e_boolean.value; + } + + const off, const len = try parseAppendDependencies(lockfile, allocator, deps_os_cpu_libc_bin_bundle_obj, &string_buf, log, source, &optional_peers_buf); pkg.dependencies = .{ .off = off, .len = len }; pkg.resolutions = .{ .off = off, .len = len }; - if (deps_os_cpu_libc_bin_obj.get("bin")) |bin| { + if (deps_os_cpu_libc_bin_bundle_obj.get("bin")) |bin| { pkg.bin = try Bin.parseAppend(allocator, bin, &string_buf, &lockfile.buffers.extern_strings); - } else if (deps_os_cpu_libc_bin_obj.get("binDir")) |bin_dir| { + } else if (deps_os_cpu_libc_bin_bundle_obj.get("binDir")) |bin_dir| { pkg.bin = try Bin.parseAppendFromDirectories(allocator, bin_dir, &string_buf); } if (res.tag != .workspace) { - if (deps_os_cpu_libc_bin_obj.get("os")) |os| { + if (deps_os_cpu_libc_bin_bundle_obj.get("os")) |os| { pkg.meta.os = try Negatable(Npm.OperatingSystem).fromJson(allocator, os); } - if (deps_os_cpu_libc_bin_obj.get("cpu")) |arch| { + if (deps_os_cpu_libc_bin_bundle_obj.get("cpu")) |arch| { pkg.meta.arch = try Negatable(Npm.Architecture).fromJson(allocator, arch); } // TODO(dylan-conway) @@ -1464,7 +1493,10 @@ pub fn parseIntoBinaryLockfile( return error.InvalidPackageKey; } - entry.value_ptr.* = pkg_id; + entry.value_ptr.* = .{ + .pkg_id = pkg_id, + .bundled = bundled, + }; } try lockfile.buffers.resolutions.ensureTotalCapacityPrecise(allocator, lockfile.buffers.dependencies.items.len); @@ -1485,7 +1517,7 @@ pub fn parseIntoBinaryLockfile( const dep_id: DependencyID = @intCast(_dep_id); const dep = lockfile.buffers.dependencies.items[dep_id]; - const res_pkg_id = pkg_map.get(dep.name.slice(lockfile.buffers.string_bytes.items)) orelse { + const entry = pkg_map.get(dep.name.slice(lockfile.buffers.string_bytes.items)) orelse { if (dep.behavior.optional) { continue; } @@ -1493,7 +1525,8 @@ pub fn parseIntoBinaryLockfile( return error.InvalidPackageInfo; }; - lockfile.buffers.resolutions.items[dep_id] = res_pkg_id; + lockfile.buffers.resolutions.items[dep_id] = entry.pkg_id; + lockfile.buffers.dependencies.items[dep_id].behavior.bundled = entry.bundled; } // TODO(dylan-conway) should we handle workspaces separately here for custom hoisting @@ -1508,14 +1541,14 @@ pub fn parseIntoBinaryLockfile( const pkg_path = key.asString(allocator).?; - const pkg_id = pkg_map.get(pkg_path) orelse { + const pkg_id = (pkg_map.get(pkg_path) orelse { return error.InvalidPackagesObject; - }; + }).pkg_id; // find resolutions. iterate up to root through the pkg path. deps: for (pkg_deps[pkg_id].begin()..pkg_deps[pkg_id].end()) |_dep_id| { const dep_id: DependencyID = @intCast(_dep_id); - const dep = lockfile.buffers.dependencies.items[dep_id]; + var dep = &lockfile.buffers.dependencies.items[dep_id]; const dep_name = dep.name.slice(lockfile.buffers.string_bytes.items); @memcpy(path_buf[0..pkg_path.len], pkg_path); @@ -1527,8 +1560,9 @@ pub fn parseIntoBinaryLockfile( @memcpy(path_buf[offset..][0..dep_name.len], dep_name); const res_path = path_buf[0 .. offset + dep_name.len]; - if (pkg_map.get(res_path)) |res_pkg_id| { - lockfile.buffers.resolutions.items[dep_id] = res_pkg_id; + if (pkg_map.get(res_path)) |entry| { + lockfile.buffers.resolutions.items[dep_id] = entry.pkg_id; + dep.behavior.bundled = entry.bundled; continue :deps; } @@ -1536,7 +1570,7 @@ pub fn parseIntoBinaryLockfile( if (dep.behavior.optional) { continue :deps; } - try dependencyResolutionFailure(&dep, pkg_path, allocator, lockfile.buffers.string_bytes.items, source, log, key.loc); + try dependencyResolutionFailure(dep, pkg_path, allocator, lockfile.buffers.string_bytes.items, source, log, key.loc); return error.InvalidPackageInfo; } @@ -1600,11 +1634,11 @@ pub fn parseIntoBinaryLockfile( } fn dependencyResolutionFailure(dep: *const Dependency, pkg_path: ?string, allocator: std.mem.Allocator, buf: string, source: *const logger.Source, log: *logger.Log, loc: logger.Loc) OOM!void { - const behavior_str = if (dep.behavior.isDev()) + const behavior_str = if (dep.behavior.dev) "dev" - else if (dep.behavior.isOptional()) + else if (dep.behavior.optional) "optional" - else if (dep.behavior.isPeer()) + else if (dep.behavior.peer) "peer" else if (dep.behavior.isWorkspaceOnly()) "workspace" @@ -1681,10 +1715,13 @@ fn parseAppendDependencies( const version = try buf.append(version_str); const version_sliced = version.sliced(buf.bytes.items); - var dep: Dependency = .{ + const dep: Dependency = .{ .name = name.value, .name_hash = name.hash, - .behavior = group_behavior, + .behavior = if (group_behavior.peer and optional_peers_buf.contains(name.hash)) + group_behavior.add(.optional) + else + group_behavior, .version = Dependency.parse( allocator, name.value, @@ -1699,10 +1736,6 @@ fn parseAppendDependencies( }, }; - if (dep.behavior.isPeer() and optional_peers_buf.contains(name.hash)) { - dep.behavior.optional = true; - } - try lockfile.buffers.dependencies.append(allocator, dep); } } diff --git a/src/install/dependency.zig b/src/install/dependency.zig index faeb476d2d..4ded9d5682 100644 --- a/src/install/dependency.zig +++ b/src/install/dependency.zig @@ -51,7 +51,7 @@ version: Dependency.Version = .{}, /// - `peerDependencies` /// Technically, having the same package name specified under multiple fields is invalid /// But we don't want to allocate extra arrays for them. So we use a bitfield instead. -behavior: Behavior = Behavior.uninitialized, +behavior: Behavior = .{}, /// Sorting order for dependencies is: /// 1. [ `peerDependencies`, `optionalDependencies`, `devDependencies`, `dependencies` ] @@ -1301,36 +1301,32 @@ pub fn fromJS(globalThis: *JSC.JSGlobalObject, callframe: *JSC.CallFrame) bun.JS } pub const Behavior = packed struct(u8) { - pub const uninitialized: Behavior = .{}; - - // these padding fields are to have compatibility - // with older versions of lockfile v2 _unused_1: u1 = 0, - - normal: bool = false, + prod: bool = false, optional: bool = false, dev: bool = false, peer: bool = false, workspace: bool = false, + /// Is not set for transitive bundled dependencies + bundled: bool = false, + _unused_2: u1 = 0, - _unused_2: u2 = 0, - - pub const normal = Behavior{ .normal = true }; + pub const prod = Behavior{ .prod = true }; pub const optional = Behavior{ .optional = true }; pub const dev = Behavior{ .dev = true }; pub const peer = Behavior{ .peer = true }; pub const workspace = Behavior{ .workspace = true }; - pub inline fn isNormal(this: Behavior) bool { - return this.normal; + pub inline fn isProd(this: Behavior) bool { + return this.prod; } pub inline fn isOptional(this: Behavior) bool { - return this.optional and !this.isPeer(); + return this.optional and !this.peer; } pub inline fn isOptionalPeer(this: Behavior) bool { - return this.optional and this.isPeer(); + return this.optional and this.peer; } pub inline fn isDev(this: Behavior) bool { @@ -1345,38 +1341,12 @@ pub const Behavior = packed struct(u8) { return this.workspace; } + pub inline fn isBundled(this: Behavior) bool { + return this.bundled; + } + pub inline fn isWorkspaceOnly(this: Behavior) bool { - return this.workspace and !this.dev and !this.normal and !this.optional and !this.peer; - } - - pub inline fn setNormal(this: Behavior, value: bool) Behavior { - var b = this; - b.normal = value; - return b; - } - - pub inline fn setOptional(this: Behavior, value: bool) Behavior { - var b = this; - b.optional = value; - return b; - } - - pub inline fn setDev(this: Behavior, value: bool) Behavior { - var b = this; - b.dev = value; - return b; - } - - pub inline fn setPeer(this: Behavior, value: bool) Behavior { - var b = this; - b.peer = value; - return b; - } - - pub inline fn setWorkspace(this: Behavior, value: bool) Behavior { - var b = this; - b.workspace = value; - return b; + return this.workspace and !this.dev and !this.prod and !this.optional and !this.peer; } pub inline fn eq(lhs: Behavior, rhs: Behavior) bool { @@ -1387,13 +1357,25 @@ pub const Behavior = packed struct(u8) { return @as(u8, @bitCast(lhs)) & @as(u8, @bitCast(rhs)) != 0; } + pub inline fn add(this: Behavior, kind: @Type(.EnumLiteral)) Behavior { + var new = this; + @field(new, @tagName(kind)) = true; + return new; + } + + pub inline fn set(this: Behavior, kind: @Type(.EnumLiteral), value: bool) Behavior { + var new = this; + @field(new, @tagName(kind)) = value; + return new; + } + pub inline fn cmp(lhs: Behavior, rhs: Behavior) std.math.Order { if (eq(lhs, rhs)) { return .eq; } - if (lhs.isNormal() != rhs.isNormal()) { - return if (lhs.isNormal()) + if (lhs.isProd() != rhs.isProd()) { + return if (lhs.isProd()) .gt else .lt; @@ -1435,40 +1417,15 @@ pub const Behavior = packed struct(u8) { } pub fn isEnabled(this: Behavior, features: Features) bool { - return this.isNormal() or + return this.isProd() or (features.optional_dependencies and this.isOptional()) or (features.dev_dependencies and this.isDev()) or (features.peer_dependencies and this.isPeer()) or (features.workspaces and this.isWorkspaceOnly()); } - pub fn format(self: Behavior, comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) !void { - const fields = .{ - "normal", - "optional", - "dev", - "peer", - "workspace", - }; - - var first = true; - inline for (fields) |field| { - if (@field(self, field)) { - if (!first) { - try writer.writeAll(" | "); - } - try writer.writeAll(field); - first = false; - } - } - - if (first) { - try writer.writeAll("-"); - } - } - comptime { - bun.assert(@as(u8, @bitCast(Behavior.normal)) == (1 << 1)); + bun.assert(@as(u8, @bitCast(Behavior.prod)) == (1 << 1)); bun.assert(@as(u8, @bitCast(Behavior.optional)) == (1 << 2)); bun.assert(@as(u8, @bitCast(Behavior.dev)) == (1 << 3)); bun.assert(@as(u8, @bitCast(Behavior.peer)) == (1 << 4)); diff --git a/src/install/install.zig b/src/install/install.zig index d64fc72cfb..495c63ee0a 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -155,12 +155,7 @@ const Behavior = @import("./dependency.zig").Behavior; const FolderResolution = @import("./resolvers/folder_resolver.zig").FolderResolution; pub fn ExternalSlice(comptime Type: type) type { - return ExternalSliceAligned(Type, null); -} - -pub fn ExternalSliceAligned(comptime Type: type, comptime alignment_: ?u29) type { return extern struct { - pub const alignment = alignment_ orelse @alignOf(*Type); pub const Slice = @This(); pub const Child: type = Type; @@ -168,6 +163,12 @@ pub fn ExternalSliceAligned(comptime Type: type, comptime alignment_: ?u29) type off: u32 = 0, len: u32 = 0, + pub const invalid: @This() = .{ .off = std.math.maxInt(u32), .len = std.math.maxInt(u32) }; + + pub inline fn isInvalid(this: Slice) bool { + return this.off == std.math.maxInt(u32) and this.len == std.math.maxInt(u32); + } + pub inline fn contains(this: Slice, id: u32) bool { return id >= this.off and id < (this.len + this.off); } @@ -211,10 +212,20 @@ pub fn ExternalSliceAligned(comptime Type: type, comptime alignment_: ?u29) type pub const PackageID = u32; pub const DependencyID = u32; + +// pub const DependencyID = enum(u32) { +// root = max - 1, +// invalid = max, +// _, + +// const max = std.math.maxInt(u32); +// }; + pub const invalid_package_id = std.math.maxInt(PackageID); pub const invalid_dependency_id = std.math.maxInt(DependencyID); pub const ExternalStringList = ExternalSlice(ExternalString); +pub const ExternalPackageNameHashList = ExternalSlice(PackageNameHash); pub const VersionSlice = ExternalSlice(Semver.Version); pub const ExternalStringMap = extern struct { @@ -3384,18 +3395,18 @@ pub const PackageManager = struct { pub fn determinePreinstallState( manager: *PackageManager, - this: Package, + pkg: Package, lockfile: *Lockfile, out_name_and_version_hash: *?u64, out_patchfile_hash: *?u64, ) PreinstallState { - switch (manager.getPreinstallState(this.meta.id)) { + switch (manager.getPreinstallState(pkg.meta.id)) { .unknown => { // Do not automatically start downloading packages which are disabled // i.e. don't download all of esbuild's versions or SWCs - if (this.isDisabled()) { - manager.setPreinstallState(this.meta.id, lockfile, .done); + if (pkg.isDisabled()) { + manager.setPreinstallState(pkg.meta.id, lockfile, .done); return .done; } @@ -3406,37 +3417,37 @@ pub const PackageManager = struct { sfb.get(), "{s}@{}", .{ - this.name.slice(manager.lockfile.buffers.string_bytes.items), - this.resolution.fmt(manager.lockfile.buffers.string_bytes.items, .posix), + pkg.name.slice(manager.lockfile.buffers.string_bytes.items), + pkg.resolution.fmt(manager.lockfile.buffers.string_bytes.items, .posix), }, ) catch unreachable; const name_and_version_hash = String.Builder.stringHash(name_and_version); const patched_dep = manager.lockfile.patched_dependencies.get(name_and_version_hash) orelse break :brk null; defer out_name_and_version_hash.* = name_and_version_hash; if (patched_dep.patchfile_hash_is_null) { - manager.setPreinstallState(this.meta.id, manager.lockfile, .calc_patch_hash); + manager.setPreinstallState(pkg.meta.id, manager.lockfile, .calc_patch_hash); return .calc_patch_hash; } out_patchfile_hash.* = patched_dep.patchfileHash().?; break :brk patched_dep.patchfileHash().?; }; - const folder_path = switch (this.resolution.tag) { - .git => manager.cachedGitFolderNamePrintAuto(&this.resolution.value.git, patch_hash), - .github => manager.cachedGitHubFolderNamePrintAuto(&this.resolution.value.github, patch_hash), - .npm => manager.cachedNPMPackageFolderName(lockfile.str(&this.name), this.resolution.value.npm.version, patch_hash), - .local_tarball => manager.cachedTarballFolderName(this.resolution.value.local_tarball, patch_hash), - .remote_tarball => manager.cachedTarballFolderName(this.resolution.value.remote_tarball, patch_hash), + const folder_path = switch (pkg.resolution.tag) { + .git => manager.cachedGitFolderNamePrintAuto(&pkg.resolution.value.git, patch_hash), + .github => manager.cachedGitHubFolderNamePrintAuto(&pkg.resolution.value.github, patch_hash), + .npm => manager.cachedNPMPackageFolderName(lockfile.str(&pkg.name), pkg.resolution.value.npm.version, patch_hash), + .local_tarball => manager.cachedTarballFolderName(pkg.resolution.value.local_tarball, patch_hash), + .remote_tarball => manager.cachedTarballFolderName(pkg.resolution.value.remote_tarball, patch_hash), else => "", }; if (folder_path.len == 0) { - manager.setPreinstallState(this.meta.id, lockfile, .extract); + manager.setPreinstallState(pkg.meta.id, lockfile, .extract); return .extract; } if (manager.isFolderInCache(folder_path)) { - manager.setPreinstallState(this.meta.id, lockfile, .done); + manager.setPreinstallState(pkg.meta.id, lockfile, .done); return .done; } @@ -3453,16 +3464,16 @@ pub const PackageManager = struct { const non_patched_path = manager.lockfile.allocator.dupeZ(u8, non_patched_path_) catch bun.outOfMemory(); defer manager.lockfile.allocator.free(non_patched_path); if (manager.isFolderInCache(non_patched_path)) { - manager.setPreinstallState(this.meta.id, manager.lockfile, .apply_patch); + manager.setPreinstallState(pkg.meta.id, manager.lockfile, .apply_patch); // yay step 1 is already done for us return .apply_patch; } // we need to extract non-patched pkg into the cache - manager.setPreinstallState(this.meta.id, lockfile, .extract); + manager.setPreinstallState(pkg.meta.id, lockfile, .extract); return .extract; } - manager.setPreinstallState(this.meta.id, lockfile, .extract); + manager.setPreinstallState(pkg.meta.id, lockfile, .extract); return .extract; }, else => |val| return val, @@ -6004,6 +6015,10 @@ pub const PackageManager = struct { resolution.value.github.resolved = builder.append(String, this.resolved); return resolution; } + + pub fn checkBundledDependencies() bool { + return true; + } }; const TarballResolver = struct { @@ -6027,6 +6042,10 @@ pub const PackageManager = struct { } return resolution; } + + pub fn checkBundledDependencies() bool { + return true; + } }; /// Returns true if we need to drain dependencies @@ -6060,7 +6079,7 @@ pub const PackageManager = struct { manager.allocator, manager.log, package_json_source, - *GitResolver, + GitResolver, &resolver, Features.npm, ) catch |err| { @@ -6133,6 +6152,11 @@ pub const PackageManager = struct { ); var package = Lockfile.Package{}; + var resolver: TarballResolver = .{ + .url = data.url, + .resolution = resolution, + }; + package.parse( manager.lockfile, manager, @@ -6140,10 +6164,7 @@ pub const PackageManager = struct { manager.log, package_json_source, TarballResolver, - TarballResolver{ - .url = data.url, - .resolution = resolution, - }, + &resolver, Features.npm, ) catch |err| { if (comptime log_level != .silent) { @@ -7691,7 +7712,7 @@ pub const PackageManager = struct { const dependency_groups = &.{ .{ "optionalDependencies", Dependency.Behavior.optional }, .{ "devDependencies", Dependency.Behavior.dev }, - .{ "dependencies", Dependency.Behavior.normal }, + .{ "dependencies", Dependency.Behavior.prod }, .{ "peerDependencies", Dependency.Behavior.peer }, }; @@ -9177,7 +9198,8 @@ pub const PackageManager = struct { }; lockfile.initEmpty(ctx.allocator); - try package.parse(&lockfile, manager, ctx.allocator, manager.log, package_json_source, void, {}, Features.folder); + var resolver: void = {}; + try package.parse(&lockfile, manager, ctx.allocator, manager.log, package_json_source, void, &resolver, Features.folder); name = lockfile.str(&package.name); if (name.len == 0) { if (manager.options.log_level != .silent) { @@ -9359,7 +9381,8 @@ pub const PackageManager = struct { }; lockfile.initEmpty(ctx.allocator); - try package.parse(&lockfile, manager, ctx.allocator, manager.log, package_json_source, void, {}, Features.folder); + var resolver: void = {}; + try package.parse(&lockfile, manager, ctx.allocator, manager.log, package_json_source, void, &resolver, Features.folder); name = lockfile.str(&package.name); if (name.len == 0) { if (manager.options.log_level != .silent) { @@ -11250,8 +11273,9 @@ pub const PackageManager = struct { Global.crash(); }; + var resolver: void = {}; var package = Lockfile.Package{}; - try package.parseWithJSON(lockfile, manager, manager.allocator, manager.log, package_json_source, json, void, {}, Features.folder); + try package.parseWithJSON(lockfile, manager, manager.allocator, manager.log, package_json_source, json, void, &resolver, Features.folder); const name = lockfile.str(&package.name); const actual_package = switch (lockfile.package_index.get(package.name_hash) orelse { @@ -11663,8 +11687,9 @@ pub const PackageManager = struct { Global.crash(); }; + var resolver: void = {}; var package = Lockfile.Package{}; - try package.parseWithJSON(lockfile, manager, manager.allocator, manager.log, package_json_source, json, void, {}, Features.folder); + try package.parseWithJSON(lockfile, manager, manager.allocator, manager.log, package_json_source, json, void, &resolver, Features.folder); const name = lockfile.str(&package.name); const actual_package = switch (lockfile.package_index.get(package.name_hash) orelse { @@ -14377,6 +14402,7 @@ pub const PackageManager = struct { lockfile.initEmpty(manager.allocator); var maybe_root = Lockfile.Package{}; + var resolver: void = {}; try maybe_root.parse( &lockfile, manager, @@ -14384,7 +14410,7 @@ pub const PackageManager = struct { manager.log, root_package_json_source, void, - {}, + &resolver, Features.main, ); const mapping = try manager.lockfile.allocator.alloc(PackageID, maybe_root.dependencies.len); @@ -14610,6 +14636,7 @@ pub const PackageManager = struct { Global.crash(); } + var resolver: void = {}; try root.parse( manager.lockfile, manager, @@ -14617,7 +14644,7 @@ pub const PackageManager = struct { manager.log, root_package_json_source, void, - {}, + &resolver, Features.main, ); diff --git a/src/install/lockfile.zig b/src/install/lockfile.zig index 095c4c5e84..26528cc984 100644 --- a/src/install/lockfile.zig +++ b/src/install/lockfile.zig @@ -496,11 +496,14 @@ pub const Tree = struct { pub const HoistDependencyResult = union(enum) { dependency_loop, hoisted, - dest_id: Id, - replace: struct { - dest_id: Id, - dep_id: DependencyID, + placement: struct { + id: Id, + bundled: bool = false, }, + // replace: struct { + // dest_id: Id, + // dep_id: DependencyID, + // }, }; pub const SubtreeError = OOM || error{DependencyLoop}; @@ -759,6 +762,7 @@ pub const Tree = struct { pub fn processSubtree( this: *const Tree, dependency_id: DependencyID, + hoist_root_id: Tree.Id, comptime method: BuilderMethod, builder: *Builder(method), log_level: if (method == .filter) PackageManager.Options.LogLevel else void, @@ -833,7 +837,7 @@ pub const Tree = struct { // filter out disabled dependencies if (comptime method == .filter) { - if (builder.lockfile.isPackageDisabled( + if (builder.lockfile.isResolvedDependencyDisabled( dep_id, switch (pkg_resolutions[parent_pkg_id].tag) { .root, .workspace, .folder => builder.manager.options.local_package_features, @@ -857,13 +861,21 @@ pub const Tree = struct { } } - const dependency = builder.dependencies[dep_id]; - // Do not hoist folder dependencies - const res: HoistDependencyResult = if (pkg_resolutions[pkg_id].tag == .folder) - .{ .dest_id = next.id } - else - try next.hoistDependency( + const hoisted: HoistDependencyResult = hoisted: { + const dependency = builder.dependencies[dep_id]; + + // don't hoist if it's a folder dependency or a bundled dependency. + if (dependency.behavior.isBundled()) { + break :hoisted .{ .placement = .{ .id = next.id, .bundled = true } }; + } + + if (pkg_resolutions[pkg_id].tag == .folder) { + break :hoisted .{ .placement = .{ .id = next.id } }; + } + + break :hoisted try next.hoistDependency( true, + hoist_root_id, pkg_id, &dependency, dependency_lists, @@ -871,25 +883,20 @@ pub const Tree = struct { method, builder, ); + }; - switch (res) { + switch (hoisted) { .dependency_loop, .hoisted => continue, - .replace => |replacement| { - var dep_ids = dependency_lists[replacement.dest_id].items; - for (0..dep_ids.len) |i| { - if (dep_ids[i] == replacement.dep_id) { - dep_ids[i] = dep_id; - break; - } - } - }, - .dest_id => |dest_id| { - dependency_lists[dest_id].append(builder.allocator, dep_id) catch bun.outOfMemory(); - trees[dest_id].dependencies.len += 1; + .placement => |dest| { + dependency_lists[dest.id].append(builder.allocator, dep_id) catch bun.outOfMemory(); + trees[dest.id].dependencies.len += 1; if (builder.resolution_lists[pkg_id].len > 0) { try builder.queue.writeItem(.{ - .tree_id = dest_id, + .tree_id = dest.id, .dependency_id = dep_id, + + // if it's bundled, start a new hoist root + .hoist_root_id = if (dest.bundled) dest.id else hoist_root_id, }); } }, @@ -906,10 +913,10 @@ pub const Tree = struct { // 1 (return hoisted) - de-duplicate (skip) the package // 2 (return id) - move the package to the top directory // 3 (return dependency_loop) - leave the package at the same (relative) directory - // 4 (replace) - replace the existing (same name) parent dependency fn hoistDependency( this: *Tree, comptime as_defined: bool, + hoist_root_id: Id, package_id: PackageID, dependency: *const Dependency, dependency_lists: []Lockfile.DependencyIDList, @@ -973,9 +980,10 @@ pub const Tree = struct { } // this dependency was not found in this tree, try hoisting or placing in the next parent - if (this.parent != invalid_id) { + if (this.parent != invalid_id and this.id != hoist_root_id) { const id = trees[this.parent].hoistDependency( false, + hoist_root_id, package_id, dependency, dependency_lists, @@ -987,11 +995,11 @@ pub const Tree = struct { } // place the dependency in the current tree - return .{ .dest_id = this.id }; // 2 + return .{ .placement = .{ .id = this.id } }; // 2 } }; -pub fn isPackageDisabled( +pub fn isResolvedDependencyDisabled( lockfile: *const Lockfile, dep_id: DependencyID, features: Features, @@ -1001,7 +1009,7 @@ pub fn isPackageDisabled( const dep = lockfile.buffers.dependencies.items[dep_id]; - return !dep.behavior.isEnabled(features); + return dep.behavior.isBundled() or !dep.behavior.isEnabled(features); } /// This conditionally clones the lockfile with root packages marked as non-resolved @@ -1427,6 +1435,10 @@ pub fn fmtMetaHash(this: *const Lockfile) MetaHashFormatter { pub const FillItem = struct { tree_id: Tree.Id, dependency_id: DependencyID, + + /// If valid, dependencies will not hoist + /// beyond this tree if they're in a subtree + hoist_root_id: Tree.Id, }; pub const TreeFiller = std.fifo.LinearFifo(FillItem, .Dynamic); @@ -1497,10 +1509,23 @@ pub fn hoist( .manager = manager, }; - try (Tree{}).processSubtree(Tree.root_dep_id, method, &builder, if (method == .filter) manager.options.log_level else {}); + try (Tree{}).processSubtree( + Tree.root_dep_id, + Tree.invalid_id, + method, + &builder, + if (method == .filter) manager.options.log_level else {}, + ); + // This goes breadth-first while (builder.queue.readItem()) |item| { - try builder.list.items(.tree)[item.tree_id].processSubtree(item.dependency_id, method, &builder, if (method == .filter) manager.options.log_level else {}); + try builder.list.items(.tree)[item.tree_id].processSubtree( + item.dependency_id, + item.hoist_root_id, + method, + &builder, + if (method == .filter) manager.options.log_level else {}, + ); } const cleaned = try builder.clean(); @@ -1771,7 +1796,7 @@ pub const Printer = struct { // It's possible this package was installed but the dependency is disabled. // Have "zod@1.0.0" in dependencies and `zod2@npm:zod@1.0.0` in devDependencies // and install with --omit=dev. - if (this.lockfile.isPackageDisabled( + if (this.lockfile.isResolvedDependencyDisabled( dep_id, this.options.local_package_features, &pkg_metas[package_id], @@ -2267,14 +2292,14 @@ pub const Printer = struct { } if (dependencies.len > 0) { - var behavior = Behavior.uninitialized; + var behavior: Behavior = .{}; var dependency_behavior_change_count: u8 = 0; for (dependencies) |dep| { if (!dep.behavior.eq(behavior)) { if (dep.behavior.isOptional()) { try writer.writeAll(" optionalDependencies:\n"); if (comptime Environment.allow_assert) dependency_behavior_change_count += 1; - } else if (dep.behavior.isNormal()) { + } else if (dep.behavior.isProd()) { try writer.writeAll(" dependencies:\n"); if (comptime Environment.allow_assert) dependency_behavior_change_count += 1; } else if (dep.behavior.isDev()) { @@ -3597,7 +3622,7 @@ pub const Package = extern struct { field: string, behavior: Behavior, - pub const dependencies = DependencyGroup{ .prop = "dependencies", .field = "dependencies", .behavior = Behavior.normal }; + pub const dependencies = DependencyGroup{ .prop = "dependencies", .field = "dependencies", .behavior = Behavior.prod }; pub const dev = DependencyGroup{ .prop = "devDependencies", .field = "dev_dependencies", .behavior = Behavior.dev }; pub const optional = DependencyGroup{ .prop = "optionalDependencies", .field = "optional_dependencies", .behavior = Behavior.optional }; pub const peer = DependencyGroup{ .prop = "peerDependencies", .field = "peer_dependencies", .behavior = Behavior.peer }; @@ -3987,13 +4012,23 @@ pub const Package = extern struct { const dep_version = string_builder.appendWithHash(String, version_string_.slice(string_buf), version_string_.hash); const sliced = dep_version.sliced(lockfile.buffers.string_bytes.items); + var behavior = group.behavior; + if (comptime is_peer) { + behavior.optional = i < package_version.non_optional_peer_dependencies_start; + } + if (package_version_ptr.allDependenciesBundled()) { + behavior.bundled = true; + } else for (package_version.bundled_dependencies.get(manifest.bundled_deps_buf)) |bundled_dep_name_hash| { + if (bundled_dep_name_hash == name.hash) { + behavior.bundled = true; + break; + } + } + const dependency = Dependency{ .name = name.value, .name_hash = name.hash, - .behavior = if (comptime is_peer) - group.behavior.setOptional(i < package_version.non_optional_peer_dependencies_start) - else - group.behavior, + .behavior = behavior, .version = Dependency.parse( allocator, name.value, @@ -4306,6 +4341,7 @@ pub const Package = extern struct { const json = pm.workspace_package_json_cache.getWithSource(bun.default_allocator, log, source, .{}).unwrap() catch break :brk false; + var resolver: void = {}; try workspace.parseWithJSON( to_lockfile, pm, @@ -4314,7 +4350,7 @@ pub const Package = extern struct { source, json.root, void, - {}, + &resolver, Features.workspace, ); @@ -4395,7 +4431,7 @@ pub const Package = extern struct { log: *logger.Log, source: logger.Source, comptime ResolverContext: type, - resolver: ResolverContext, + resolver: *ResolverContext, comptime features: Features, ) !void { initializeStore(); @@ -4551,7 +4587,7 @@ pub const Package = extern struct { for (package_dependencies[0..dependencies_count]) |*dep| { if (dep.name_hash == name_hash and dep.version.tag == .workspace) { dep.* = .{ - .behavior = if (in_workspace) group.behavior.setWorkspace(true) else group.behavior, + .behavior = if (in_workspace) group.behavior.add(.workspace) else group.behavior, .name = external_alias.value, .name_hash = external_alias.hash, .version = dependency_version, @@ -4663,7 +4699,7 @@ pub const Package = extern struct { } const this_dep = Dependency{ - .behavior = if (in_workspace) group.behavior.setWorkspace(true) else group.behavior, + .behavior = if (in_workspace) group.behavior.add(.workspace) else group.behavior, .name = external_alias.value, .name_hash = external_alias.hash, .version = dependency_version, @@ -5085,7 +5121,7 @@ pub const Package = extern struct { source: logger.Source, json: Expr, comptime ResolverContext: type, - resolver: ResolverContext, + resolver: *ResolverContext, comptime features: Features, ) !void { var string_builder = lockfile.stringBuilder(); @@ -5107,7 +5143,7 @@ pub const Package = extern struct { } // name is not validated by npm, so fallback to creating a new from the version literal - if (ResolverContext == *PackageManager.GitResolver) { + if (ResolverContext == PackageManager.GitResolver) { const resolution: *const Resolution = resolver.resolution; const repo = switch (resolution.tag) { .git => resolution.value.git, @@ -5397,7 +5433,7 @@ pub const Package = extern struct { const package_dependencies = lockfile.buffers.dependencies.items.ptr[off..total_len]; name: { - if (ResolverContext == *PackageManager.GitResolver) { + if (ResolverContext == PackageManager.GitResolver) { if (resolver.new_name.len != 0) { defer lockfile.allocator.free(resolver.new_name); const external_string = string_builder.append(ExternalString, resolver.new_name); @@ -5545,6 +5581,25 @@ pub const Package = extern struct { try lockfile.scratch.duplicate_checker_map.ensureTotalCapacity(total_dependencies_count); } + var bundled_deps = bun.StringSet.init(allocator); + defer bundled_deps.deinit(); + var bundle_all_deps = false; + if (comptime ResolverContext != void and ResolverContext.checkBundledDependencies()) { + if (json.get("bundleDependencies") orelse json.get("bundledDependencies")) |bundled_deps_expr| { + switch (bundled_deps_expr.data) { + .e_boolean => |boolean| { + bundle_all_deps = boolean.value; + }, + .e_array => |arr| { + for (arr.slice()) |item| { + try bundled_deps.insert(item.asString(allocator) orelse continue); + } + }, + else => {}, + } + } + } + total_dependencies_count = 0; const in_workspace = lockfile.workspace_paths.contains(package.name_hash); @@ -5645,7 +5700,7 @@ pub const Package = extern struct { )) |_dep| { var dep = _dep; if (group.behavior.isPeer() and optional_peer_dependencies.contains(external_name.hash)) { - dep.behavior = dep.behavior.setOptional(true); + dep.behavior = dep.behavior.add(.optional); } package_dependencies[total_dependencies_count] = dep; @@ -5688,7 +5743,11 @@ pub const Package = extern struct { )) |_dep| { var dep = _dep; if (group.behavior.isPeer() and optional_peer_dependencies.contains(external_name.hash)) { - dep.behavior = dep.behavior.setOptional(true); + dep.behavior.optional = true; + } + + if (bundle_all_deps or bundled_deps.contains(dep.name.slice(lockfile.buffers.string_bytes.items))) { + dep.behavior.bundled = true; } package_dependencies[total_dependencies_count] = dep; diff --git a/src/install/migration.zig b/src/install/migration.zig index f57c59fb79..1810598c74 100644 --- a/src/install/migration.zig +++ b/src/install/migration.zig @@ -675,9 +675,7 @@ pub fn migrateNPMLockfile( .workspace = wksp_path, }, }, - .behavior = .{ - .workspace = true, - }, + .behavior = Dependency.Behavior.workspace, }; resolutions_buf[0] = entry1.new_package_id; @@ -768,7 +766,7 @@ pub fn migrateNPMLockfile( .name_hash = name_hash, .version = version, .behavior = .{ - .normal = dep_key == .dependencies, + .prod = dep_key == .dependencies, .optional = dep_key == .optionalDependencies, .dev = dep_key == .devDependencies, .peer = dep_key == .peerDependencies, @@ -945,7 +943,7 @@ pub fn migrateNPMLockfile( .name_hash = name_hash, .version = version, .behavior = .{ - .normal = dep_key == .dependencies, + .prod = dep_key == .dependencies, .optional = true, .dev = dep_key == .devDependencies, .peer = dep_key == .peerDependencies, diff --git a/src/install/npm.zig b/src/install/npm.zig index 3eeb230c78..e0801946d1 100644 --- a/src/install/npm.zig +++ b/src/install/npm.zig @@ -9,6 +9,8 @@ const string = @import("../string_types.zig").string; const strings = @import("../string_immutable.zig"); const PackageManager = @import("./install.zig").PackageManager; const ExternalStringMap = @import("./install.zig").ExternalStringMap; +const ExternalPackageNameHashList = bun.install.ExternalPackageNameHashList; +const PackageNameHash = bun.install.PackageNameHash; const ExternalStringList = @import("./install.zig").ExternalStringList; const ExternalSlice = @import("./install.zig").ExternalSlice; const initializeStore = @import("./install.zig").initializeMiniStore; @@ -857,8 +859,6 @@ pub const Architecture = enum(u16) { } }; -const BigExternalString = Semver.BigExternalString; - pub const PackageVersion = extern struct { /// `"integrity"` field || `"shasum"` field /// https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md#dist @@ -880,6 +880,8 @@ pub const PackageVersion = extern struct { /// We keep it in the data layout so that if it turns out we do need it, we can add it without invalidating everyone's history. dev_dependencies: ExternalStringMap = ExternalStringMap{}, + bundled_dependencies: ExternalPackageNameHashList = .{}, + /// `"bin"` field in [package.json](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#bin) bin: Bin = Bin{}, @@ -909,10 +911,14 @@ pub const PackageVersion = extern struct { /// `hasInstallScript` field in registry API. has_install_script: bool = false, + + pub fn allDependenciesBundled(this: *const PackageVersion) bool { + return this.bundled_dependencies.isInvalid(); + } }; comptime { - if (@sizeOf(Npm.PackageVersion) != 224) { + if (@sizeOf(Npm.PackageVersion) != 232) { @compileError(std.fmt.comptimePrint("Npm.PackageVersion has unexpected size {d}", .{@sizeOf(Npm.PackageVersion)})); } } @@ -934,7 +940,6 @@ pub const NpmPackage = extern struct { versions_buf: VersionSlice = VersionSlice{}, string_lists_buf: ExternalStringList = ExternalStringList{}, - string_buf: BigExternalString = BigExternalString{}, }; pub const PackageManifest = struct { @@ -947,6 +952,7 @@ pub const PackageManifest = struct { external_strings_for_versions: []const ExternalString = &[_]ExternalString{}, package_versions: []const PackageVersion = &[_]PackageVersion{}, extern_strings_bin_entries: []const ExternalString = &[_]ExternalString{}, + bundled_deps_buf: []const PackageNameHash = &.{}, pub inline fn name(this: *const PackageManifest) string { return this.pkg.name.slice(this.string_buf); @@ -961,9 +967,10 @@ pub const PackageManifest = struct { } pub const Serializer = struct { - // - version 3: added serialization of registry url. it's used to invalidate when it changes - // - version 4: fixed bug with cpu & os tag not being added correctly - pub const version = "bun-npm-manifest-cache-v0.0.4\n"; + // - v0.0.3: added serialization of registry url. it's used to invalidate when it changes + // - v0.0.4: fixed bug with cpu & os tag not being added correctly + // - v0.0.5: added bundled dependencies + pub const version = "bun-npm-manifest-cache-v0.0.5\n"; const header_bytes: string = "#!/usr/bin/env bun\n" ++ version; pub const sizes = blk: { @@ -1581,6 +1588,12 @@ pub const PackageManifest = struct { var optional_peer_dep_names = std.ArrayList(u64).init(default_allocator); defer optional_peer_dep_names.deinit(); + var bundled_deps_set = bun.StringSet.init(allocator); + defer bundled_deps_set.deinit(); + var bundle_all_deps = false; + + var bundled_deps_count: usize = 0; + var string_builder = String.Builder{ .string_pool = string_pool, }; @@ -1693,6 +1706,22 @@ pub const PackageManifest = struct { } } + bundled_deps_set.map.clearRetainingCapacity(); + bundle_all_deps = false; + if (prop.value.?.get("bundleDependencies") orelse prop.value.?.get("bundledDependencies")) |bundled_deps_expr| { + switch (bundled_deps_expr.data) { + .e_boolean => |boolean| { + bundle_all_deps = boolean.value; + }, + .e_array => |arr| { + for (arr.slice()) |bundled_dep| { + try bundled_deps_set.insert(bundled_dep.asString(allocator) orelse continue); + } + }, + else => {}, + } + } + inline for (dependency_groups) |pair| { if (prop.value.?.asProperty(pair.prop)) |versioned_deps| { if (versioned_deps.expr.data == .e_object) { @@ -1700,6 +1729,11 @@ pub const PackageManifest = struct { const properties = versioned_deps.expr.data.e_object.properties.slice(); for (properties) |property| { if (property.key.?.asString(allocator)) |key| { + if (!bundle_all_deps and bundled_deps_set.swapRemove(key)) { + // swap remove the dependency name because it could exist in + // multiple behavior groups. + bundled_deps_count += 1; + } string_builder.count(key); string_builder.count(property.value.?.asString(allocator) orelse ""); } @@ -1745,6 +1779,8 @@ pub const PackageManifest = struct { var all_extern_strings_bin_entries = extern_strings_bin_entries; var all_tarball_url_strings = try allocator.alloc(ExternalString, tarball_urls_count); var tarball_url_strings = all_tarball_url_strings; + const bundled_deps_buf = try allocator.alloc(PackageNameHash, bundled_deps_count); + var bundled_deps_offset: usize = 0; if (versioned_packages.len > 0) { const versioned_packages_bytes = std.mem.sliceAsBytes(versioned_packages); @@ -1829,6 +1865,22 @@ pub const PackageManifest = struct { } if (!parsed_version.valid) continue; + bundled_deps_set.map.clearRetainingCapacity(); + bundle_all_deps = false; + if (prop.value.?.get("bundleDependencies") orelse prop.value.?.get("bundledDependencies")) |bundled_deps_expr| { + switch (bundled_deps_expr.data) { + .e_boolean => |boolean| { + bundle_all_deps = boolean.value; + }, + .e_array => |arr| { + for (arr.slice()) |bundled_dep| { + try bundled_deps_set.insert(bundled_dep.asString(allocator) orelse continue); + } + }, + else => {}, + } + } + var package_version: PackageVersion = empty_version; if (prop.value.?.asProperty("cpu")) |cpu_q| { @@ -2042,6 +2094,8 @@ pub const PackageManifest = struct { } } + const bundled_deps_begin = bundled_deps_offset; + var i: usize = 0; for (items) |item| { @@ -2051,6 +2105,11 @@ pub const PackageManifest = struct { this_names[i] = string_builder.append(ExternalString, name_str); this_versions[i] = string_builder.append(ExternalString, version_str); + if (!bundle_all_deps and bundled_deps_set.swapRemove(name_str)) { + bundled_deps_buf[bundled_deps_offset] = this_names[i].hash; + bundled_deps_offset += 1; + } + if (comptime is_peer) { if (std.mem.indexOfScalar(u64, optional_peer_dep_names.items, this_names[i].hash) != null) { // For optional peer dependencies, we store a length instead of a whole separate array @@ -2087,6 +2146,15 @@ pub const PackageManifest = struct { count = i; + if (bundle_all_deps) { + package_version.bundled_dependencies = ExternalPackageNameHashList.invalid; + } else { + package_version.bundled_dependencies = ExternalPackageNameHashList.init( + bundled_deps_buf, + bundled_deps_buf[bundled_deps_begin..bundled_deps_offset], + ); + } + var name_list = ExternalStringList.init(all_extern_strings, this_names); var version_list = ExternalStringList.init(version_extern_strings, this_versions); @@ -2368,15 +2436,11 @@ pub const PackageManifest = struct { result.external_strings_for_versions = version_extern_strings; result.package_versions = versioned_packages; result.extern_strings_bin_entries = all_extern_strings_bin_entries[0 .. all_extern_strings_bin_entries.len - extern_strings_bin_entries.len]; + result.bundled_deps_buf = bundled_deps_buf; result.pkg.public_max_age = public_max_age; if (string_builder.ptr) |ptr| { result.string_buf = ptr[0..string_builder.len]; - result.pkg.string_buf = BigExternalString{ - .off = 0, - .len = @as(u32, @truncate(string_builder.len)), - .hash = 0, - }; } return result; diff --git a/src/install/resolvers/folder_resolver.zig b/src/install/resolvers/folder_resolver.zig index 4528a41a27..dceff73f4b 100644 --- a/src/install/resolvers/folder_resolver.zig +++ b/src/install/resolvers/folder_resolver.zig @@ -77,6 +77,10 @@ pub const FolderResolution = union(Tag) { pub fn count(this: @This(), comptime Builder: type, builder: Builder, _: JSAst.Expr) void { builder.count(this.folder_path); } + + pub fn checkBundledDependencies() bool { + return tag == .folder or tag == .symlink; + } }; } @@ -99,6 +103,10 @@ pub const FolderResolution = union(Tag) { } pub fn count(_: @This(), comptime Builder: type, _: Builder, _: JSAst.Expr) void {} + + pub fn checkBundledDependencies() bool { + return true; + } }; const Paths = struct { @@ -165,7 +173,7 @@ pub const FolderResolution = union(Tag) { version: Dependency.Version, comptime features: Features, comptime ResolverType: type, - resolver: ResolverType, + resolver: *ResolverType, ) !Lockfile.Package { var body = Npm.Registry.BodyPool.get(manager.allocator); defer Npm.Registry.BodyPool.release(body); @@ -262,45 +270,63 @@ pub const FolderResolution = union(Tag) { if (entry.found_existing) return entry.value_ptr.*; const package: Lockfile.Package = switch (global_or_relative) { - .global => brk: { + .global => global: { var path: bun.PathBuffer = undefined; std.mem.copyForwards(u8, &path, non_normalized_path); - break :brk readPackageJSONFromDisk( + var resolver: SymlinkResolver = .{ + .folder_path = path[0..non_normalized_path.len], + }; + break :global readPackageJSONFromDisk( manager, abs, version, Features.link, SymlinkResolver, - SymlinkResolver{ .folder_path = path[0..non_normalized_path.len] }, + &resolver, ); }, .relative => |tag| switch (tag) { - .folder => readPackageJSONFromDisk( - manager, - abs, - version, - Features.folder, - Resolver, - Resolver{ .folder_path = rel }, - ), - .workspace => readPackageJSONFromDisk( - manager, - abs, - version, - Features.workspace, - WorkspaceResolver, - WorkspaceResolver{ .folder_path = rel }, - ), + .folder => folder: { + var resolver: Resolver = .{ + .folder_path = rel, + }; + break :folder readPackageJSONFromDisk( + manager, + abs, + version, + Features.folder, + Resolver, + &resolver, + ); + }, + .workspace => workspace: { + var resolver: WorkspaceResolver = .{ + .folder_path = rel, + }; + break :workspace readPackageJSONFromDisk( + manager, + abs, + version, + Features.workspace, + WorkspaceResolver, + &resolver, + ); + }, else => unreachable, }, - .cache_folder => readPackageJSONFromDisk( - manager, - abs, - version, - Features.npm, - CacheFolderResolver, - CacheFolderResolver{ .version = version.value.npm.version.toVersion() }, - ), + .cache_folder => cache_folder: { + var resolver: CacheFolderResolver = .{ + .version = version.value.npm.version.toVersion(), + }; + break :cache_folder readPackageJSONFromDisk( + manager, + abs, + version, + Features.npm, + CacheFolderResolver, + &resolver, + ); + }, } catch |err| { if (err == error.FileNotFound or err == error.ENOENT) { entry.value_ptr.* = .{ .err = error.MissingPackageJSON }; diff --git a/src/install/semver.zig b/src/install/semver.zig index d03e65ae78..a3f9ca2efd 100644 --- a/src/install/semver.zig +++ b/src/install/semver.zig @@ -704,34 +704,6 @@ pub const ExternalString = extern struct { } }; -pub const BigExternalString = extern struct { - off: u32 = 0, - len: u32 = 0, - hash: u64 = 0, - - pub fn from(in: string) BigExternalString { - return BigExternalString{ - .off = 0, - .len = @as(u32, @truncate(in.len)), - .hash = bun.Wyhash.hash(0, in), - }; - } - - pub inline fn init(buf: string, in: string, hash: u64) BigExternalString { - assert(@intFromPtr(buf.ptr) <= @intFromPtr(in.ptr) and ((@intFromPtr(in.ptr) + in.len) <= (@intFromPtr(buf.ptr) + buf.len))); - - return BigExternalString{ - .off = @as(u32, @truncate(@intFromPtr(in.ptr) - @intFromPtr(buf.ptr))), - .len = @as(u32, @truncate(in.len)), - .hash = hash, - }; - } - - pub fn slice(this: BigExternalString, buf: string) string { - return buf[this.off..][0..this.len]; - } -}; - pub const SlicedString = struct { buf: string, slice: string, @@ -771,14 +743,12 @@ pub const SlicedString = struct { } }; -const RawType = void; pub const Version = extern struct { major: u32 = 0, minor: u32 = 0, patch: u32 = 0, _tag_padding: [4]u8 = .{0} ** 4, // [see padding_checker.zig] tag: Tag = .{}, - // raw: RawType = RawType{}, /// Assumes that there is only one buffer for all the strings pub fn sortGt(ctx: []const u8, lhs: Version, rhs: Version) bool { @@ -1717,10 +1687,6 @@ pub const Version = extern struct { result.len = @as(u32, @intCast(i)); - if (comptime RawType != void) { - result.version.raw = sliced_string.sub(input[0..i]).external(); - } - return result; } diff --git a/src/resolver/resolver.zig b/src/resolver/resolver.zig index 557bd39e31..3ef06e90ee 100644 --- a/src/resolver/resolver.zig +++ b/src/resolver/resolver.zig @@ -1797,7 +1797,7 @@ pub const Resolver = struct { // check the global cache directory for a package.json file. const manager = r.getPackageManager(); var dependency_version = Dependency.Version{}; - var dependency_behavior = Dependency.Behavior.normal; + var dependency_behavior = Dependency.Behavior.prod; var string_buf = esm.version; // const initial_pending_tasks = manager.pending_tasks; diff --git a/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap b/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap index 2fca1723d8..423a2b49ae 100644 --- a/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap +++ b/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap @@ -25,7 +25,7 @@ exports[`dependency on workspace without version in package.json: version: * 1`] }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -152,7 +152,7 @@ exports[`dependency on workspace without version in package.json: version: *.*.* }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -279,7 +279,7 @@ exports[`dependency on workspace without version in package.json: version: =* 1` }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -406,7 +406,7 @@ exports[`dependency on workspace without version in package.json: version: kjwoe }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "dist_tag": { @@ -533,7 +533,7 @@ exports[`dependency on workspace without version in package.json: version: *.1.* }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -660,7 +660,7 @@ exports[`dependency on workspace without version in package.json: version: *-pre }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -787,7 +787,7 @@ exports[`dependency on workspace without version in package.json: version: 1 1`] }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -944,7 +944,7 @@ exports[`dependency on workspace without version in package.json: version: 1.* 1 }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -1101,7 +1101,7 @@ exports[`dependency on workspace without version in package.json: version: 1.1.* }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -1258,7 +1258,7 @@ exports[`dependency on workspace without version in package.json: version: 1.1.1 }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -1415,7 +1415,7 @@ exports[`dependency on workspace without version in package.json: version: *-pre }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -1572,7 +1572,7 @@ exports[`dependency on workspace without version in package.json: version: *+bui }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "id": 2, @@ -1729,7 +1729,7 @@ exports[`dependency on workspace without version in package.json: version: lates }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "dist_tag": { @@ -1886,7 +1886,7 @@ exports[`dependency on workspace without version in package.json: version: 1`] }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "dist_tag": { @@ -2043,7 +2043,7 @@ exports[`dependency on same name as workspace and dist-tag: with version 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, "workspace": true, }, "dist_tag": { diff --git a/test/cli/install/registry/bun-install-registry.test.ts b/test/cli/install/registry/bun-install-registry.test.ts index 00248aa9c6..846635dfd4 100644 --- a/test/cli/install/registry/bun-install-registry.test.ts +++ b/test/cli/install/registry/bun-install-registry.test.ts @@ -1898,6 +1898,314 @@ describe("text lockfile", () => { } }); +describe("bundledDependencies", () => { + for (const textLockfile of [true, false]) { + test(`(${textLockfile ? "bun.lock" : "bun.lockb"}) basic`, async () => { + await Promise.all([ + write( + packageJson, + JSON.stringify({ + name: "bundled-basic", + version: "1.1.1", + dependencies: { + "bundled-1": "1.0.0", + }, + }), + ), + ]); + + const cmd = textLockfile ? [bunExe(), "install", "--save-text-lockfile"] : [bunExe(), "install"]; + let { exited } = spawn({ + cmd, + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + }); + + expect(await exited).toBe(0); + + expect( + await Promise.all([ + exists(join(packageDir, "node_modules", "no-deps", "package.json")), + exists(join(packageDir, "node_modules", "bundled-1", "node_modules", "no-deps", "package.json")), + ]), + ).toEqual([false, true]); + + ({ exited } = spawn({ + cmd: [bunExe(), "install"], + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + })); + + expect(await exited).toBe(0); + + expect( + await Promise.all([ + exists(join(packageDir, "node_modules", "no-deps", "package.json")), + exists(join(packageDir, "node_modules", "bundled-1", "node_modules", "no-deps", "package.json")), + ]), + ).toEqual([false, true]); + }); + + test(`(${textLockfile ? "bun.lock" : "bun.lockb"}) bundledDependencies === true`, async () => { + await Promise.all([ + write( + packageJson, + JSON.stringify({ + name: "bundled-true", + version: "1.1.1", + dependencies: { + "bundled-true": "1.0.0", + }, + }), + ), + ]); + + const cmd = textLockfile ? [bunExe(), "install", "--save-text-lockfile"] : [bunExe(), "install"]; + let { exited } = spawn({ + cmd, + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + }); + + expect(await exited).toBe(0); + + async function check() { + return Promise.all([ + exists(join(packageDir, "node_modules", "no-deps", "package.json")), + exists(join(packageDir, "node_modules", "one-dep", "package.json")), + exists(join(packageDir, "node_modules", "bundled-true", "node_modules", "no-deps", "package.json")), + exists(join(packageDir, "node_modules", "bundled-true", "node_modules", "one-dep", "package.json")), + exists( + join( + packageDir, + "node_modules", + "bundled-true", + "node_modules", + "one-dep", + "node_modules", + "no-deps", + "package.json", + ), + ), + ]); + } + + expect(await check()).toEqual([false, false, true, true, true]); + + ({ exited } = spawn({ + cmd: [bunExe(), "install"], + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + })); + + expect(await exited).toBe(0); + + expect(await check()).toEqual([false, false, true, true, true]); + }); + + test(`(${textLockfile ? "bun.lock" : "bun.lockb"}) transitive bundled dependency collision`, async () => { + // Install a package with one bundled dependency and one regular dependency. + // The bundled dependency has a transitive dependency of the same regular dependency, + // but at a different version. Test that the regular dependency does not replace the + // other version (both should exist). + + await Promise.all([ + write( + packageJson, + JSON.stringify({ + name: "bundled-collision", + dependencies: { + "bundled-transitive": "1.0.0", + // prevent both transitive dependencies from hoisting + "no-deps": "npm:a-dep@1.0.2", + "one-dep": "npm:a-dep@1.0.3", + }, + }), + ), + ]); + + const cmd = textLockfile ? [bunExe(), "install", "--save-text-lockfile"] : [bunExe(), "install"]; + let { exited } = spawn({ + cmd, + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + }); + + expect(await exited).toBe(0); + + async function check() { + expect( + await Promise.all([ + file(join(packageDir, "node_modules", "no-deps", "package.json")).json(), + file( + join(packageDir, "node_modules", "bundled-transitive", "node_modules", "no-deps", "package.json"), + ).json(), + file( + join( + packageDir, + "node_modules", + "bundled-transitive", + "node_modules", + "one-dep", + "node_modules", + "no-deps", + "package.json", + ), + ).json(), + exists(join(packageDir, "node_modules", "bundled-transitive", "node_modules", "one-dep", "package.json")), + ]), + ).toEqual([ + { name: "a-dep", version: "1.0.2" }, + { name: "no-deps", version: "1.0.0" }, + { name: "no-deps", version: "1.0.1" }, + true, + ]); + } + + await check(); + + ({ exited } = spawn({ + cmd: [bunExe(), "install"], + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + })); + + expect(await exited).toBe(0); + + await check(); + }); + + test(`(${textLockfile ? "bun.lock" : "bun.lockb"}) git dependencies`, async () => { + await Promise.all([ + write( + packageJson, + JSON.stringify({ + name: "bundled-git", + dependencies: { + // bundledDependencies: ["zod"], + "install-test1": "dylan-conway/bundled-install-test#7824752", + // bundledDependencies: true, + "install-test2": "git+ssh://git@github.com/dylan-conway/bundled-install-test#1301309", + }, + }), + ), + write( + join(packageDir, "bunfig.toml"), + ` +[install] +cache = "${join(packageDir, ".bun-cache")}" + `, + ), + ]); + + const cmd = textLockfile ? [bunExe(), "install", "--save-text-lockfile"] : [bunExe(), "install"]; + let { exited } = spawn({ + cmd, + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + }); + + expect(await exited).toBe(0); + + async function check() { + expect( + await Promise.all([ + exists(join(packageDir, "node_modules", "zod", "package.json")), + exists(join(packageDir, "node_modules", "install-test1", "node_modules", "zod", "package.json")), + exists(join(packageDir, "node_modules", "install-test2", "node_modules", "zod", "package.json")), + ]), + ).toEqual([false, true, true]); + } + + await check(); + + ({ exited } = spawn({ + cmd: [bunExe(), "install"], + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + })); + + expect(await exited).toBe(0); + + await check(); + }); + + test(`(${textLockfile ? "bun.lock" : "bun.lockb"}) workspace dependencies bundle correctly`, async () => { + await Promise.all([ + write( + packageJson, + JSON.stringify({ + name: "bundled-workspace", + workspaces: ["packages/*"], + }), + ), + write( + join(packageDir, "packages", "pkg-one-one-one", "package.json"), + JSON.stringify({ + name: "pkg-one-one-one", + dependencies: { + "no-deps": "1.0.0", + "bundled-1": "1.0.0", + }, + bundledDependencies: ["no-deps"], + }), + ), + ]); + + const cmd = textLockfile ? [bunExe(), "install", "--save-text-lockfile"] : [bunExe(), "install"]; + let { exited } = spawn({ + cmd, + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + }); + + expect(await exited).toBe(0); + + async function check() { + expect( + await Promise.all([ + exists(join(packageDir, "node_modules", "no-deps", "package.json")), + exists(join(packageDir, "packages", "pkg-one-one-one", "node_modules", "no-deps", "package.json")), + exists(join(packageDir, "node_modules", "bundled-1", "node_modules", "no-deps", "package.json")), + ]), + ).toEqual([true, false, true]); + } + + await check(); + + ({ exited } = spawn({ + cmd: [bunExe(), "install"], + cwd: packageDir, + stdout: "ignore", + stderr: "ignore", + env, + })); + + expect(await exited).toBe(0); + + await check(); + }); + } +}); + describe("optionalDependencies", () => { for (const optional of [true, false]) { test(`exit code is ${optional ? 0 : 1} when ${optional ? "optional" : ""} dependency tarball is missing`, async () => { diff --git a/test/cli/install/registry/packages/bundled-1/bundled-1-1.0.0.tgz b/test/cli/install/registry/packages/bundled-1/bundled-1-1.0.0.tgz new file mode 100644 index 0000000000..a9f21c1b24 Binary files /dev/null and b/test/cli/install/registry/packages/bundled-1/bundled-1-1.0.0.tgz differ diff --git a/test/cli/install/registry/packages/bundled-1/package.json b/test/cli/install/registry/packages/bundled-1/package.json new file mode 100644 index 0000000000..f1c614636e --- /dev/null +++ b/test/cli/install/registry/packages/bundled-1/package.json @@ -0,0 +1,47 @@ +{ + "name": "bundled-1", + "versions": { + "1.0.0": { + "name": "bundled-1", + "version": "1.0.0", + "dependencies": { + "no-deps": "1.0.0" + }, + "bundleDependencies": [ + "no-deps" + ], + "_id": "bundled-1@1.0.0", + "_integrity": "sha512-YQ/maWZliKQyp1VIdYnPBH6qBHLCQ8Iy6G5vRZFXUHVXufiXT5aTjPVnLQ7xpVAgURFrzd/Fu1113ROLlaJBkQ==", + "_nodeVersion": "22.6.0", + "_npmVersion": "10.8.3", + "integrity": "sha512-YQ/maWZliKQyp1VIdYnPBH6qBHLCQ8Iy6G5vRZFXUHVXufiXT5aTjPVnLQ7xpVAgURFrzd/Fu1113ROLlaJBkQ==", + "shasum": "b9052ebbae98de99bf628f65d9150bdcad3dba9d", + "dist": { + "integrity": "sha512-YQ/maWZliKQyp1VIdYnPBH6qBHLCQ8Iy6G5vRZFXUHVXufiXT5aTjPVnLQ7xpVAgURFrzd/Fu1113ROLlaJBkQ==", + "shasum": "b9052ebbae98de99bf628f65d9150bdcad3dba9d", + "tarball": "http://http://localhost:4873/bundled-1/-/bundled-1-1.0.0.tgz" + }, + "contributors": [] + } + }, + "time": { + "modified": "2024-12-30T18:14:22.143Z", + "created": "2024-12-30T18:14:22.143Z", + "1.0.0": "2024-12-30T18:14:22.143Z" + }, + "users": {}, + "dist-tags": { + "latest": "1.0.0" + }, + "_uplinks": {}, + "_distfiles": {}, + "_attachments": { + "bundled-1-1.0.0.tgz": { + "shasum": "b9052ebbae98de99bf628f65d9150bdcad3dba9d", + "version": "1.0.0" + } + }, + "_rev": "", + "_id": "bundled-1", + "readme": "" +} \ No newline at end of file diff --git a/test/cli/install/registry/packages/bundled-transitive/bundled-transitive-1.0.0.tgz b/test/cli/install/registry/packages/bundled-transitive/bundled-transitive-1.0.0.tgz new file mode 100644 index 0000000000..9f11f84695 Binary files /dev/null and b/test/cli/install/registry/packages/bundled-transitive/bundled-transitive-1.0.0.tgz differ diff --git a/test/cli/install/registry/packages/bundled-transitive/package.json b/test/cli/install/registry/packages/bundled-transitive/package.json new file mode 100644 index 0000000000..45bb091b16 --- /dev/null +++ b/test/cli/install/registry/packages/bundled-transitive/package.json @@ -0,0 +1,48 @@ +{ + "name": "bundled-transitive", + "versions": { + "1.0.0": { + "name": "bundled-transitive", + "version": "1.0.0", + "dependencies": { + "no-deps": "1.0.0", + "one-dep": "1.0.0" + }, + "bundleDependencies": [ + "no-deps" + ], + "_id": "bundled-transitive@1.0.0", + "_integrity": "sha512-1CC+XKeBwsdseQEm4yOpfBzom2zEyrXQcgb6N4t83pL2DalEunEFO80yUpkzylsQYIH1uxGLI8G+4jhwvyH1bQ==", + "_nodeVersion": "22.6.0", + "_npmVersion": "10.8.3", + "integrity": "sha512-1CC+XKeBwsdseQEm4yOpfBzom2zEyrXQcgb6N4t83pL2DalEunEFO80yUpkzylsQYIH1uxGLI8G+4jhwvyH1bQ==", + "shasum": "8e0417711660590c7317add4a4a28388d4628cb1", + "dist": { + "integrity": "sha512-1CC+XKeBwsdseQEm4yOpfBzom2zEyrXQcgb6N4t83pL2DalEunEFO80yUpkzylsQYIH1uxGLI8G+4jhwvyH1bQ==", + "shasum": "8e0417711660590c7317add4a4a28388d4628cb1", + "tarball": "http://http://localhost:4873/bundled-transitive/-/bundled-transitive-1.0.0.tgz" + }, + "contributors": [] + } + }, + "time": { + "modified": "2024-12-30T22:05:28.027Z", + "created": "2024-12-30T22:05:28.027Z", + "1.0.0": "2024-12-30T22:05:28.027Z" + }, + "users": {}, + "dist-tags": { + "latest": "1.0.0" + }, + "_uplinks": {}, + "_distfiles": {}, + "_attachments": { + "bundled-transitive-1.0.0.tgz": { + "shasum": "8e0417711660590c7317add4a4a28388d4628cb1", + "version": "1.0.0" + } + }, + "_rev": "", + "_id": "bundled-transitive", + "readme": "" +} \ No newline at end of file diff --git a/test/cli/install/registry/packages/bundled-true/bundled-true-1.0.0.tgz b/test/cli/install/registry/packages/bundled-true/bundled-true-1.0.0.tgz new file mode 100644 index 0000000000..aad2709ff7 Binary files /dev/null and b/test/cli/install/registry/packages/bundled-true/bundled-true-1.0.0.tgz differ diff --git a/test/cli/install/registry/packages/bundled-true/package.json b/test/cli/install/registry/packages/bundled-true/package.json new file mode 100644 index 0000000000..1eb11cb00b --- /dev/null +++ b/test/cli/install/registry/packages/bundled-true/package.json @@ -0,0 +1,43 @@ +{ + "name": "bundled-true", + "versions": { + "1.0.0": { + "name": "bundled-true", + "version": "1.0.0", + "dependencies": { + "no-deps": "1.0.0", + "one-dep": "1.0.0" + }, + "bundleDependencies": true, + "_id": "bundled-true@1.0.0", + "_nodeVersion": "23.5.0", + "_npmVersion": "10.9.2", + "dist": { + "integrity": "sha512-VRh+fxqRwtIsAn8P8EH8sETvUD8Yh5zMwujrjISki+37DHQr7jfj8tZW0LaE5rGZW49BeT83zqddRoI237zA/Q==", + "shasum": "e45979379fbf62c4f92e9d7297374c37cb191537", + "tarball": "http://localhost:4873/bundled-true/-/bundled-true-1.0.0.tgz" + }, + "contributors": [] + } + }, + "time": { + "modified": "2024-12-30T21:52:11.900Z", + "created": "2024-12-30T21:52:11.900Z", + "1.0.0": "2024-12-30T21:52:11.900Z" + }, + "users": {}, + "dist-tags": { + "latest": "1.0.0" + }, + "_uplinks": {}, + "_distfiles": {}, + "_attachments": { + "bundled-true-1.0.0.tgz": { + "shasum": "e45979379fbf62c4f92e9d7297374c37cb191537", + "version": "1.0.0" + } + }, + "_rev": "", + "_id": "bundled-true", + "readme": "ERROR: No README data found!" +} diff --git a/test/integration/next-pages/test/__snapshots__/dev-server-ssr-100.test.ts.snap b/test/integration/next-pages/test/__snapshots__/dev-server-ssr-100.test.ts.snap index e241842aa7..b1bb52a16f 100644 --- a/test/integration/next-pages/test/__snapshots__/dev-server-ssr-100.test.ts.snap +++ b/test/integration/next-pages/test/__snapshots__/dev-server-ssr-100.test.ts.snap @@ -5,7 +5,7 @@ exports[`ssr works for 100-ish requests 1`] = ` "dependencies": [ { "behavior": { - "normal": true, + "prod": true, }, "id": 0, "literal": "20.7.0", @@ -18,7 +18,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 1, "literal": "18.2.22", @@ -31,7 +31,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 2, "literal": "18.2.7", @@ -44,7 +44,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 3, "literal": "10.4.16", @@ -57,7 +57,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 4, "literal": "^1.0.3", @@ -70,7 +70,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 5, "literal": "8.50.0", @@ -83,7 +83,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 6, "literal": "14.1.3", @@ -96,7 +96,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 7, "literal": "14.1.3", @@ -109,7 +109,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 8, "literal": "8.4.30", @@ -122,7 +122,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 9, "literal": "22.12.0", @@ -135,7 +135,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 10, "literal": "18.2.0", @@ -148,7 +148,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 11, "literal": "18.2.0", @@ -161,7 +161,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 12, "literal": "3.3.3", @@ -174,7 +174,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 13, "literal": "5.2.2", @@ -187,7 +187,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 14, "literal": "^5.0.2", @@ -200,7 +200,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 15, "literal": "^1.1.3", @@ -213,7 +213,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 16, "literal": "^1.18.2", @@ -226,7 +226,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 17, "literal": "^4.0.3", @@ -239,7 +239,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 18, "literal": "^8.4.23", @@ -252,7 +252,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 19, "literal": "^1.22.2", @@ -265,7 +265,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 20, "literal": "^3.32.0", @@ -278,7 +278,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 21, "literal": "^3.5.3", @@ -291,7 +291,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 22, "literal": "^3.2.12", @@ -304,7 +304,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 23, "literal": "^2.1.0", @@ -317,7 +317,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 24, "literal": "^1.2.2", @@ -330,7 +330,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 25, "literal": "^4.0.5", @@ -343,7 +343,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 26, "literal": "^1.0.0", @@ -356,7 +356,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 27, "literal": "^4.0.1", @@ -369,7 +369,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 28, "literal": "^6.0.2", @@ -382,7 +382,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 29, "literal": "^3.0.0", @@ -395,7 +395,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 30, "literal": "^3.0.0", @@ -408,7 +408,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 31, "literal": "^15.1.0", @@ -421,7 +421,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 32, "literal": "^6.0.1", @@ -434,7 +434,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 33, "literal": "^5.2.0", @@ -447,7 +447,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 34, "literal": "^4.0.1", @@ -460,7 +460,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 35, "literal": "^6.0.11", @@ -473,7 +473,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 36, "literal": "^3.0.0", @@ -486,7 +486,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 37, "literal": "^1.0.2", @@ -499,7 +499,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 38, "literal": "^2.3.4", @@ -512,7 +512,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 39, "literal": "^3.0.0", @@ -553,7 +553,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 42, "literal": "^3.3.6", @@ -566,7 +566,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 43, "literal": "^1.0.0", @@ -579,7 +579,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 44, "literal": "^1.0.2", @@ -592,7 +592,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 45, "literal": "^6.0.11", @@ -618,7 +618,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 47, "literal": "^4.0.0", @@ -631,7 +631,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 48, "literal": "^1.0.0", @@ -644,7 +644,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 49, "literal": "^1.1.7", @@ -670,7 +670,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 51, "literal": "^2.13.0", @@ -683,7 +683,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 52, "literal": "^1.0.7", @@ -696,7 +696,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 53, "literal": "^1.0.0", @@ -709,7 +709,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 54, "literal": "^2.0.0", @@ -722,7 +722,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 55, "literal": "^1.1.2", @@ -735,7 +735,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 56, "literal": "^2.3.0", @@ -748,7 +748,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 57, "literal": "^4.0.3", @@ -761,7 +761,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 58, "literal": "^2.1.1", @@ -774,7 +774,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 59, "literal": "^2.0.1", @@ -800,7 +800,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 61, "literal": "^3.0.3", @@ -813,7 +813,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 62, "literal": "^2.3.1", @@ -826,7 +826,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 63, "literal": "^7.1.1", @@ -839,7 +839,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 64, "literal": "^5.0.1", @@ -852,7 +852,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 65, "literal": "^7.0.0", @@ -865,7 +865,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 66, "literal": "^2.0.2", @@ -878,7 +878,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 67, "literal": "^1.2.3", @@ -891,7 +891,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 68, "literal": "^5.1.2", @@ -904,7 +904,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 69, "literal": "^1.3.0", @@ -917,7 +917,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 70, "literal": "^4.0.4", @@ -930,7 +930,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 71, "literal": "^4.0.1", @@ -943,7 +943,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 72, "literal": "2.1.5", @@ -956,7 +956,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 73, "literal": "^1.6.0", @@ -969,7 +969,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 74, "literal": "^1.0.4", @@ -982,7 +982,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 75, "literal": "2.0.5", @@ -995,7 +995,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 76, "literal": "^1.1.9", @@ -1008,7 +1008,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 77, "literal": "^1.2.2", @@ -1021,7 +1021,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 78, "literal": "~3.1.2", @@ -1034,7 +1034,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 79, "literal": "~3.0.2", @@ -1047,7 +1047,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 80, "literal": "~5.1.2", @@ -1060,7 +1060,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 81, "literal": "~2.1.0", @@ -1073,7 +1073,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 82, "literal": "~4.0.1", @@ -1086,7 +1086,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 83, "literal": "~3.0.0", @@ -1099,7 +1099,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 84, "literal": "~3.6.0", @@ -1125,7 +1125,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 86, "literal": "^2.2.1", @@ -1138,7 +1138,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 87, "literal": "^2.0.0", @@ -1151,7 +1151,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 88, "literal": "^3.0.0", @@ -1164,7 +1164,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 89, "literal": "^2.0.4", @@ -1177,7 +1177,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 90, "literal": "^0.3.2", @@ -1190,7 +1190,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 91, "literal": "^4.0.0", @@ -1203,7 +1203,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 92, "literal": "^10.3.10", @@ -1216,7 +1216,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 93, "literal": "^1.1.6", @@ -1229,7 +1229,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 94, "literal": "^2.7.0", @@ -1242,7 +1242,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 95, "literal": "^4.0.1", @@ -1255,7 +1255,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 96, "literal": "^0.1.9", @@ -1268,7 +1268,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 97, "literal": "^1.0.0", @@ -1281,7 +1281,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 98, "literal": "^4.0.1", @@ -1294,7 +1294,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 99, "literal": "^1.0.0", @@ -1307,7 +1307,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 100, "literal": ">= 3.1.0 < 4", @@ -1320,7 +1320,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 101, "literal": "^1.0.0", @@ -1333,7 +1333,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 102, "literal": "^3.1.0", @@ -1346,7 +1346,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 103, "literal": "^2.3.5", @@ -1359,7 +1359,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 104, "literal": "^9.0.1", @@ -1372,7 +1372,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 105, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -1385,7 +1385,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 106, "literal": "^1.10.1", @@ -1398,7 +1398,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 107, "literal": "^10.2.0", @@ -1411,7 +1411,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 108, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -1424,7 +1424,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 109, "literal": "^2.0.1", @@ -1437,7 +1437,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 110, "literal": "^1.0.0", @@ -1450,7 +1450,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 111, "literal": "^8.0.2", @@ -1476,7 +1476,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 113, "literal": "^5.1.2", @@ -1489,7 +1489,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 114, "is_alias": true, @@ -1503,7 +1503,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 115, "literal": "^7.0.1", @@ -1516,7 +1516,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 116, "is_alias": true, @@ -1530,7 +1530,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 117, "literal": "^8.1.0", @@ -1543,7 +1543,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 118, "is_alias": true, @@ -1557,7 +1557,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 119, "literal": "^4.0.0", @@ -1570,7 +1570,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 120, "literal": "^4.1.0", @@ -1583,7 +1583,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 121, "literal": "^6.0.0", @@ -1596,7 +1596,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 122, "literal": "^5.0.1", @@ -1609,7 +1609,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 123, "literal": "^8.0.0", @@ -1622,7 +1622,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 124, "literal": "^3.0.0", @@ -1635,7 +1635,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 125, "literal": "^6.0.1", @@ -1648,7 +1648,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 126, "literal": "^2.0.1", @@ -1661,7 +1661,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 127, "literal": "~1.1.4", @@ -1674,7 +1674,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 128, "literal": "^6.1.0", @@ -1687,7 +1687,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 129, "literal": "^5.0.1", @@ -1700,7 +1700,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 130, "literal": "^7.0.1", @@ -1713,7 +1713,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 131, "literal": "^6.0.1", @@ -1726,7 +1726,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 132, "literal": "^0.2.0", @@ -1739,7 +1739,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 133, "literal": "^9.2.2", @@ -1752,7 +1752,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 134, "literal": "^7.0.1", @@ -1765,7 +1765,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 135, "literal": "^7.0.0", @@ -1778,7 +1778,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 136, "literal": "^4.0.1", @@ -1791,7 +1791,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 137, "literal": "^3.1.0", @@ -1804,7 +1804,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 138, "literal": "^2.0.0", @@ -1817,7 +1817,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 139, "literal": "^2.0.1", @@ -1830,7 +1830,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 140, "literal": "^2.0.0", @@ -1843,7 +1843,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 141, "literal": "^3.0.0", @@ -1856,7 +1856,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 142, "literal": "^1.2.1", @@ -1869,7 +1869,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 143, "literal": "^1.4.10", @@ -1882,7 +1882,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 144, "literal": "^0.3.24", @@ -1895,7 +1895,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 145, "literal": "^3.1.0", @@ -1908,7 +1908,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 146, "literal": "^1.4.14", @@ -1921,7 +1921,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 147, "literal": "^0.23.0", @@ -1934,7 +1934,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 148, "literal": "^1.1.0", @@ -1960,7 +1960,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 150, "literal": "^1.1.0", @@ -1973,7 +1973,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 151, "literal": "^3.0.0 || ^4.0.0", @@ -1986,7 +1986,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 152, "literal": "^1.1.0", @@ -1999,7 +1999,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 153, "literal": "9.0.0", @@ -2012,7 +2012,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 154, "literal": "22.12.0", @@ -2025,7 +2025,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 155, "literal": "2.2.3", @@ -2038,7 +2038,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 156, "literal": "0.0.1299070", @@ -2051,7 +2051,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 157, "literal": "4.3.4", @@ -2064,7 +2064,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 158, "literal": "2.0.1", @@ -2077,7 +2077,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 159, "literal": "2.0.3", @@ -2090,7 +2090,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 160, "literal": "6.4.0", @@ -2103,7 +2103,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 161, "literal": "3.0.5", @@ -2116,7 +2116,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 162, "literal": "1.4.3", @@ -2129,7 +2129,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 163, "literal": "17.7.2", @@ -2142,7 +2142,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 164, "literal": "7.6.0", @@ -2155,7 +2155,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 165, "literal": "^6.0.0", @@ -2168,7 +2168,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 166, "literal": "^4.0.0", @@ -2181,7 +2181,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 167, "literal": "^8.0.1", @@ -2194,7 +2194,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 168, "literal": "^3.1.1", @@ -2207,7 +2207,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 169, "literal": "^2.0.5", @@ -2220,7 +2220,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 170, "literal": "^2.1.1", @@ -2233,7 +2233,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 171, "literal": "^4.2.3", @@ -2246,7 +2246,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 172, "literal": "^5.0.5", @@ -2259,7 +2259,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 173, "literal": "^21.1.1", @@ -2272,7 +2272,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 174, "literal": "^4.2.0", @@ -2285,7 +2285,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 175, "literal": "^6.0.1", @@ -2298,7 +2298,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 176, "literal": "^7.0.0", @@ -2311,7 +2311,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 177, "literal": "^5.2.1", @@ -2324,7 +2324,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 178, "literal": "^2.3.8", @@ -2337,7 +2337,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 179, "literal": "^1.3.1", @@ -2350,7 +2350,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 180, "literal": "^1.1.13", @@ -2363,7 +2363,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 181, "literal": "^3.0.0", @@ -2376,7 +2376,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 182, "literal": "^3.1.5", @@ -2415,7 +2415,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 185, "literal": "^2.1.0", @@ -2428,7 +2428,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 186, "literal": "^2.0.0", @@ -2441,7 +2441,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 187, "literal": "^2.0.0", @@ -2454,7 +2454,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 188, "literal": "^2.0.0", @@ -2467,7 +2467,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 189, "literal": "^2.18.0", @@ -2480,7 +2480,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 190, "literal": "^1.3.2", @@ -2493,7 +2493,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 191, "literal": "^1.0.1", @@ -2506,7 +2506,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 192, "literal": "^1.1.0", @@ -2532,7 +2532,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 194, "literal": "^1.6.4", @@ -2545,7 +2545,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 195, "literal": "^1.6.4", @@ -2558,7 +2558,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 196, "literal": "^1.2.0", @@ -2571,7 +2571,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 197, "literal": "^2.15.0", @@ -2584,7 +2584,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 198, "literal": "^1.1.0", @@ -2597,7 +2597,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 199, "literal": "^1.3.1", @@ -2610,7 +2610,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 200, "literal": "1", @@ -2623,7 +2623,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 201, "literal": "^1.4.0", @@ -2636,7 +2636,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 202, "literal": "^7.0.2", @@ -2649,7 +2649,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 203, "literal": "^4.3.4", @@ -2662,7 +2662,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 204, "literal": "^7.0.1", @@ -2675,7 +2675,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 205, "literal": "^7.0.3", @@ -2688,7 +2688,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 206, "literal": "^7.14.1", @@ -2701,7 +2701,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 207, "literal": "^7.0.1", @@ -2714,7 +2714,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 208, "literal": "^1.1.0", @@ -2727,7 +2727,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 209, "literal": "^8.0.2", @@ -2740,7 +2740,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 210, "literal": "^7.1.1", @@ -2753,7 +2753,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 211, "literal": "^4.3.4", @@ -2766,7 +2766,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 212, "literal": "^2.7.1", @@ -2779,7 +2779,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 213, "literal": "^9.0.5", @@ -2792,7 +2792,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 214, "literal": "^4.2.0", @@ -2805,7 +2805,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 215, "literal": "1.1.0", @@ -2818,7 +2818,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 216, "literal": "^1.1.3", @@ -2831,7 +2831,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 217, "literal": "2.1.2", @@ -2844,7 +2844,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 218, "literal": "^4.3.4", @@ -2857,7 +2857,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 219, "literal": "^0.23.0", @@ -2870,7 +2870,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 220, "literal": "^7.0.2", @@ -2883,7 +2883,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 221, "literal": "^4.3.4", @@ -2896,7 +2896,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 222, "literal": "^6.0.1", @@ -2909,7 +2909,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 223, "literal": "^7.0.0", @@ -2922,7 +2922,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 224, "literal": "^7.0.2", @@ -2935,7 +2935,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 225, "literal": "^7.0.0", @@ -2948,7 +2948,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 226, "literal": "^8.0.2", @@ -2961,7 +2961,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 227, "literal": "^5.0.0", @@ -2974,7 +2974,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 228, "literal": "^2.0.2", @@ -2987,7 +2987,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 229, "literal": "^0.13.4", @@ -3000,7 +3000,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 230, "literal": "^2.1.0", @@ -3013,7 +3013,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 231, "literal": "^4.0.1", @@ -3026,7 +3026,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 232, "literal": "^5.2.0", @@ -3039,7 +3039,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 233, "literal": "^2.0.2", @@ -3052,7 +3052,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 234, "literal": "^4.0.1", @@ -3078,7 +3078,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 236, "literal": "^2.0.1", @@ -3091,7 +3091,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 237, "literal": "^7.0.2", @@ -3104,7 +3104,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 238, "literal": "4", @@ -3117,7 +3117,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 239, "literal": "^7.1.0", @@ -3130,7 +3130,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 240, "literal": "^4.3.4", @@ -3143,7 +3143,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 241, "literal": "^5.0.2", @@ -3156,7 +3156,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 242, "literal": "^6.0.2", @@ -3169,7 +3169,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 243, "literal": "^4.3.4", @@ -3182,7 +3182,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 244, "literal": "^11.2.0", @@ -3195,7 +3195,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 245, "literal": "^4.2.0", @@ -3208,7 +3208,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 246, "literal": "^6.0.1", @@ -3221,7 +3221,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 247, "literal": "^2.0.0", @@ -3234,7 +3234,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 248, "literal": "^2.0.0", @@ -3260,7 +3260,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 250, "literal": "^4.1.1", @@ -3273,7 +3273,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 251, "literal": "^5.1.0", @@ -3286,7 +3286,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 252, "literal": "^2.10.0", @@ -3312,7 +3312,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 254, "literal": "*", @@ -3325,7 +3325,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 255, "literal": "~5.26.4", @@ -3338,7 +3338,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 256, "literal": "~1.1.0", @@ -3351,7 +3351,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 257, "literal": "~0.2.3", @@ -3364,7 +3364,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 258, "literal": "~1.2.0", @@ -3377,7 +3377,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 259, "literal": "^3.0.0", @@ -3390,7 +3390,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 260, "literal": "2.1.2", @@ -3403,7 +3403,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 261, "literal": "2.2.3", @@ -3416,7 +3416,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 262, "literal": "0.5.24", @@ -3429,7 +3429,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 263, "literal": "4.3.5", @@ -3442,7 +3442,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 264, "literal": "0.0.1299070", @@ -3455,7 +3455,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 265, "literal": "8.17.1", @@ -3496,7 +3496,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 268, "literal": "3.0.1", @@ -3509,7 +3509,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 269, "literal": "10.0.0", @@ -3522,7 +3522,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 270, "literal": "3.23.8", @@ -3548,7 +3548,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 272, "literal": "^2.2.1", @@ -3561,7 +3561,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 273, "literal": "^3.3.0", @@ -3574,7 +3574,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 274, "literal": "^4.1.0", @@ -3587,7 +3587,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 275, "literal": "^5.2.0", @@ -3614,7 +3614,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 277, "literal": "^7.0.0", @@ -3627,7 +3627,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 278, "literal": "^1.3.1", @@ -3640,7 +3640,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 279, "literal": "^2.3.0", @@ -3653,7 +3653,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 280, "literal": "^1.1.6", @@ -3666,7 +3666,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 281, "literal": "^0.2.1", @@ -3679,7 +3679,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 282, "literal": "^7.24.7", @@ -3692,7 +3692,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 283, "literal": "^1.0.0", @@ -3705,7 +3705,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 284, "literal": "^7.24.7", @@ -3718,7 +3718,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 285, "literal": "^2.4.2", @@ -3731,7 +3731,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 286, "literal": "^4.0.0", @@ -3744,7 +3744,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 287, "literal": "^1.0.0", @@ -3757,7 +3757,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 288, "literal": "^3.2.1", @@ -3770,7 +3770,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 289, "literal": "^1.0.5", @@ -3783,7 +3783,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 290, "literal": "^5.3.0", @@ -3796,7 +3796,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 291, "literal": "^3.0.0", @@ -3809,7 +3809,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 292, "literal": "^1.9.0", @@ -3822,7 +3822,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 293, "literal": "1.1.3", @@ -3835,7 +3835,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 294, "literal": "^2.0.1", @@ -3848,7 +3848,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 295, "literal": "^1.0.0", @@ -3861,7 +3861,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 296, "literal": "^4.0.0", @@ -3874,7 +3874,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 297, "literal": "^3.0.0", @@ -3887,7 +3887,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 298, "literal": "1.6.0", @@ -3900,7 +3900,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 299, "literal": "8.4.31", @@ -3913,7 +3913,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 300, "literal": "14.1.3", @@ -3926,7 +3926,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 301, "literal": "5.1.1", @@ -3939,7 +3939,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 302, "literal": "^4.2.11", @@ -3952,7 +3952,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 303, "literal": "0.5.2", @@ -3965,7 +3965,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 304, "literal": "^1.0.30001579", @@ -4149,7 +4149,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 318, "literal": "^2.4.0", @@ -4162,7 +4162,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 319, "literal": "0.0.1", @@ -4188,7 +4188,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 321, "literal": "^3.3.6", @@ -4201,7 +4201,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 322, "literal": "^1.0.0", @@ -4214,7 +4214,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 323, "literal": "^1.0.2", @@ -4227,7 +4227,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 324, "literal": "^1.1.0", @@ -4240,7 +4240,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 325, "literal": "^7.33.2", @@ -4253,7 +4253,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 326, "literal": "^2.28.1", @@ -4266,7 +4266,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 327, "literal": "^6.7.1", @@ -4279,7 +4279,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 328, "literal": "^1.3.3", @@ -4292,7 +4292,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 329, "literal": "14.1.3", @@ -4305,7 +4305,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 330, "literal": "^5.4.2 || ^6.0.0", @@ -4318,7 +4318,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 331, "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", @@ -4331,7 +4331,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 332, "literal": "^0.3.6", @@ -4344,7 +4344,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 333, "literal": "^3.5.2", @@ -4384,7 +4384,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 336, "literal": "^6.12.4", @@ -4397,7 +4397,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 337, "literal": "^0.4.1", @@ -4410,7 +4410,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 338, "literal": "^4.0.0", @@ -4423,7 +4423,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 339, "literal": "^4.3.2", @@ -4436,7 +4436,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 340, "literal": "^9.6.1", @@ -4449,7 +4449,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 341, "literal": "^5.2.0", @@ -4462,7 +4462,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 342, "literal": "^1.4.2", @@ -4475,7 +4475,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 343, "literal": "^2.0.2", @@ -4488,7 +4488,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 344, "literal": "^5.0.0", @@ -4501,7 +4501,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 345, "literal": "^13.19.0", @@ -4514,7 +4514,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 346, "literal": "^4.0.0", @@ -4527,7 +4527,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 347, "literal": "^4.1.0", @@ -4540,7 +4540,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 348, "literal": "^3.0.0", @@ -4553,7 +4553,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 349, "literal": "^1.4.0", @@ -4566,7 +4566,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 350, "literal": "^3.1.2", @@ -4579,7 +4579,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 351, "literal": "8.50.0", @@ -4592,7 +4592,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 352, "literal": "^0.9.3", @@ -4605,7 +4605,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 353, "literal": "^6.0.1", @@ -4618,7 +4618,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 354, "literal": "^0.2.0", @@ -4631,7 +4631,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 355, "literal": "^7.0.2", @@ -4644,7 +4644,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 356, "literal": "^6.0.2", @@ -4657,7 +4657,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 357, "literal": "^0.1.4", @@ -4670,7 +4670,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 358, "literal": "^7.2.2", @@ -4683,7 +4683,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 359, "literal": "^4.6.2", @@ -4696,7 +4696,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 360, "literal": "^3.0.3", @@ -4709,7 +4709,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 361, "literal": "^3.1.3", @@ -4722,7 +4722,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 362, "literal": "^1.4.0", @@ -4735,7 +4735,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 363, "literal": "^2.1.2", @@ -4748,7 +4748,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 364, "literal": "^1.2.8", @@ -4761,7 +4761,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 365, "literal": "^6.0.1", @@ -4774,7 +4774,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 366, "literal": "^3.4.3", @@ -4787,7 +4787,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 367, "literal": "^4.0.0", @@ -4800,7 +4800,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 368, "literal": "^4.6.1", @@ -4813,7 +4813,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 369, "literal": "^0.11.11", @@ -4826,7 +4826,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 370, "literal": "^4.2.0", @@ -4839,7 +4839,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 371, "literal": "^1.0.1", @@ -4852,7 +4852,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 372, "literal": "^1.0.1", @@ -4865,7 +4865,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 373, "literal": "^3.3.0", @@ -4891,7 +4891,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 375, "literal": "^2.0.2", @@ -4904,7 +4904,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 376, "literal": "^4.3.1", @@ -4917,7 +4917,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 377, "literal": "^3.0.5", @@ -4930,7 +4930,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 378, "literal": "^1.1.7", @@ -4943,7 +4943,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 379, "literal": "^1.0.0", @@ -4956,7 +4956,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 380, "literal": "0.0.1", @@ -4969,7 +4969,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 381, "literal": "^3.0.4", @@ -4982,7 +4982,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 382, "literal": "^3.2.9", @@ -4995,7 +4995,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 383, "literal": "^4.5.3", @@ -5008,7 +5008,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 384, "literal": "^3.0.2", @@ -5021,7 +5021,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 385, "literal": "^7.1.3", @@ -5034,7 +5034,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 386, "literal": "^1.0.0", @@ -5047,7 +5047,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 387, "literal": "^1.0.4", @@ -5060,7 +5060,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 388, "literal": "2", @@ -5073,7 +5073,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 389, "literal": "^3.1.1", @@ -5086,7 +5086,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 390, "literal": "^1.3.0", @@ -5099,7 +5099,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 391, "literal": "^1.0.0", @@ -5112,7 +5112,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 392, "literal": "^1.3.0", @@ -5125,7 +5125,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 393, "literal": "1", @@ -5138,7 +5138,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 394, "literal": "3.0.1", @@ -5151,7 +5151,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 395, "literal": "^6.12.4", @@ -5164,7 +5164,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 396, "literal": "^4.3.2", @@ -5177,7 +5177,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 397, "literal": "^9.6.0", @@ -5190,7 +5190,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 398, "literal": "^13.19.0", @@ -5203,7 +5203,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 399, "literal": "^5.2.0", @@ -5216,7 +5216,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 400, "literal": "^3.2.1", @@ -5229,7 +5229,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 401, "literal": "^4.1.0", @@ -5242,7 +5242,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 402, "literal": "^3.1.2", @@ -5255,7 +5255,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 403, "literal": "^3.1.1", @@ -5268,7 +5268,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 404, "literal": "^0.20.2", @@ -5281,7 +5281,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 405, "literal": "^8.9.0", @@ -5294,7 +5294,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 406, "literal": "^5.3.2", @@ -5307,7 +5307,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 407, "literal": "^3.4.1", @@ -5333,7 +5333,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 409, "literal": "^3.1.1", @@ -5346,7 +5346,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 410, "literal": "^2.0.0", @@ -5359,7 +5359,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 411, "literal": "^0.4.1", @@ -5372,7 +5372,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 412, "literal": "^4.2.2", @@ -5385,7 +5385,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 413, "literal": "^2.1.0", @@ -5398,7 +5398,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 414, "literal": "^4.3.0", @@ -5411,7 +5411,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 415, "literal": "^5.2.0", @@ -5424,7 +5424,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 416, "literal": "^5.2.0", @@ -5437,7 +5437,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 417, "literal": "^1.2.1", @@ -5450,7 +5450,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 418, "literal": "^0.1.3", @@ -5463,7 +5463,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 419, "literal": "^1.2.5", @@ -5476,7 +5476,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 420, "literal": "^0.4.0", @@ -5489,7 +5489,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 421, "literal": "^0.4.1", @@ -5502,7 +5502,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 422, "literal": "^2.0.6", @@ -5515,7 +5515,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 423, "literal": "^1.2.1", @@ -5528,7 +5528,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 424, "literal": "~0.4.0", @@ -5541,7 +5541,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 425, "literal": "^1.2.1", @@ -5554,7 +5554,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 426, "literal": "^2.0.2", @@ -5567,7 +5567,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 427, "literal": "^6.0.0", @@ -5580,7 +5580,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 428, "literal": "^4.0.0", @@ -5593,7 +5593,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 429, "literal": "^5.0.0", @@ -5606,7 +5606,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 430, "literal": "^3.0.2", @@ -5619,7 +5619,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 431, "literal": "^0.1.0", @@ -5632,7 +5632,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 432, "literal": "^5.1.0", @@ -5645,7 +5645,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 433, "literal": "^4.1.0", @@ -5658,7 +5658,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 434, "literal": "^7.1.0", @@ -5671,7 +5671,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 435, "literal": "^4.0.0", @@ -5684,7 +5684,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 436, "literal": "^4.3.4", @@ -5697,7 +5697,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 437, "literal": "^5.12.0", @@ -5710,7 +5710,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 438, "literal": "^2.7.4", @@ -5723,7 +5723,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 439, "literal": "^3.3.1", @@ -5736,7 +5736,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 440, "literal": "^4.5.0", @@ -5749,7 +5749,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 441, "literal": "^2.11.0", @@ -5762,7 +5762,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 442, "literal": "^4.0.3", @@ -5801,7 +5801,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 445, "literal": "^3.1.7", @@ -5814,7 +5814,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 446, "literal": "^1.2.3", @@ -5827,7 +5827,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 447, "literal": "^1.3.2", @@ -5840,7 +5840,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 448, "literal": "^1.3.2", @@ -5853,7 +5853,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 449, "literal": "^3.2.7", @@ -5866,7 +5866,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 450, "literal": "^2.1.0", @@ -5879,7 +5879,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 451, "literal": "^0.3.9", @@ -5892,7 +5892,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 452, "literal": "^2.8.0", @@ -5905,7 +5905,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 453, "literal": "^2.0.0", @@ -5918,7 +5918,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 454, "literal": "^2.13.1", @@ -5931,7 +5931,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 455, "literal": "^4.0.3", @@ -5944,7 +5944,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 456, "literal": "^3.1.2", @@ -5957,7 +5957,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 457, "literal": "^2.0.7", @@ -5970,7 +5970,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 458, "literal": "^1.0.1", @@ -5983,7 +5983,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 459, "literal": "^1.1.7", @@ -5996,7 +5996,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 460, "literal": "^6.3.1", @@ -6009,7 +6009,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 461, "literal": "^3.15.0", @@ -6035,7 +6035,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 463, "literal": "^0.0.29", @@ -6048,7 +6048,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 464, "literal": "^1.0.2", @@ -6061,7 +6061,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 465, "literal": "^1.2.6", @@ -6074,7 +6074,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 466, "literal": "^3.0.0", @@ -6087,7 +6087,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 467, "literal": "^1.2.0", @@ -6100,7 +6100,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 468, "literal": "^1.0.7", @@ -6113,7 +6113,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 469, "literal": "^1.2.1", @@ -6126,7 +6126,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 470, "literal": "^1.0.0", @@ -6139,7 +6139,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 471, "literal": "^1.3.0", @@ -6152,7 +6152,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 472, "literal": "^1.0.1", @@ -6165,7 +6165,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 473, "literal": "^1.0.0", @@ -6178,7 +6178,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 474, "literal": "^1.1.1", @@ -6191,7 +6191,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 475, "literal": "^1.0.0", @@ -6204,7 +6204,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 476, "literal": "^1.2.4", @@ -6217,7 +6217,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 477, "literal": "^1.3.0", @@ -6230,7 +6230,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 478, "literal": "^1.1.2", @@ -6243,7 +6243,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 479, "literal": "^1.0.1", @@ -6256,7 +6256,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 480, "literal": "^1.0.3", @@ -6269,7 +6269,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 481, "literal": "^2.0.0", @@ -6282,7 +6282,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 482, "literal": "^1.0.0", @@ -6295,7 +6295,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 483, "literal": "^1.3.0", @@ -6308,7 +6308,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 484, "literal": "^1.0.1", @@ -6321,7 +6321,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 485, "literal": "^1.1.3", @@ -6334,7 +6334,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 486, "literal": "^1.0.0", @@ -6347,7 +6347,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 487, "literal": "^1.3.0", @@ -6360,7 +6360,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 488, "literal": "^1.1.2", @@ -6373,7 +6373,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 489, "literal": "^1.2.4", @@ -6386,7 +6386,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 490, "literal": "^1.2.1", @@ -6399,7 +6399,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 491, "literal": "^1.1.4", @@ -6412,7 +6412,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 492, "literal": "^1.3.0", @@ -6425,7 +6425,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 493, "literal": "^1.1.2", @@ -6438,7 +6438,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 494, "literal": "^1.2.4", @@ -6451,7 +6451,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 495, "literal": "^1.0.1", @@ -6464,7 +6464,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 496, "literal": "^1.0.2", @@ -6477,7 +6477,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 497, "literal": "^1.0.7", @@ -6490,7 +6490,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 498, "literal": "^1.2.1", @@ -6503,7 +6503,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 499, "literal": "^1.23.2", @@ -6516,7 +6516,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 500, "literal": "^1.0.1", @@ -6529,7 +6529,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 501, "literal": "^1.0.3", @@ -6542,7 +6542,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 502, "literal": "^1.0.7", @@ -6555,7 +6555,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 503, "literal": "^1.0.7", @@ -6568,7 +6568,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 504, "literal": "^1.0.1", @@ -6581,7 +6581,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 505, "literal": "^1.0.1", @@ -6594,7 +6594,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 506, "literal": "^1.0.0", @@ -6607,7 +6607,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 507, "literal": "^1.0.0", @@ -6620,7 +6620,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 508, "literal": "^1.3.0", @@ -6633,7 +6633,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 509, "literal": "^1.0.0", @@ -6646,7 +6646,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 510, "literal": "^2.0.3", @@ -6659,7 +6659,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 511, "literal": "^1.2.1", @@ -6672,7 +6672,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 512, "literal": "^1.1.6", @@ -6685,7 +6685,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 513, "literal": "^1.2.4", @@ -6698,7 +6698,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 514, "literal": "^1.0.2", @@ -6711,7 +6711,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 515, "literal": "^1.0.3", @@ -6724,7 +6724,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 516, "literal": "^1.0.1", @@ -6737,7 +6737,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 517, "literal": "^1.0.2", @@ -6750,7 +6750,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 518, "literal": "^1.0.3", @@ -6763,7 +6763,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 519, "literal": "^1.0.3", @@ -6776,7 +6776,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 520, "literal": "^2.0.2", @@ -6789,7 +6789,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 521, "literal": "^1.0.7", @@ -6802,7 +6802,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 522, "literal": "^3.0.4", @@ -6815,7 +6815,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 523, "literal": "^1.2.7", @@ -6828,7 +6828,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 524, "literal": "^1.0.1", @@ -6841,7 +6841,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 525, "literal": "^2.0.3", @@ -6854,7 +6854,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 526, "literal": "^1.1.4", @@ -6867,7 +6867,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 527, "literal": "^1.0.3", @@ -6880,7 +6880,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 528, "literal": "^1.0.7", @@ -6893,7 +6893,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 529, "literal": "^1.1.13", @@ -6906,7 +6906,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 530, "literal": "^1.0.2", @@ -6919,7 +6919,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 531, "literal": "^1.13.1", @@ -6932,7 +6932,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 532, "literal": "^1.1.1", @@ -6945,7 +6945,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 533, "literal": "^4.1.5", @@ -6958,7 +6958,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 534, "literal": "^1.5.2", @@ -6971,7 +6971,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 535, "literal": "^1.1.2", @@ -6984,7 +6984,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 536, "literal": "^1.0.3", @@ -6997,7 +6997,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 537, "literal": "^1.2.9", @@ -7010,7 +7010,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 538, "literal": "^1.0.8", @@ -7023,7 +7023,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 539, "literal": "^1.0.8", @@ -7036,7 +7036,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 540, "literal": "^1.0.2", @@ -7049,7 +7049,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 541, "literal": "^1.0.1", @@ -7062,7 +7062,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 542, "literal": "^1.0.2", @@ -7075,7 +7075,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 543, "literal": "^1.0.6", @@ -7088,7 +7088,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 544, "literal": "^1.0.2", @@ -7101,7 +7101,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 545, "literal": "^1.1.15", @@ -7114,7 +7114,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 546, "literal": "^1.0.7", @@ -7127,7 +7127,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 547, "literal": "^1.0.7", @@ -7140,7 +7140,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 548, "literal": "^0.3.3", @@ -7153,7 +7153,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 549, "literal": "^1.0.1", @@ -7166,7 +7166,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 550, "literal": "^1.0.2", @@ -7179,7 +7179,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 551, "literal": "^1.0.3", @@ -7192,7 +7192,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 552, "literal": "^1.1.3", @@ -7205,7 +7205,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 553, "literal": "^1.0.0", @@ -7218,7 +7218,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 554, "literal": "^1.0.2", @@ -7231,7 +7231,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 555, "literal": "^1.0.2", @@ -7244,7 +7244,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 556, "literal": "^1.0.3", @@ -7257,7 +7257,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 557, "literal": "^1.0.2", @@ -7270,7 +7270,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 558, "literal": "^1.0.1", @@ -7283,7 +7283,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 559, "literal": "^1.1.0", @@ -7296,7 +7296,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 560, "literal": "^1.0.4", @@ -7309,7 +7309,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 561, "literal": "^1.0.5", @@ -7322,7 +7322,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 562, "literal": "^1.0.3", @@ -7335,7 +7335,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 563, "literal": "^1.0.2", @@ -7348,7 +7348,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 564, "literal": "^1.0.0", @@ -7361,7 +7361,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 565, "literal": "^1.0.0", @@ -7374,7 +7374,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 566, "literal": "^1.0.2", @@ -7387,7 +7387,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 567, "literal": "^1.0.0", @@ -7400,7 +7400,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 568, "literal": "^1.0.1", @@ -7413,7 +7413,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 569, "literal": "^1.0.7", @@ -7426,7 +7426,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 570, "literal": "^0.3.3", @@ -7439,7 +7439,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 571, "literal": "^1.0.1", @@ -7452,7 +7452,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 572, "literal": "^1.0.3", @@ -7465,7 +7465,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 573, "literal": "^1.1.13", @@ -7478,7 +7478,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 574, "literal": "^1.0.0", @@ -7491,7 +7491,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 575, "literal": "^1.1.14", @@ -7504,7 +7504,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 576, "literal": "^1.0.7", @@ -7517,7 +7517,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 577, "literal": "^1.0.7", @@ -7530,7 +7530,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 578, "literal": "^0.3.3", @@ -7543,7 +7543,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 579, "literal": "^1.0.1", @@ -7556,7 +7556,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 580, "literal": "^1.0.3", @@ -7569,7 +7569,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 581, "literal": "^1.1.13", @@ -7582,7 +7582,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 582, "literal": "^1.0.7", @@ -7595,7 +7595,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 583, "literal": "^0.3.3", @@ -7608,7 +7608,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 584, "literal": "^1.0.1", @@ -7621,7 +7621,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 585, "literal": "^1.0.3", @@ -7634,7 +7634,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 586, "literal": "^1.1.13", @@ -7647,7 +7647,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 587, "literal": "^1.0.7", @@ -7660,7 +7660,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 588, "literal": "^1.3.0", @@ -7673,7 +7673,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 589, "literal": "^1.1.13", @@ -7686,7 +7686,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 590, "literal": "^1.0.7", @@ -7699,7 +7699,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 591, "literal": "^1.2.1", @@ -7712,7 +7712,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 592, "literal": "^1.0.0", @@ -7725,7 +7725,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 593, "literal": "^1.0.7", @@ -7738,7 +7738,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 594, "literal": "^1.2.1", @@ -7751,7 +7751,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 595, "literal": "^1.0.0", @@ -7764,7 +7764,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 596, "literal": "^1.0.7", @@ -7777,7 +7777,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 597, "literal": "^1.2.1", @@ -7790,7 +7790,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 598, "literal": "^1.23.0", @@ -7803,7 +7803,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 599, "literal": "^1.0.0", @@ -7816,7 +7816,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 600, "literal": "^1.0.6", @@ -7829,7 +7829,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 601, "literal": "^1.3.0", @@ -7842,7 +7842,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 602, "literal": "^1.1.4", @@ -7855,7 +7855,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 603, "literal": "^1.0.2", @@ -7868,7 +7868,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 604, "literal": "^1.0.0", @@ -7881,7 +7881,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 605, "literal": "^1.0.7", @@ -7894,7 +7894,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 606, "literal": "^1.2.4", @@ -7907,7 +7907,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 607, "literal": "^1.0.3", @@ -7920,7 +7920,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 608, "literal": "^2.0.5", @@ -7933,7 +7933,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 609, "literal": "^1.0.6", @@ -7946,7 +7946,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 610, "literal": "^1.2.1", @@ -7959,7 +7959,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 611, "literal": "^1.3.0", @@ -7972,7 +7972,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 612, "literal": "^2.0.1", @@ -7985,7 +7985,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 613, "literal": "^1.1.4", @@ -7998,7 +7998,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 614, "literal": "^1.3.0", @@ -8011,7 +8011,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 615, "literal": "^1.2.3", @@ -8024,7 +8024,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 616, "literal": "^1.0.2", @@ -8037,7 +8037,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 617, "literal": "^1.0.5", @@ -8050,7 +8050,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 618, "literal": "^1.2.1", @@ -8063,7 +8063,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 619, "literal": "^1.0.3", @@ -8076,7 +8076,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 620, "literal": "^1.1.1", @@ -8089,7 +8089,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 621, "literal": "^1.0.2", @@ -8102,7 +8102,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 622, "literal": "^1.0.7", @@ -8115,7 +8115,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 623, "literal": "^1.1.13", @@ -8128,7 +8128,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 624, "literal": "^1.0.2", @@ -8141,7 +8141,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 625, "literal": "^1.2.1", @@ -8154,7 +8154,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 626, "literal": "^1.3.0", @@ -8167,7 +8167,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 627, "literal": "^2.0.0", @@ -8180,7 +8180,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 628, "literal": "^1.0.4", @@ -8193,7 +8193,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 629, "literal": "^1.0.7", @@ -8206,7 +8206,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 630, "literal": "^1.3.0", @@ -8219,7 +8219,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 631, "literal": "^1.2.4", @@ -8232,7 +8232,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 632, "literal": "^1.13.1", @@ -8245,7 +8245,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 633, "literal": "^1.2.1", @@ -8258,7 +8258,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 634, "literal": "^1.0.1", @@ -8271,7 +8271,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 635, "literal": "^1.0.5", @@ -8284,7 +8284,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 636, "literal": "^1.3.0", @@ -8297,7 +8297,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 637, "literal": "^1.2.4", @@ -8310,7 +8310,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 638, "literal": "^1.0.2", @@ -8323,7 +8323,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 639, "literal": "^1.2.0", @@ -8336,7 +8336,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 640, "literal": "^1.22.1", @@ -8349,7 +8349,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 641, "literal": "^1.2.3", @@ -8362,7 +8362,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 642, "literal": "^1.1.4", @@ -8375,7 +8375,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 643, "literal": "^1.0.1", @@ -8388,7 +8388,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 644, "literal": "^1.0.2", @@ -8401,7 +8401,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 645, "literal": "^1.0.0", @@ -8414,7 +8414,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 646, "literal": "^1.2.4", @@ -8427,7 +8427,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 647, "literal": "^1.0.2", @@ -8440,7 +8440,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 648, "literal": "^2.0.1", @@ -8453,7 +8453,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 649, "literal": "^1.0.6", @@ -8466,7 +8466,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 650, "literal": "^1.3.0", @@ -8479,7 +8479,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 651, "literal": "^1.0.1", @@ -8492,7 +8492,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 652, "literal": "^1.0.7", @@ -8505,7 +8505,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 653, "literal": "^1.3.0", @@ -8518,7 +8518,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 654, "literal": "^1.0.1", @@ -8531,7 +8531,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 655, "literal": "^1.0.6", @@ -8544,7 +8544,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 656, "literal": "^1.3.0", @@ -8557,7 +8557,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 657, "literal": "^1.0.1", @@ -8570,7 +8570,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 658, "literal": "^1.0.1", @@ -8583,7 +8583,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 659, "literal": "^1.0.5", @@ -8596,7 +8596,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 660, "literal": "^1.2.1", @@ -8609,7 +8609,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 661, "literal": "^1.22.3", @@ -8622,7 +8622,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 662, "literal": "^1.2.1", @@ -8635,7 +8635,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 663, "literal": "^1.2.3", @@ -8648,7 +8648,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 664, "literal": "^3.0.4", @@ -8661,7 +8661,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 665, "literal": "^1.0.2", @@ -8674,7 +8674,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 666, "literal": "^1.0.5", @@ -8687,7 +8687,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 667, "literal": "^3.0.4", @@ -8700,7 +8700,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 668, "literal": "^1.0.7", @@ -8713,7 +8713,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 669, "literal": "^1.2.1", @@ -8726,7 +8726,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 670, "literal": "^1.23.2", @@ -8739,7 +8739,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 671, "literal": "^1.0.0", @@ -8752,7 +8752,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 672, "literal": "^3.2.7", @@ -8765,7 +8765,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 673, "literal": "^2.1.1", @@ -8778,7 +8778,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 674, "literal": "^3.2.7", @@ -8791,7 +8791,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 675, "literal": "^2.13.0", @@ -8804,7 +8804,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 676, "literal": "^1.22.4", @@ -8817,7 +8817,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 677, "literal": "^2.0.2", @@ -8830,7 +8830,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 678, "literal": "^1.0.2", @@ -8843,7 +8843,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 679, "literal": "^1.2.0", @@ -8856,7 +8856,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 680, "literal": "^1.22.1", @@ -8869,7 +8869,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 681, "literal": "^1.0.0", @@ -8882,7 +8882,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 682, "literal": "^2.0.0", @@ -8895,7 +8895,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 683, "literal": "^1.0.2", @@ -8908,7 +8908,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 684, "literal": "^1.2.0", @@ -8921,7 +8921,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 685, "literal": "^1.22.1", @@ -8934,7 +8934,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 686, "literal": "^1.0.0", @@ -8947,7 +8947,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 687, "literal": "^1.0.7", @@ -8960,7 +8960,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 688, "literal": "^1.2.1", @@ -8973,7 +8973,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 689, "literal": "^1.23.2", @@ -8986,7 +8986,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 690, "literal": "^1.3.0", @@ -8999,7 +8999,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 691, "literal": "^1.0.0", @@ -9012,7 +9012,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 692, "literal": "^1.0.2", @@ -9025,7 +9025,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 693, "literal": "^1.0.7", @@ -9038,7 +9038,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 694, "literal": "^1.2.1", @@ -9051,7 +9051,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 695, "literal": "^1.23.2", @@ -9064,7 +9064,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 696, "literal": "^1.0.0", @@ -9077,7 +9077,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 697, "literal": "^1.2.4", @@ -9090,7 +9090,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 698, "literal": "^1.0.7", @@ -9103,7 +9103,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 699, "literal": "^1.0.0", @@ -9116,7 +9116,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 700, "literal": "^4.2.4", @@ -9129,7 +9129,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 701, "literal": "^2.2.0", @@ -9155,7 +9155,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 703, "literal": "^4.3.4", @@ -9168,7 +9168,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 704, "literal": "6.21.0", @@ -9181,7 +9181,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 705, "literal": "6.21.0", @@ -9194,7 +9194,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 706, "literal": "6.21.0", @@ -9207,7 +9207,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 707, "literal": "6.21.0", @@ -9233,7 +9233,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 709, "literal": "^4.3.4", @@ -9246,7 +9246,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 710, "literal": "^11.1.0", @@ -9259,7 +9259,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 711, "literal": "^7.5.4", @@ -9272,7 +9272,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 712, "literal": "^4.0.3", @@ -9285,7 +9285,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 713, "literal": "9.0.3", @@ -9298,7 +9298,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 714, "literal": "^1.0.1", @@ -9311,7 +9311,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 715, "literal": "6.21.0", @@ -9324,7 +9324,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 716, "literal": "6.21.0", @@ -9337,7 +9337,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 717, "literal": "^3.4.1", @@ -9350,7 +9350,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 718, "literal": "6.21.0", @@ -9376,7 +9376,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 720, "literal": "^2.0.1", @@ -9389,7 +9389,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 721, "literal": "^2.1.0", @@ -9402,7 +9402,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 722, "literal": "^3.0.1", @@ -9415,7 +9415,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 723, "literal": "^3.2.9", @@ -9428,7 +9428,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 724, "literal": "^5.2.0", @@ -9441,7 +9441,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 725, "literal": "^1.4.1", @@ -9454,7 +9454,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 726, "literal": "^3.0.0", @@ -9467,7 +9467,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 727, "literal": "^4.0.0", @@ -9480,7 +9480,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 728, "literal": "6.21.0", @@ -9493,7 +9493,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 729, "literal": "6.21.0", @@ -9506,7 +9506,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 730, "literal": "10.3.10", @@ -9519,7 +9519,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 731, "literal": "^7.23.2", @@ -9532,7 +9532,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 732, "literal": "^5.3.0", @@ -9545,7 +9545,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 733, "literal": "^3.1.7", @@ -9558,7 +9558,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 734, "literal": "^1.3.2", @@ -9571,7 +9571,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 735, "literal": "^0.0.8", @@ -9584,7 +9584,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 736, "literal": "=4.7.0", @@ -9597,7 +9597,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 737, "literal": "^3.2.1", @@ -9610,7 +9610,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 738, "literal": "^1.0.8", @@ -9623,7 +9623,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 739, "literal": "^9.2.2", @@ -9636,7 +9636,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 740, "literal": "^1.0.15", @@ -9649,7 +9649,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 741, "literal": "^2.0.0", @@ -9662,7 +9662,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 742, "literal": "^3.3.5", @@ -9675,7 +9675,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 743, "literal": "^1.0.9", @@ -9688,7 +9688,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 744, "literal": "^3.1.2", @@ -9701,7 +9701,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 745, "literal": "^1.1.7", @@ -9714,7 +9714,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 746, "literal": "^2.0.7", @@ -9740,7 +9740,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 748, "literal": "^1.0.7", @@ -9753,7 +9753,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 749, "literal": "^1.2.1", @@ -9766,7 +9766,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 750, "literal": "^1.0.0", @@ -9779,7 +9779,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 751, "literal": "^0.3.20", @@ -9792,7 +9792,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 752, "literal": "^3.1.6", @@ -9805,7 +9805,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 753, "literal": "^1.3.1", @@ -9818,7 +9818,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 754, "literal": "^4.1.4", @@ -9831,7 +9831,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 755, "literal": "^1.1.6", @@ -9844,7 +9844,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 756, "literal": "^1.0.7", @@ -9857,7 +9857,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 757, "literal": "^1.2.1", @@ -9870,7 +9870,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 758, "literal": "^1.23.3", @@ -9883,7 +9883,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 759, "literal": "^1.3.0", @@ -9896,7 +9896,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 760, "literal": "^2.0.3", @@ -9909,7 +9909,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 761, "literal": "^1.1.2", @@ -9922,7 +9922,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 762, "literal": "^1.2.4", @@ -9935,7 +9935,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 763, "literal": "^1.0.3", @@ -9948,7 +9948,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 764, "literal": "^1.0.2", @@ -9961,7 +9961,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 765, "literal": "^1.0.3", @@ -9974,7 +9974,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 766, "literal": "^1.0.3", @@ -9987,7 +9987,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 767, "literal": "^1.0.7", @@ -10000,7 +10000,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 768, "literal": "^1.1.2", @@ -10013,7 +10013,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 769, "literal": "^1.1.2", @@ -10026,7 +10026,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 770, "literal": "^1.2.1", @@ -10039,7 +10039,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 771, "literal": "^1.2.1", @@ -10052,7 +10052,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 772, "literal": "^1.0.3", @@ -10065,7 +10065,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 773, "literal": "^1.0.4", @@ -10078,7 +10078,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 774, "literal": "^2.0.1", @@ -10091,7 +10091,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 775, "literal": "^1.0.7", @@ -10104,7 +10104,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 776, "literal": "^1.2.1", @@ -10117,7 +10117,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 777, "literal": "^1.23.1", @@ -10130,7 +10130,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 778, "literal": "^1.3.0", @@ -10143,7 +10143,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 779, "literal": "^1.2.4", @@ -10156,7 +10156,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 780, "literal": "^1.0.3", @@ -10169,7 +10169,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 781, "literal": "^1.1.3", @@ -10182,7 +10182,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 782, "literal": "^1.1.5", @@ -10195,7 +10195,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 783, "literal": "^1.0.0", @@ -10208,7 +10208,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 784, "literal": "^2.0.0", @@ -10221,7 +10221,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 785, "literal": "^1.0.5", @@ -10234,7 +10234,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 786, "literal": "^1.0.2", @@ -10247,7 +10247,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 787, "literal": "^1.0.10", @@ -10260,7 +10260,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 788, "literal": "^1.1.4", @@ -10273,7 +10273,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 789, "literal": "^1.0.2", @@ -10286,7 +10286,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 790, "literal": "^2.0.5", @@ -10299,7 +10299,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 791, "literal": "^1.0.2", @@ -10312,7 +10312,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 792, "literal": "^1.0.1", @@ -10325,7 +10325,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 793, "literal": "^1.1.9", @@ -10338,7 +10338,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 794, "literal": "^2.0.3", @@ -10351,7 +10351,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 795, "literal": "^2.0.3", @@ -10364,7 +10364,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 796, "literal": "^2.0.2", @@ -10377,7 +10377,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 797, "literal": "^2.0.3", @@ -10390,7 +10390,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 798, "literal": "^1.0.7", @@ -10403,7 +10403,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 799, "literal": "^1.2.4", @@ -10416,7 +10416,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 800, "literal": "^1.0.0", @@ -10429,7 +10429,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 801, "literal": "^1.0.2", @@ -10442,7 +10442,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 802, "literal": "^1.0.0", @@ -10455,7 +10455,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 803, "literal": "^2.0.3", @@ -10468,7 +10468,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 804, "literal": "^2.0.3", @@ -10481,7 +10481,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 805, "literal": "^0.14.0", @@ -10494,7 +10494,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 806, "literal": "^3.1.8", @@ -10507,7 +10507,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 807, "literal": "^1.2.5", @@ -10520,7 +10520,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 808, "literal": "^1.3.2", @@ -10533,7 +10533,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 809, "literal": "^1.1.2", @@ -10546,7 +10546,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 810, "literal": "^1.1.3", @@ -10559,7 +10559,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 811, "literal": "^2.1.0", @@ -10572,7 +10572,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 812, "literal": "^1.0.19", @@ -10585,7 +10585,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 813, "literal": "^5.3.0", @@ -10598,7 +10598,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 814, "literal": "^2.4.1 || ^3.0.0", @@ -10611,7 +10611,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 815, "literal": "^3.1.2", @@ -10624,7 +10624,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 816, "literal": "^1.1.8", @@ -10637,7 +10637,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 817, "literal": "^2.0.8", @@ -10650,7 +10650,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 818, "literal": "^1.1.4", @@ -10663,7 +10663,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 819, "literal": "^1.2.0", @@ -10676,7 +10676,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 820, "literal": "^15.8.1", @@ -10689,7 +10689,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 821, "literal": "^2.0.0-next.5", @@ -10702,7 +10702,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 822, "literal": "^6.3.1", @@ -10715,7 +10715,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 823, "literal": "^4.0.11", @@ -10741,7 +10741,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 825, "literal": "^1.0.7", @@ -10754,7 +10754,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 826, "literal": "^1.2.1", @@ -10767,7 +10767,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 827, "literal": "^1.23.2", @@ -10780,7 +10780,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 828, "literal": "^1.3.0", @@ -10793,7 +10793,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 829, "literal": "^1.0.0", @@ -10806,7 +10806,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 830, "literal": "^1.2.4", @@ -10819,7 +10819,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 831, "literal": "^1.0.1", @@ -10832,7 +10832,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 832, "literal": "^1.0.3", @@ -10845,7 +10845,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 833, "literal": "^1.0.7", @@ -10858,7 +10858,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 834, "literal": "^1.5.2", @@ -10871,7 +10871,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 835, "literal": "^2.0.2", @@ -10884,7 +10884,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 836, "literal": "^1.0.6", @@ -10897,7 +10897,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 837, "literal": "^2.13.0", @@ -10910,7 +10910,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 838, "literal": "^1.0.7", @@ -10923,7 +10923,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 839, "literal": "^1.0.0", @@ -10936,7 +10936,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 840, "literal": "^1.4.0", @@ -10949,7 +10949,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 841, "literal": "^4.1.1", @@ -10962,7 +10962,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 842, "literal": "^16.13.1", @@ -10975,7 +10975,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 843, "literal": "^1.2.1", @@ -10988,7 +10988,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 844, "literal": "^1.23.2", @@ -11001,7 +11001,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 845, "literal": "^1.0.0", @@ -11014,7 +11014,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 846, "literal": "^1.0.7", @@ -11027,7 +11027,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 847, "literal": "^1.2.1", @@ -11040,7 +11040,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 848, "literal": "^1.23.3", @@ -11053,7 +11053,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 849, "literal": "^1.3.0", @@ -11066,7 +11066,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 850, "literal": "^1.0.2", @@ -11079,7 +11079,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 851, "literal": "^1.0.2", @@ -11092,7 +11092,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 852, "literal": "^1.2.0", @@ -11105,7 +11105,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 853, "literal": "^1.22.1", @@ -11118,7 +11118,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 854, "literal": "^1.0.0", @@ -11131,7 +11131,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 855, "literal": "^1.0.7", @@ -11144,7 +11144,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 856, "literal": "^1.2.1", @@ -11157,7 +11157,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 857, "literal": "^1.23.2", @@ -11170,7 +11170,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 858, "literal": "^1.3.0", @@ -11183,7 +11183,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 859, "literal": "^1.0.0", @@ -11196,7 +11196,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 860, "literal": "^1.0.2", @@ -11209,7 +11209,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 861, "literal": "~8.5.10", @@ -11222,7 +11222,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 862, "literal": "~20.12.8", @@ -11235,7 +11235,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 863, "literal": "*", @@ -11248,7 +11248,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 864, "literal": "^4.21.10", @@ -11261,7 +11261,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 865, "literal": "^1.0.30001538", @@ -11274,7 +11274,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 866, "literal": "^4.3.6", @@ -11287,7 +11287,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 867, "literal": "^0.1.2", @@ -11300,7 +11300,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 868, "literal": "^1.0.0", @@ -11313,7 +11313,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 869, "literal": "^4.2.0", @@ -11339,7 +11339,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 871, "literal": "^1.0.30001587", @@ -11352,7 +11352,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 872, "literal": "^1.4.668", @@ -11365,7 +11365,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 873, "literal": "^2.0.14", @@ -11378,7 +11378,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 874, "literal": "^1.0.13", @@ -11391,7 +11391,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 875, "literal": "^3.1.2", @@ -11404,7 +11404,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 876, "literal": "^1.0.1", @@ -11430,7 +11430,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 878, "literal": "*", @@ -11443,7 +11443,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 879, "literal": "*", @@ -11456,7 +11456,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 880, "literal": "*", @@ -11469,7 +11469,7 @@ exports[`ssr works for 100-ish requests 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 881, "literal": "^3.0.2", diff --git a/test/integration/next-pages/test/__snapshots__/dev-server.test.ts.snap b/test/integration/next-pages/test/__snapshots__/dev-server.test.ts.snap index 536715c42b..6bacb22ab5 100644 --- a/test/integration/next-pages/test/__snapshots__/dev-server.test.ts.snap +++ b/test/integration/next-pages/test/__snapshots__/dev-server.test.ts.snap @@ -5,7 +5,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` "dependencies": [ { "behavior": { - "normal": true, + "prod": true, }, "id": 0, "literal": "20.7.0", @@ -18,7 +18,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 1, "literal": "18.2.22", @@ -31,7 +31,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 2, "literal": "18.2.7", @@ -44,7 +44,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 3, "literal": "10.4.16", @@ -57,7 +57,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 4, "literal": "^1.0.3", @@ -70,7 +70,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 5, "literal": "8.50.0", @@ -83,7 +83,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 6, "literal": "14.1.3", @@ -96,7 +96,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 7, "literal": "14.1.3", @@ -109,7 +109,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 8, "literal": "8.4.30", @@ -122,7 +122,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 9, "literal": "22.12.0", @@ -135,7 +135,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 10, "literal": "18.2.0", @@ -148,7 +148,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 11, "literal": "18.2.0", @@ -161,7 +161,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 12, "literal": "3.3.3", @@ -174,7 +174,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 13, "literal": "5.2.2", @@ -187,7 +187,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 14, "literal": "^5.0.2", @@ -200,7 +200,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 15, "literal": "^1.1.3", @@ -213,7 +213,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 16, "literal": "^1.18.2", @@ -226,7 +226,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 17, "literal": "^4.0.3", @@ -239,7 +239,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 18, "literal": "^8.4.23", @@ -252,7 +252,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 19, "literal": "^1.22.2", @@ -265,7 +265,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 20, "literal": "^3.32.0", @@ -278,7 +278,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 21, "literal": "^3.5.3", @@ -291,7 +291,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 22, "literal": "^3.2.12", @@ -304,7 +304,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 23, "literal": "^2.1.0", @@ -317,7 +317,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 24, "literal": "^1.2.2", @@ -330,7 +330,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 25, "literal": "^4.0.5", @@ -343,7 +343,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 26, "literal": "^1.0.0", @@ -356,7 +356,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 27, "literal": "^4.0.1", @@ -369,7 +369,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 28, "literal": "^6.0.2", @@ -382,7 +382,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 29, "literal": "^3.0.0", @@ -395,7 +395,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 30, "literal": "^3.0.0", @@ -408,7 +408,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 31, "literal": "^15.1.0", @@ -421,7 +421,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 32, "literal": "^6.0.1", @@ -434,7 +434,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 33, "literal": "^5.2.0", @@ -447,7 +447,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 34, "literal": "^4.0.1", @@ -460,7 +460,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 35, "literal": "^6.0.11", @@ -473,7 +473,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 36, "literal": "^3.0.0", @@ -486,7 +486,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 37, "literal": "^1.0.2", @@ -499,7 +499,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 38, "literal": "^2.3.4", @@ -512,7 +512,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 39, "literal": "^3.0.0", @@ -553,7 +553,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 42, "literal": "^3.3.6", @@ -566,7 +566,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 43, "literal": "^1.0.0", @@ -579,7 +579,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 44, "literal": "^1.0.2", @@ -592,7 +592,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 45, "literal": "^6.0.11", @@ -618,7 +618,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 47, "literal": "^4.0.0", @@ -631,7 +631,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 48, "literal": "^1.0.0", @@ -644,7 +644,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 49, "literal": "^1.1.7", @@ -670,7 +670,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 51, "literal": "^2.13.0", @@ -683,7 +683,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 52, "literal": "^1.0.7", @@ -696,7 +696,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 53, "literal": "^1.0.0", @@ -709,7 +709,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 54, "literal": "^2.0.0", @@ -722,7 +722,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 55, "literal": "^1.1.2", @@ -735,7 +735,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 56, "literal": "^2.3.0", @@ -748,7 +748,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 57, "literal": "^4.0.3", @@ -761,7 +761,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 58, "literal": "^2.1.1", @@ -774,7 +774,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 59, "literal": "^2.0.1", @@ -800,7 +800,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 61, "literal": "^3.0.3", @@ -813,7 +813,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 62, "literal": "^2.3.1", @@ -826,7 +826,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 63, "literal": "^7.1.1", @@ -839,7 +839,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 64, "literal": "^5.0.1", @@ -852,7 +852,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 65, "literal": "^7.0.0", @@ -865,7 +865,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 66, "literal": "^2.0.2", @@ -878,7 +878,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 67, "literal": "^1.2.3", @@ -891,7 +891,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 68, "literal": "^5.1.2", @@ -904,7 +904,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 69, "literal": "^1.3.0", @@ -917,7 +917,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 70, "literal": "^4.0.4", @@ -930,7 +930,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 71, "literal": "^4.0.1", @@ -943,7 +943,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 72, "literal": "2.1.5", @@ -956,7 +956,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 73, "literal": "^1.6.0", @@ -969,7 +969,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 74, "literal": "^1.0.4", @@ -982,7 +982,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 75, "literal": "2.0.5", @@ -995,7 +995,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 76, "literal": "^1.1.9", @@ -1008,7 +1008,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 77, "literal": "^1.2.2", @@ -1021,7 +1021,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 78, "literal": "~3.1.2", @@ -1034,7 +1034,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 79, "literal": "~3.0.2", @@ -1047,7 +1047,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 80, "literal": "~5.1.2", @@ -1060,7 +1060,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 81, "literal": "~2.1.0", @@ -1073,7 +1073,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 82, "literal": "~4.0.1", @@ -1086,7 +1086,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 83, "literal": "~3.0.0", @@ -1099,7 +1099,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 84, "literal": "~3.6.0", @@ -1125,7 +1125,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 86, "literal": "^2.2.1", @@ -1138,7 +1138,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 87, "literal": "^2.0.0", @@ -1151,7 +1151,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 88, "literal": "^3.0.0", @@ -1164,7 +1164,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 89, "literal": "^2.0.4", @@ -1177,7 +1177,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 90, "literal": "^0.3.2", @@ -1190,7 +1190,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 91, "literal": "^4.0.0", @@ -1203,7 +1203,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 92, "literal": "^10.3.10", @@ -1216,7 +1216,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 93, "literal": "^1.1.6", @@ -1229,7 +1229,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 94, "literal": "^2.7.0", @@ -1242,7 +1242,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 95, "literal": "^4.0.1", @@ -1255,7 +1255,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 96, "literal": "^0.1.9", @@ -1268,7 +1268,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 97, "literal": "^1.0.0", @@ -1281,7 +1281,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 98, "literal": "^4.0.1", @@ -1294,7 +1294,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 99, "literal": "^1.0.0", @@ -1307,7 +1307,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 100, "literal": ">= 3.1.0 < 4", @@ -1320,7 +1320,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 101, "literal": "^1.0.0", @@ -1333,7 +1333,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 102, "literal": "^3.1.0", @@ -1346,7 +1346,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 103, "literal": "^2.3.5", @@ -1359,7 +1359,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 104, "literal": "^9.0.1", @@ -1372,7 +1372,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 105, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -1385,7 +1385,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 106, "literal": "^1.10.1", @@ -1398,7 +1398,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 107, "literal": "^10.2.0", @@ -1411,7 +1411,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 108, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -1424,7 +1424,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 109, "literal": "^2.0.1", @@ -1437,7 +1437,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 110, "literal": "^1.0.0", @@ -1450,7 +1450,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 111, "literal": "^8.0.2", @@ -1476,7 +1476,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 113, "literal": "^5.1.2", @@ -1489,7 +1489,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 114, "is_alias": true, @@ -1503,7 +1503,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 115, "literal": "^7.0.1", @@ -1516,7 +1516,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 116, "is_alias": true, @@ -1530,7 +1530,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 117, "literal": "^8.1.0", @@ -1543,7 +1543,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 118, "is_alias": true, @@ -1557,7 +1557,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 119, "literal": "^4.0.0", @@ -1570,7 +1570,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 120, "literal": "^4.1.0", @@ -1583,7 +1583,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 121, "literal": "^6.0.0", @@ -1596,7 +1596,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 122, "literal": "^5.0.1", @@ -1609,7 +1609,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 123, "literal": "^8.0.0", @@ -1622,7 +1622,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 124, "literal": "^3.0.0", @@ -1635,7 +1635,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 125, "literal": "^6.0.1", @@ -1648,7 +1648,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 126, "literal": "^2.0.1", @@ -1661,7 +1661,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 127, "literal": "~1.1.4", @@ -1674,7 +1674,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 128, "literal": "^6.1.0", @@ -1687,7 +1687,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 129, "literal": "^5.0.1", @@ -1700,7 +1700,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 130, "literal": "^7.0.1", @@ -1713,7 +1713,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 131, "literal": "^6.0.1", @@ -1726,7 +1726,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 132, "literal": "^0.2.0", @@ -1739,7 +1739,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 133, "literal": "^9.2.2", @@ -1752,7 +1752,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 134, "literal": "^7.0.1", @@ -1765,7 +1765,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 135, "literal": "^7.0.0", @@ -1778,7 +1778,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 136, "literal": "^4.0.1", @@ -1791,7 +1791,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 137, "literal": "^3.1.0", @@ -1804,7 +1804,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 138, "literal": "^2.0.0", @@ -1817,7 +1817,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 139, "literal": "^2.0.1", @@ -1830,7 +1830,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 140, "literal": "^2.0.0", @@ -1843,7 +1843,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 141, "literal": "^3.0.0", @@ -1856,7 +1856,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 142, "literal": "^1.2.1", @@ -1869,7 +1869,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 143, "literal": "^1.4.10", @@ -1882,7 +1882,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 144, "literal": "^0.3.24", @@ -1895,7 +1895,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 145, "literal": "^3.1.0", @@ -1908,7 +1908,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 146, "literal": "^1.4.14", @@ -1921,7 +1921,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 147, "literal": "^0.23.0", @@ -1934,7 +1934,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 148, "literal": "^1.1.0", @@ -1960,7 +1960,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 150, "literal": "^1.1.0", @@ -1973,7 +1973,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 151, "literal": "^3.0.0 || ^4.0.0", @@ -1986,7 +1986,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 152, "literal": "^1.1.0", @@ -1999,7 +1999,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 153, "literal": "9.0.0", @@ -2012,7 +2012,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 154, "literal": "22.12.0", @@ -2025,7 +2025,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 155, "literal": "2.2.3", @@ -2038,7 +2038,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 156, "literal": "0.0.1299070", @@ -2051,7 +2051,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 157, "literal": "4.3.4", @@ -2064,7 +2064,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 158, "literal": "2.0.1", @@ -2077,7 +2077,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 159, "literal": "2.0.3", @@ -2090,7 +2090,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 160, "literal": "6.4.0", @@ -2103,7 +2103,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 161, "literal": "3.0.5", @@ -2116,7 +2116,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 162, "literal": "1.4.3", @@ -2129,7 +2129,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 163, "literal": "17.7.2", @@ -2142,7 +2142,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 164, "literal": "7.6.0", @@ -2155,7 +2155,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 165, "literal": "^6.0.0", @@ -2168,7 +2168,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 166, "literal": "^4.0.0", @@ -2181,7 +2181,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 167, "literal": "^8.0.1", @@ -2194,7 +2194,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 168, "literal": "^3.1.1", @@ -2207,7 +2207,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 169, "literal": "^2.0.5", @@ -2220,7 +2220,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 170, "literal": "^2.1.1", @@ -2233,7 +2233,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 171, "literal": "^4.2.3", @@ -2246,7 +2246,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 172, "literal": "^5.0.5", @@ -2259,7 +2259,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 173, "literal": "^21.1.1", @@ -2272,7 +2272,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 174, "literal": "^4.2.0", @@ -2285,7 +2285,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 175, "literal": "^6.0.1", @@ -2298,7 +2298,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 176, "literal": "^7.0.0", @@ -2311,7 +2311,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 177, "literal": "^5.2.1", @@ -2324,7 +2324,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 178, "literal": "^2.3.8", @@ -2337,7 +2337,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 179, "literal": "^1.3.1", @@ -2350,7 +2350,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 180, "literal": "^1.1.13", @@ -2363,7 +2363,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 181, "literal": "^3.0.0", @@ -2376,7 +2376,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 182, "literal": "^3.1.5", @@ -2415,7 +2415,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 185, "literal": "^2.1.0", @@ -2428,7 +2428,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 186, "literal": "^2.0.0", @@ -2441,7 +2441,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 187, "literal": "^2.0.0", @@ -2454,7 +2454,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 188, "literal": "^2.0.0", @@ -2467,7 +2467,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 189, "literal": "^2.18.0", @@ -2480,7 +2480,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 190, "literal": "^1.3.2", @@ -2493,7 +2493,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 191, "literal": "^1.0.1", @@ -2506,7 +2506,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 192, "literal": "^1.1.0", @@ -2532,7 +2532,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 194, "literal": "^1.6.4", @@ -2545,7 +2545,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 195, "literal": "^1.6.4", @@ -2558,7 +2558,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 196, "literal": "^1.2.0", @@ -2571,7 +2571,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 197, "literal": "^2.15.0", @@ -2584,7 +2584,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 198, "literal": "^1.1.0", @@ -2597,7 +2597,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 199, "literal": "^1.3.1", @@ -2610,7 +2610,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 200, "literal": "1", @@ -2623,7 +2623,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 201, "literal": "^1.4.0", @@ -2636,7 +2636,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 202, "literal": "^7.0.2", @@ -2649,7 +2649,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 203, "literal": "^4.3.4", @@ -2662,7 +2662,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 204, "literal": "^7.0.1", @@ -2675,7 +2675,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 205, "literal": "^7.0.3", @@ -2688,7 +2688,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 206, "literal": "^7.14.1", @@ -2701,7 +2701,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 207, "literal": "^7.0.1", @@ -2714,7 +2714,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 208, "literal": "^1.1.0", @@ -2727,7 +2727,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 209, "literal": "^8.0.2", @@ -2740,7 +2740,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 210, "literal": "^7.1.1", @@ -2753,7 +2753,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 211, "literal": "^4.3.4", @@ -2766,7 +2766,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 212, "literal": "^2.7.1", @@ -2779,7 +2779,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 213, "literal": "^9.0.5", @@ -2792,7 +2792,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 214, "literal": "^4.2.0", @@ -2805,7 +2805,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 215, "literal": "1.1.0", @@ -2818,7 +2818,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 216, "literal": "^1.1.3", @@ -2831,7 +2831,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 217, "literal": "2.1.2", @@ -2844,7 +2844,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 218, "literal": "^4.3.4", @@ -2857,7 +2857,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 219, "literal": "^0.23.0", @@ -2870,7 +2870,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 220, "literal": "^7.0.2", @@ -2883,7 +2883,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 221, "literal": "^4.3.4", @@ -2896,7 +2896,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 222, "literal": "^6.0.1", @@ -2909,7 +2909,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 223, "literal": "^7.0.0", @@ -2922,7 +2922,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 224, "literal": "^7.0.2", @@ -2935,7 +2935,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 225, "literal": "^7.0.0", @@ -2948,7 +2948,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 226, "literal": "^8.0.2", @@ -2961,7 +2961,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 227, "literal": "^5.0.0", @@ -2974,7 +2974,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 228, "literal": "^2.0.2", @@ -2987,7 +2987,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 229, "literal": "^0.13.4", @@ -3000,7 +3000,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 230, "literal": "^2.1.0", @@ -3013,7 +3013,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 231, "literal": "^4.0.1", @@ -3026,7 +3026,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 232, "literal": "^5.2.0", @@ -3039,7 +3039,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 233, "literal": "^2.0.2", @@ -3052,7 +3052,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 234, "literal": "^4.0.1", @@ -3078,7 +3078,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 236, "literal": "^2.0.1", @@ -3091,7 +3091,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 237, "literal": "^7.0.2", @@ -3104,7 +3104,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 238, "literal": "4", @@ -3117,7 +3117,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 239, "literal": "^7.1.0", @@ -3130,7 +3130,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 240, "literal": "^4.3.4", @@ -3143,7 +3143,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 241, "literal": "^5.0.2", @@ -3156,7 +3156,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 242, "literal": "^6.0.2", @@ -3169,7 +3169,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 243, "literal": "^4.3.4", @@ -3182,7 +3182,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 244, "literal": "^11.2.0", @@ -3195,7 +3195,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 245, "literal": "^4.2.0", @@ -3208,7 +3208,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 246, "literal": "^6.0.1", @@ -3221,7 +3221,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 247, "literal": "^2.0.0", @@ -3234,7 +3234,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 248, "literal": "^2.0.0", @@ -3260,7 +3260,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 250, "literal": "^4.1.1", @@ -3273,7 +3273,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 251, "literal": "^5.1.0", @@ -3286,7 +3286,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 252, "literal": "^2.10.0", @@ -3312,7 +3312,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 254, "literal": "*", @@ -3325,7 +3325,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 255, "literal": "~5.26.4", @@ -3338,7 +3338,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 256, "literal": "~1.1.0", @@ -3351,7 +3351,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 257, "literal": "~0.2.3", @@ -3364,7 +3364,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 258, "literal": "~1.2.0", @@ -3377,7 +3377,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 259, "literal": "^3.0.0", @@ -3390,7 +3390,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 260, "literal": "2.1.2", @@ -3403,7 +3403,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 261, "literal": "2.2.3", @@ -3416,7 +3416,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 262, "literal": "0.5.24", @@ -3429,7 +3429,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 263, "literal": "4.3.5", @@ -3442,7 +3442,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 264, "literal": "0.0.1299070", @@ -3455,7 +3455,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 265, "literal": "8.17.1", @@ -3496,7 +3496,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 268, "literal": "3.0.1", @@ -3509,7 +3509,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 269, "literal": "10.0.0", @@ -3522,7 +3522,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 270, "literal": "3.23.8", @@ -3548,7 +3548,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 272, "literal": "^2.2.1", @@ -3561,7 +3561,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 273, "literal": "^3.3.0", @@ -3574,7 +3574,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 274, "literal": "^4.1.0", @@ -3587,7 +3587,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 275, "literal": "^5.2.0", @@ -3614,7 +3614,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 277, "literal": "^7.0.0", @@ -3627,7 +3627,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 278, "literal": "^1.3.1", @@ -3640,7 +3640,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 279, "literal": "^2.3.0", @@ -3653,7 +3653,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 280, "literal": "^1.1.6", @@ -3666,7 +3666,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 281, "literal": "^0.2.1", @@ -3679,7 +3679,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 282, "literal": "^7.24.7", @@ -3692,7 +3692,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 283, "literal": "^1.0.0", @@ -3705,7 +3705,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 284, "literal": "^7.24.7", @@ -3718,7 +3718,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 285, "literal": "^2.4.2", @@ -3731,7 +3731,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 286, "literal": "^4.0.0", @@ -3744,7 +3744,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 287, "literal": "^1.0.0", @@ -3757,7 +3757,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 288, "literal": "^3.2.1", @@ -3770,7 +3770,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 289, "literal": "^1.0.5", @@ -3783,7 +3783,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 290, "literal": "^5.3.0", @@ -3796,7 +3796,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 291, "literal": "^3.0.0", @@ -3809,7 +3809,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 292, "literal": "^1.9.0", @@ -3822,7 +3822,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 293, "literal": "1.1.3", @@ -3835,7 +3835,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 294, "literal": "^2.0.1", @@ -3848,7 +3848,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 295, "literal": "^1.0.0", @@ -3861,7 +3861,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 296, "literal": "^4.0.0", @@ -3874,7 +3874,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 297, "literal": "^3.0.0", @@ -3887,7 +3887,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 298, "literal": "1.6.0", @@ -3900,7 +3900,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 299, "literal": "8.4.31", @@ -3913,7 +3913,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 300, "literal": "14.1.3", @@ -3926,7 +3926,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 301, "literal": "5.1.1", @@ -3939,7 +3939,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 302, "literal": "^4.2.11", @@ -3952,7 +3952,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 303, "literal": "0.5.2", @@ -3965,7 +3965,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 304, "literal": "^1.0.30001579", @@ -4149,7 +4149,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 318, "literal": "^2.4.0", @@ -4162,7 +4162,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 319, "literal": "0.0.1", @@ -4188,7 +4188,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 321, "literal": "^3.3.6", @@ -4201,7 +4201,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 322, "literal": "^1.0.0", @@ -4214,7 +4214,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 323, "literal": "^1.0.2", @@ -4227,7 +4227,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 324, "literal": "^1.1.0", @@ -4240,7 +4240,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 325, "literal": "^7.33.2", @@ -4253,7 +4253,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 326, "literal": "^2.28.1", @@ -4266,7 +4266,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 327, "literal": "^6.7.1", @@ -4279,7 +4279,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 328, "literal": "^1.3.3", @@ -4292,7 +4292,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 329, "literal": "14.1.3", @@ -4305,7 +4305,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 330, "literal": "^5.4.2 || ^6.0.0", @@ -4318,7 +4318,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 331, "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", @@ -4331,7 +4331,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 332, "literal": "^0.3.6", @@ -4344,7 +4344,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 333, "literal": "^3.5.2", @@ -4384,7 +4384,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 336, "literal": "^6.12.4", @@ -4397,7 +4397,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 337, "literal": "^0.4.1", @@ -4410,7 +4410,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 338, "literal": "^4.0.0", @@ -4423,7 +4423,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 339, "literal": "^4.3.2", @@ -4436,7 +4436,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 340, "literal": "^9.6.1", @@ -4449,7 +4449,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 341, "literal": "^5.2.0", @@ -4462,7 +4462,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 342, "literal": "^1.4.2", @@ -4475,7 +4475,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 343, "literal": "^2.0.2", @@ -4488,7 +4488,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 344, "literal": "^5.0.0", @@ -4501,7 +4501,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 345, "literal": "^13.19.0", @@ -4514,7 +4514,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 346, "literal": "^4.0.0", @@ -4527,7 +4527,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 347, "literal": "^4.1.0", @@ -4540,7 +4540,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 348, "literal": "^3.0.0", @@ -4553,7 +4553,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 349, "literal": "^1.4.0", @@ -4566,7 +4566,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 350, "literal": "^3.1.2", @@ -4579,7 +4579,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 351, "literal": "8.50.0", @@ -4592,7 +4592,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 352, "literal": "^0.9.3", @@ -4605,7 +4605,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 353, "literal": "^6.0.1", @@ -4618,7 +4618,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 354, "literal": "^0.2.0", @@ -4631,7 +4631,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 355, "literal": "^7.0.2", @@ -4644,7 +4644,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 356, "literal": "^6.0.2", @@ -4657,7 +4657,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 357, "literal": "^0.1.4", @@ -4670,7 +4670,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 358, "literal": "^7.2.2", @@ -4683,7 +4683,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 359, "literal": "^4.6.2", @@ -4696,7 +4696,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 360, "literal": "^3.0.3", @@ -4709,7 +4709,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 361, "literal": "^3.1.3", @@ -4722,7 +4722,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 362, "literal": "^1.4.0", @@ -4735,7 +4735,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 363, "literal": "^2.1.2", @@ -4748,7 +4748,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 364, "literal": "^1.2.8", @@ -4761,7 +4761,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 365, "literal": "^6.0.1", @@ -4774,7 +4774,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 366, "literal": "^3.4.3", @@ -4787,7 +4787,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 367, "literal": "^4.0.0", @@ -4800,7 +4800,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 368, "literal": "^4.6.1", @@ -4813,7 +4813,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 369, "literal": "^0.11.11", @@ -4826,7 +4826,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 370, "literal": "^4.2.0", @@ -4839,7 +4839,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 371, "literal": "^1.0.1", @@ -4852,7 +4852,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 372, "literal": "^1.0.1", @@ -4865,7 +4865,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 373, "literal": "^3.3.0", @@ -4891,7 +4891,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 375, "literal": "^2.0.2", @@ -4904,7 +4904,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 376, "literal": "^4.3.1", @@ -4917,7 +4917,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 377, "literal": "^3.0.5", @@ -4930,7 +4930,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 378, "literal": "^1.1.7", @@ -4943,7 +4943,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 379, "literal": "^1.0.0", @@ -4956,7 +4956,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 380, "literal": "0.0.1", @@ -4969,7 +4969,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 381, "literal": "^3.0.4", @@ -4982,7 +4982,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 382, "literal": "^3.2.9", @@ -4995,7 +4995,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 383, "literal": "^4.5.3", @@ -5008,7 +5008,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 384, "literal": "^3.0.2", @@ -5021,7 +5021,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 385, "literal": "^7.1.3", @@ -5034,7 +5034,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 386, "literal": "^1.0.0", @@ -5047,7 +5047,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 387, "literal": "^1.0.4", @@ -5060,7 +5060,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 388, "literal": "2", @@ -5073,7 +5073,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 389, "literal": "^3.1.1", @@ -5086,7 +5086,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 390, "literal": "^1.3.0", @@ -5099,7 +5099,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 391, "literal": "^1.0.0", @@ -5112,7 +5112,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 392, "literal": "^1.3.0", @@ -5125,7 +5125,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 393, "literal": "1", @@ -5138,7 +5138,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 394, "literal": "3.0.1", @@ -5151,7 +5151,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 395, "literal": "^6.12.4", @@ -5164,7 +5164,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 396, "literal": "^4.3.2", @@ -5177,7 +5177,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 397, "literal": "^9.6.0", @@ -5190,7 +5190,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 398, "literal": "^13.19.0", @@ -5203,7 +5203,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 399, "literal": "^5.2.0", @@ -5216,7 +5216,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 400, "literal": "^3.2.1", @@ -5229,7 +5229,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 401, "literal": "^4.1.0", @@ -5242,7 +5242,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 402, "literal": "^3.1.2", @@ -5255,7 +5255,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 403, "literal": "^3.1.1", @@ -5268,7 +5268,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 404, "literal": "^0.20.2", @@ -5281,7 +5281,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 405, "literal": "^8.9.0", @@ -5294,7 +5294,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 406, "literal": "^5.3.2", @@ -5307,7 +5307,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 407, "literal": "^3.4.1", @@ -5333,7 +5333,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 409, "literal": "^3.1.1", @@ -5346,7 +5346,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 410, "literal": "^2.0.0", @@ -5359,7 +5359,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 411, "literal": "^0.4.1", @@ -5372,7 +5372,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 412, "literal": "^4.2.2", @@ -5385,7 +5385,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 413, "literal": "^2.1.0", @@ -5398,7 +5398,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 414, "literal": "^4.3.0", @@ -5411,7 +5411,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 415, "literal": "^5.2.0", @@ -5424,7 +5424,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 416, "literal": "^5.2.0", @@ -5437,7 +5437,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 417, "literal": "^1.2.1", @@ -5450,7 +5450,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 418, "literal": "^0.1.3", @@ -5463,7 +5463,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 419, "literal": "^1.2.5", @@ -5476,7 +5476,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 420, "literal": "^0.4.0", @@ -5489,7 +5489,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 421, "literal": "^0.4.1", @@ -5502,7 +5502,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 422, "literal": "^2.0.6", @@ -5515,7 +5515,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 423, "literal": "^1.2.1", @@ -5528,7 +5528,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 424, "literal": "~0.4.0", @@ -5541,7 +5541,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 425, "literal": "^1.2.1", @@ -5554,7 +5554,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 426, "literal": "^2.0.2", @@ -5567,7 +5567,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 427, "literal": "^6.0.0", @@ -5580,7 +5580,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 428, "literal": "^4.0.0", @@ -5593,7 +5593,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 429, "literal": "^5.0.0", @@ -5606,7 +5606,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 430, "literal": "^3.0.2", @@ -5619,7 +5619,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 431, "literal": "^0.1.0", @@ -5632,7 +5632,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 432, "literal": "^5.1.0", @@ -5645,7 +5645,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 433, "literal": "^4.1.0", @@ -5658,7 +5658,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 434, "literal": "^7.1.0", @@ -5671,7 +5671,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 435, "literal": "^4.0.0", @@ -5684,7 +5684,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 436, "literal": "^4.3.4", @@ -5697,7 +5697,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 437, "literal": "^5.12.0", @@ -5710,7 +5710,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 438, "literal": "^2.7.4", @@ -5723,7 +5723,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 439, "literal": "^3.3.1", @@ -5736,7 +5736,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 440, "literal": "^4.5.0", @@ -5749,7 +5749,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 441, "literal": "^2.11.0", @@ -5762,7 +5762,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 442, "literal": "^4.0.3", @@ -5801,7 +5801,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 445, "literal": "^3.1.7", @@ -5814,7 +5814,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 446, "literal": "^1.2.3", @@ -5827,7 +5827,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 447, "literal": "^1.3.2", @@ -5840,7 +5840,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 448, "literal": "^1.3.2", @@ -5853,7 +5853,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 449, "literal": "^3.2.7", @@ -5866,7 +5866,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 450, "literal": "^2.1.0", @@ -5879,7 +5879,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 451, "literal": "^0.3.9", @@ -5892,7 +5892,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 452, "literal": "^2.8.0", @@ -5905,7 +5905,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 453, "literal": "^2.0.0", @@ -5918,7 +5918,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 454, "literal": "^2.13.1", @@ -5931,7 +5931,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 455, "literal": "^4.0.3", @@ -5944,7 +5944,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 456, "literal": "^3.1.2", @@ -5957,7 +5957,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 457, "literal": "^2.0.7", @@ -5970,7 +5970,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 458, "literal": "^1.0.1", @@ -5983,7 +5983,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 459, "literal": "^1.1.7", @@ -5996,7 +5996,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 460, "literal": "^6.3.1", @@ -6009,7 +6009,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 461, "literal": "^3.15.0", @@ -6035,7 +6035,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 463, "literal": "^0.0.29", @@ -6048,7 +6048,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 464, "literal": "^1.0.2", @@ -6061,7 +6061,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 465, "literal": "^1.2.6", @@ -6074,7 +6074,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 466, "literal": "^3.0.0", @@ -6087,7 +6087,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 467, "literal": "^1.2.0", @@ -6100,7 +6100,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 468, "literal": "^1.0.7", @@ -6113,7 +6113,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 469, "literal": "^1.2.1", @@ -6126,7 +6126,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 470, "literal": "^1.0.0", @@ -6139,7 +6139,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 471, "literal": "^1.3.0", @@ -6152,7 +6152,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 472, "literal": "^1.0.1", @@ -6165,7 +6165,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 473, "literal": "^1.0.0", @@ -6178,7 +6178,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 474, "literal": "^1.1.1", @@ -6191,7 +6191,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 475, "literal": "^1.0.0", @@ -6204,7 +6204,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 476, "literal": "^1.2.4", @@ -6217,7 +6217,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 477, "literal": "^1.3.0", @@ -6230,7 +6230,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 478, "literal": "^1.1.2", @@ -6243,7 +6243,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 479, "literal": "^1.0.1", @@ -6256,7 +6256,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 480, "literal": "^1.0.3", @@ -6269,7 +6269,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 481, "literal": "^2.0.0", @@ -6282,7 +6282,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 482, "literal": "^1.0.0", @@ -6295,7 +6295,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 483, "literal": "^1.3.0", @@ -6308,7 +6308,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 484, "literal": "^1.0.1", @@ -6321,7 +6321,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 485, "literal": "^1.1.3", @@ -6334,7 +6334,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 486, "literal": "^1.0.0", @@ -6347,7 +6347,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 487, "literal": "^1.3.0", @@ -6360,7 +6360,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 488, "literal": "^1.1.2", @@ -6373,7 +6373,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 489, "literal": "^1.2.4", @@ -6386,7 +6386,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 490, "literal": "^1.2.1", @@ -6399,7 +6399,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 491, "literal": "^1.1.4", @@ -6412,7 +6412,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 492, "literal": "^1.3.0", @@ -6425,7 +6425,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 493, "literal": "^1.1.2", @@ -6438,7 +6438,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 494, "literal": "^1.2.4", @@ -6451,7 +6451,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 495, "literal": "^1.0.1", @@ -6464,7 +6464,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 496, "literal": "^1.0.2", @@ -6477,7 +6477,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 497, "literal": "^1.0.7", @@ -6490,7 +6490,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 498, "literal": "^1.2.1", @@ -6503,7 +6503,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 499, "literal": "^1.23.2", @@ -6516,7 +6516,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 500, "literal": "^1.0.1", @@ -6529,7 +6529,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 501, "literal": "^1.0.3", @@ -6542,7 +6542,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 502, "literal": "^1.0.7", @@ -6555,7 +6555,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 503, "literal": "^1.0.7", @@ -6568,7 +6568,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 504, "literal": "^1.0.1", @@ -6581,7 +6581,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 505, "literal": "^1.0.1", @@ -6594,7 +6594,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 506, "literal": "^1.0.0", @@ -6607,7 +6607,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 507, "literal": "^1.0.0", @@ -6620,7 +6620,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 508, "literal": "^1.3.0", @@ -6633,7 +6633,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 509, "literal": "^1.0.0", @@ -6646,7 +6646,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 510, "literal": "^2.0.3", @@ -6659,7 +6659,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 511, "literal": "^1.2.1", @@ -6672,7 +6672,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 512, "literal": "^1.1.6", @@ -6685,7 +6685,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 513, "literal": "^1.2.4", @@ -6698,7 +6698,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 514, "literal": "^1.0.2", @@ -6711,7 +6711,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 515, "literal": "^1.0.3", @@ -6724,7 +6724,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 516, "literal": "^1.0.1", @@ -6737,7 +6737,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 517, "literal": "^1.0.2", @@ -6750,7 +6750,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 518, "literal": "^1.0.3", @@ -6763,7 +6763,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 519, "literal": "^1.0.3", @@ -6776,7 +6776,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 520, "literal": "^2.0.2", @@ -6789,7 +6789,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 521, "literal": "^1.0.7", @@ -6802,7 +6802,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 522, "literal": "^3.0.4", @@ -6815,7 +6815,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 523, "literal": "^1.2.7", @@ -6828,7 +6828,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 524, "literal": "^1.0.1", @@ -6841,7 +6841,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 525, "literal": "^2.0.3", @@ -6854,7 +6854,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 526, "literal": "^1.1.4", @@ -6867,7 +6867,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 527, "literal": "^1.0.3", @@ -6880,7 +6880,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 528, "literal": "^1.0.7", @@ -6893,7 +6893,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 529, "literal": "^1.1.13", @@ -6906,7 +6906,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 530, "literal": "^1.0.2", @@ -6919,7 +6919,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 531, "literal": "^1.13.1", @@ -6932,7 +6932,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 532, "literal": "^1.1.1", @@ -6945,7 +6945,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 533, "literal": "^4.1.5", @@ -6958,7 +6958,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 534, "literal": "^1.5.2", @@ -6971,7 +6971,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 535, "literal": "^1.1.2", @@ -6984,7 +6984,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 536, "literal": "^1.0.3", @@ -6997,7 +6997,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 537, "literal": "^1.2.9", @@ -7010,7 +7010,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 538, "literal": "^1.0.8", @@ -7023,7 +7023,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 539, "literal": "^1.0.8", @@ -7036,7 +7036,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 540, "literal": "^1.0.2", @@ -7049,7 +7049,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 541, "literal": "^1.0.1", @@ -7062,7 +7062,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 542, "literal": "^1.0.2", @@ -7075,7 +7075,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 543, "literal": "^1.0.6", @@ -7088,7 +7088,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 544, "literal": "^1.0.2", @@ -7101,7 +7101,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 545, "literal": "^1.1.15", @@ -7114,7 +7114,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 546, "literal": "^1.0.7", @@ -7127,7 +7127,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 547, "literal": "^1.0.7", @@ -7140,7 +7140,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 548, "literal": "^0.3.3", @@ -7153,7 +7153,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 549, "literal": "^1.0.1", @@ -7166,7 +7166,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 550, "literal": "^1.0.2", @@ -7179,7 +7179,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 551, "literal": "^1.0.3", @@ -7192,7 +7192,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 552, "literal": "^1.1.3", @@ -7205,7 +7205,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 553, "literal": "^1.0.0", @@ -7218,7 +7218,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 554, "literal": "^1.0.2", @@ -7231,7 +7231,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 555, "literal": "^1.0.2", @@ -7244,7 +7244,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 556, "literal": "^1.0.3", @@ -7257,7 +7257,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 557, "literal": "^1.0.2", @@ -7270,7 +7270,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 558, "literal": "^1.0.1", @@ -7283,7 +7283,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 559, "literal": "^1.1.0", @@ -7296,7 +7296,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 560, "literal": "^1.0.4", @@ -7309,7 +7309,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 561, "literal": "^1.0.5", @@ -7322,7 +7322,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 562, "literal": "^1.0.3", @@ -7335,7 +7335,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 563, "literal": "^1.0.2", @@ -7348,7 +7348,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 564, "literal": "^1.0.0", @@ -7361,7 +7361,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 565, "literal": "^1.0.0", @@ -7374,7 +7374,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 566, "literal": "^1.0.2", @@ -7387,7 +7387,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 567, "literal": "^1.0.0", @@ -7400,7 +7400,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 568, "literal": "^1.0.1", @@ -7413,7 +7413,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 569, "literal": "^1.0.7", @@ -7426,7 +7426,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 570, "literal": "^0.3.3", @@ -7439,7 +7439,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 571, "literal": "^1.0.1", @@ -7452,7 +7452,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 572, "literal": "^1.0.3", @@ -7465,7 +7465,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 573, "literal": "^1.1.13", @@ -7478,7 +7478,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 574, "literal": "^1.0.0", @@ -7491,7 +7491,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 575, "literal": "^1.1.14", @@ -7504,7 +7504,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 576, "literal": "^1.0.7", @@ -7517,7 +7517,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 577, "literal": "^1.0.7", @@ -7530,7 +7530,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 578, "literal": "^0.3.3", @@ -7543,7 +7543,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 579, "literal": "^1.0.1", @@ -7556,7 +7556,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 580, "literal": "^1.0.3", @@ -7569,7 +7569,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 581, "literal": "^1.1.13", @@ -7582,7 +7582,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 582, "literal": "^1.0.7", @@ -7595,7 +7595,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 583, "literal": "^0.3.3", @@ -7608,7 +7608,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 584, "literal": "^1.0.1", @@ -7621,7 +7621,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 585, "literal": "^1.0.3", @@ -7634,7 +7634,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 586, "literal": "^1.1.13", @@ -7647,7 +7647,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 587, "literal": "^1.0.7", @@ -7660,7 +7660,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 588, "literal": "^1.3.0", @@ -7673,7 +7673,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 589, "literal": "^1.1.13", @@ -7686,7 +7686,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 590, "literal": "^1.0.7", @@ -7699,7 +7699,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 591, "literal": "^1.2.1", @@ -7712,7 +7712,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 592, "literal": "^1.0.0", @@ -7725,7 +7725,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 593, "literal": "^1.0.7", @@ -7738,7 +7738,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 594, "literal": "^1.2.1", @@ -7751,7 +7751,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 595, "literal": "^1.0.0", @@ -7764,7 +7764,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 596, "literal": "^1.0.7", @@ -7777,7 +7777,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 597, "literal": "^1.2.1", @@ -7790,7 +7790,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 598, "literal": "^1.23.0", @@ -7803,7 +7803,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 599, "literal": "^1.0.0", @@ -7816,7 +7816,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 600, "literal": "^1.0.6", @@ -7829,7 +7829,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 601, "literal": "^1.3.0", @@ -7842,7 +7842,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 602, "literal": "^1.1.4", @@ -7855,7 +7855,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 603, "literal": "^1.0.2", @@ -7868,7 +7868,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 604, "literal": "^1.0.0", @@ -7881,7 +7881,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 605, "literal": "^1.0.7", @@ -7894,7 +7894,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 606, "literal": "^1.2.4", @@ -7907,7 +7907,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 607, "literal": "^1.0.3", @@ -7920,7 +7920,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 608, "literal": "^2.0.5", @@ -7933,7 +7933,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 609, "literal": "^1.0.6", @@ -7946,7 +7946,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 610, "literal": "^1.2.1", @@ -7959,7 +7959,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 611, "literal": "^1.3.0", @@ -7972,7 +7972,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 612, "literal": "^2.0.1", @@ -7985,7 +7985,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 613, "literal": "^1.1.4", @@ -7998,7 +7998,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 614, "literal": "^1.3.0", @@ -8011,7 +8011,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 615, "literal": "^1.2.3", @@ -8024,7 +8024,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 616, "literal": "^1.0.2", @@ -8037,7 +8037,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 617, "literal": "^1.0.5", @@ -8050,7 +8050,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 618, "literal": "^1.2.1", @@ -8063,7 +8063,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 619, "literal": "^1.0.3", @@ -8076,7 +8076,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 620, "literal": "^1.1.1", @@ -8089,7 +8089,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 621, "literal": "^1.0.2", @@ -8102,7 +8102,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 622, "literal": "^1.0.7", @@ -8115,7 +8115,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 623, "literal": "^1.1.13", @@ -8128,7 +8128,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 624, "literal": "^1.0.2", @@ -8141,7 +8141,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 625, "literal": "^1.2.1", @@ -8154,7 +8154,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 626, "literal": "^1.3.0", @@ -8167,7 +8167,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 627, "literal": "^2.0.0", @@ -8180,7 +8180,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 628, "literal": "^1.0.4", @@ -8193,7 +8193,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 629, "literal": "^1.0.7", @@ -8206,7 +8206,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 630, "literal": "^1.3.0", @@ -8219,7 +8219,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 631, "literal": "^1.2.4", @@ -8232,7 +8232,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 632, "literal": "^1.13.1", @@ -8245,7 +8245,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 633, "literal": "^1.2.1", @@ -8258,7 +8258,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 634, "literal": "^1.0.1", @@ -8271,7 +8271,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 635, "literal": "^1.0.5", @@ -8284,7 +8284,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 636, "literal": "^1.3.0", @@ -8297,7 +8297,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 637, "literal": "^1.2.4", @@ -8310,7 +8310,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 638, "literal": "^1.0.2", @@ -8323,7 +8323,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 639, "literal": "^1.2.0", @@ -8336,7 +8336,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 640, "literal": "^1.22.1", @@ -8349,7 +8349,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 641, "literal": "^1.2.3", @@ -8362,7 +8362,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 642, "literal": "^1.1.4", @@ -8375,7 +8375,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 643, "literal": "^1.0.1", @@ -8388,7 +8388,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 644, "literal": "^1.0.2", @@ -8401,7 +8401,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 645, "literal": "^1.0.0", @@ -8414,7 +8414,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 646, "literal": "^1.2.4", @@ -8427,7 +8427,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 647, "literal": "^1.0.2", @@ -8440,7 +8440,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 648, "literal": "^2.0.1", @@ -8453,7 +8453,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 649, "literal": "^1.0.6", @@ -8466,7 +8466,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 650, "literal": "^1.3.0", @@ -8479,7 +8479,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 651, "literal": "^1.0.1", @@ -8492,7 +8492,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 652, "literal": "^1.0.7", @@ -8505,7 +8505,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 653, "literal": "^1.3.0", @@ -8518,7 +8518,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 654, "literal": "^1.0.1", @@ -8531,7 +8531,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 655, "literal": "^1.0.6", @@ -8544,7 +8544,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 656, "literal": "^1.3.0", @@ -8557,7 +8557,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 657, "literal": "^1.0.1", @@ -8570,7 +8570,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 658, "literal": "^1.0.1", @@ -8583,7 +8583,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 659, "literal": "^1.0.5", @@ -8596,7 +8596,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 660, "literal": "^1.2.1", @@ -8609,7 +8609,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 661, "literal": "^1.22.3", @@ -8622,7 +8622,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 662, "literal": "^1.2.1", @@ -8635,7 +8635,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 663, "literal": "^1.2.3", @@ -8648,7 +8648,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 664, "literal": "^3.0.4", @@ -8661,7 +8661,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 665, "literal": "^1.0.2", @@ -8674,7 +8674,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 666, "literal": "^1.0.5", @@ -8687,7 +8687,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 667, "literal": "^3.0.4", @@ -8700,7 +8700,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 668, "literal": "^1.0.7", @@ -8713,7 +8713,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 669, "literal": "^1.2.1", @@ -8726,7 +8726,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 670, "literal": "^1.23.2", @@ -8739,7 +8739,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 671, "literal": "^1.0.0", @@ -8752,7 +8752,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 672, "literal": "^3.2.7", @@ -8765,7 +8765,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 673, "literal": "^2.1.1", @@ -8778,7 +8778,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 674, "literal": "^3.2.7", @@ -8791,7 +8791,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 675, "literal": "^2.13.0", @@ -8804,7 +8804,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 676, "literal": "^1.22.4", @@ -8817,7 +8817,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 677, "literal": "^2.0.2", @@ -8830,7 +8830,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 678, "literal": "^1.0.2", @@ -8843,7 +8843,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 679, "literal": "^1.2.0", @@ -8856,7 +8856,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 680, "literal": "^1.22.1", @@ -8869,7 +8869,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 681, "literal": "^1.0.0", @@ -8882,7 +8882,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 682, "literal": "^2.0.0", @@ -8895,7 +8895,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 683, "literal": "^1.0.2", @@ -8908,7 +8908,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 684, "literal": "^1.2.0", @@ -8921,7 +8921,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 685, "literal": "^1.22.1", @@ -8934,7 +8934,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 686, "literal": "^1.0.0", @@ -8947,7 +8947,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 687, "literal": "^1.0.7", @@ -8960,7 +8960,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 688, "literal": "^1.2.1", @@ -8973,7 +8973,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 689, "literal": "^1.23.2", @@ -8986,7 +8986,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 690, "literal": "^1.3.0", @@ -8999,7 +8999,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 691, "literal": "^1.0.0", @@ -9012,7 +9012,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 692, "literal": "^1.0.2", @@ -9025,7 +9025,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 693, "literal": "^1.0.7", @@ -9038,7 +9038,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 694, "literal": "^1.2.1", @@ -9051,7 +9051,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 695, "literal": "^1.23.2", @@ -9064,7 +9064,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 696, "literal": "^1.0.0", @@ -9077,7 +9077,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 697, "literal": "^1.2.4", @@ -9090,7 +9090,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 698, "literal": "^1.0.7", @@ -9103,7 +9103,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 699, "literal": "^1.0.0", @@ -9116,7 +9116,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 700, "literal": "^4.2.4", @@ -9129,7 +9129,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 701, "literal": "^2.2.0", @@ -9155,7 +9155,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 703, "literal": "^4.3.4", @@ -9168,7 +9168,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 704, "literal": "6.21.0", @@ -9181,7 +9181,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 705, "literal": "6.21.0", @@ -9194,7 +9194,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 706, "literal": "6.21.0", @@ -9207,7 +9207,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 707, "literal": "6.21.0", @@ -9233,7 +9233,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 709, "literal": "^4.3.4", @@ -9246,7 +9246,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 710, "literal": "^11.1.0", @@ -9259,7 +9259,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 711, "literal": "^7.5.4", @@ -9272,7 +9272,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 712, "literal": "^4.0.3", @@ -9285,7 +9285,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 713, "literal": "9.0.3", @@ -9298,7 +9298,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 714, "literal": "^1.0.1", @@ -9311,7 +9311,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 715, "literal": "6.21.0", @@ -9324,7 +9324,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 716, "literal": "6.21.0", @@ -9337,7 +9337,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 717, "literal": "^3.4.1", @@ -9350,7 +9350,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 718, "literal": "6.21.0", @@ -9376,7 +9376,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 720, "literal": "^2.0.1", @@ -9389,7 +9389,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 721, "literal": "^2.1.0", @@ -9402,7 +9402,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 722, "literal": "^3.0.1", @@ -9415,7 +9415,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 723, "literal": "^3.2.9", @@ -9428,7 +9428,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 724, "literal": "^5.2.0", @@ -9441,7 +9441,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 725, "literal": "^1.4.1", @@ -9454,7 +9454,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 726, "literal": "^3.0.0", @@ -9467,7 +9467,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 727, "literal": "^4.0.0", @@ -9480,7 +9480,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 728, "literal": "6.21.0", @@ -9493,7 +9493,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 729, "literal": "6.21.0", @@ -9506,7 +9506,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 730, "literal": "10.3.10", @@ -9519,7 +9519,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 731, "literal": "^7.23.2", @@ -9532,7 +9532,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 732, "literal": "^5.3.0", @@ -9545,7 +9545,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 733, "literal": "^3.1.7", @@ -9558,7 +9558,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 734, "literal": "^1.3.2", @@ -9571,7 +9571,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 735, "literal": "^0.0.8", @@ -9584,7 +9584,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 736, "literal": "=4.7.0", @@ -9597,7 +9597,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 737, "literal": "^3.2.1", @@ -9610,7 +9610,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 738, "literal": "^1.0.8", @@ -9623,7 +9623,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 739, "literal": "^9.2.2", @@ -9636,7 +9636,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 740, "literal": "^1.0.15", @@ -9649,7 +9649,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 741, "literal": "^2.0.0", @@ -9662,7 +9662,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 742, "literal": "^3.3.5", @@ -9675,7 +9675,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 743, "literal": "^1.0.9", @@ -9688,7 +9688,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 744, "literal": "^3.1.2", @@ -9701,7 +9701,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 745, "literal": "^1.1.7", @@ -9714,7 +9714,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 746, "literal": "^2.0.7", @@ -9740,7 +9740,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 748, "literal": "^1.0.7", @@ -9753,7 +9753,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 749, "literal": "^1.2.1", @@ -9766,7 +9766,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 750, "literal": "^1.0.0", @@ -9779,7 +9779,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 751, "literal": "^0.3.20", @@ -9792,7 +9792,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 752, "literal": "^3.1.6", @@ -9805,7 +9805,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 753, "literal": "^1.3.1", @@ -9818,7 +9818,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 754, "literal": "^4.1.4", @@ -9831,7 +9831,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 755, "literal": "^1.1.6", @@ -9844,7 +9844,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 756, "literal": "^1.0.7", @@ -9857,7 +9857,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 757, "literal": "^1.2.1", @@ -9870,7 +9870,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 758, "literal": "^1.23.3", @@ -9883,7 +9883,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 759, "literal": "^1.3.0", @@ -9896,7 +9896,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 760, "literal": "^2.0.3", @@ -9909,7 +9909,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 761, "literal": "^1.1.2", @@ -9922,7 +9922,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 762, "literal": "^1.2.4", @@ -9935,7 +9935,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 763, "literal": "^1.0.3", @@ -9948,7 +9948,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 764, "literal": "^1.0.2", @@ -9961,7 +9961,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 765, "literal": "^1.0.3", @@ -9974,7 +9974,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 766, "literal": "^1.0.3", @@ -9987,7 +9987,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 767, "literal": "^1.0.7", @@ -10000,7 +10000,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 768, "literal": "^1.1.2", @@ -10013,7 +10013,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 769, "literal": "^1.1.2", @@ -10026,7 +10026,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 770, "literal": "^1.2.1", @@ -10039,7 +10039,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 771, "literal": "^1.2.1", @@ -10052,7 +10052,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 772, "literal": "^1.0.3", @@ -10065,7 +10065,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 773, "literal": "^1.0.4", @@ -10078,7 +10078,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 774, "literal": "^2.0.1", @@ -10091,7 +10091,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 775, "literal": "^1.0.7", @@ -10104,7 +10104,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 776, "literal": "^1.2.1", @@ -10117,7 +10117,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 777, "literal": "^1.23.1", @@ -10130,7 +10130,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 778, "literal": "^1.3.0", @@ -10143,7 +10143,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 779, "literal": "^1.2.4", @@ -10156,7 +10156,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 780, "literal": "^1.0.3", @@ -10169,7 +10169,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 781, "literal": "^1.1.3", @@ -10182,7 +10182,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 782, "literal": "^1.1.5", @@ -10195,7 +10195,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 783, "literal": "^1.0.0", @@ -10208,7 +10208,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 784, "literal": "^2.0.0", @@ -10221,7 +10221,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 785, "literal": "^1.0.5", @@ -10234,7 +10234,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 786, "literal": "^1.0.2", @@ -10247,7 +10247,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 787, "literal": "^1.0.10", @@ -10260,7 +10260,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 788, "literal": "^1.1.4", @@ -10273,7 +10273,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 789, "literal": "^1.0.2", @@ -10286,7 +10286,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 790, "literal": "^2.0.5", @@ -10299,7 +10299,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 791, "literal": "^1.0.2", @@ -10312,7 +10312,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 792, "literal": "^1.0.1", @@ -10325,7 +10325,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 793, "literal": "^1.1.9", @@ -10338,7 +10338,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 794, "literal": "^2.0.3", @@ -10351,7 +10351,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 795, "literal": "^2.0.3", @@ -10364,7 +10364,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 796, "literal": "^2.0.2", @@ -10377,7 +10377,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 797, "literal": "^2.0.3", @@ -10390,7 +10390,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 798, "literal": "^1.0.7", @@ -10403,7 +10403,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 799, "literal": "^1.2.4", @@ -10416,7 +10416,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 800, "literal": "^1.0.0", @@ -10429,7 +10429,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 801, "literal": "^1.0.2", @@ -10442,7 +10442,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 802, "literal": "^1.0.0", @@ -10455,7 +10455,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 803, "literal": "^2.0.3", @@ -10468,7 +10468,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 804, "literal": "^2.0.3", @@ -10481,7 +10481,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 805, "literal": "^0.14.0", @@ -10494,7 +10494,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 806, "literal": "^3.1.8", @@ -10507,7 +10507,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 807, "literal": "^1.2.5", @@ -10520,7 +10520,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 808, "literal": "^1.3.2", @@ -10533,7 +10533,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 809, "literal": "^1.1.2", @@ -10546,7 +10546,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 810, "literal": "^1.1.3", @@ -10559,7 +10559,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 811, "literal": "^2.1.0", @@ -10572,7 +10572,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 812, "literal": "^1.0.19", @@ -10585,7 +10585,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 813, "literal": "^5.3.0", @@ -10598,7 +10598,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 814, "literal": "^2.4.1 || ^3.0.0", @@ -10611,7 +10611,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 815, "literal": "^3.1.2", @@ -10624,7 +10624,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 816, "literal": "^1.1.8", @@ -10637,7 +10637,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 817, "literal": "^2.0.8", @@ -10650,7 +10650,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 818, "literal": "^1.1.4", @@ -10663,7 +10663,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 819, "literal": "^1.2.0", @@ -10676,7 +10676,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 820, "literal": "^15.8.1", @@ -10689,7 +10689,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 821, "literal": "^2.0.0-next.5", @@ -10702,7 +10702,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 822, "literal": "^6.3.1", @@ -10715,7 +10715,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 823, "literal": "^4.0.11", @@ -10741,7 +10741,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 825, "literal": "^1.0.7", @@ -10754,7 +10754,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 826, "literal": "^1.2.1", @@ -10767,7 +10767,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 827, "literal": "^1.23.2", @@ -10780,7 +10780,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 828, "literal": "^1.3.0", @@ -10793,7 +10793,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 829, "literal": "^1.0.0", @@ -10806,7 +10806,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 830, "literal": "^1.2.4", @@ -10819,7 +10819,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 831, "literal": "^1.0.1", @@ -10832,7 +10832,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 832, "literal": "^1.0.3", @@ -10845,7 +10845,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 833, "literal": "^1.0.7", @@ -10858,7 +10858,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 834, "literal": "^1.5.2", @@ -10871,7 +10871,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 835, "literal": "^2.0.2", @@ -10884,7 +10884,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 836, "literal": "^1.0.6", @@ -10897,7 +10897,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 837, "literal": "^2.13.0", @@ -10910,7 +10910,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 838, "literal": "^1.0.7", @@ -10923,7 +10923,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 839, "literal": "^1.0.0", @@ -10936,7 +10936,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 840, "literal": "^1.4.0", @@ -10949,7 +10949,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 841, "literal": "^4.1.1", @@ -10962,7 +10962,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 842, "literal": "^16.13.1", @@ -10975,7 +10975,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 843, "literal": "^1.2.1", @@ -10988,7 +10988,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 844, "literal": "^1.23.2", @@ -11001,7 +11001,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 845, "literal": "^1.0.0", @@ -11014,7 +11014,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 846, "literal": "^1.0.7", @@ -11027,7 +11027,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 847, "literal": "^1.2.1", @@ -11040,7 +11040,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 848, "literal": "^1.23.3", @@ -11053,7 +11053,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 849, "literal": "^1.3.0", @@ -11066,7 +11066,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 850, "literal": "^1.0.2", @@ -11079,7 +11079,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 851, "literal": "^1.0.2", @@ -11092,7 +11092,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 852, "literal": "^1.2.0", @@ -11105,7 +11105,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 853, "literal": "^1.22.1", @@ -11118,7 +11118,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 854, "literal": "^1.0.0", @@ -11131,7 +11131,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 855, "literal": "^1.0.7", @@ -11144,7 +11144,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 856, "literal": "^1.2.1", @@ -11157,7 +11157,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 857, "literal": "^1.23.2", @@ -11170,7 +11170,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 858, "literal": "^1.3.0", @@ -11183,7 +11183,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 859, "literal": "^1.0.0", @@ -11196,7 +11196,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 860, "literal": "^1.0.2", @@ -11209,7 +11209,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 861, "literal": "~8.5.10", @@ -11222,7 +11222,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 862, "literal": "~20.12.8", @@ -11235,7 +11235,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 863, "literal": "*", @@ -11248,7 +11248,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 864, "literal": "^4.21.10", @@ -11261,7 +11261,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 865, "literal": "^1.0.30001538", @@ -11274,7 +11274,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 866, "literal": "^4.3.6", @@ -11287,7 +11287,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 867, "literal": "^0.1.2", @@ -11300,7 +11300,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 868, "literal": "^1.0.0", @@ -11313,7 +11313,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 869, "literal": "^4.2.0", @@ -11339,7 +11339,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 871, "literal": "^1.0.30001587", @@ -11352,7 +11352,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 872, "literal": "^1.4.668", @@ -11365,7 +11365,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 873, "literal": "^2.0.14", @@ -11378,7 +11378,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 874, "literal": "^1.0.13", @@ -11391,7 +11391,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 875, "literal": "^3.1.2", @@ -11404,7 +11404,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 876, "literal": "^1.0.1", @@ -11430,7 +11430,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 878, "literal": "*", @@ -11443,7 +11443,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 879, "literal": "*", @@ -11456,7 +11456,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 880, "literal": "*", @@ -11469,7 +11469,7 @@ exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 881, "literal": "^3.0.2", diff --git a/test/integration/next-pages/test/__snapshots__/next-build.test.ts.snap b/test/integration/next-pages/test/__snapshots__/next-build.test.ts.snap index a7e9af8b95..fe8eb9c7d8 100644 --- a/test/integration/next-pages/test/__snapshots__/next-build.test.ts.snap +++ b/test/integration/next-pages/test/__snapshots__/next-build.test.ts.snap @@ -5,7 +5,7 @@ exports[`next build works: bun 1`] = ` "dependencies": [ { "behavior": { - "normal": true, + "prod": true, }, "id": 0, "literal": "20.7.0", @@ -18,7 +18,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 1, "literal": "18.2.22", @@ -31,7 +31,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 2, "literal": "18.2.7", @@ -44,7 +44,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 3, "literal": "10.4.16", @@ -57,7 +57,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 4, "literal": "^1.0.3", @@ -70,7 +70,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 5, "literal": "8.50.0", @@ -83,7 +83,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 6, "literal": "14.1.3", @@ -96,7 +96,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 7, "literal": "14.1.3", @@ -109,7 +109,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 8, "literal": "8.4.30", @@ -122,7 +122,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 9, "literal": "22.12.0", @@ -135,7 +135,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 10, "literal": "18.2.0", @@ -148,7 +148,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 11, "literal": "18.2.0", @@ -161,7 +161,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 12, "literal": "3.3.3", @@ -174,7 +174,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 13, "literal": "5.2.2", @@ -187,7 +187,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 14, "literal": "^5.0.2", @@ -200,7 +200,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 15, "literal": "^1.1.3", @@ -213,7 +213,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 16, "literal": "^1.18.2", @@ -226,7 +226,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 17, "literal": "^4.0.3", @@ -239,7 +239,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 18, "literal": "^8.4.23", @@ -252,7 +252,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 19, "literal": "^1.22.2", @@ -265,7 +265,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 20, "literal": "^3.32.0", @@ -278,7 +278,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 21, "literal": "^3.5.3", @@ -291,7 +291,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 22, "literal": "^3.2.12", @@ -304,7 +304,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 23, "literal": "^2.1.0", @@ -317,7 +317,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 24, "literal": "^1.2.2", @@ -330,7 +330,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 25, "literal": "^4.0.5", @@ -343,7 +343,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 26, "literal": "^1.0.0", @@ -356,7 +356,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 27, "literal": "^4.0.1", @@ -369,7 +369,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 28, "literal": "^6.0.2", @@ -382,7 +382,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 29, "literal": "^3.0.0", @@ -395,7 +395,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 30, "literal": "^3.0.0", @@ -408,7 +408,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 31, "literal": "^15.1.0", @@ -421,7 +421,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 32, "literal": "^6.0.1", @@ -434,7 +434,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 33, "literal": "^5.2.0", @@ -447,7 +447,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 34, "literal": "^4.0.1", @@ -460,7 +460,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 35, "literal": "^6.0.11", @@ -473,7 +473,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 36, "literal": "^3.0.0", @@ -486,7 +486,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 37, "literal": "^1.0.2", @@ -499,7 +499,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 38, "literal": "^2.3.4", @@ -512,7 +512,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 39, "literal": "^3.0.0", @@ -553,7 +553,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 42, "literal": "^3.3.6", @@ -566,7 +566,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 43, "literal": "^1.0.0", @@ -579,7 +579,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 44, "literal": "^1.0.2", @@ -592,7 +592,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 45, "literal": "^6.0.11", @@ -618,7 +618,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 47, "literal": "^4.0.0", @@ -631,7 +631,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 48, "literal": "^1.0.0", @@ -644,7 +644,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 49, "literal": "^1.1.7", @@ -670,7 +670,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 51, "literal": "^2.13.0", @@ -683,7 +683,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 52, "literal": "^1.0.7", @@ -696,7 +696,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 53, "literal": "^1.0.0", @@ -709,7 +709,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 54, "literal": "^2.0.0", @@ -722,7 +722,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 55, "literal": "^1.1.2", @@ -735,7 +735,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 56, "literal": "^2.3.0", @@ -748,7 +748,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 57, "literal": "^4.0.3", @@ -761,7 +761,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 58, "literal": "^2.1.1", @@ -774,7 +774,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 59, "literal": "^2.0.1", @@ -800,7 +800,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 61, "literal": "^3.0.3", @@ -813,7 +813,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 62, "literal": "^2.3.1", @@ -826,7 +826,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 63, "literal": "^7.1.1", @@ -839,7 +839,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 64, "literal": "^5.0.1", @@ -852,7 +852,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 65, "literal": "^7.0.0", @@ -865,7 +865,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 66, "literal": "^2.0.2", @@ -878,7 +878,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 67, "literal": "^1.2.3", @@ -891,7 +891,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 68, "literal": "^5.1.2", @@ -904,7 +904,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 69, "literal": "^1.3.0", @@ -917,7 +917,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 70, "literal": "^4.0.4", @@ -930,7 +930,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 71, "literal": "^4.0.1", @@ -943,7 +943,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 72, "literal": "2.1.5", @@ -956,7 +956,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 73, "literal": "^1.6.0", @@ -969,7 +969,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 74, "literal": "^1.0.4", @@ -982,7 +982,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 75, "literal": "2.0.5", @@ -995,7 +995,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 76, "literal": "^1.1.9", @@ -1008,7 +1008,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 77, "literal": "^1.2.2", @@ -1021,7 +1021,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 78, "literal": "~3.1.2", @@ -1034,7 +1034,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 79, "literal": "~3.0.2", @@ -1047,7 +1047,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 80, "literal": "~5.1.2", @@ -1060,7 +1060,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 81, "literal": "~2.1.0", @@ -1073,7 +1073,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 82, "literal": "~4.0.1", @@ -1086,7 +1086,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 83, "literal": "~3.0.0", @@ -1099,7 +1099,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 84, "literal": "~3.6.0", @@ -1125,7 +1125,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 86, "literal": "^2.2.1", @@ -1138,7 +1138,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 87, "literal": "^2.0.0", @@ -1151,7 +1151,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 88, "literal": "^3.0.0", @@ -1164,7 +1164,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 89, "literal": "^2.0.4", @@ -1177,7 +1177,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 90, "literal": "^0.3.2", @@ -1190,7 +1190,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 91, "literal": "^4.0.0", @@ -1203,7 +1203,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 92, "literal": "^10.3.10", @@ -1216,7 +1216,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 93, "literal": "^1.1.6", @@ -1229,7 +1229,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 94, "literal": "^2.7.0", @@ -1242,7 +1242,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 95, "literal": "^4.0.1", @@ -1255,7 +1255,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 96, "literal": "^0.1.9", @@ -1268,7 +1268,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 97, "literal": "^1.0.0", @@ -1281,7 +1281,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 98, "literal": "^4.0.1", @@ -1294,7 +1294,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 99, "literal": "^1.0.0", @@ -1307,7 +1307,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 100, "literal": ">= 3.1.0 < 4", @@ -1320,7 +1320,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 101, "literal": "^1.0.0", @@ -1333,7 +1333,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 102, "literal": "^3.1.0", @@ -1346,7 +1346,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 103, "literal": "^2.3.5", @@ -1359,7 +1359,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 104, "literal": "^9.0.1", @@ -1372,7 +1372,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 105, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -1385,7 +1385,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 106, "literal": "^1.10.1", @@ -1398,7 +1398,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 107, "literal": "^10.2.0", @@ -1411,7 +1411,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 108, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -1424,7 +1424,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 109, "literal": "^2.0.1", @@ -1437,7 +1437,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 110, "literal": "^1.0.0", @@ -1450,7 +1450,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 111, "literal": "^8.0.2", @@ -1476,7 +1476,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 113, "literal": "^5.1.2", @@ -1489,7 +1489,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 114, "is_alias": true, @@ -1503,7 +1503,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 115, "literal": "^7.0.1", @@ -1516,7 +1516,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 116, "is_alias": true, @@ -1530,7 +1530,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 117, "literal": "^8.1.0", @@ -1543,7 +1543,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 118, "is_alias": true, @@ -1557,7 +1557,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 119, "literal": "^4.0.0", @@ -1570,7 +1570,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 120, "literal": "^4.1.0", @@ -1583,7 +1583,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 121, "literal": "^6.0.0", @@ -1596,7 +1596,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 122, "literal": "^5.0.1", @@ -1609,7 +1609,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 123, "literal": "^8.0.0", @@ -1622,7 +1622,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 124, "literal": "^3.0.0", @@ -1635,7 +1635,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 125, "literal": "^6.0.1", @@ -1648,7 +1648,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 126, "literal": "^2.0.1", @@ -1661,7 +1661,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 127, "literal": "~1.1.4", @@ -1674,7 +1674,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 128, "literal": "^6.1.0", @@ -1687,7 +1687,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 129, "literal": "^5.0.1", @@ -1700,7 +1700,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 130, "literal": "^7.0.1", @@ -1713,7 +1713,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 131, "literal": "^6.0.1", @@ -1726,7 +1726,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 132, "literal": "^0.2.0", @@ -1739,7 +1739,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 133, "literal": "^9.2.2", @@ -1752,7 +1752,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 134, "literal": "^7.0.1", @@ -1765,7 +1765,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 135, "literal": "^7.0.0", @@ -1778,7 +1778,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 136, "literal": "^4.0.1", @@ -1791,7 +1791,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 137, "literal": "^3.1.0", @@ -1804,7 +1804,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 138, "literal": "^2.0.0", @@ -1817,7 +1817,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 139, "literal": "^2.0.1", @@ -1830,7 +1830,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 140, "literal": "^2.0.0", @@ -1843,7 +1843,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 141, "literal": "^3.0.0", @@ -1856,7 +1856,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 142, "literal": "^1.2.1", @@ -1869,7 +1869,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 143, "literal": "^1.4.10", @@ -1882,7 +1882,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 144, "literal": "^0.3.24", @@ -1895,7 +1895,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 145, "literal": "^3.1.0", @@ -1908,7 +1908,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 146, "literal": "^1.4.14", @@ -1921,7 +1921,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 147, "literal": "^0.23.0", @@ -1934,7 +1934,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 148, "literal": "^1.1.0", @@ -1960,7 +1960,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 150, "literal": "^1.1.0", @@ -1973,7 +1973,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 151, "literal": "^3.0.0 || ^4.0.0", @@ -1986,7 +1986,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 152, "literal": "^1.1.0", @@ -1999,7 +1999,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 153, "literal": "9.0.0", @@ -2012,7 +2012,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 154, "literal": "22.12.0", @@ -2025,7 +2025,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 155, "literal": "2.2.3", @@ -2038,7 +2038,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 156, "literal": "0.0.1299070", @@ -2051,7 +2051,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 157, "literal": "4.3.4", @@ -2064,7 +2064,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 158, "literal": "2.0.1", @@ -2077,7 +2077,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 159, "literal": "2.0.3", @@ -2090,7 +2090,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 160, "literal": "6.4.0", @@ -2103,7 +2103,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 161, "literal": "3.0.5", @@ -2116,7 +2116,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 162, "literal": "1.4.3", @@ -2129,7 +2129,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 163, "literal": "17.7.2", @@ -2142,7 +2142,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 164, "literal": "7.6.0", @@ -2155,7 +2155,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 165, "literal": "^6.0.0", @@ -2168,7 +2168,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 166, "literal": "^4.0.0", @@ -2181,7 +2181,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 167, "literal": "^8.0.1", @@ -2194,7 +2194,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 168, "literal": "^3.1.1", @@ -2207,7 +2207,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 169, "literal": "^2.0.5", @@ -2220,7 +2220,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 170, "literal": "^2.1.1", @@ -2233,7 +2233,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 171, "literal": "^4.2.3", @@ -2246,7 +2246,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 172, "literal": "^5.0.5", @@ -2259,7 +2259,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 173, "literal": "^21.1.1", @@ -2272,7 +2272,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 174, "literal": "^4.2.0", @@ -2285,7 +2285,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 175, "literal": "^6.0.1", @@ -2298,7 +2298,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 176, "literal": "^7.0.0", @@ -2311,7 +2311,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 177, "literal": "^5.2.1", @@ -2324,7 +2324,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 178, "literal": "^2.3.8", @@ -2337,7 +2337,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 179, "literal": "^1.3.1", @@ -2350,7 +2350,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 180, "literal": "^1.1.13", @@ -2363,7 +2363,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 181, "literal": "^3.0.0", @@ -2376,7 +2376,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 182, "literal": "^3.1.5", @@ -2415,7 +2415,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 185, "literal": "^2.1.0", @@ -2428,7 +2428,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 186, "literal": "^2.0.0", @@ -2441,7 +2441,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 187, "literal": "^2.0.0", @@ -2454,7 +2454,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 188, "literal": "^2.0.0", @@ -2467,7 +2467,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 189, "literal": "^2.18.0", @@ -2480,7 +2480,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 190, "literal": "^1.3.2", @@ -2493,7 +2493,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 191, "literal": "^1.0.1", @@ -2506,7 +2506,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 192, "literal": "^1.1.0", @@ -2532,7 +2532,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 194, "literal": "^1.6.4", @@ -2545,7 +2545,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 195, "literal": "^1.6.4", @@ -2558,7 +2558,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 196, "literal": "^1.2.0", @@ -2571,7 +2571,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 197, "literal": "^2.15.0", @@ -2584,7 +2584,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 198, "literal": "^1.1.0", @@ -2597,7 +2597,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 199, "literal": "^1.3.1", @@ -2610,7 +2610,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 200, "literal": "1", @@ -2623,7 +2623,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 201, "literal": "^1.4.0", @@ -2636,7 +2636,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 202, "literal": "^7.0.2", @@ -2649,7 +2649,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 203, "literal": "^4.3.4", @@ -2662,7 +2662,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 204, "literal": "^7.0.1", @@ -2675,7 +2675,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 205, "literal": "^7.0.3", @@ -2688,7 +2688,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 206, "literal": "^7.14.1", @@ -2701,7 +2701,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 207, "literal": "^7.0.1", @@ -2714,7 +2714,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 208, "literal": "^1.1.0", @@ -2727,7 +2727,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 209, "literal": "^8.0.2", @@ -2740,7 +2740,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 210, "literal": "^7.1.1", @@ -2753,7 +2753,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 211, "literal": "^4.3.4", @@ -2766,7 +2766,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 212, "literal": "^2.7.1", @@ -2779,7 +2779,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 213, "literal": "^9.0.5", @@ -2792,7 +2792,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 214, "literal": "^4.2.0", @@ -2805,7 +2805,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 215, "literal": "1.1.0", @@ -2818,7 +2818,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 216, "literal": "^1.1.3", @@ -2831,7 +2831,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 217, "literal": "2.1.2", @@ -2844,7 +2844,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 218, "literal": "^4.3.4", @@ -2857,7 +2857,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 219, "literal": "^0.23.0", @@ -2870,7 +2870,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 220, "literal": "^7.0.2", @@ -2883,7 +2883,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 221, "literal": "^4.3.4", @@ -2896,7 +2896,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 222, "literal": "^6.0.1", @@ -2909,7 +2909,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 223, "literal": "^7.0.0", @@ -2922,7 +2922,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 224, "literal": "^7.0.2", @@ -2935,7 +2935,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 225, "literal": "^7.0.0", @@ -2948,7 +2948,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 226, "literal": "^8.0.2", @@ -2961,7 +2961,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 227, "literal": "^5.0.0", @@ -2974,7 +2974,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 228, "literal": "^2.0.2", @@ -2987,7 +2987,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 229, "literal": "^0.13.4", @@ -3000,7 +3000,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 230, "literal": "^2.1.0", @@ -3013,7 +3013,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 231, "literal": "^4.0.1", @@ -3026,7 +3026,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 232, "literal": "^5.2.0", @@ -3039,7 +3039,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 233, "literal": "^2.0.2", @@ -3052,7 +3052,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 234, "literal": "^4.0.1", @@ -3078,7 +3078,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 236, "literal": "^2.0.1", @@ -3091,7 +3091,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 237, "literal": "^7.0.2", @@ -3104,7 +3104,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 238, "literal": "4", @@ -3117,7 +3117,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 239, "literal": "^7.1.0", @@ -3130,7 +3130,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 240, "literal": "^4.3.4", @@ -3143,7 +3143,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 241, "literal": "^5.0.2", @@ -3156,7 +3156,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 242, "literal": "^6.0.2", @@ -3169,7 +3169,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 243, "literal": "^4.3.4", @@ -3182,7 +3182,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 244, "literal": "^11.2.0", @@ -3195,7 +3195,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 245, "literal": "^4.2.0", @@ -3208,7 +3208,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 246, "literal": "^6.0.1", @@ -3221,7 +3221,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 247, "literal": "^2.0.0", @@ -3234,7 +3234,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 248, "literal": "^2.0.0", @@ -3260,7 +3260,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 250, "literal": "^4.1.1", @@ -3273,7 +3273,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 251, "literal": "^5.1.0", @@ -3286,7 +3286,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 252, "literal": "^2.10.0", @@ -3312,7 +3312,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 254, "literal": "*", @@ -3325,7 +3325,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 255, "literal": "~5.26.4", @@ -3338,7 +3338,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 256, "literal": "~1.1.0", @@ -3351,7 +3351,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 257, "literal": "~0.2.3", @@ -3364,7 +3364,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 258, "literal": "~1.2.0", @@ -3377,7 +3377,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 259, "literal": "^3.0.0", @@ -3390,7 +3390,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 260, "literal": "2.1.2", @@ -3403,7 +3403,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 261, "literal": "2.2.3", @@ -3416,7 +3416,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 262, "literal": "0.5.24", @@ -3429,7 +3429,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 263, "literal": "4.3.5", @@ -3442,7 +3442,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 264, "literal": "0.0.1299070", @@ -3455,7 +3455,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 265, "literal": "8.17.1", @@ -3496,7 +3496,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 268, "literal": "3.0.1", @@ -3509,7 +3509,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 269, "literal": "10.0.0", @@ -3522,7 +3522,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 270, "literal": "3.23.8", @@ -3548,7 +3548,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 272, "literal": "^2.2.1", @@ -3561,7 +3561,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 273, "literal": "^3.3.0", @@ -3574,7 +3574,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 274, "literal": "^4.1.0", @@ -3587,7 +3587,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 275, "literal": "^5.2.0", @@ -3614,7 +3614,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 277, "literal": "^7.0.0", @@ -3627,7 +3627,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 278, "literal": "^1.3.1", @@ -3640,7 +3640,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 279, "literal": "^2.3.0", @@ -3653,7 +3653,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 280, "literal": "^1.1.6", @@ -3666,7 +3666,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 281, "literal": "^0.2.1", @@ -3679,7 +3679,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 282, "literal": "^7.24.7", @@ -3692,7 +3692,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 283, "literal": "^1.0.0", @@ -3705,7 +3705,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 284, "literal": "^7.24.7", @@ -3718,7 +3718,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 285, "literal": "^2.4.2", @@ -3731,7 +3731,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 286, "literal": "^4.0.0", @@ -3744,7 +3744,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 287, "literal": "^1.0.0", @@ -3757,7 +3757,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 288, "literal": "^3.2.1", @@ -3770,7 +3770,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 289, "literal": "^1.0.5", @@ -3783,7 +3783,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 290, "literal": "^5.3.0", @@ -3796,7 +3796,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 291, "literal": "^3.0.0", @@ -3809,7 +3809,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 292, "literal": "^1.9.0", @@ -3822,7 +3822,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 293, "literal": "1.1.3", @@ -3835,7 +3835,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 294, "literal": "^2.0.1", @@ -3848,7 +3848,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 295, "literal": "^1.0.0", @@ -3861,7 +3861,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 296, "literal": "^4.0.0", @@ -3874,7 +3874,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 297, "literal": "^3.0.0", @@ -3887,7 +3887,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 298, "literal": "1.6.0", @@ -3900,7 +3900,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 299, "literal": "8.4.31", @@ -3913,7 +3913,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 300, "literal": "14.1.3", @@ -3926,7 +3926,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 301, "literal": "5.1.1", @@ -3939,7 +3939,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 302, "literal": "^4.2.11", @@ -3952,7 +3952,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 303, "literal": "0.5.2", @@ -3965,7 +3965,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 304, "literal": "^1.0.30001579", @@ -4149,7 +4149,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 318, "literal": "^2.4.0", @@ -4162,7 +4162,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 319, "literal": "0.0.1", @@ -4188,7 +4188,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 321, "literal": "^3.3.6", @@ -4201,7 +4201,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 322, "literal": "^1.0.0", @@ -4214,7 +4214,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 323, "literal": "^1.0.2", @@ -4227,7 +4227,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 324, "literal": "^1.1.0", @@ -4240,7 +4240,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 325, "literal": "^7.33.2", @@ -4253,7 +4253,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 326, "literal": "^2.28.1", @@ -4266,7 +4266,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 327, "literal": "^6.7.1", @@ -4279,7 +4279,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 328, "literal": "^1.3.3", @@ -4292,7 +4292,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 329, "literal": "14.1.3", @@ -4305,7 +4305,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 330, "literal": "^5.4.2 || ^6.0.0", @@ -4318,7 +4318,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 331, "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", @@ -4331,7 +4331,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 332, "literal": "^0.3.6", @@ -4344,7 +4344,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 333, "literal": "^3.5.2", @@ -4384,7 +4384,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 336, "literal": "^6.12.4", @@ -4397,7 +4397,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 337, "literal": "^0.4.1", @@ -4410,7 +4410,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 338, "literal": "^4.0.0", @@ -4423,7 +4423,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 339, "literal": "^4.3.2", @@ -4436,7 +4436,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 340, "literal": "^9.6.1", @@ -4449,7 +4449,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 341, "literal": "^5.2.0", @@ -4462,7 +4462,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 342, "literal": "^1.4.2", @@ -4475,7 +4475,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 343, "literal": "^2.0.2", @@ -4488,7 +4488,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 344, "literal": "^5.0.0", @@ -4501,7 +4501,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 345, "literal": "^13.19.0", @@ -4514,7 +4514,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 346, "literal": "^4.0.0", @@ -4527,7 +4527,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 347, "literal": "^4.1.0", @@ -4540,7 +4540,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 348, "literal": "^3.0.0", @@ -4553,7 +4553,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 349, "literal": "^1.4.0", @@ -4566,7 +4566,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 350, "literal": "^3.1.2", @@ -4579,7 +4579,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 351, "literal": "8.50.0", @@ -4592,7 +4592,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 352, "literal": "^0.9.3", @@ -4605,7 +4605,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 353, "literal": "^6.0.1", @@ -4618,7 +4618,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 354, "literal": "^0.2.0", @@ -4631,7 +4631,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 355, "literal": "^7.0.2", @@ -4644,7 +4644,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 356, "literal": "^6.0.2", @@ -4657,7 +4657,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 357, "literal": "^0.1.4", @@ -4670,7 +4670,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 358, "literal": "^7.2.2", @@ -4683,7 +4683,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 359, "literal": "^4.6.2", @@ -4696,7 +4696,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 360, "literal": "^3.0.3", @@ -4709,7 +4709,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 361, "literal": "^3.1.3", @@ -4722,7 +4722,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 362, "literal": "^1.4.0", @@ -4735,7 +4735,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 363, "literal": "^2.1.2", @@ -4748,7 +4748,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 364, "literal": "^1.2.8", @@ -4761,7 +4761,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 365, "literal": "^6.0.1", @@ -4774,7 +4774,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 366, "literal": "^3.4.3", @@ -4787,7 +4787,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 367, "literal": "^4.0.0", @@ -4800,7 +4800,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 368, "literal": "^4.6.1", @@ -4813,7 +4813,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 369, "literal": "^0.11.11", @@ -4826,7 +4826,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 370, "literal": "^4.2.0", @@ -4839,7 +4839,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 371, "literal": "^1.0.1", @@ -4852,7 +4852,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 372, "literal": "^1.0.1", @@ -4865,7 +4865,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 373, "literal": "^3.3.0", @@ -4891,7 +4891,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 375, "literal": "^2.0.2", @@ -4904,7 +4904,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 376, "literal": "^4.3.1", @@ -4917,7 +4917,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 377, "literal": "^3.0.5", @@ -4930,7 +4930,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 378, "literal": "^1.1.7", @@ -4943,7 +4943,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 379, "literal": "^1.0.0", @@ -4956,7 +4956,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 380, "literal": "0.0.1", @@ -4969,7 +4969,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 381, "literal": "^3.0.4", @@ -4982,7 +4982,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 382, "literal": "^3.2.9", @@ -4995,7 +4995,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 383, "literal": "^4.5.3", @@ -5008,7 +5008,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 384, "literal": "^3.0.2", @@ -5021,7 +5021,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 385, "literal": "^7.1.3", @@ -5034,7 +5034,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 386, "literal": "^1.0.0", @@ -5047,7 +5047,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 387, "literal": "^1.0.4", @@ -5060,7 +5060,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 388, "literal": "2", @@ -5073,7 +5073,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 389, "literal": "^3.1.1", @@ -5086,7 +5086,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 390, "literal": "^1.3.0", @@ -5099,7 +5099,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 391, "literal": "^1.0.0", @@ -5112,7 +5112,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 392, "literal": "^1.3.0", @@ -5125,7 +5125,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 393, "literal": "1", @@ -5138,7 +5138,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 394, "literal": "3.0.1", @@ -5151,7 +5151,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 395, "literal": "^6.12.4", @@ -5164,7 +5164,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 396, "literal": "^4.3.2", @@ -5177,7 +5177,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 397, "literal": "^9.6.0", @@ -5190,7 +5190,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 398, "literal": "^13.19.0", @@ -5203,7 +5203,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 399, "literal": "^5.2.0", @@ -5216,7 +5216,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 400, "literal": "^3.2.1", @@ -5229,7 +5229,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 401, "literal": "^4.1.0", @@ -5242,7 +5242,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 402, "literal": "^3.1.2", @@ -5255,7 +5255,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 403, "literal": "^3.1.1", @@ -5268,7 +5268,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 404, "literal": "^0.20.2", @@ -5281,7 +5281,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 405, "literal": "^8.9.0", @@ -5294,7 +5294,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 406, "literal": "^5.3.2", @@ -5307,7 +5307,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 407, "literal": "^3.4.1", @@ -5333,7 +5333,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 409, "literal": "^3.1.1", @@ -5346,7 +5346,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 410, "literal": "^2.0.0", @@ -5359,7 +5359,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 411, "literal": "^0.4.1", @@ -5372,7 +5372,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 412, "literal": "^4.2.2", @@ -5385,7 +5385,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 413, "literal": "^2.1.0", @@ -5398,7 +5398,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 414, "literal": "^4.3.0", @@ -5411,7 +5411,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 415, "literal": "^5.2.0", @@ -5424,7 +5424,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 416, "literal": "^5.2.0", @@ -5437,7 +5437,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 417, "literal": "^1.2.1", @@ -5450,7 +5450,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 418, "literal": "^0.1.3", @@ -5463,7 +5463,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 419, "literal": "^1.2.5", @@ -5476,7 +5476,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 420, "literal": "^0.4.0", @@ -5489,7 +5489,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 421, "literal": "^0.4.1", @@ -5502,7 +5502,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 422, "literal": "^2.0.6", @@ -5515,7 +5515,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 423, "literal": "^1.2.1", @@ -5528,7 +5528,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 424, "literal": "~0.4.0", @@ -5541,7 +5541,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 425, "literal": "^1.2.1", @@ -5554,7 +5554,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 426, "literal": "^2.0.2", @@ -5567,7 +5567,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 427, "literal": "^6.0.0", @@ -5580,7 +5580,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 428, "literal": "^4.0.0", @@ -5593,7 +5593,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 429, "literal": "^5.0.0", @@ -5606,7 +5606,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 430, "literal": "^3.0.2", @@ -5619,7 +5619,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 431, "literal": "^0.1.0", @@ -5632,7 +5632,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 432, "literal": "^5.1.0", @@ -5645,7 +5645,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 433, "literal": "^4.1.0", @@ -5658,7 +5658,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 434, "literal": "^7.1.0", @@ -5671,7 +5671,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 435, "literal": "^4.0.0", @@ -5684,7 +5684,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 436, "literal": "^4.3.4", @@ -5697,7 +5697,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 437, "literal": "^5.12.0", @@ -5710,7 +5710,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 438, "literal": "^2.7.4", @@ -5723,7 +5723,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 439, "literal": "^3.3.1", @@ -5736,7 +5736,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 440, "literal": "^4.5.0", @@ -5749,7 +5749,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 441, "literal": "^2.11.0", @@ -5762,7 +5762,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 442, "literal": "^4.0.3", @@ -5801,7 +5801,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 445, "literal": "^3.1.7", @@ -5814,7 +5814,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 446, "literal": "^1.2.3", @@ -5827,7 +5827,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 447, "literal": "^1.3.2", @@ -5840,7 +5840,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 448, "literal": "^1.3.2", @@ -5853,7 +5853,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 449, "literal": "^3.2.7", @@ -5866,7 +5866,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 450, "literal": "^2.1.0", @@ -5879,7 +5879,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 451, "literal": "^0.3.9", @@ -5892,7 +5892,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 452, "literal": "^2.8.0", @@ -5905,7 +5905,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 453, "literal": "^2.0.0", @@ -5918,7 +5918,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 454, "literal": "^2.13.1", @@ -5931,7 +5931,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 455, "literal": "^4.0.3", @@ -5944,7 +5944,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 456, "literal": "^3.1.2", @@ -5957,7 +5957,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 457, "literal": "^2.0.7", @@ -5970,7 +5970,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 458, "literal": "^1.0.1", @@ -5983,7 +5983,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 459, "literal": "^1.1.7", @@ -5996,7 +5996,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 460, "literal": "^6.3.1", @@ -6009,7 +6009,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 461, "literal": "^3.15.0", @@ -6035,7 +6035,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 463, "literal": "^0.0.29", @@ -6048,7 +6048,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 464, "literal": "^1.0.2", @@ -6061,7 +6061,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 465, "literal": "^1.2.6", @@ -6074,7 +6074,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 466, "literal": "^3.0.0", @@ -6087,7 +6087,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 467, "literal": "^1.2.0", @@ -6100,7 +6100,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 468, "literal": "^1.0.7", @@ -6113,7 +6113,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 469, "literal": "^1.2.1", @@ -6126,7 +6126,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 470, "literal": "^1.0.0", @@ -6139,7 +6139,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 471, "literal": "^1.3.0", @@ -6152,7 +6152,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 472, "literal": "^1.0.1", @@ -6165,7 +6165,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 473, "literal": "^1.0.0", @@ -6178,7 +6178,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 474, "literal": "^1.1.1", @@ -6191,7 +6191,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 475, "literal": "^1.0.0", @@ -6204,7 +6204,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 476, "literal": "^1.2.4", @@ -6217,7 +6217,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 477, "literal": "^1.3.0", @@ -6230,7 +6230,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 478, "literal": "^1.1.2", @@ -6243,7 +6243,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 479, "literal": "^1.0.1", @@ -6256,7 +6256,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 480, "literal": "^1.0.3", @@ -6269,7 +6269,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 481, "literal": "^2.0.0", @@ -6282,7 +6282,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 482, "literal": "^1.0.0", @@ -6295,7 +6295,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 483, "literal": "^1.3.0", @@ -6308,7 +6308,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 484, "literal": "^1.0.1", @@ -6321,7 +6321,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 485, "literal": "^1.1.3", @@ -6334,7 +6334,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 486, "literal": "^1.0.0", @@ -6347,7 +6347,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 487, "literal": "^1.3.0", @@ -6360,7 +6360,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 488, "literal": "^1.1.2", @@ -6373,7 +6373,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 489, "literal": "^1.2.4", @@ -6386,7 +6386,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 490, "literal": "^1.2.1", @@ -6399,7 +6399,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 491, "literal": "^1.1.4", @@ -6412,7 +6412,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 492, "literal": "^1.3.0", @@ -6425,7 +6425,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 493, "literal": "^1.1.2", @@ -6438,7 +6438,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 494, "literal": "^1.2.4", @@ -6451,7 +6451,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 495, "literal": "^1.0.1", @@ -6464,7 +6464,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 496, "literal": "^1.0.2", @@ -6477,7 +6477,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 497, "literal": "^1.0.7", @@ -6490,7 +6490,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 498, "literal": "^1.2.1", @@ -6503,7 +6503,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 499, "literal": "^1.23.2", @@ -6516,7 +6516,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 500, "literal": "^1.0.1", @@ -6529,7 +6529,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 501, "literal": "^1.0.3", @@ -6542,7 +6542,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 502, "literal": "^1.0.7", @@ -6555,7 +6555,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 503, "literal": "^1.0.7", @@ -6568,7 +6568,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 504, "literal": "^1.0.1", @@ -6581,7 +6581,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 505, "literal": "^1.0.1", @@ -6594,7 +6594,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 506, "literal": "^1.0.0", @@ -6607,7 +6607,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 507, "literal": "^1.0.0", @@ -6620,7 +6620,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 508, "literal": "^1.3.0", @@ -6633,7 +6633,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 509, "literal": "^1.0.0", @@ -6646,7 +6646,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 510, "literal": "^2.0.3", @@ -6659,7 +6659,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 511, "literal": "^1.2.1", @@ -6672,7 +6672,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 512, "literal": "^1.1.6", @@ -6685,7 +6685,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 513, "literal": "^1.2.4", @@ -6698,7 +6698,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 514, "literal": "^1.0.2", @@ -6711,7 +6711,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 515, "literal": "^1.0.3", @@ -6724,7 +6724,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 516, "literal": "^1.0.1", @@ -6737,7 +6737,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 517, "literal": "^1.0.2", @@ -6750,7 +6750,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 518, "literal": "^1.0.3", @@ -6763,7 +6763,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 519, "literal": "^1.0.3", @@ -6776,7 +6776,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 520, "literal": "^2.0.2", @@ -6789,7 +6789,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 521, "literal": "^1.0.7", @@ -6802,7 +6802,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 522, "literal": "^3.0.4", @@ -6815,7 +6815,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 523, "literal": "^1.2.7", @@ -6828,7 +6828,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 524, "literal": "^1.0.1", @@ -6841,7 +6841,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 525, "literal": "^2.0.3", @@ -6854,7 +6854,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 526, "literal": "^1.1.4", @@ -6867,7 +6867,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 527, "literal": "^1.0.3", @@ -6880,7 +6880,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 528, "literal": "^1.0.7", @@ -6893,7 +6893,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 529, "literal": "^1.1.13", @@ -6906,7 +6906,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 530, "literal": "^1.0.2", @@ -6919,7 +6919,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 531, "literal": "^1.13.1", @@ -6932,7 +6932,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 532, "literal": "^1.1.1", @@ -6945,7 +6945,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 533, "literal": "^4.1.5", @@ -6958,7 +6958,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 534, "literal": "^1.5.2", @@ -6971,7 +6971,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 535, "literal": "^1.1.2", @@ -6984,7 +6984,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 536, "literal": "^1.0.3", @@ -6997,7 +6997,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 537, "literal": "^1.2.9", @@ -7010,7 +7010,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 538, "literal": "^1.0.8", @@ -7023,7 +7023,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 539, "literal": "^1.0.8", @@ -7036,7 +7036,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 540, "literal": "^1.0.2", @@ -7049,7 +7049,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 541, "literal": "^1.0.1", @@ -7062,7 +7062,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 542, "literal": "^1.0.2", @@ -7075,7 +7075,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 543, "literal": "^1.0.6", @@ -7088,7 +7088,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 544, "literal": "^1.0.2", @@ -7101,7 +7101,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 545, "literal": "^1.1.15", @@ -7114,7 +7114,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 546, "literal": "^1.0.7", @@ -7127,7 +7127,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 547, "literal": "^1.0.7", @@ -7140,7 +7140,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 548, "literal": "^0.3.3", @@ -7153,7 +7153,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 549, "literal": "^1.0.1", @@ -7166,7 +7166,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 550, "literal": "^1.0.2", @@ -7179,7 +7179,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 551, "literal": "^1.0.3", @@ -7192,7 +7192,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 552, "literal": "^1.1.3", @@ -7205,7 +7205,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 553, "literal": "^1.0.0", @@ -7218,7 +7218,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 554, "literal": "^1.0.2", @@ -7231,7 +7231,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 555, "literal": "^1.0.2", @@ -7244,7 +7244,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 556, "literal": "^1.0.3", @@ -7257,7 +7257,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 557, "literal": "^1.0.2", @@ -7270,7 +7270,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 558, "literal": "^1.0.1", @@ -7283,7 +7283,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 559, "literal": "^1.1.0", @@ -7296,7 +7296,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 560, "literal": "^1.0.4", @@ -7309,7 +7309,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 561, "literal": "^1.0.5", @@ -7322,7 +7322,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 562, "literal": "^1.0.3", @@ -7335,7 +7335,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 563, "literal": "^1.0.2", @@ -7348,7 +7348,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 564, "literal": "^1.0.0", @@ -7361,7 +7361,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 565, "literal": "^1.0.0", @@ -7374,7 +7374,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 566, "literal": "^1.0.2", @@ -7387,7 +7387,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 567, "literal": "^1.0.0", @@ -7400,7 +7400,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 568, "literal": "^1.0.1", @@ -7413,7 +7413,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 569, "literal": "^1.0.7", @@ -7426,7 +7426,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 570, "literal": "^0.3.3", @@ -7439,7 +7439,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 571, "literal": "^1.0.1", @@ -7452,7 +7452,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 572, "literal": "^1.0.3", @@ -7465,7 +7465,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 573, "literal": "^1.1.13", @@ -7478,7 +7478,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 574, "literal": "^1.0.0", @@ -7491,7 +7491,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 575, "literal": "^1.1.14", @@ -7504,7 +7504,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 576, "literal": "^1.0.7", @@ -7517,7 +7517,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 577, "literal": "^1.0.7", @@ -7530,7 +7530,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 578, "literal": "^0.3.3", @@ -7543,7 +7543,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 579, "literal": "^1.0.1", @@ -7556,7 +7556,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 580, "literal": "^1.0.3", @@ -7569,7 +7569,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 581, "literal": "^1.1.13", @@ -7582,7 +7582,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 582, "literal": "^1.0.7", @@ -7595,7 +7595,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 583, "literal": "^0.3.3", @@ -7608,7 +7608,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 584, "literal": "^1.0.1", @@ -7621,7 +7621,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 585, "literal": "^1.0.3", @@ -7634,7 +7634,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 586, "literal": "^1.1.13", @@ -7647,7 +7647,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 587, "literal": "^1.0.7", @@ -7660,7 +7660,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 588, "literal": "^1.3.0", @@ -7673,7 +7673,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 589, "literal": "^1.1.13", @@ -7686,7 +7686,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 590, "literal": "^1.0.7", @@ -7699,7 +7699,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 591, "literal": "^1.2.1", @@ -7712,7 +7712,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 592, "literal": "^1.0.0", @@ -7725,7 +7725,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 593, "literal": "^1.0.7", @@ -7738,7 +7738,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 594, "literal": "^1.2.1", @@ -7751,7 +7751,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 595, "literal": "^1.0.0", @@ -7764,7 +7764,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 596, "literal": "^1.0.7", @@ -7777,7 +7777,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 597, "literal": "^1.2.1", @@ -7790,7 +7790,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 598, "literal": "^1.23.0", @@ -7803,7 +7803,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 599, "literal": "^1.0.0", @@ -7816,7 +7816,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 600, "literal": "^1.0.6", @@ -7829,7 +7829,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 601, "literal": "^1.3.0", @@ -7842,7 +7842,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 602, "literal": "^1.1.4", @@ -7855,7 +7855,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 603, "literal": "^1.0.2", @@ -7868,7 +7868,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 604, "literal": "^1.0.0", @@ -7881,7 +7881,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 605, "literal": "^1.0.7", @@ -7894,7 +7894,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 606, "literal": "^1.2.4", @@ -7907,7 +7907,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 607, "literal": "^1.0.3", @@ -7920,7 +7920,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 608, "literal": "^2.0.5", @@ -7933,7 +7933,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 609, "literal": "^1.0.6", @@ -7946,7 +7946,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 610, "literal": "^1.2.1", @@ -7959,7 +7959,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 611, "literal": "^1.3.0", @@ -7972,7 +7972,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 612, "literal": "^2.0.1", @@ -7985,7 +7985,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 613, "literal": "^1.1.4", @@ -7998,7 +7998,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 614, "literal": "^1.3.0", @@ -8011,7 +8011,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 615, "literal": "^1.2.3", @@ -8024,7 +8024,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 616, "literal": "^1.0.2", @@ -8037,7 +8037,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 617, "literal": "^1.0.5", @@ -8050,7 +8050,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 618, "literal": "^1.2.1", @@ -8063,7 +8063,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 619, "literal": "^1.0.3", @@ -8076,7 +8076,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 620, "literal": "^1.1.1", @@ -8089,7 +8089,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 621, "literal": "^1.0.2", @@ -8102,7 +8102,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 622, "literal": "^1.0.7", @@ -8115,7 +8115,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 623, "literal": "^1.1.13", @@ -8128,7 +8128,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 624, "literal": "^1.0.2", @@ -8141,7 +8141,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 625, "literal": "^1.2.1", @@ -8154,7 +8154,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 626, "literal": "^1.3.0", @@ -8167,7 +8167,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 627, "literal": "^2.0.0", @@ -8180,7 +8180,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 628, "literal": "^1.0.4", @@ -8193,7 +8193,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 629, "literal": "^1.0.7", @@ -8206,7 +8206,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 630, "literal": "^1.3.0", @@ -8219,7 +8219,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 631, "literal": "^1.2.4", @@ -8232,7 +8232,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 632, "literal": "^1.13.1", @@ -8245,7 +8245,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 633, "literal": "^1.2.1", @@ -8258,7 +8258,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 634, "literal": "^1.0.1", @@ -8271,7 +8271,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 635, "literal": "^1.0.5", @@ -8284,7 +8284,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 636, "literal": "^1.3.0", @@ -8297,7 +8297,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 637, "literal": "^1.2.4", @@ -8310,7 +8310,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 638, "literal": "^1.0.2", @@ -8323,7 +8323,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 639, "literal": "^1.2.0", @@ -8336,7 +8336,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 640, "literal": "^1.22.1", @@ -8349,7 +8349,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 641, "literal": "^1.2.3", @@ -8362,7 +8362,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 642, "literal": "^1.1.4", @@ -8375,7 +8375,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 643, "literal": "^1.0.1", @@ -8388,7 +8388,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 644, "literal": "^1.0.2", @@ -8401,7 +8401,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 645, "literal": "^1.0.0", @@ -8414,7 +8414,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 646, "literal": "^1.2.4", @@ -8427,7 +8427,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 647, "literal": "^1.0.2", @@ -8440,7 +8440,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 648, "literal": "^2.0.1", @@ -8453,7 +8453,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 649, "literal": "^1.0.6", @@ -8466,7 +8466,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 650, "literal": "^1.3.0", @@ -8479,7 +8479,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 651, "literal": "^1.0.1", @@ -8492,7 +8492,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 652, "literal": "^1.0.7", @@ -8505,7 +8505,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 653, "literal": "^1.3.0", @@ -8518,7 +8518,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 654, "literal": "^1.0.1", @@ -8531,7 +8531,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 655, "literal": "^1.0.6", @@ -8544,7 +8544,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 656, "literal": "^1.3.0", @@ -8557,7 +8557,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 657, "literal": "^1.0.1", @@ -8570,7 +8570,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 658, "literal": "^1.0.1", @@ -8583,7 +8583,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 659, "literal": "^1.0.5", @@ -8596,7 +8596,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 660, "literal": "^1.2.1", @@ -8609,7 +8609,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 661, "literal": "^1.22.3", @@ -8622,7 +8622,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 662, "literal": "^1.2.1", @@ -8635,7 +8635,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 663, "literal": "^1.2.3", @@ -8648,7 +8648,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 664, "literal": "^3.0.4", @@ -8661,7 +8661,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 665, "literal": "^1.0.2", @@ -8674,7 +8674,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 666, "literal": "^1.0.5", @@ -8687,7 +8687,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 667, "literal": "^3.0.4", @@ -8700,7 +8700,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 668, "literal": "^1.0.7", @@ -8713,7 +8713,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 669, "literal": "^1.2.1", @@ -8726,7 +8726,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 670, "literal": "^1.23.2", @@ -8739,7 +8739,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 671, "literal": "^1.0.0", @@ -8752,7 +8752,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 672, "literal": "^3.2.7", @@ -8765,7 +8765,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 673, "literal": "^2.1.1", @@ -8778,7 +8778,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 674, "literal": "^3.2.7", @@ -8791,7 +8791,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 675, "literal": "^2.13.0", @@ -8804,7 +8804,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 676, "literal": "^1.22.4", @@ -8817,7 +8817,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 677, "literal": "^2.0.2", @@ -8830,7 +8830,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 678, "literal": "^1.0.2", @@ -8843,7 +8843,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 679, "literal": "^1.2.0", @@ -8856,7 +8856,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 680, "literal": "^1.22.1", @@ -8869,7 +8869,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 681, "literal": "^1.0.0", @@ -8882,7 +8882,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 682, "literal": "^2.0.0", @@ -8895,7 +8895,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 683, "literal": "^1.0.2", @@ -8908,7 +8908,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 684, "literal": "^1.2.0", @@ -8921,7 +8921,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 685, "literal": "^1.22.1", @@ -8934,7 +8934,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 686, "literal": "^1.0.0", @@ -8947,7 +8947,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 687, "literal": "^1.0.7", @@ -8960,7 +8960,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 688, "literal": "^1.2.1", @@ -8973,7 +8973,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 689, "literal": "^1.23.2", @@ -8986,7 +8986,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 690, "literal": "^1.3.0", @@ -8999,7 +8999,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 691, "literal": "^1.0.0", @@ -9012,7 +9012,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 692, "literal": "^1.0.2", @@ -9025,7 +9025,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 693, "literal": "^1.0.7", @@ -9038,7 +9038,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 694, "literal": "^1.2.1", @@ -9051,7 +9051,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 695, "literal": "^1.23.2", @@ -9064,7 +9064,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 696, "literal": "^1.0.0", @@ -9077,7 +9077,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 697, "literal": "^1.2.4", @@ -9090,7 +9090,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 698, "literal": "^1.0.7", @@ -9103,7 +9103,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 699, "literal": "^1.0.0", @@ -9116,7 +9116,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 700, "literal": "^4.2.4", @@ -9129,7 +9129,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 701, "literal": "^2.2.0", @@ -9155,7 +9155,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 703, "literal": "^4.3.4", @@ -9168,7 +9168,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 704, "literal": "6.21.0", @@ -9181,7 +9181,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 705, "literal": "6.21.0", @@ -9194,7 +9194,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 706, "literal": "6.21.0", @@ -9207,7 +9207,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 707, "literal": "6.21.0", @@ -9233,7 +9233,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 709, "literal": "^4.3.4", @@ -9246,7 +9246,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 710, "literal": "^11.1.0", @@ -9259,7 +9259,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 711, "literal": "^7.5.4", @@ -9272,7 +9272,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 712, "literal": "^4.0.3", @@ -9285,7 +9285,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 713, "literal": "9.0.3", @@ -9298,7 +9298,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 714, "literal": "^1.0.1", @@ -9311,7 +9311,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 715, "literal": "6.21.0", @@ -9324,7 +9324,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 716, "literal": "6.21.0", @@ -9337,7 +9337,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 717, "literal": "^3.4.1", @@ -9350,7 +9350,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 718, "literal": "6.21.0", @@ -9376,7 +9376,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 720, "literal": "^2.0.1", @@ -9389,7 +9389,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 721, "literal": "^2.1.0", @@ -9402,7 +9402,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 722, "literal": "^3.0.1", @@ -9415,7 +9415,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 723, "literal": "^3.2.9", @@ -9428,7 +9428,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 724, "literal": "^5.2.0", @@ -9441,7 +9441,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 725, "literal": "^1.4.1", @@ -9454,7 +9454,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 726, "literal": "^3.0.0", @@ -9467,7 +9467,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 727, "literal": "^4.0.0", @@ -9480,7 +9480,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 728, "literal": "6.21.0", @@ -9493,7 +9493,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 729, "literal": "6.21.0", @@ -9506,7 +9506,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 730, "literal": "10.3.10", @@ -9519,7 +9519,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 731, "literal": "^7.23.2", @@ -9532,7 +9532,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 732, "literal": "^5.3.0", @@ -9545,7 +9545,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 733, "literal": "^3.1.7", @@ -9558,7 +9558,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 734, "literal": "^1.3.2", @@ -9571,7 +9571,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 735, "literal": "^0.0.8", @@ -9584,7 +9584,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 736, "literal": "=4.7.0", @@ -9597,7 +9597,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 737, "literal": "^3.2.1", @@ -9610,7 +9610,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 738, "literal": "^1.0.8", @@ -9623,7 +9623,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 739, "literal": "^9.2.2", @@ -9636,7 +9636,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 740, "literal": "^1.0.15", @@ -9649,7 +9649,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 741, "literal": "^2.0.0", @@ -9662,7 +9662,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 742, "literal": "^3.3.5", @@ -9675,7 +9675,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 743, "literal": "^1.0.9", @@ -9688,7 +9688,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 744, "literal": "^3.1.2", @@ -9701,7 +9701,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 745, "literal": "^1.1.7", @@ -9714,7 +9714,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 746, "literal": "^2.0.7", @@ -9740,7 +9740,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 748, "literal": "^1.0.7", @@ -9753,7 +9753,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 749, "literal": "^1.2.1", @@ -9766,7 +9766,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 750, "literal": "^1.0.0", @@ -9779,7 +9779,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 751, "literal": "^0.3.20", @@ -9792,7 +9792,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 752, "literal": "^3.1.6", @@ -9805,7 +9805,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 753, "literal": "^1.3.1", @@ -9818,7 +9818,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 754, "literal": "^4.1.4", @@ -9831,7 +9831,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 755, "literal": "^1.1.6", @@ -9844,7 +9844,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 756, "literal": "^1.0.7", @@ -9857,7 +9857,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 757, "literal": "^1.2.1", @@ -9870,7 +9870,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 758, "literal": "^1.23.3", @@ -9883,7 +9883,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 759, "literal": "^1.3.0", @@ -9896,7 +9896,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 760, "literal": "^2.0.3", @@ -9909,7 +9909,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 761, "literal": "^1.1.2", @@ -9922,7 +9922,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 762, "literal": "^1.2.4", @@ -9935,7 +9935,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 763, "literal": "^1.0.3", @@ -9948,7 +9948,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 764, "literal": "^1.0.2", @@ -9961,7 +9961,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 765, "literal": "^1.0.3", @@ -9974,7 +9974,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 766, "literal": "^1.0.3", @@ -9987,7 +9987,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 767, "literal": "^1.0.7", @@ -10000,7 +10000,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 768, "literal": "^1.1.2", @@ -10013,7 +10013,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 769, "literal": "^1.1.2", @@ -10026,7 +10026,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 770, "literal": "^1.2.1", @@ -10039,7 +10039,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 771, "literal": "^1.2.1", @@ -10052,7 +10052,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 772, "literal": "^1.0.3", @@ -10065,7 +10065,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 773, "literal": "^1.0.4", @@ -10078,7 +10078,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 774, "literal": "^2.0.1", @@ -10091,7 +10091,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 775, "literal": "^1.0.7", @@ -10104,7 +10104,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 776, "literal": "^1.2.1", @@ -10117,7 +10117,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 777, "literal": "^1.23.1", @@ -10130,7 +10130,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 778, "literal": "^1.3.0", @@ -10143,7 +10143,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 779, "literal": "^1.2.4", @@ -10156,7 +10156,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 780, "literal": "^1.0.3", @@ -10169,7 +10169,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 781, "literal": "^1.1.3", @@ -10182,7 +10182,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 782, "literal": "^1.1.5", @@ -10195,7 +10195,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 783, "literal": "^1.0.0", @@ -10208,7 +10208,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 784, "literal": "^2.0.0", @@ -10221,7 +10221,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 785, "literal": "^1.0.5", @@ -10234,7 +10234,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 786, "literal": "^1.0.2", @@ -10247,7 +10247,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 787, "literal": "^1.0.10", @@ -10260,7 +10260,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 788, "literal": "^1.1.4", @@ -10273,7 +10273,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 789, "literal": "^1.0.2", @@ -10286,7 +10286,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 790, "literal": "^2.0.5", @@ -10299,7 +10299,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 791, "literal": "^1.0.2", @@ -10312,7 +10312,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 792, "literal": "^1.0.1", @@ -10325,7 +10325,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 793, "literal": "^1.1.9", @@ -10338,7 +10338,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 794, "literal": "^2.0.3", @@ -10351,7 +10351,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 795, "literal": "^2.0.3", @@ -10364,7 +10364,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 796, "literal": "^2.0.2", @@ -10377,7 +10377,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 797, "literal": "^2.0.3", @@ -10390,7 +10390,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 798, "literal": "^1.0.7", @@ -10403,7 +10403,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 799, "literal": "^1.2.4", @@ -10416,7 +10416,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 800, "literal": "^1.0.0", @@ -10429,7 +10429,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 801, "literal": "^1.0.2", @@ -10442,7 +10442,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 802, "literal": "^1.0.0", @@ -10455,7 +10455,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 803, "literal": "^2.0.3", @@ -10468,7 +10468,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 804, "literal": "^2.0.3", @@ -10481,7 +10481,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 805, "literal": "^0.14.0", @@ -10494,7 +10494,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 806, "literal": "^3.1.8", @@ -10507,7 +10507,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 807, "literal": "^1.2.5", @@ -10520,7 +10520,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 808, "literal": "^1.3.2", @@ -10533,7 +10533,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 809, "literal": "^1.1.2", @@ -10546,7 +10546,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 810, "literal": "^1.1.3", @@ -10559,7 +10559,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 811, "literal": "^2.1.0", @@ -10572,7 +10572,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 812, "literal": "^1.0.19", @@ -10585,7 +10585,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 813, "literal": "^5.3.0", @@ -10598,7 +10598,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 814, "literal": "^2.4.1 || ^3.0.0", @@ -10611,7 +10611,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 815, "literal": "^3.1.2", @@ -10624,7 +10624,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 816, "literal": "^1.1.8", @@ -10637,7 +10637,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 817, "literal": "^2.0.8", @@ -10650,7 +10650,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 818, "literal": "^1.1.4", @@ -10663,7 +10663,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 819, "literal": "^1.2.0", @@ -10676,7 +10676,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 820, "literal": "^15.8.1", @@ -10689,7 +10689,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 821, "literal": "^2.0.0-next.5", @@ -10702,7 +10702,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 822, "literal": "^6.3.1", @@ -10715,7 +10715,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 823, "literal": "^4.0.11", @@ -10741,7 +10741,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 825, "literal": "^1.0.7", @@ -10754,7 +10754,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 826, "literal": "^1.2.1", @@ -10767,7 +10767,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 827, "literal": "^1.23.2", @@ -10780,7 +10780,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 828, "literal": "^1.3.0", @@ -10793,7 +10793,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 829, "literal": "^1.0.0", @@ -10806,7 +10806,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 830, "literal": "^1.2.4", @@ -10819,7 +10819,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 831, "literal": "^1.0.1", @@ -10832,7 +10832,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 832, "literal": "^1.0.3", @@ -10845,7 +10845,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 833, "literal": "^1.0.7", @@ -10858,7 +10858,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 834, "literal": "^1.5.2", @@ -10871,7 +10871,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 835, "literal": "^2.0.2", @@ -10884,7 +10884,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 836, "literal": "^1.0.6", @@ -10897,7 +10897,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 837, "literal": "^2.13.0", @@ -10910,7 +10910,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 838, "literal": "^1.0.7", @@ -10923,7 +10923,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 839, "literal": "^1.0.0", @@ -10936,7 +10936,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 840, "literal": "^1.4.0", @@ -10949,7 +10949,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 841, "literal": "^4.1.1", @@ -10962,7 +10962,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 842, "literal": "^16.13.1", @@ -10975,7 +10975,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 843, "literal": "^1.2.1", @@ -10988,7 +10988,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 844, "literal": "^1.23.2", @@ -11001,7 +11001,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 845, "literal": "^1.0.0", @@ -11014,7 +11014,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 846, "literal": "^1.0.7", @@ -11027,7 +11027,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 847, "literal": "^1.2.1", @@ -11040,7 +11040,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 848, "literal": "^1.23.3", @@ -11053,7 +11053,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 849, "literal": "^1.3.0", @@ -11066,7 +11066,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 850, "literal": "^1.0.2", @@ -11079,7 +11079,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 851, "literal": "^1.0.2", @@ -11092,7 +11092,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 852, "literal": "^1.2.0", @@ -11105,7 +11105,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 853, "literal": "^1.22.1", @@ -11118,7 +11118,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 854, "literal": "^1.0.0", @@ -11131,7 +11131,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 855, "literal": "^1.0.7", @@ -11144,7 +11144,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 856, "literal": "^1.2.1", @@ -11157,7 +11157,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 857, "literal": "^1.23.2", @@ -11170,7 +11170,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 858, "literal": "^1.3.0", @@ -11183,7 +11183,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 859, "literal": "^1.0.0", @@ -11196,7 +11196,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 860, "literal": "^1.0.2", @@ -11209,7 +11209,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 861, "literal": "~8.5.10", @@ -11222,7 +11222,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 862, "literal": "~20.12.8", @@ -11235,7 +11235,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 863, "literal": "*", @@ -11248,7 +11248,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 864, "literal": "^4.21.10", @@ -11261,7 +11261,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 865, "literal": "^1.0.30001538", @@ -11274,7 +11274,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 866, "literal": "^4.3.6", @@ -11287,7 +11287,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 867, "literal": "^0.1.2", @@ -11300,7 +11300,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 868, "literal": "^1.0.0", @@ -11313,7 +11313,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 869, "literal": "^4.2.0", @@ -11339,7 +11339,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 871, "literal": "^1.0.30001587", @@ -11352,7 +11352,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 872, "literal": "^1.4.668", @@ -11365,7 +11365,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 873, "literal": "^2.0.14", @@ -11378,7 +11378,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 874, "literal": "^1.0.13", @@ -11391,7 +11391,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 875, "literal": "^3.1.2", @@ -11404,7 +11404,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 876, "literal": "^1.0.1", @@ -11430,7 +11430,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 878, "literal": "*", @@ -11443,7 +11443,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 879, "literal": "*", @@ -11456,7 +11456,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 880, "literal": "*", @@ -11469,7 +11469,7 @@ exports[`next build works: bun 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 881, "literal": "^3.0.2", @@ -22609,7 +22609,7 @@ exports[`next build works: node 1`] = ` "dependencies": [ { "behavior": { - "normal": true, + "prod": true, }, "id": 0, "literal": "20.7.0", @@ -22622,7 +22622,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 1, "literal": "18.2.22", @@ -22635,7 +22635,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 2, "literal": "18.2.7", @@ -22648,7 +22648,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 3, "literal": "10.4.16", @@ -22661,7 +22661,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 4, "literal": "^1.0.3", @@ -22674,7 +22674,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 5, "literal": "8.50.0", @@ -22687,7 +22687,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 6, "literal": "14.1.3", @@ -22700,7 +22700,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 7, "literal": "14.1.3", @@ -22713,7 +22713,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 8, "literal": "8.4.30", @@ -22726,7 +22726,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 9, "literal": "22.12.0", @@ -22739,7 +22739,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 10, "literal": "18.2.0", @@ -22752,7 +22752,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 11, "literal": "18.2.0", @@ -22765,7 +22765,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 12, "literal": "3.3.3", @@ -22778,7 +22778,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 13, "literal": "5.2.2", @@ -22791,7 +22791,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 14, "literal": "^5.0.2", @@ -22804,7 +22804,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 15, "literal": "^1.1.3", @@ -22817,7 +22817,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 16, "literal": "^1.18.2", @@ -22830,7 +22830,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 17, "literal": "^4.0.3", @@ -22843,7 +22843,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 18, "literal": "^8.4.23", @@ -22856,7 +22856,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 19, "literal": "^1.22.2", @@ -22869,7 +22869,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 20, "literal": "^3.32.0", @@ -22882,7 +22882,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 21, "literal": "^3.5.3", @@ -22895,7 +22895,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 22, "literal": "^3.2.12", @@ -22908,7 +22908,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 23, "literal": "^2.1.0", @@ -22921,7 +22921,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 24, "literal": "^1.2.2", @@ -22934,7 +22934,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 25, "literal": "^4.0.5", @@ -22947,7 +22947,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 26, "literal": "^1.0.0", @@ -22960,7 +22960,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 27, "literal": "^4.0.1", @@ -22973,7 +22973,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 28, "literal": "^6.0.2", @@ -22986,7 +22986,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 29, "literal": "^3.0.0", @@ -22999,7 +22999,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 30, "literal": "^3.0.0", @@ -23012,7 +23012,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 31, "literal": "^15.1.0", @@ -23025,7 +23025,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 32, "literal": "^6.0.1", @@ -23038,7 +23038,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 33, "literal": "^5.2.0", @@ -23051,7 +23051,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 34, "literal": "^4.0.1", @@ -23064,7 +23064,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 35, "literal": "^6.0.11", @@ -23077,7 +23077,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 36, "literal": "^3.0.0", @@ -23090,7 +23090,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 37, "literal": "^1.0.2", @@ -23103,7 +23103,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 38, "literal": "^2.3.4", @@ -23116,7 +23116,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 39, "literal": "^3.0.0", @@ -23157,7 +23157,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 42, "literal": "^3.3.6", @@ -23170,7 +23170,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 43, "literal": "^1.0.0", @@ -23183,7 +23183,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 44, "literal": "^1.0.2", @@ -23196,7 +23196,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 45, "literal": "^6.0.11", @@ -23222,7 +23222,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 47, "literal": "^4.0.0", @@ -23235,7 +23235,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 48, "literal": "^1.0.0", @@ -23248,7 +23248,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 49, "literal": "^1.1.7", @@ -23274,7 +23274,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 51, "literal": "^2.13.0", @@ -23287,7 +23287,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 52, "literal": "^1.0.7", @@ -23300,7 +23300,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 53, "literal": "^1.0.0", @@ -23313,7 +23313,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 54, "literal": "^2.0.0", @@ -23326,7 +23326,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 55, "literal": "^1.1.2", @@ -23339,7 +23339,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 56, "literal": "^2.3.0", @@ -23352,7 +23352,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 57, "literal": "^4.0.3", @@ -23365,7 +23365,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 58, "literal": "^2.1.1", @@ -23378,7 +23378,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 59, "literal": "^2.0.1", @@ -23404,7 +23404,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 61, "literal": "^3.0.3", @@ -23417,7 +23417,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 62, "literal": "^2.3.1", @@ -23430,7 +23430,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 63, "literal": "^7.1.1", @@ -23443,7 +23443,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 64, "literal": "^5.0.1", @@ -23456,7 +23456,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 65, "literal": "^7.0.0", @@ -23469,7 +23469,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 66, "literal": "^2.0.2", @@ -23482,7 +23482,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 67, "literal": "^1.2.3", @@ -23495,7 +23495,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 68, "literal": "^5.1.2", @@ -23508,7 +23508,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 69, "literal": "^1.3.0", @@ -23521,7 +23521,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 70, "literal": "^4.0.4", @@ -23534,7 +23534,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 71, "literal": "^4.0.1", @@ -23547,7 +23547,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 72, "literal": "2.1.5", @@ -23560,7 +23560,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 73, "literal": "^1.6.0", @@ -23573,7 +23573,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 74, "literal": "^1.0.4", @@ -23586,7 +23586,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 75, "literal": "2.0.5", @@ -23599,7 +23599,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 76, "literal": "^1.1.9", @@ -23612,7 +23612,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 77, "literal": "^1.2.2", @@ -23625,7 +23625,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 78, "literal": "~3.1.2", @@ -23638,7 +23638,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 79, "literal": "~3.0.2", @@ -23651,7 +23651,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 80, "literal": "~5.1.2", @@ -23664,7 +23664,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 81, "literal": "~2.1.0", @@ -23677,7 +23677,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 82, "literal": "~4.0.1", @@ -23690,7 +23690,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 83, "literal": "~3.0.0", @@ -23703,7 +23703,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 84, "literal": "~3.6.0", @@ -23729,7 +23729,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 86, "literal": "^2.2.1", @@ -23742,7 +23742,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 87, "literal": "^2.0.0", @@ -23755,7 +23755,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 88, "literal": "^3.0.0", @@ -23768,7 +23768,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 89, "literal": "^2.0.4", @@ -23781,7 +23781,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 90, "literal": "^0.3.2", @@ -23794,7 +23794,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 91, "literal": "^4.0.0", @@ -23807,7 +23807,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 92, "literal": "^10.3.10", @@ -23820,7 +23820,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 93, "literal": "^1.1.6", @@ -23833,7 +23833,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 94, "literal": "^2.7.0", @@ -23846,7 +23846,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 95, "literal": "^4.0.1", @@ -23859,7 +23859,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 96, "literal": "^0.1.9", @@ -23872,7 +23872,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 97, "literal": "^1.0.0", @@ -23885,7 +23885,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 98, "literal": "^4.0.1", @@ -23898,7 +23898,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 99, "literal": "^1.0.0", @@ -23911,7 +23911,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 100, "literal": ">= 3.1.0 < 4", @@ -23924,7 +23924,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 101, "literal": "^1.0.0", @@ -23937,7 +23937,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 102, "literal": "^3.1.0", @@ -23950,7 +23950,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 103, "literal": "^2.3.5", @@ -23963,7 +23963,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 104, "literal": "^9.0.1", @@ -23976,7 +23976,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 105, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -23989,7 +23989,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 106, "literal": "^1.10.1", @@ -24002,7 +24002,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 107, "literal": "^10.2.0", @@ -24015,7 +24015,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 108, "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", @@ -24028,7 +24028,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 109, "literal": "^2.0.1", @@ -24041,7 +24041,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 110, "literal": "^1.0.0", @@ -24054,7 +24054,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 111, "literal": "^8.0.2", @@ -24080,7 +24080,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 113, "literal": "^5.1.2", @@ -24093,7 +24093,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 114, "is_alias": true, @@ -24107,7 +24107,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 115, "literal": "^7.0.1", @@ -24120,7 +24120,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 116, "is_alias": true, @@ -24134,7 +24134,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 117, "literal": "^8.1.0", @@ -24147,7 +24147,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 118, "is_alias": true, @@ -24161,7 +24161,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 119, "literal": "^4.0.0", @@ -24174,7 +24174,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 120, "literal": "^4.1.0", @@ -24187,7 +24187,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 121, "literal": "^6.0.0", @@ -24200,7 +24200,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 122, "literal": "^5.0.1", @@ -24213,7 +24213,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 123, "literal": "^8.0.0", @@ -24226,7 +24226,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 124, "literal": "^3.0.0", @@ -24239,7 +24239,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 125, "literal": "^6.0.1", @@ -24252,7 +24252,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 126, "literal": "^2.0.1", @@ -24265,7 +24265,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 127, "literal": "~1.1.4", @@ -24278,7 +24278,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 128, "literal": "^6.1.0", @@ -24291,7 +24291,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 129, "literal": "^5.0.1", @@ -24304,7 +24304,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 130, "literal": "^7.0.1", @@ -24317,7 +24317,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 131, "literal": "^6.0.1", @@ -24330,7 +24330,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 132, "literal": "^0.2.0", @@ -24343,7 +24343,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 133, "literal": "^9.2.2", @@ -24356,7 +24356,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 134, "literal": "^7.0.1", @@ -24369,7 +24369,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 135, "literal": "^7.0.0", @@ -24382,7 +24382,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 136, "literal": "^4.0.1", @@ -24395,7 +24395,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 137, "literal": "^3.1.0", @@ -24408,7 +24408,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 138, "literal": "^2.0.0", @@ -24421,7 +24421,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 139, "literal": "^2.0.1", @@ -24434,7 +24434,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 140, "literal": "^2.0.0", @@ -24447,7 +24447,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 141, "literal": "^3.0.0", @@ -24460,7 +24460,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 142, "literal": "^1.2.1", @@ -24473,7 +24473,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 143, "literal": "^1.4.10", @@ -24486,7 +24486,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 144, "literal": "^0.3.24", @@ -24499,7 +24499,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 145, "literal": "^3.1.0", @@ -24512,7 +24512,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 146, "literal": "^1.4.14", @@ -24525,7 +24525,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 147, "literal": "^0.23.0", @@ -24538,7 +24538,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 148, "literal": "^1.1.0", @@ -24564,7 +24564,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 150, "literal": "^1.1.0", @@ -24577,7 +24577,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 151, "literal": "^3.0.0 || ^4.0.0", @@ -24590,7 +24590,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 152, "literal": "^1.1.0", @@ -24603,7 +24603,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 153, "literal": "9.0.0", @@ -24616,7 +24616,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 154, "literal": "22.12.0", @@ -24629,7 +24629,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 155, "literal": "2.2.3", @@ -24642,7 +24642,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 156, "literal": "0.0.1299070", @@ -24655,7 +24655,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 157, "literal": "4.3.4", @@ -24668,7 +24668,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 158, "literal": "2.0.1", @@ -24681,7 +24681,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 159, "literal": "2.0.3", @@ -24694,7 +24694,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 160, "literal": "6.4.0", @@ -24707,7 +24707,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 161, "literal": "3.0.5", @@ -24720,7 +24720,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 162, "literal": "1.4.3", @@ -24733,7 +24733,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 163, "literal": "17.7.2", @@ -24746,7 +24746,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 164, "literal": "7.6.0", @@ -24759,7 +24759,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 165, "literal": "^6.0.0", @@ -24772,7 +24772,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 166, "literal": "^4.0.0", @@ -24785,7 +24785,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 167, "literal": "^8.0.1", @@ -24798,7 +24798,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 168, "literal": "^3.1.1", @@ -24811,7 +24811,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 169, "literal": "^2.0.5", @@ -24824,7 +24824,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 170, "literal": "^2.1.1", @@ -24837,7 +24837,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 171, "literal": "^4.2.3", @@ -24850,7 +24850,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 172, "literal": "^5.0.5", @@ -24863,7 +24863,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 173, "literal": "^21.1.1", @@ -24876,7 +24876,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 174, "literal": "^4.2.0", @@ -24889,7 +24889,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 175, "literal": "^6.0.1", @@ -24902,7 +24902,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 176, "literal": "^7.0.0", @@ -24915,7 +24915,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 177, "literal": "^5.2.1", @@ -24928,7 +24928,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 178, "literal": "^2.3.8", @@ -24941,7 +24941,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 179, "literal": "^1.3.1", @@ -24954,7 +24954,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 180, "literal": "^1.1.13", @@ -24967,7 +24967,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 181, "literal": "^3.0.0", @@ -24980,7 +24980,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 182, "literal": "^3.1.5", @@ -25019,7 +25019,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 185, "literal": "^2.1.0", @@ -25032,7 +25032,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 186, "literal": "^2.0.0", @@ -25045,7 +25045,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 187, "literal": "^2.0.0", @@ -25058,7 +25058,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 188, "literal": "^2.0.0", @@ -25071,7 +25071,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 189, "literal": "^2.18.0", @@ -25084,7 +25084,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 190, "literal": "^1.3.2", @@ -25097,7 +25097,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 191, "literal": "^1.0.1", @@ -25110,7 +25110,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 192, "literal": "^1.1.0", @@ -25136,7 +25136,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 194, "literal": "^1.6.4", @@ -25149,7 +25149,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 195, "literal": "^1.6.4", @@ -25162,7 +25162,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 196, "literal": "^1.2.0", @@ -25175,7 +25175,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 197, "literal": "^2.15.0", @@ -25188,7 +25188,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 198, "literal": "^1.1.0", @@ -25201,7 +25201,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 199, "literal": "^1.3.1", @@ -25214,7 +25214,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 200, "literal": "1", @@ -25227,7 +25227,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 201, "literal": "^1.4.0", @@ -25240,7 +25240,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 202, "literal": "^7.0.2", @@ -25253,7 +25253,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 203, "literal": "^4.3.4", @@ -25266,7 +25266,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 204, "literal": "^7.0.1", @@ -25279,7 +25279,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 205, "literal": "^7.0.3", @@ -25292,7 +25292,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 206, "literal": "^7.14.1", @@ -25305,7 +25305,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 207, "literal": "^7.0.1", @@ -25318,7 +25318,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 208, "literal": "^1.1.0", @@ -25331,7 +25331,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 209, "literal": "^8.0.2", @@ -25344,7 +25344,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 210, "literal": "^7.1.1", @@ -25357,7 +25357,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 211, "literal": "^4.3.4", @@ -25370,7 +25370,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 212, "literal": "^2.7.1", @@ -25383,7 +25383,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 213, "literal": "^9.0.5", @@ -25396,7 +25396,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 214, "literal": "^4.2.0", @@ -25409,7 +25409,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 215, "literal": "1.1.0", @@ -25422,7 +25422,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 216, "literal": "^1.1.3", @@ -25435,7 +25435,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 217, "literal": "2.1.2", @@ -25448,7 +25448,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 218, "literal": "^4.3.4", @@ -25461,7 +25461,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 219, "literal": "^0.23.0", @@ -25474,7 +25474,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 220, "literal": "^7.0.2", @@ -25487,7 +25487,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 221, "literal": "^4.3.4", @@ -25500,7 +25500,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 222, "literal": "^6.0.1", @@ -25513,7 +25513,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 223, "literal": "^7.0.0", @@ -25526,7 +25526,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 224, "literal": "^7.0.2", @@ -25539,7 +25539,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 225, "literal": "^7.0.0", @@ -25552,7 +25552,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 226, "literal": "^8.0.2", @@ -25565,7 +25565,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 227, "literal": "^5.0.0", @@ -25578,7 +25578,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 228, "literal": "^2.0.2", @@ -25591,7 +25591,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 229, "literal": "^0.13.4", @@ -25604,7 +25604,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 230, "literal": "^2.1.0", @@ -25617,7 +25617,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 231, "literal": "^4.0.1", @@ -25630,7 +25630,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 232, "literal": "^5.2.0", @@ -25643,7 +25643,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 233, "literal": "^2.0.2", @@ -25656,7 +25656,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 234, "literal": "^4.0.1", @@ -25682,7 +25682,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 236, "literal": "^2.0.1", @@ -25695,7 +25695,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 237, "literal": "^7.0.2", @@ -25708,7 +25708,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 238, "literal": "4", @@ -25721,7 +25721,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 239, "literal": "^7.1.0", @@ -25734,7 +25734,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 240, "literal": "^4.3.4", @@ -25747,7 +25747,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 241, "literal": "^5.0.2", @@ -25760,7 +25760,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 242, "literal": "^6.0.2", @@ -25773,7 +25773,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 243, "literal": "^4.3.4", @@ -25786,7 +25786,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 244, "literal": "^11.2.0", @@ -25799,7 +25799,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 245, "literal": "^4.2.0", @@ -25812,7 +25812,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 246, "literal": "^6.0.1", @@ -25825,7 +25825,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 247, "literal": "^2.0.0", @@ -25838,7 +25838,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 248, "literal": "^2.0.0", @@ -25864,7 +25864,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 250, "literal": "^4.1.1", @@ -25877,7 +25877,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 251, "literal": "^5.1.0", @@ -25890,7 +25890,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 252, "literal": "^2.10.0", @@ -25916,7 +25916,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 254, "literal": "*", @@ -25929,7 +25929,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 255, "literal": "~5.26.4", @@ -25942,7 +25942,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 256, "literal": "~1.1.0", @@ -25955,7 +25955,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 257, "literal": "~0.2.3", @@ -25968,7 +25968,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 258, "literal": "~1.2.0", @@ -25981,7 +25981,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 259, "literal": "^3.0.0", @@ -25994,7 +25994,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 260, "literal": "2.1.2", @@ -26007,7 +26007,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 261, "literal": "2.2.3", @@ -26020,7 +26020,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 262, "literal": "0.5.24", @@ -26033,7 +26033,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 263, "literal": "4.3.5", @@ -26046,7 +26046,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 264, "literal": "0.0.1299070", @@ -26059,7 +26059,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 265, "literal": "8.17.1", @@ -26100,7 +26100,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 268, "literal": "3.0.1", @@ -26113,7 +26113,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 269, "literal": "10.0.0", @@ -26126,7 +26126,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 270, "literal": "3.23.8", @@ -26152,7 +26152,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 272, "literal": "^2.2.1", @@ -26165,7 +26165,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 273, "literal": "^3.3.0", @@ -26178,7 +26178,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 274, "literal": "^4.1.0", @@ -26191,7 +26191,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 275, "literal": "^5.2.0", @@ -26218,7 +26218,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 277, "literal": "^7.0.0", @@ -26231,7 +26231,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 278, "literal": "^1.3.1", @@ -26244,7 +26244,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 279, "literal": "^2.3.0", @@ -26257,7 +26257,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 280, "literal": "^1.1.6", @@ -26270,7 +26270,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 281, "literal": "^0.2.1", @@ -26283,7 +26283,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 282, "literal": "^7.24.7", @@ -26296,7 +26296,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 283, "literal": "^1.0.0", @@ -26309,7 +26309,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 284, "literal": "^7.24.7", @@ -26322,7 +26322,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 285, "literal": "^2.4.2", @@ -26335,7 +26335,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 286, "literal": "^4.0.0", @@ -26348,7 +26348,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 287, "literal": "^1.0.0", @@ -26361,7 +26361,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 288, "literal": "^3.2.1", @@ -26374,7 +26374,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 289, "literal": "^1.0.5", @@ -26387,7 +26387,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 290, "literal": "^5.3.0", @@ -26400,7 +26400,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 291, "literal": "^3.0.0", @@ -26413,7 +26413,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 292, "literal": "^1.9.0", @@ -26426,7 +26426,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 293, "literal": "1.1.3", @@ -26439,7 +26439,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 294, "literal": "^2.0.1", @@ -26452,7 +26452,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 295, "literal": "^1.0.0", @@ -26465,7 +26465,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 296, "literal": "^4.0.0", @@ -26478,7 +26478,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 297, "literal": "^3.0.0", @@ -26491,7 +26491,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 298, "literal": "1.6.0", @@ -26504,7 +26504,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 299, "literal": "8.4.31", @@ -26517,7 +26517,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 300, "literal": "14.1.3", @@ -26530,7 +26530,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 301, "literal": "5.1.1", @@ -26543,7 +26543,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 302, "literal": "^4.2.11", @@ -26556,7 +26556,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 303, "literal": "0.5.2", @@ -26569,7 +26569,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 304, "literal": "^1.0.30001579", @@ -26753,7 +26753,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 318, "literal": "^2.4.0", @@ -26766,7 +26766,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 319, "literal": "0.0.1", @@ -26792,7 +26792,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 321, "literal": "^3.3.6", @@ -26805,7 +26805,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 322, "literal": "^1.0.0", @@ -26818,7 +26818,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 323, "literal": "^1.0.2", @@ -26831,7 +26831,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 324, "literal": "^1.1.0", @@ -26844,7 +26844,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 325, "literal": "^7.33.2", @@ -26857,7 +26857,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 326, "literal": "^2.28.1", @@ -26870,7 +26870,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 327, "literal": "^6.7.1", @@ -26883,7 +26883,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 328, "literal": "^1.3.3", @@ -26896,7 +26896,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 329, "literal": "14.1.3", @@ -26909,7 +26909,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 330, "literal": "^5.4.2 || ^6.0.0", @@ -26922,7 +26922,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 331, "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", @@ -26935,7 +26935,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 332, "literal": "^0.3.6", @@ -26948,7 +26948,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 333, "literal": "^3.5.2", @@ -26988,7 +26988,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 336, "literal": "^6.12.4", @@ -27001,7 +27001,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 337, "literal": "^0.4.1", @@ -27014,7 +27014,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 338, "literal": "^4.0.0", @@ -27027,7 +27027,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 339, "literal": "^4.3.2", @@ -27040,7 +27040,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 340, "literal": "^9.6.1", @@ -27053,7 +27053,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 341, "literal": "^5.2.0", @@ -27066,7 +27066,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 342, "literal": "^1.4.2", @@ -27079,7 +27079,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 343, "literal": "^2.0.2", @@ -27092,7 +27092,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 344, "literal": "^5.0.0", @@ -27105,7 +27105,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 345, "literal": "^13.19.0", @@ -27118,7 +27118,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 346, "literal": "^4.0.0", @@ -27131,7 +27131,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 347, "literal": "^4.1.0", @@ -27144,7 +27144,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 348, "literal": "^3.0.0", @@ -27157,7 +27157,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 349, "literal": "^1.4.0", @@ -27170,7 +27170,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 350, "literal": "^3.1.2", @@ -27183,7 +27183,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 351, "literal": "8.50.0", @@ -27196,7 +27196,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 352, "literal": "^0.9.3", @@ -27209,7 +27209,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 353, "literal": "^6.0.1", @@ -27222,7 +27222,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 354, "literal": "^0.2.0", @@ -27235,7 +27235,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 355, "literal": "^7.0.2", @@ -27248,7 +27248,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 356, "literal": "^6.0.2", @@ -27261,7 +27261,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 357, "literal": "^0.1.4", @@ -27274,7 +27274,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 358, "literal": "^7.2.2", @@ -27287,7 +27287,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 359, "literal": "^4.6.2", @@ -27300,7 +27300,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 360, "literal": "^3.0.3", @@ -27313,7 +27313,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 361, "literal": "^3.1.3", @@ -27326,7 +27326,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 362, "literal": "^1.4.0", @@ -27339,7 +27339,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 363, "literal": "^2.1.2", @@ -27352,7 +27352,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 364, "literal": "^1.2.8", @@ -27365,7 +27365,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 365, "literal": "^6.0.1", @@ -27378,7 +27378,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 366, "literal": "^3.4.3", @@ -27391,7 +27391,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 367, "literal": "^4.0.0", @@ -27404,7 +27404,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 368, "literal": "^4.6.1", @@ -27417,7 +27417,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 369, "literal": "^0.11.11", @@ -27430,7 +27430,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 370, "literal": "^4.2.0", @@ -27443,7 +27443,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 371, "literal": "^1.0.1", @@ -27456,7 +27456,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 372, "literal": "^1.0.1", @@ -27469,7 +27469,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 373, "literal": "^3.3.0", @@ -27495,7 +27495,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 375, "literal": "^2.0.2", @@ -27508,7 +27508,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 376, "literal": "^4.3.1", @@ -27521,7 +27521,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 377, "literal": "^3.0.5", @@ -27534,7 +27534,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 378, "literal": "^1.1.7", @@ -27547,7 +27547,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 379, "literal": "^1.0.0", @@ -27560,7 +27560,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 380, "literal": "0.0.1", @@ -27573,7 +27573,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 381, "literal": "^3.0.4", @@ -27586,7 +27586,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 382, "literal": "^3.2.9", @@ -27599,7 +27599,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 383, "literal": "^4.5.3", @@ -27612,7 +27612,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 384, "literal": "^3.0.2", @@ -27625,7 +27625,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 385, "literal": "^7.1.3", @@ -27638,7 +27638,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 386, "literal": "^1.0.0", @@ -27651,7 +27651,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 387, "literal": "^1.0.4", @@ -27664,7 +27664,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 388, "literal": "2", @@ -27677,7 +27677,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 389, "literal": "^3.1.1", @@ -27690,7 +27690,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 390, "literal": "^1.3.0", @@ -27703,7 +27703,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 391, "literal": "^1.0.0", @@ -27716,7 +27716,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 392, "literal": "^1.3.0", @@ -27729,7 +27729,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 393, "literal": "1", @@ -27742,7 +27742,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 394, "literal": "3.0.1", @@ -27755,7 +27755,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 395, "literal": "^6.12.4", @@ -27768,7 +27768,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 396, "literal": "^4.3.2", @@ -27781,7 +27781,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 397, "literal": "^9.6.0", @@ -27794,7 +27794,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 398, "literal": "^13.19.0", @@ -27807,7 +27807,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 399, "literal": "^5.2.0", @@ -27820,7 +27820,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 400, "literal": "^3.2.1", @@ -27833,7 +27833,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 401, "literal": "^4.1.0", @@ -27846,7 +27846,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 402, "literal": "^3.1.2", @@ -27859,7 +27859,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 403, "literal": "^3.1.1", @@ -27872,7 +27872,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 404, "literal": "^0.20.2", @@ -27885,7 +27885,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 405, "literal": "^8.9.0", @@ -27898,7 +27898,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 406, "literal": "^5.3.2", @@ -27911,7 +27911,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 407, "literal": "^3.4.1", @@ -27937,7 +27937,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 409, "literal": "^3.1.1", @@ -27950,7 +27950,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 410, "literal": "^2.0.0", @@ -27963,7 +27963,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 411, "literal": "^0.4.1", @@ -27976,7 +27976,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 412, "literal": "^4.2.2", @@ -27989,7 +27989,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 413, "literal": "^2.1.0", @@ -28002,7 +28002,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 414, "literal": "^4.3.0", @@ -28015,7 +28015,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 415, "literal": "^5.2.0", @@ -28028,7 +28028,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 416, "literal": "^5.2.0", @@ -28041,7 +28041,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 417, "literal": "^1.2.1", @@ -28054,7 +28054,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 418, "literal": "^0.1.3", @@ -28067,7 +28067,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 419, "literal": "^1.2.5", @@ -28080,7 +28080,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 420, "literal": "^0.4.0", @@ -28093,7 +28093,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 421, "literal": "^0.4.1", @@ -28106,7 +28106,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 422, "literal": "^2.0.6", @@ -28119,7 +28119,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 423, "literal": "^1.2.1", @@ -28132,7 +28132,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 424, "literal": "~0.4.0", @@ -28145,7 +28145,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 425, "literal": "^1.2.1", @@ -28158,7 +28158,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 426, "literal": "^2.0.2", @@ -28171,7 +28171,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 427, "literal": "^6.0.0", @@ -28184,7 +28184,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 428, "literal": "^4.0.0", @@ -28197,7 +28197,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 429, "literal": "^5.0.0", @@ -28210,7 +28210,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 430, "literal": "^3.0.2", @@ -28223,7 +28223,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 431, "literal": "^0.1.0", @@ -28236,7 +28236,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 432, "literal": "^5.1.0", @@ -28249,7 +28249,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 433, "literal": "^4.1.0", @@ -28262,7 +28262,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 434, "literal": "^7.1.0", @@ -28275,7 +28275,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 435, "literal": "^4.0.0", @@ -28288,7 +28288,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 436, "literal": "^4.3.4", @@ -28301,7 +28301,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 437, "literal": "^5.12.0", @@ -28314,7 +28314,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 438, "literal": "^2.7.4", @@ -28327,7 +28327,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 439, "literal": "^3.3.1", @@ -28340,7 +28340,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 440, "literal": "^4.5.0", @@ -28353,7 +28353,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 441, "literal": "^2.11.0", @@ -28366,7 +28366,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 442, "literal": "^4.0.3", @@ -28405,7 +28405,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 445, "literal": "^3.1.7", @@ -28418,7 +28418,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 446, "literal": "^1.2.3", @@ -28431,7 +28431,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 447, "literal": "^1.3.2", @@ -28444,7 +28444,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 448, "literal": "^1.3.2", @@ -28457,7 +28457,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 449, "literal": "^3.2.7", @@ -28470,7 +28470,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 450, "literal": "^2.1.0", @@ -28483,7 +28483,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 451, "literal": "^0.3.9", @@ -28496,7 +28496,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 452, "literal": "^2.8.0", @@ -28509,7 +28509,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 453, "literal": "^2.0.0", @@ -28522,7 +28522,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 454, "literal": "^2.13.1", @@ -28535,7 +28535,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 455, "literal": "^4.0.3", @@ -28548,7 +28548,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 456, "literal": "^3.1.2", @@ -28561,7 +28561,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 457, "literal": "^2.0.7", @@ -28574,7 +28574,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 458, "literal": "^1.0.1", @@ -28587,7 +28587,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 459, "literal": "^1.1.7", @@ -28600,7 +28600,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 460, "literal": "^6.3.1", @@ -28613,7 +28613,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 461, "literal": "^3.15.0", @@ -28639,7 +28639,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 463, "literal": "^0.0.29", @@ -28652,7 +28652,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 464, "literal": "^1.0.2", @@ -28665,7 +28665,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 465, "literal": "^1.2.6", @@ -28678,7 +28678,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 466, "literal": "^3.0.0", @@ -28691,7 +28691,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 467, "literal": "^1.2.0", @@ -28704,7 +28704,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 468, "literal": "^1.0.7", @@ -28717,7 +28717,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 469, "literal": "^1.2.1", @@ -28730,7 +28730,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 470, "literal": "^1.0.0", @@ -28743,7 +28743,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 471, "literal": "^1.3.0", @@ -28756,7 +28756,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 472, "literal": "^1.0.1", @@ -28769,7 +28769,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 473, "literal": "^1.0.0", @@ -28782,7 +28782,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 474, "literal": "^1.1.1", @@ -28795,7 +28795,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 475, "literal": "^1.0.0", @@ -28808,7 +28808,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 476, "literal": "^1.2.4", @@ -28821,7 +28821,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 477, "literal": "^1.3.0", @@ -28834,7 +28834,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 478, "literal": "^1.1.2", @@ -28847,7 +28847,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 479, "literal": "^1.0.1", @@ -28860,7 +28860,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 480, "literal": "^1.0.3", @@ -28873,7 +28873,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 481, "literal": "^2.0.0", @@ -28886,7 +28886,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 482, "literal": "^1.0.0", @@ -28899,7 +28899,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 483, "literal": "^1.3.0", @@ -28912,7 +28912,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 484, "literal": "^1.0.1", @@ -28925,7 +28925,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 485, "literal": "^1.1.3", @@ -28938,7 +28938,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 486, "literal": "^1.0.0", @@ -28951,7 +28951,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 487, "literal": "^1.3.0", @@ -28964,7 +28964,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 488, "literal": "^1.1.2", @@ -28977,7 +28977,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 489, "literal": "^1.2.4", @@ -28990,7 +28990,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 490, "literal": "^1.2.1", @@ -29003,7 +29003,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 491, "literal": "^1.1.4", @@ -29016,7 +29016,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 492, "literal": "^1.3.0", @@ -29029,7 +29029,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 493, "literal": "^1.1.2", @@ -29042,7 +29042,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 494, "literal": "^1.2.4", @@ -29055,7 +29055,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 495, "literal": "^1.0.1", @@ -29068,7 +29068,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 496, "literal": "^1.0.2", @@ -29081,7 +29081,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 497, "literal": "^1.0.7", @@ -29094,7 +29094,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 498, "literal": "^1.2.1", @@ -29107,7 +29107,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 499, "literal": "^1.23.2", @@ -29120,7 +29120,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 500, "literal": "^1.0.1", @@ -29133,7 +29133,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 501, "literal": "^1.0.3", @@ -29146,7 +29146,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 502, "literal": "^1.0.7", @@ -29159,7 +29159,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 503, "literal": "^1.0.7", @@ -29172,7 +29172,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 504, "literal": "^1.0.1", @@ -29185,7 +29185,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 505, "literal": "^1.0.1", @@ -29198,7 +29198,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 506, "literal": "^1.0.0", @@ -29211,7 +29211,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 507, "literal": "^1.0.0", @@ -29224,7 +29224,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 508, "literal": "^1.3.0", @@ -29237,7 +29237,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 509, "literal": "^1.0.0", @@ -29250,7 +29250,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 510, "literal": "^2.0.3", @@ -29263,7 +29263,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 511, "literal": "^1.2.1", @@ -29276,7 +29276,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 512, "literal": "^1.1.6", @@ -29289,7 +29289,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 513, "literal": "^1.2.4", @@ -29302,7 +29302,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 514, "literal": "^1.0.2", @@ -29315,7 +29315,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 515, "literal": "^1.0.3", @@ -29328,7 +29328,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 516, "literal": "^1.0.1", @@ -29341,7 +29341,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 517, "literal": "^1.0.2", @@ -29354,7 +29354,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 518, "literal": "^1.0.3", @@ -29367,7 +29367,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 519, "literal": "^1.0.3", @@ -29380,7 +29380,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 520, "literal": "^2.0.2", @@ -29393,7 +29393,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 521, "literal": "^1.0.7", @@ -29406,7 +29406,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 522, "literal": "^3.0.4", @@ -29419,7 +29419,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 523, "literal": "^1.2.7", @@ -29432,7 +29432,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 524, "literal": "^1.0.1", @@ -29445,7 +29445,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 525, "literal": "^2.0.3", @@ -29458,7 +29458,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 526, "literal": "^1.1.4", @@ -29471,7 +29471,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 527, "literal": "^1.0.3", @@ -29484,7 +29484,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 528, "literal": "^1.0.7", @@ -29497,7 +29497,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 529, "literal": "^1.1.13", @@ -29510,7 +29510,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 530, "literal": "^1.0.2", @@ -29523,7 +29523,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 531, "literal": "^1.13.1", @@ -29536,7 +29536,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 532, "literal": "^1.1.1", @@ -29549,7 +29549,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 533, "literal": "^4.1.5", @@ -29562,7 +29562,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 534, "literal": "^1.5.2", @@ -29575,7 +29575,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 535, "literal": "^1.1.2", @@ -29588,7 +29588,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 536, "literal": "^1.0.3", @@ -29601,7 +29601,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 537, "literal": "^1.2.9", @@ -29614,7 +29614,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 538, "literal": "^1.0.8", @@ -29627,7 +29627,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 539, "literal": "^1.0.8", @@ -29640,7 +29640,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 540, "literal": "^1.0.2", @@ -29653,7 +29653,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 541, "literal": "^1.0.1", @@ -29666,7 +29666,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 542, "literal": "^1.0.2", @@ -29679,7 +29679,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 543, "literal": "^1.0.6", @@ -29692,7 +29692,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 544, "literal": "^1.0.2", @@ -29705,7 +29705,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 545, "literal": "^1.1.15", @@ -29718,7 +29718,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 546, "literal": "^1.0.7", @@ -29731,7 +29731,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 547, "literal": "^1.0.7", @@ -29744,7 +29744,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 548, "literal": "^0.3.3", @@ -29757,7 +29757,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 549, "literal": "^1.0.1", @@ -29770,7 +29770,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 550, "literal": "^1.0.2", @@ -29783,7 +29783,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 551, "literal": "^1.0.3", @@ -29796,7 +29796,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 552, "literal": "^1.1.3", @@ -29809,7 +29809,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 553, "literal": "^1.0.0", @@ -29822,7 +29822,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 554, "literal": "^1.0.2", @@ -29835,7 +29835,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 555, "literal": "^1.0.2", @@ -29848,7 +29848,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 556, "literal": "^1.0.3", @@ -29861,7 +29861,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 557, "literal": "^1.0.2", @@ -29874,7 +29874,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 558, "literal": "^1.0.1", @@ -29887,7 +29887,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 559, "literal": "^1.1.0", @@ -29900,7 +29900,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 560, "literal": "^1.0.4", @@ -29913,7 +29913,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 561, "literal": "^1.0.5", @@ -29926,7 +29926,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 562, "literal": "^1.0.3", @@ -29939,7 +29939,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 563, "literal": "^1.0.2", @@ -29952,7 +29952,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 564, "literal": "^1.0.0", @@ -29965,7 +29965,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 565, "literal": "^1.0.0", @@ -29978,7 +29978,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 566, "literal": "^1.0.2", @@ -29991,7 +29991,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 567, "literal": "^1.0.0", @@ -30004,7 +30004,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 568, "literal": "^1.0.1", @@ -30017,7 +30017,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 569, "literal": "^1.0.7", @@ -30030,7 +30030,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 570, "literal": "^0.3.3", @@ -30043,7 +30043,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 571, "literal": "^1.0.1", @@ -30056,7 +30056,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 572, "literal": "^1.0.3", @@ -30069,7 +30069,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 573, "literal": "^1.1.13", @@ -30082,7 +30082,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 574, "literal": "^1.0.0", @@ -30095,7 +30095,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 575, "literal": "^1.1.14", @@ -30108,7 +30108,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 576, "literal": "^1.0.7", @@ -30121,7 +30121,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 577, "literal": "^1.0.7", @@ -30134,7 +30134,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 578, "literal": "^0.3.3", @@ -30147,7 +30147,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 579, "literal": "^1.0.1", @@ -30160,7 +30160,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 580, "literal": "^1.0.3", @@ -30173,7 +30173,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 581, "literal": "^1.1.13", @@ -30186,7 +30186,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 582, "literal": "^1.0.7", @@ -30199,7 +30199,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 583, "literal": "^0.3.3", @@ -30212,7 +30212,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 584, "literal": "^1.0.1", @@ -30225,7 +30225,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 585, "literal": "^1.0.3", @@ -30238,7 +30238,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 586, "literal": "^1.1.13", @@ -30251,7 +30251,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 587, "literal": "^1.0.7", @@ -30264,7 +30264,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 588, "literal": "^1.3.0", @@ -30277,7 +30277,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 589, "literal": "^1.1.13", @@ -30290,7 +30290,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 590, "literal": "^1.0.7", @@ -30303,7 +30303,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 591, "literal": "^1.2.1", @@ -30316,7 +30316,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 592, "literal": "^1.0.0", @@ -30329,7 +30329,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 593, "literal": "^1.0.7", @@ -30342,7 +30342,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 594, "literal": "^1.2.1", @@ -30355,7 +30355,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 595, "literal": "^1.0.0", @@ -30368,7 +30368,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 596, "literal": "^1.0.7", @@ -30381,7 +30381,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 597, "literal": "^1.2.1", @@ -30394,7 +30394,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 598, "literal": "^1.23.0", @@ -30407,7 +30407,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 599, "literal": "^1.0.0", @@ -30420,7 +30420,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 600, "literal": "^1.0.6", @@ -30433,7 +30433,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 601, "literal": "^1.3.0", @@ -30446,7 +30446,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 602, "literal": "^1.1.4", @@ -30459,7 +30459,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 603, "literal": "^1.0.2", @@ -30472,7 +30472,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 604, "literal": "^1.0.0", @@ -30485,7 +30485,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 605, "literal": "^1.0.7", @@ -30498,7 +30498,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 606, "literal": "^1.2.4", @@ -30511,7 +30511,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 607, "literal": "^1.0.3", @@ -30524,7 +30524,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 608, "literal": "^2.0.5", @@ -30537,7 +30537,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 609, "literal": "^1.0.6", @@ -30550,7 +30550,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 610, "literal": "^1.2.1", @@ -30563,7 +30563,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 611, "literal": "^1.3.0", @@ -30576,7 +30576,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 612, "literal": "^2.0.1", @@ -30589,7 +30589,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 613, "literal": "^1.1.4", @@ -30602,7 +30602,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 614, "literal": "^1.3.0", @@ -30615,7 +30615,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 615, "literal": "^1.2.3", @@ -30628,7 +30628,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 616, "literal": "^1.0.2", @@ -30641,7 +30641,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 617, "literal": "^1.0.5", @@ -30654,7 +30654,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 618, "literal": "^1.2.1", @@ -30667,7 +30667,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 619, "literal": "^1.0.3", @@ -30680,7 +30680,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 620, "literal": "^1.1.1", @@ -30693,7 +30693,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 621, "literal": "^1.0.2", @@ -30706,7 +30706,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 622, "literal": "^1.0.7", @@ -30719,7 +30719,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 623, "literal": "^1.1.13", @@ -30732,7 +30732,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 624, "literal": "^1.0.2", @@ -30745,7 +30745,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 625, "literal": "^1.2.1", @@ -30758,7 +30758,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 626, "literal": "^1.3.0", @@ -30771,7 +30771,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 627, "literal": "^2.0.0", @@ -30784,7 +30784,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 628, "literal": "^1.0.4", @@ -30797,7 +30797,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 629, "literal": "^1.0.7", @@ -30810,7 +30810,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 630, "literal": "^1.3.0", @@ -30823,7 +30823,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 631, "literal": "^1.2.4", @@ -30836,7 +30836,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 632, "literal": "^1.13.1", @@ -30849,7 +30849,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 633, "literal": "^1.2.1", @@ -30862,7 +30862,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 634, "literal": "^1.0.1", @@ -30875,7 +30875,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 635, "literal": "^1.0.5", @@ -30888,7 +30888,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 636, "literal": "^1.3.0", @@ -30901,7 +30901,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 637, "literal": "^1.2.4", @@ -30914,7 +30914,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 638, "literal": "^1.0.2", @@ -30927,7 +30927,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 639, "literal": "^1.2.0", @@ -30940,7 +30940,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 640, "literal": "^1.22.1", @@ -30953,7 +30953,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 641, "literal": "^1.2.3", @@ -30966,7 +30966,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 642, "literal": "^1.1.4", @@ -30979,7 +30979,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 643, "literal": "^1.0.1", @@ -30992,7 +30992,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 644, "literal": "^1.0.2", @@ -31005,7 +31005,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 645, "literal": "^1.0.0", @@ -31018,7 +31018,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 646, "literal": "^1.2.4", @@ -31031,7 +31031,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 647, "literal": "^1.0.2", @@ -31044,7 +31044,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 648, "literal": "^2.0.1", @@ -31057,7 +31057,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 649, "literal": "^1.0.6", @@ -31070,7 +31070,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 650, "literal": "^1.3.0", @@ -31083,7 +31083,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 651, "literal": "^1.0.1", @@ -31096,7 +31096,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 652, "literal": "^1.0.7", @@ -31109,7 +31109,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 653, "literal": "^1.3.0", @@ -31122,7 +31122,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 654, "literal": "^1.0.1", @@ -31135,7 +31135,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 655, "literal": "^1.0.6", @@ -31148,7 +31148,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 656, "literal": "^1.3.0", @@ -31161,7 +31161,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 657, "literal": "^1.0.1", @@ -31174,7 +31174,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 658, "literal": "^1.0.1", @@ -31187,7 +31187,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 659, "literal": "^1.0.5", @@ -31200,7 +31200,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 660, "literal": "^1.2.1", @@ -31213,7 +31213,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 661, "literal": "^1.22.3", @@ -31226,7 +31226,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 662, "literal": "^1.2.1", @@ -31239,7 +31239,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 663, "literal": "^1.2.3", @@ -31252,7 +31252,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 664, "literal": "^3.0.4", @@ -31265,7 +31265,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 665, "literal": "^1.0.2", @@ -31278,7 +31278,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 666, "literal": "^1.0.5", @@ -31291,7 +31291,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 667, "literal": "^3.0.4", @@ -31304,7 +31304,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 668, "literal": "^1.0.7", @@ -31317,7 +31317,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 669, "literal": "^1.2.1", @@ -31330,7 +31330,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 670, "literal": "^1.23.2", @@ -31343,7 +31343,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 671, "literal": "^1.0.0", @@ -31356,7 +31356,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 672, "literal": "^3.2.7", @@ -31369,7 +31369,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 673, "literal": "^2.1.1", @@ -31382,7 +31382,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 674, "literal": "^3.2.7", @@ -31395,7 +31395,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 675, "literal": "^2.13.0", @@ -31408,7 +31408,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 676, "literal": "^1.22.4", @@ -31421,7 +31421,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 677, "literal": "^2.0.2", @@ -31434,7 +31434,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 678, "literal": "^1.0.2", @@ -31447,7 +31447,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 679, "literal": "^1.2.0", @@ -31460,7 +31460,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 680, "literal": "^1.22.1", @@ -31473,7 +31473,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 681, "literal": "^1.0.0", @@ -31486,7 +31486,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 682, "literal": "^2.0.0", @@ -31499,7 +31499,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 683, "literal": "^1.0.2", @@ -31512,7 +31512,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 684, "literal": "^1.2.0", @@ -31525,7 +31525,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 685, "literal": "^1.22.1", @@ -31538,7 +31538,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 686, "literal": "^1.0.0", @@ -31551,7 +31551,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 687, "literal": "^1.0.7", @@ -31564,7 +31564,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 688, "literal": "^1.2.1", @@ -31577,7 +31577,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 689, "literal": "^1.23.2", @@ -31590,7 +31590,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 690, "literal": "^1.3.0", @@ -31603,7 +31603,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 691, "literal": "^1.0.0", @@ -31616,7 +31616,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 692, "literal": "^1.0.2", @@ -31629,7 +31629,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 693, "literal": "^1.0.7", @@ -31642,7 +31642,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 694, "literal": "^1.2.1", @@ -31655,7 +31655,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 695, "literal": "^1.23.2", @@ -31668,7 +31668,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 696, "literal": "^1.0.0", @@ -31681,7 +31681,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 697, "literal": "^1.2.4", @@ -31694,7 +31694,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 698, "literal": "^1.0.7", @@ -31707,7 +31707,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 699, "literal": "^1.0.0", @@ -31720,7 +31720,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 700, "literal": "^4.2.4", @@ -31733,7 +31733,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 701, "literal": "^2.2.0", @@ -31759,7 +31759,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 703, "literal": "^4.3.4", @@ -31772,7 +31772,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 704, "literal": "6.21.0", @@ -31785,7 +31785,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 705, "literal": "6.21.0", @@ -31798,7 +31798,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 706, "literal": "6.21.0", @@ -31811,7 +31811,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 707, "literal": "6.21.0", @@ -31837,7 +31837,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 709, "literal": "^4.3.4", @@ -31850,7 +31850,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 710, "literal": "^11.1.0", @@ -31863,7 +31863,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 711, "literal": "^7.5.4", @@ -31876,7 +31876,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 712, "literal": "^4.0.3", @@ -31889,7 +31889,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 713, "literal": "9.0.3", @@ -31902,7 +31902,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 714, "literal": "^1.0.1", @@ -31915,7 +31915,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 715, "literal": "6.21.0", @@ -31928,7 +31928,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 716, "literal": "6.21.0", @@ -31941,7 +31941,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 717, "literal": "^3.4.1", @@ -31954,7 +31954,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 718, "literal": "6.21.0", @@ -31980,7 +31980,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 720, "literal": "^2.0.1", @@ -31993,7 +31993,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 721, "literal": "^2.1.0", @@ -32006,7 +32006,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 722, "literal": "^3.0.1", @@ -32019,7 +32019,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 723, "literal": "^3.2.9", @@ -32032,7 +32032,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 724, "literal": "^5.2.0", @@ -32045,7 +32045,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 725, "literal": "^1.4.1", @@ -32058,7 +32058,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 726, "literal": "^3.0.0", @@ -32071,7 +32071,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 727, "literal": "^4.0.0", @@ -32084,7 +32084,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 728, "literal": "6.21.0", @@ -32097,7 +32097,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 729, "literal": "6.21.0", @@ -32110,7 +32110,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 730, "literal": "10.3.10", @@ -32123,7 +32123,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 731, "literal": "^7.23.2", @@ -32136,7 +32136,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 732, "literal": "^5.3.0", @@ -32149,7 +32149,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 733, "literal": "^3.1.7", @@ -32162,7 +32162,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 734, "literal": "^1.3.2", @@ -32175,7 +32175,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 735, "literal": "^0.0.8", @@ -32188,7 +32188,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 736, "literal": "=4.7.0", @@ -32201,7 +32201,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 737, "literal": "^3.2.1", @@ -32214,7 +32214,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 738, "literal": "^1.0.8", @@ -32227,7 +32227,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 739, "literal": "^9.2.2", @@ -32240,7 +32240,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 740, "literal": "^1.0.15", @@ -32253,7 +32253,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 741, "literal": "^2.0.0", @@ -32266,7 +32266,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 742, "literal": "^3.3.5", @@ -32279,7 +32279,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 743, "literal": "^1.0.9", @@ -32292,7 +32292,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 744, "literal": "^3.1.2", @@ -32305,7 +32305,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 745, "literal": "^1.1.7", @@ -32318,7 +32318,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 746, "literal": "^2.0.7", @@ -32344,7 +32344,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 748, "literal": "^1.0.7", @@ -32357,7 +32357,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 749, "literal": "^1.2.1", @@ -32370,7 +32370,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 750, "literal": "^1.0.0", @@ -32383,7 +32383,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 751, "literal": "^0.3.20", @@ -32396,7 +32396,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 752, "literal": "^3.1.6", @@ -32409,7 +32409,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 753, "literal": "^1.3.1", @@ -32422,7 +32422,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 754, "literal": "^4.1.4", @@ -32435,7 +32435,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 755, "literal": "^1.1.6", @@ -32448,7 +32448,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 756, "literal": "^1.0.7", @@ -32461,7 +32461,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 757, "literal": "^1.2.1", @@ -32474,7 +32474,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 758, "literal": "^1.23.3", @@ -32487,7 +32487,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 759, "literal": "^1.3.0", @@ -32500,7 +32500,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 760, "literal": "^2.0.3", @@ -32513,7 +32513,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 761, "literal": "^1.1.2", @@ -32526,7 +32526,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 762, "literal": "^1.2.4", @@ -32539,7 +32539,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 763, "literal": "^1.0.3", @@ -32552,7 +32552,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 764, "literal": "^1.0.2", @@ -32565,7 +32565,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 765, "literal": "^1.0.3", @@ -32578,7 +32578,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 766, "literal": "^1.0.3", @@ -32591,7 +32591,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 767, "literal": "^1.0.7", @@ -32604,7 +32604,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 768, "literal": "^1.1.2", @@ -32617,7 +32617,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 769, "literal": "^1.1.2", @@ -32630,7 +32630,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 770, "literal": "^1.2.1", @@ -32643,7 +32643,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 771, "literal": "^1.2.1", @@ -32656,7 +32656,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 772, "literal": "^1.0.3", @@ -32669,7 +32669,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 773, "literal": "^1.0.4", @@ -32682,7 +32682,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 774, "literal": "^2.0.1", @@ -32695,7 +32695,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 775, "literal": "^1.0.7", @@ -32708,7 +32708,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 776, "literal": "^1.2.1", @@ -32721,7 +32721,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 777, "literal": "^1.23.1", @@ -32734,7 +32734,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 778, "literal": "^1.3.0", @@ -32747,7 +32747,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 779, "literal": "^1.2.4", @@ -32760,7 +32760,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 780, "literal": "^1.0.3", @@ -32773,7 +32773,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 781, "literal": "^1.1.3", @@ -32786,7 +32786,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 782, "literal": "^1.1.5", @@ -32799,7 +32799,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 783, "literal": "^1.0.0", @@ -32812,7 +32812,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 784, "literal": "^2.0.0", @@ -32825,7 +32825,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 785, "literal": "^1.0.5", @@ -32838,7 +32838,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 786, "literal": "^1.0.2", @@ -32851,7 +32851,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 787, "literal": "^1.0.10", @@ -32864,7 +32864,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 788, "literal": "^1.1.4", @@ -32877,7 +32877,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 789, "literal": "^1.0.2", @@ -32890,7 +32890,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 790, "literal": "^2.0.5", @@ -32903,7 +32903,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 791, "literal": "^1.0.2", @@ -32916,7 +32916,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 792, "literal": "^1.0.1", @@ -32929,7 +32929,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 793, "literal": "^1.1.9", @@ -32942,7 +32942,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 794, "literal": "^2.0.3", @@ -32955,7 +32955,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 795, "literal": "^2.0.3", @@ -32968,7 +32968,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 796, "literal": "^2.0.2", @@ -32981,7 +32981,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 797, "literal": "^2.0.3", @@ -32994,7 +32994,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 798, "literal": "^1.0.7", @@ -33007,7 +33007,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 799, "literal": "^1.2.4", @@ -33020,7 +33020,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 800, "literal": "^1.0.0", @@ -33033,7 +33033,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 801, "literal": "^1.0.2", @@ -33046,7 +33046,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 802, "literal": "^1.0.0", @@ -33059,7 +33059,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 803, "literal": "^2.0.3", @@ -33072,7 +33072,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 804, "literal": "^2.0.3", @@ -33085,7 +33085,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 805, "literal": "^0.14.0", @@ -33098,7 +33098,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 806, "literal": "^3.1.8", @@ -33111,7 +33111,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 807, "literal": "^1.2.5", @@ -33124,7 +33124,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 808, "literal": "^1.3.2", @@ -33137,7 +33137,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 809, "literal": "^1.1.2", @@ -33150,7 +33150,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 810, "literal": "^1.1.3", @@ -33163,7 +33163,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 811, "literal": "^2.1.0", @@ -33176,7 +33176,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 812, "literal": "^1.0.19", @@ -33189,7 +33189,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 813, "literal": "^5.3.0", @@ -33202,7 +33202,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 814, "literal": "^2.4.1 || ^3.0.0", @@ -33215,7 +33215,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 815, "literal": "^3.1.2", @@ -33228,7 +33228,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 816, "literal": "^1.1.8", @@ -33241,7 +33241,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 817, "literal": "^2.0.8", @@ -33254,7 +33254,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 818, "literal": "^1.1.4", @@ -33267,7 +33267,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 819, "literal": "^1.2.0", @@ -33280,7 +33280,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 820, "literal": "^15.8.1", @@ -33293,7 +33293,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 821, "literal": "^2.0.0-next.5", @@ -33306,7 +33306,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 822, "literal": "^6.3.1", @@ -33319,7 +33319,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 823, "literal": "^4.0.11", @@ -33345,7 +33345,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 825, "literal": "^1.0.7", @@ -33358,7 +33358,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 826, "literal": "^1.2.1", @@ -33371,7 +33371,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 827, "literal": "^1.23.2", @@ -33384,7 +33384,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 828, "literal": "^1.3.0", @@ -33397,7 +33397,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 829, "literal": "^1.0.0", @@ -33410,7 +33410,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 830, "literal": "^1.2.4", @@ -33423,7 +33423,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 831, "literal": "^1.0.1", @@ -33436,7 +33436,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 832, "literal": "^1.0.3", @@ -33449,7 +33449,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 833, "literal": "^1.0.7", @@ -33462,7 +33462,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 834, "literal": "^1.5.2", @@ -33475,7 +33475,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 835, "literal": "^2.0.2", @@ -33488,7 +33488,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 836, "literal": "^1.0.6", @@ -33501,7 +33501,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 837, "literal": "^2.13.0", @@ -33514,7 +33514,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 838, "literal": "^1.0.7", @@ -33527,7 +33527,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 839, "literal": "^1.0.0", @@ -33540,7 +33540,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 840, "literal": "^1.4.0", @@ -33553,7 +33553,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 841, "literal": "^4.1.1", @@ -33566,7 +33566,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 842, "literal": "^16.13.1", @@ -33579,7 +33579,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 843, "literal": "^1.2.1", @@ -33592,7 +33592,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 844, "literal": "^1.23.2", @@ -33605,7 +33605,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 845, "literal": "^1.0.0", @@ -33618,7 +33618,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 846, "literal": "^1.0.7", @@ -33631,7 +33631,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 847, "literal": "^1.2.1", @@ -33644,7 +33644,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 848, "literal": "^1.23.3", @@ -33657,7 +33657,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 849, "literal": "^1.3.0", @@ -33670,7 +33670,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 850, "literal": "^1.0.2", @@ -33683,7 +33683,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 851, "literal": "^1.0.2", @@ -33696,7 +33696,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 852, "literal": "^1.2.0", @@ -33709,7 +33709,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 853, "literal": "^1.22.1", @@ -33722,7 +33722,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 854, "literal": "^1.0.0", @@ -33735,7 +33735,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 855, "literal": "^1.0.7", @@ -33748,7 +33748,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 856, "literal": "^1.2.1", @@ -33761,7 +33761,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 857, "literal": "^1.23.2", @@ -33774,7 +33774,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 858, "literal": "^1.3.0", @@ -33787,7 +33787,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 859, "literal": "^1.0.0", @@ -33800,7 +33800,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 860, "literal": "^1.0.2", @@ -33813,7 +33813,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 861, "literal": "~8.5.10", @@ -33826,7 +33826,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 862, "literal": "~20.12.8", @@ -33839,7 +33839,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 863, "literal": "*", @@ -33852,7 +33852,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 864, "literal": "^4.21.10", @@ -33865,7 +33865,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 865, "literal": "^1.0.30001538", @@ -33878,7 +33878,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 866, "literal": "^4.3.6", @@ -33891,7 +33891,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 867, "literal": "^0.1.2", @@ -33904,7 +33904,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 868, "literal": "^1.0.0", @@ -33917,7 +33917,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 869, "literal": "^4.2.0", @@ -33943,7 +33943,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 871, "literal": "^1.0.30001587", @@ -33956,7 +33956,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 872, "literal": "^1.4.668", @@ -33969,7 +33969,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 873, "literal": "^2.0.14", @@ -33982,7 +33982,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 874, "literal": "^1.0.13", @@ -33995,7 +33995,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 875, "literal": "^3.1.2", @@ -34008,7 +34008,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 876, "literal": "^1.0.1", @@ -34034,7 +34034,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 878, "literal": "*", @@ -34047,7 +34047,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 879, "literal": "*", @@ -34060,7 +34060,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 880, "literal": "*", @@ -34073,7 +34073,7 @@ exports[`next build works: node 1`] = ` }, { "behavior": { - "normal": true, + "prod": true, }, "id": 881, "literal": "^3.0.2",