diff --git a/src/install/install.zig b/src/install/install.zig index 6760833fabd155..2da264e9a8eeac 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -11203,18 +11203,19 @@ pub const bun_install_js_bindings = struct { const JSGlobalObject = JSC.JSGlobalObject; pub fn generate(global: *JSGlobalObject) JSValue { - const obj = JSValue.createEmptyObject(global, 3); - const printLockfileAsJSON = ZigString.static("printLockfileAsJSON"); - obj.put(global, printLockfileAsJSON, JSC.createCallback(global, printLockfileAsJSON, 1, jsPrintLockfileAsJSON)); + const obj = JSValue.createEmptyObject(global, 2); + const parseLockfile = ZigString.static("parseLockfile"); + obj.put(global, parseLockfile, JSC.createCallback(global, parseLockfile, 1, jsParseLockfile)); return obj; } - pub fn jsPrintLockfileAsJSON(globalObject: *JSGlobalObject, callFrame: *JSC.CallFrame) callconv(.C) JSValue { + pub fn jsParseLockfile(globalObject: *JSGlobalObject, callFrame: *JSC.CallFrame) callconv(.C) JSValue { const allocator = bun.default_allocator; var log = logger.Log.init(allocator); + defer log.deinit(); const args = callFrame.arguments(1).slice(); - const cwd = args[0].toSliceOrNull(globalObject) orelse return .undefined; + const cwd = args[0].toSliceOrNull(globalObject) orelse return .zero; defer cwd.deinit(); const lockfile_path = Path.joinAbsStringZ(cwd.slice(), &[_]string{"bun.lockb"}, .auto); @@ -11226,11 +11227,11 @@ pub const bun_install_js_bindings = struct { switch (load_result) { .err => |err| { - globalObject.throw("Failed to load lockfile: {s}, \"{s}\"", .{ @errorName(err.value), lockfile_path }); + globalObject.throw("failed to load lockfile: {s}, \"{s}\"", .{ @errorName(err.value), lockfile_path }); return .zero; }, .not_found => { - globalObject.throw("Lockfile not found: \"{s}\"", .{lockfile_path}); + globalObject.throw("lockfile not found: \"{s}\"", .{lockfile_path}); return .zero; }, .ok => {}, @@ -11250,17 +11251,18 @@ pub const bun_install_js_bindings = struct { }, buffered_writer.writer(), ) catch |err| { - globalObject.throw("Failed to print lockfile as JSON: {s}", .{@errorName(err)}); + globalObject.throw("failed to print lockfile as JSON: {s}", .{@errorName(err)}); return .zero; }; buffered_writer.flush() catch |err| { - globalObject.throw("Failed to print lockfile as JSON: {s}", .{@errorName(err)}); + globalObject.throw("failed to print lockfile as JSON: {s}", .{@errorName(err)}); return .zero; }; var str = bun.String.createUTF8(buffer.list.items); defer str.deref(); - return str.toJS(globalObject); + + return str.toJSByParseJSON(globalObject); } }; diff --git a/src/install/lockfile.zig b/src/install/lockfile.zig index 043f3d38830eeb..267423cb971b52 100644 --- a/src/install/lockfile.zig +++ b/src/install/lockfile.zig @@ -319,6 +319,9 @@ pub const Tree = struct { depth: usize, }; + // max number of node_modules folders + pub const max_depth = (bun.MAX_PATH_BYTES / "node_modules".len) + 1; + pub const Iterator = struct { trees: []const Tree, dependency_ids: []const DependencyID, @@ -330,8 +333,7 @@ pub const Tree = struct { last_parent: Id = invalid_id, string_buf: string, - // max number of node_modules folders - depth_stack: [(bun.MAX_PATH_BYTES / "node_modules".len) + 1]Id = undefined, + depth_stack: [max_depth]Id = undefined, pub fn init(lockfile: *const Lockfile) Iterator { var iter = Iterator{ @@ -370,41 +372,18 @@ pub const Tree = struct { } const tree = this.trees[this.tree_id]; - var depth: usize = 0; - { - var parent_id = tree.id; - var path_written: usize = "node_modules".len; - this.depth_stack[0] = 0; - - if (tree.id > 0) { - var depth_buf_len: usize = 1; - while (parent_id > 0 and parent_id < @as(Id, @intCast(this.trees.len))) { - this.depth_stack[depth_buf_len] = parent_id; - parent_id = this.trees[parent_id].parent; - depth_buf_len += 1; - } - depth_buf_len -= 1; - depth = depth_buf_len; - while (depth_buf_len > 0) : (depth_buf_len -= 1) { - this.path_buf[path_written] = std.fs.path.sep; - path_written += 1; - - const tree_id = this.depth_stack[depth_buf_len]; - const name = this.dependencies[this.trees[tree_id].dependency_id].name.slice(this.string_buf); - @memcpy(this.path_buf[path_written..][0..name.len], name); - path_written += name.len; - - @memcpy(this.path_buf[path_written..][0.."/node_modules".len], std.fs.path.sep_str ++ "node_modules"); - path_written += "/node_modules".len; - } - } - this.path_buf[path_written] = 0; - this.path_buf_len = path_written; - } + const relative_path, const depth = tree.relativePathAndDepth( + this.trees, + this.dependencies, + this.string_buf, + &this.path_buf, + &this.depth_stack, + ); this.tree_id += 1; - const relative_path: [:0]u8 = this.path_buf[0..this.path_buf_len :0]; + this.path_buf_len = relative_path.len; + return .{ .relative_path = relative_path, .dependencies = tree.dependencies.get(this.dependency_ids), @@ -414,6 +393,50 @@ pub const Tree = struct { } }; + /// Returns relative path and the depth of the tree + pub fn relativePathAndDepth( + tree: *const Tree, + trees: []const Tree, + dependencies: []const Dependency, + string_buf: string, + path_buf: *bun.PathBuffer, + depth_buf: *[max_depth]Id, + ) struct { stringZ, usize } { + var depth: usize = 0; + + var parent_id = tree.id; + var path_written: usize = "node_modules".len; + + depth_buf[0] = 0; + + if (tree.id > 0) { + var depth_buf_len: usize = 1; + while (parent_id > 0 and parent_id < trees.len) { + depth_buf[depth_buf_len] = parent_id; + parent_id = trees[parent_id].parent; + depth_buf_len += 1; + } + depth_buf_len -= 1; + depth = depth_buf_len; + while (depth_buf_len > 0) : (depth_buf_len -= 1) { + path_buf[path_written] = std.fs.path.sep; + path_written += 1; + + const id = depth_buf[depth_buf_len]; + const name = dependencies[trees[id].dependency_id].name.slice(string_buf); + @memcpy(path_buf[path_written..][0..name.len], name); + path_written += name.len; + + @memcpy(path_buf[path_written..][0.."/node_modules".len], std.fs.path.sep_str ++ "node_modules"); + path_written += "/node_modules".len; + } + } + path_buf[path_written] = 0; + const rel = path_buf[0..path_written :0]; + + return .{ rel, depth }; + } + const Builder = struct { allocator: Allocator, name_hashes: []const PackageNameHash, @@ -517,6 +540,7 @@ pub const Tree = struct { if (pid >= max_package_id) continue; const dependency = builder.dependencies[dep_id]; + // Do not hoist aliased packages const destination = if (dependency.name_hash != name_hashes[pid]) next.id @@ -1732,6 +1756,8 @@ pub fn initEmpty(this: *Lockfile, allocator: Allocator) void { .trusted_dependencies = null, .workspace_paths = .{}, .workspace_versions = .{}, + .overrides = .{}, + .meta_hash = zero_hash, }; } @@ -5937,13 +5963,21 @@ pub fn hasTrustedDependency(this: *Lockfile, name: []const u8) bool { return default_trusted_dependencies.has(name); } -pub fn jsonStringifyDependency(this: *const Lockfile, w: anytype, dep: Dependency, res: ?PackageID) !void { +pub fn jsonStringifyDependency(this: *const Lockfile, w: anytype, dep_id: DependencyID, dep: Dependency, res: PackageID) !void { const sb = this.buffers.string_bytes.items; var buf: [2048]u8 = undefined; try w.beginObject(); defer w.endObject() catch {}; + try w.objectField("name"); + try w.write(dep.name.slice(sb)); + + if (dep.version.tag == .npm and dep.version.value.npm.is_alias) { + try w.objectField("is_alias"); + try w.write(true); + } + try w.objectField("literal"); try w.write(dep.version.literal.slice(sb)); @@ -5960,7 +5994,7 @@ pub fn jsonStringifyDependency(this: *const Lockfile, w: anytype, dep: Dependenc try w.write(info.name.slice(sb)); try w.objectField("version"); - try w.write(try std.fmt.bufPrint(&buf, "{}", .{info.version})); + try w.write(try std.fmt.bufPrint(&buf, "{}", .{info.version.fmt(sb)})); }, .dist_tag => { try w.beginObject(); @@ -6032,12 +6066,25 @@ pub fn jsonStringifyDependency(this: *const Lockfile, w: anytype, dep: Dependenc }, } - try w.objectField("resolved_id"); - try w.write(if (res) |r| if (r == invalid_package_id) null else r else null); + try w.objectField("package_id"); + try w.write(if (res == invalid_package_id) null else res); - const behavior = try std.fmt.bufPrint(&buf, "{}", .{dep.behavior}); try w.objectField("behavior"); - try w.write(behavior); + { + try w.beginObject(); + defer w.endObject() catch {}; + + const fields = @typeInfo(Behavior).Struct.fields; + inline for (fields[1 .. fields.len - 1]) |field| { + if (@field(dep.behavior, field.name)) { + try w.objectField(field.name); + try w.write(true); + } + } + } + + try w.objectField("id"); + try w.write(dep_id); } pub fn jsonStringify(this: *const Lockfile, w: anytype) !void { @@ -6077,6 +6124,84 @@ pub fn jsonStringify(this: *const Lockfile, w: anytype) !void { } } } + { + try w.objectField("trees"); + try w.beginArray(); + defer w.endArray() catch {}; + + const trees = this.buffers.trees.items; + const string_buf = this.buffers.string_bytes.items; + const dependencies = this.buffers.dependencies.items; + const hoisted_deps = this.buffers.hoisted_dependencies.items; + const resolutions = this.buffers.resolutions.items; + var depth_buf: [Tree.max_depth]Tree.Id = undefined; + var path_buf: bun.PathBuffer = undefined; + @memcpy(path_buf[0.."node_modules".len], "node_modules"); + + for (0..this.buffers.trees.items.len) |tree_id| { + try w.beginObject(); + defer w.endObject() catch {}; + + const tree = this.buffers.trees.items[tree_id]; + + try w.objectField("id"); + try w.write(tree_id); + + const relative_path, const depth = tree.relativePathAndDepth( + trees, + dependencies, + string_buf, + &path_buf, + &depth_buf, + ); + + try w.objectField("path"); + const formatted = try std.fmt.bufPrint(&buf, "{}", .{bun.fmt.fmtPath(u8, relative_path, .{ .path_sep = .posix })}); + try w.write(formatted); + + try w.objectField("depth"); + try w.write(depth); + + try w.objectField("dependencies"); + { + try w.beginObject(); + defer w.endObject() catch {}; + + for (tree.dependencies.get(hoisted_deps)) |tree_dep_id| { + const dep = dependencies[tree_dep_id]; + const package_id = resolutions[tree_dep_id]; + + try w.objectField(dep.name.slice(sb)); + { + try w.beginObject(); + defer w.endObject() catch {}; + + try w.objectField("id"); + try w.write(tree_dep_id); + + try w.objectField("package_id"); + try w.write(package_id); + } + } + } + } + } + + { + try w.objectField("dependencies"); + try w.beginArray(); + defer w.endArray() catch {}; + + const dependencies = this.buffers.dependencies.items; + const resolutions = this.buffers.resolutions.items; + + for (0..dependencies.len) |dep_id| { + const dep = dependencies[dep_id]; + const res = resolutions[dep_id]; + try this.jsonStringifyDependency(w, @intCast(dep_id), dep, res); + } + } + { try w.objectField("packages"); try w.beginArray(); @@ -6097,22 +6222,26 @@ pub fn jsonStringify(this: *const Lockfile, w: anytype) !void { try w.write(pkg.name_hash); try w.objectField("resolution"); - if (pkg.resolution.tag == .uninitialized) { - try w.write(null); - } else { - const b = try std.fmt.bufPrint(&buf, "{s} {s}", .{ @tagName(pkg.resolution.tag), pkg.resolution.fmt(sb, .posix) }); - try w.write(b); + { + const res = pkg.resolution; + try w.beginObject(); + defer w.endObject() catch {}; + + try w.objectField("tag"); + try w.write(@tagName(res.tag)); + + try w.objectField("value"); + const formatted = try std.fmt.bufPrint(&buf, "{s}", .{res.fmt(sb, .posix)}); + try w.write(formatted); } try w.objectField("dependencies"); { - try w.beginObject(); - defer w.endObject() catch {}; + try w.beginArray(); + defer w.endArray() catch {}; - for (pkg.dependencies.get(this.buffers.dependencies.items), pkg.resolutions.get(this.buffers.resolutions.items)) |dep_, res| { - const dep: Dependency = dep_; - try w.objectField(dep.name.slice(sb)); - try this.jsonStringifyDependency(w, dep, res); + for (pkg.dependencies.off..pkg.dependencies.off + pkg.dependencies.len) |dep_id| { + try w.write(dep_id); } } diff --git a/src/install/semver.zig b/src/install/semver.zig index 6fdd8edaf34cfc..1c5b3e2d22adfd 100644 --- a/src/install/semver.zig +++ b/src/install/semver.zig @@ -1658,6 +1658,8 @@ pub const Query = struct { const Formatter = struct { group: *const Group, + buf: string, + pub fn format(formatter: @This(), comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) !void { const this = formatter.group; @@ -1666,22 +1668,25 @@ pub const Query = struct { } if (this.tail == null and this.head.tail == null) { - try std.fmt.format(writer, "{}", .{this.head.fmt(this.input)}); + try std.fmt.format(writer, "{}", .{this.head.fmt(formatter.buf)}); return; } var list = &this.head; while (list.next) |next| { - try std.fmt.format(writer, "{} && ", .{list.fmt(this.input)}); + try std.fmt.format(writer, "{} && ", .{list.fmt(formatter.buf)}); list = next; } - try std.fmt.format(writer, "{}", .{list.fmt(this.input)}); + try std.fmt.format(writer, "{}", .{list.fmt(formatter.buf)}); } }; - pub fn fmt(this: *const Group) @This().Formatter { - return .{ .group = this }; + pub fn fmt(this: *const Group, buf: string) @This().Formatter { + return .{ + .group = this, + .buf = buf, + }; } pub fn jsonStringify(this: *const Group, writer: anytype) !void { @@ -1690,10 +1695,6 @@ pub const Query = struct { try std.json.encodeJsonString(temp, .{}, writer); } - pub fn format(this: @This(), comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) !void { - try this.fmt().format("", .{}, writer); - } - pub fn deinit(this: *Group) void { var list = this.head; var allocator = this.allocator; diff --git a/src/js/internal-for-testing.ts b/src/js/internal-for-testing.ts index 0833542a868606..53cf5877564bd6 100644 --- a/src/js/internal-for-testing.ts +++ b/src/js/internal-for-testing.ts @@ -45,7 +45,10 @@ export const upgrade_test_helpers = $zig("upgrade_command.zig", "upgrade_js_bind }; export const install_test_helpers = $zig("install.zig", "bun_install_js_bindings.generate") as { - printLockfileAsJSON: (cwd: string) => string; + /** + * Returns the lockfile at the given path as an object. + */ + parseLockfile: (cwd: string) => object; }; export const nativeFrameForTesting: (callback: () => void) => void = $cpp( diff --git a/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap b/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap index 047b56afcfcefe..1cc5eb796daaaf 100644 --- a/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap +++ b/test/cli/install/__snapshots__/bun-workspaces.test.ts.snap @@ -1,1337 +1,2123 @@ // Bun Snapshot v1, https://goo.gl/fbAQLP exports[`dependency on workspace without version in package.json: version: * 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "*", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 1, + }, + ], "format": "v2", "meta_hash": "1e2d5fa6591f007aa6674495d1022868fc3b60325c4a1555315ca0e16ef31c4e", "package_index": { - "lodash": 1, + "bar": 2, "foo": 0, - "bar": 2 + "lodash": 1, }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, + "integrity": null, + "man_dir": "", "name": "bar", "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", + "origin": "npm", + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, + }, + ], + "trees": [ + { "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, "lodash": { - "literal": "*", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 1, - "behavior": "normal | workspace" - } + "id": 1, + "package_id": 1, + }, }, - "integrity": null, - "man_dir": "", - "origin": "npm", - "bin": null, - "scripts": {} - } + "depth": 0, + "id": 0, + "path": "node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: *.*.* 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "*.*.*", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 1, + }, + ], "format": "v2", "meta_hash": "1e2d5fa6591f007aa6674495d1022868fc3b60325c4a1555315ca0e16ef31c4e", "package_index": { - "lodash": 1, + "bar": 2, "foo": 0, - "bar": 2 + "lodash": 1, }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, + "integrity": null, + "man_dir": "", "name": "bar", "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", + "origin": "npm", + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, + }, + ], + "trees": [ + { "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, "lodash": { - "literal": "*.*.*", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 1, - "behavior": "normal | workspace" - } + "id": 1, + "package_id": 1, + }, }, - "integrity": null, - "man_dir": "", - "origin": "npm", - "bin": null, - "scripts": {} - } + "depth": 0, + "id": 0, + "path": "node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: =* 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "=*", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 1, + }, + ], "format": "v2", "meta_hash": "1e2d5fa6591f007aa6674495d1022868fc3b60325c4a1555315ca0e16ef31c4e", "package_index": { - "lodash": 1, + "bar": 2, "foo": 0, - "bar": 2 + "lodash": 1, }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, + "integrity": null, + "man_dir": "", "name": "bar", "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", + "origin": "npm", + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, + }, + ], + "trees": [ + { "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, "lodash": { - "literal": "=*", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 1, - "behavior": "normal | workspace" - } + "id": 1, + "package_id": 1, + }, }, - "integrity": null, - "man_dir": "", - "origin": "npm", - "bin": null, - "scripts": {} - } + "depth": 0, + "id": 0, + "path": "node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: kjwoehcojrgjoj 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "dist_tag": { + "name": "lodash", + "tag": "lodash", + }, + "id": 2, + "literal": "kjwoehcojrgjoj", + "name": "lodash", + "package_id": 1, + }, + ], "format": "v2", "meta_hash": "1e2d5fa6591f007aa6674495d1022868fc3b60325c4a1555315ca0e16ef31c4e", "package_index": { - "lodash": 1, + "bar": 2, "foo": 0, - "bar": 2 + "lodash": 1, }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, + "integrity": null, + "man_dir": "", "name": "bar", "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", + "origin": "npm", + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, + }, + ], + "trees": [ + { "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, "lodash": { - "literal": "kjwoehcojrgjoj", - "dist_tag": { - "name": "lodash", - "tag": "lodash" - }, - "resolved_id": 1, - "behavior": "normal | workspace" - } + "id": 1, + "package_id": 1, + }, }, - "integrity": null, - "man_dir": "", - "origin": "npm", - "bin": null, - "scripts": {} - } + "depth": 0, + "id": 0, + "path": "node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: *.1.* 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "*.1.*", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 1, + }, + ], "format": "v2", "meta_hash": "1e2d5fa6591f007aa6674495d1022868fc3b60325c4a1555315ca0e16ef31c4e", "package_index": { - "lodash": 1, + "bar": 2, "foo": 0, - "bar": 2 + "lodash": 1, }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, + "integrity": null, + "man_dir": "", "name": "foo", "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } + "origin": "local", + "resolution": { + "tag": "root", + "value": "", }, - "integrity": null, - "man_dir": "", - "origin": "local", - "bin": null, - "scripts": {} + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, + "integrity": null, + "man_dir": "", "name": "bar", "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", + "origin": "npm", + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, + }, + ], + "trees": [ + { "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, "lodash": { - "literal": "*.1.*", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 1, - "behavior": "normal | workspace" - } + "id": 1, + "package_id": 1, + }, }, - "integrity": null, - "man_dir": "", - "origin": "npm", - "bin": null, - "scripts": {} - } + "depth": 0, + "id": 0, + "path": "node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: *-pre 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "*-pre", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 1, + }, + ], "format": "v2", "meta_hash": "1e2d5fa6591f007aa6674495d1022868fc3b60325c4a1555315ca0e16ef31c4e", "package_index": { - "lodash": 1, + "bar": 2, "foo": 0, - "bar": 2 + "lodash": 1, }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, + "integrity": null, + "man_dir": "", "name": "bar", "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", + "origin": "npm", + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, + }, + ], + "trees": [ + { "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, "lodash": { - "literal": "*-pre", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 1, - "behavior": "normal | workspace" - } + "id": 1, + "package_id": 1, + }, }, - "integrity": null, - "man_dir": "", - "origin": "npm", - "bin": null, - "scripts": {} - } + "depth": 0, + "id": 0, + "path": "node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: 1 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "1", + "name": "lodash", + "npm": { + "name": "lodash", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "56c714bc8ac0cdbf731de74d216134f3ce156ab45adda065fa84e4b2ce349f4b", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "1", - "npm": { - "name": "lodash", - "version": "<2.0.0 >=1.0.0" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 1.3.1", - "dependencies": {}, "integrity": "sha512-F7AB8u+6d00CCgnbjWzq9fFLpzOMCgq6mPjOW4+8+dYbrnc0obRrC+IHctzfZ1KKTQxX0xo/punrlpOWcf4gpw==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "1.3.1", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: 1.* 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "1.*", + "name": "lodash", + "npm": { + "name": "lodash", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "56c714bc8ac0cdbf731de74d216134f3ce156ab45adda065fa84e4b2ce349f4b", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "1.*", - "npm": { - "name": "lodash", - "version": "<2.0.0 >=1.0.0" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 1.3.1", - "dependencies": {}, "integrity": "sha512-F7AB8u+6d00CCgnbjWzq9fFLpzOMCgq6mPjOW4+8+dYbrnc0obRrC+IHctzfZ1KKTQxX0xo/punrlpOWcf4gpw==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "1.3.1", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: 1.1.* 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "1.1.*", + "name": "lodash", + "npm": { + "name": "lodash", + "version": "<1.2.0 >=1.1.0", + }, + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "56ec928a6d5f1d18236abc348bc711d6cfd08ca0a068bfc9fda24e7b22bed046", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "1.1.*", - "npm": { - "name": "lodash", - "version": "<1.2.0 >=1.1.0" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 1.1.1", - "dependencies": {}, "integrity": "sha512-SFeNKyKPh4kvYv0yd95fwLKw4JXM45PJLsPRdA8v7/q0lBzFeK6XS8xJTl6mlhb8PbAzioMkHli1W/1g0y4XQQ==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: 1.1.1 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "1.1.1", + "name": "lodash", + "npm": { + "name": "lodash", + "version": "==1.1.1", + }, + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "56ec928a6d5f1d18236abc348bc711d6cfd08ca0a068bfc9fda24e7b22bed046", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "1.1.1", - "npm": { - "name": "lodash", - "version": "==1.1.1" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 1.1.1", - "dependencies": {}, "integrity": "sha512-SFeNKyKPh4kvYv0yd95fwLKw4JXM45PJLsPRdA8v7/q0lBzFeK6XS8xJTl6mlhb8PbAzioMkHli1W/1g0y4XQQ==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: *-pre+build 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "*-pre+build", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "13e05e9c7522649464f47891db2c094497e8827d4a1f6784db8ef6c066211846", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "*-pre+build", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 4.17.21", - "dependencies": {}, "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "4.17.21", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: *+build 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "id": 2, + "literal": "*+build", + "name": "lodash", + "npm": { + "name": "lodash", + "version": ">=0.0.0", + }, + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "13e05e9c7522649464f47891db2c094497e8827d4a1f6784db8ef6c066211846", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "*+build", - "npm": { - "name": "lodash", - "version": ">=0.0.0" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 4.17.21", - "dependencies": {}, "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "4.17.21", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: latest 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "dist_tag": { + "name": "lodash", + "tag": "lodash", + }, + "id": 2, + "literal": "latest", + "name": "lodash", + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "13e05e9c7522649464f47891db2c094497e8827d4a1f6784db8ef6c066211846", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "latest", - "dist_tag": { - "name": "lodash", - "tag": "lodash" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 4.17.21", - "dependencies": {}, "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "4.17.21", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on workspace without version in package.json: version: 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "dist_tag": { + "name": "lodash", + "tag": "lodash", + }, + "id": 2, + "literal": "", + "name": "lodash", + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "13e05e9c7522649464f47891db2c094497e8827d4a1f6784db8ef6c066211846", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "", - "dist_tag": { - "name": "lodash", - "tag": "lodash" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 4.17.21", - "dependencies": {}, "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "4.17.21", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { - "11592711315645265694": "1.0.0" - } -}" + "11592711315645265694": "1.0.0", + }, +} `; exports[`dependency on same name as workspace and dist-tag: with version 1`] = ` -"{ +{ + "dependencies": [ + { + "behavior": { + "workspace": true, + }, + "id": 0, + "literal": "packages/bar", + "name": "bar", + "package_id": 2, + "workspace": "packages/bar", + }, + { + "behavior": { + "workspace": true, + }, + "id": 1, + "literal": "packages/mono", + "name": "lodash", + "package_id": 1, + "workspace": "packages/mono", + }, + { + "behavior": { + "normal": true, + "workspace": true, + }, + "dist_tag": { + "name": "lodash", + "tag": "lodash", + }, + "id": 2, + "literal": "latest", + "name": "lodash", + "package_id": 3, + }, + ], "format": "v2", "meta_hash": "13e05e9c7522649464f47891db2c094497e8827d4a1f6784db8ef6c066211846", "package_index": { + "bar": 2, + "foo": 0, "lodash": [ 1, - 3 + 3, ], - "foo": 0, - "bar": 2 }, "packages": [ { + "bin": null, + "dependencies": [ + 0, + 1, + ], "id": 0, - "name": "foo", - "name_hash": "14841791273925386894", - "resolution": "root ", - "dependencies": { - "bar": { - "literal": "packages/bar", - "workspace": "packages/bar", - "resolved_id": 2, - "behavior": "workspace" - }, - "lodash": { - "literal": "packages/mono", - "workspace": "packages/mono", - "resolved_id": 1, - "behavior": "workspace" - } - }, "integrity": null, "man_dir": "", + "name": "foo", + "name_hash": "14841791273925386894", "origin": "local", - "bin": null, - "scripts": {} + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 1, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "workspace workspace:packages/mono", - "dependencies": {}, "integrity": null, "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/mono", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [ + 2, + ], "id": 2, - "name": "bar", - "name_hash": "11592711315645265694", - "resolution": "workspace workspace:packages/bar", - "dependencies": { - "lodash": { - "literal": "latest", - "dist_tag": { - "name": "lodash", - "tag": "lodash" - }, - "resolved_id": 3, - "behavior": "normal | workspace" - } - }, "integrity": null, "man_dir": "", + "name": "bar", + "name_hash": "11592711315645265694", "origin": "npm", - "bin": null, - "scripts": {} + "resolution": { + "tag": "workspace", + "value": "workspace:packages/bar", + }, + "scripts": {}, }, { + "bin": null, + "dependencies": [], "id": 3, - "name": "lodash", - "name_hash": "15298228331728003776", - "resolution": "npm 4.17.21", - "dependencies": {}, "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "man_dir": "", + "name": "lodash", + "name_hash": "15298228331728003776", "origin": "npm", - "bin": null, - "scripts": {} - } + "resolution": { + "tag": "npm", + "value": "4.17.21", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "bar": { + "id": 0, + "package_id": 2, + }, + "lodash": { + "id": 1, + "package_id": 1, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "lodash": { + "id": 2, + "package_id": 3, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/bar/node_modules", + }, ], "workspace_paths": { "11592711315645265694": "packages/bar", - "15298228331728003776": "packages/mono" + "15298228331728003776": "packages/mono", }, "workspace_versions": { "11592711315645265694": "1.0.0", - "15298228331728003776": "4.17.21" - } -}" + "15298228331728003776": "4.17.21", + }, +} `; diff --git a/test/cli/install/bun-workspaces.test.ts b/test/cli/install/bun-workspaces.test.ts index 9d0a12162be2cf..aecea4adcc9f7e 100644 --- a/test/cli/install/bun-workspaces.test.ts +++ b/test/cli/install/bun-workspaces.test.ts @@ -1,10 +1,12 @@ import { spawnSync } from "bun"; -import { bunExe, bunEnv as env, tmpdirSync } from "harness"; +import { bunExe, bunEnv as env, tmpdirSync, toMatchNodeModulesAt } from "harness"; import { join } from "path"; import { writeFileSync, mkdirSync, rmSync } from "fs"; import { beforeEach, test, expect } from "bun:test"; import { install_test_helpers } from "bun:internal-for-testing"; -const { printLockfileAsJSON } = install_test_helpers; +const { parseLockfile } = install_test_helpers; + +expect.extend({ toMatchNodeModulesAt }); var testCounter: number = 0; @@ -83,7 +85,9 @@ test("dependency on workspace without version in package.json", () => { env, }); - expect(printLockfileAsJSON(packageDir)).toMatchSnapshot(`version: ${version}`); + const lockfile = parseLockfile(packageDir); + expect(lockfile).toMatchNodeModulesAt(packageDir); + expect(lockfile).toMatchSnapshot(`version: ${version}`); const out = stdout.toString(); expect(out.replace(/\s*\[[0-9\.]+m?s\]\s*$/, "").split(/\r?\n/)).toEqual([ @@ -122,7 +126,9 @@ test("dependency on workspace without version in package.json", () => { env, }); - expect(printLockfileAsJSON(packageDir)).toMatchSnapshot(`version: ${version}`); + const lockfile = parseLockfile(packageDir); + expect(lockfile).toMatchNodeModulesAt(packageDir); + expect(lockfile).toMatchSnapshot(`version: ${version}`); const out = stdout.toString(); expect(out.replace(/\s*\[[0-9\.]+m?s\]\s*$/, "").split(/\r?\n/)).toEqual([ @@ -139,7 +145,7 @@ test("dependency on workspace without version in package.json", () => { rmSync(join(packageDir, "packages", "bar", "node_modules"), { recursive: true, force: true }); rmSync(join(packageDir, "bun.lockb"), { recursive: true, force: true }); } -}); +}, 20_000); test("dependency on same name as workspace and dist-tag", () => { writeFileSync( @@ -179,7 +185,9 @@ test("dependency on same name as workspace and dist-tag", () => { env, }); - expect(printLockfileAsJSON(packageDir)).toMatchSnapshot("with version"); + const lockfile = parseLockfile(packageDir); + expect(lockfile).toMatchSnapshot("with version"); + expect(lockfile).toMatchNodeModulesAt(packageDir); const out = stdout.toString(); expect(out.replace(/\s*\[[0-9\.]+m?s\]\s*$/, "").split(/\r?\n/)).toEqual([ diff --git a/test/cli/install/registry/bun-install-registry.test.ts b/test/cli/install/registry/bun-install-registry.test.ts index d89b81bc9a5e6c..09092132e939a3 100644 --- a/test/cli/install/registry/bun-install-registry.test.ts +++ b/test/cli/install/registry/bun-install-registry.test.ts @@ -8,6 +8,7 @@ import { toHaveBins, writeShebangScript, tmpdirSync, + toMatchNodeModulesAt, } from "harness"; import { join, sep } from "path"; import { mkdtempSync, realpathSync } from "fs"; @@ -16,10 +17,13 @@ import { readdirSorted } from "../dummy.registry"; import { tmpdir } from "os"; import { fork, ChildProcess } from "child_process"; import { beforeAll, afterAll, beforeEach, afterEach, test, expect, describe } from "bun:test"; +import { install_test_helpers } from "bun:internal-for-testing"; +const { parseLockfile } = install_test_helpers; expect.extend({ toBeValidBin, toHaveBins, + toMatchNodeModulesAt, }); var verdaccioServer: ChildProcess; @@ -888,6 +892,9 @@ test("it should install with missing bun.lockb, node_modules, and/or cache", asy ]); expect(await exited).toBe(0); + let lockfile = parseLockfile(packageDir); + expect(lockfile).toMatchNodeModulesAt(packageDir); + // delete node_modules await rm(join(packageDir, "node_modules"), { recursive: true, force: true }); @@ -928,6 +935,9 @@ test("it should install with missing bun.lockb, node_modules, and/or cache", asy ]); expect(await exited).toBe(0); + lockfile = parseLockfile(packageDir); + expect(lockfile).toMatchNodeModulesAt(packageDir); + for (var i = 0; i < 100; i++) { // Situation: // diff --git a/test/harness.ts b/test/harness.ts index d193e3b6714a8b..1ad159a19e419f 100644 --- a/test/harness.ts +++ b/test/harness.ts @@ -305,6 +305,103 @@ export function ospath(path: string) { return path; } +/** + * Iterates through each tree in the lockfile, checking for each package + * on disk. Also requires each package dependency. Not tested well for + * non-npm packages (links, folders, git dependencies, etc.) + */ +export async function toMatchNodeModulesAt(lockfile: any, root: string) { + function shouldSkip(pkg: any, dep: any): boolean { + return ( + !pkg || + !pkg.resolution || + dep.behavior.optional || + (dep.behavior.dev && pkg.id !== 0) || + (pkg.arch && pkg.arch !== process.arch) + ); + } + for (const { path, dependencies } of lockfile.trees) { + for (const { package_id, id } of Object.values(dependencies) as any[]) { + const treeDep = lockfile.dependencies[id]; + const treePkg = lockfile.packages[package_id]; + if (shouldSkip(treePkg, treeDep)) continue; + + const treeDepPath = join(root, path, treeDep.name); + + switch (treePkg.resolution.tag) { + case "npm": + const onDisk = await Bun.file(join(treeDepPath, "package.json")).json(); + if (!Bun.deepMatch({ name: treePkg.name, version: treePkg.resolution.value }, onDisk)) { + return { + pass: false, + message: () => ` +Expected at ${join(path, treeDep.name)}: ${JSON.stringify({ name: treePkg.name, version: treePkg.resolution.value })} +Received ${JSON.stringify({ name: onDisk.name, version: onDisk.version })}`, + }; + } + + // Ok, we've confirmed the package exists and has the correct version. Now go through + // each of its transitive dependencies and confirm the same. + for (const depId of treePkg.dependencies) { + const dep = lockfile.dependencies[depId]; + const pkg = lockfile.packages[dep.package_id]; + if (shouldSkip(pkg, dep)) continue; + + try { + const resolved = await Bun.file(Bun.resolveSync(join(dep.name, "package.json"), treeDepPath)).json(); + switch (pkg.resolution.tag) { + case "npm": + const name = dep.is_alias ? dep.npm.name : dep.name; + if (!Bun.deepMatch({ name: name, version: pkg.resolution.value }, resolved)) { + return { + pass: false, + message: () => + `Expected ${dep.name} to have version ${pkg.resolution.value} in ${treeDepPath}, but got ${resolved.version}`, + }; + } + break; + } + } catch (e) { + return { + pass: false, + message: () => `Expected ${dep.name} to be resolvable in ${treeDepPath}`, + }; + } + } + break; + + default: + if (!fs.existsSync(treeDepPath)) { + return { + pass: false, + message: () => `Expected ${treePkg.resolution.tag} "${treeDepPath}" to exist`, + }; + } + + for (const depId of treePkg.dependencies) { + const dep = lockfile.dependencies[depId]; + const pkg = lockfile.packages[dep.package_id]; + if (shouldSkip(pkg, dep)) continue; + try { + require.resolve(join(dep.name, "package.json"), { paths: [treeDepPath] }); + } catch (e) { + return { + pass: false, + message: () => `Expected ${dep.name} to be resolvable in ${treeDepPath}`, + }; + } + } + + break; + } + } + } + + return { + pass: true, + }; +} + export async function toHaveBins(actual: string[], expectedBins: string[]) { const message = () => `Expected ${actual} to be package bins ${expectedBins}`; 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 new file mode 100644 index 00000000000000..992919dba20654 --- /dev/null +++ b/test/integration/next-pages/test/__snapshots__/dev-server-ssr-100.test.ts.snap @@ -0,0 +1,21314 @@ +// Bun Snapshot v1, https://goo.gl/fbAQLP + +exports[`ssr works for 100-ish requests 1`] = ` +{ + "dependencies": [ + { + "behavior": { + "normal": true, + }, + "id": 0, + "literal": "20.7.0", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": "==20.7.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 1, + "literal": "18.2.22", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": "==18.2.22", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 2, + "literal": "18.2.7", + "name": "@types/react-dom", + "npm": { + "name": "@types/react-dom", + "version": "==18.2.7", + }, + "package_id": 440, + }, + { + "behavior": { + "normal": true, + }, + "id": 3, + "literal": "10.4.16", + "name": "autoprefixer", + "npm": { + "name": "autoprefixer", + "version": "==10.4.16", + }, + "package_id": 432, + }, + { + "behavior": { + "normal": true, + }, + "id": 4, + "literal": "^1.0.3", + "name": "bun-types", + "npm": { + "name": "bun-types", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 431, + }, + { + "behavior": { + "normal": true, + }, + "id": 5, + "literal": "8.50.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": "==8.50.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 6, + "literal": "14.1.3", + "name": "eslint-config-next", + "npm": { + "name": "eslint-config-next", + "version": "==14.1.3", + }, + "package_id": 221, + }, + { + "behavior": { + "normal": true, + }, + "id": 7, + "literal": "14.1.3", + "name": "next", + "npm": { + "name": "next", + "version": "==14.1.3", + }, + "package_id": 203, + }, + { + "behavior": { + "normal": true, + }, + "id": 8, + "literal": "8.4.30", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.30", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 9, + "literal": "22.4.1", + "name": "puppeteer", + "npm": { + "name": "puppeteer", + "version": "==22.4.1", + }, + "package_id": 89, + }, + { + "behavior": { + "normal": true, + }, + "id": 10, + "literal": "18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": "==18.2.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 11, + "literal": "18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": "==18.2.0", + }, + "package_id": 84, + }, + { + "behavior": { + "normal": true, + }, + "id": 12, + "literal": "3.3.3", + "name": "tailwindcss", + "npm": { + "name": "tailwindcss", + "version": "==3.3.3", + }, + "package_id": 2, + }, + { + "behavior": { + "normal": true, + }, + "id": 13, + "literal": "5.2.2", + "name": "typescript", + "npm": { + "name": "typescript", + "version": "==5.2.2", + }, + "package_id": 1, + }, + { + "behavior": { + "normal": true, + }, + "id": 14, + "literal": "^5.2.0", + "name": "@alloc/quick-lru", + "npm": { + "name": "@alloc/quick-lru", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 83, + }, + { + "behavior": { + "normal": true, + }, + "id": 15, + "literal": "^5.0.2", + "name": "arg", + "npm": { + "name": "arg", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 82, + }, + { + "behavior": { + "normal": true, + }, + "id": 16, + "literal": "^3.5.3", + "name": "chokidar", + "npm": { + "name": "chokidar", + "version": ">=3.5.3 <4.0.0", + }, + "package_id": 76, + }, + { + "behavior": { + "normal": true, + }, + "id": 17, + "literal": "^1.2.2", + "name": "didyoumean", + "npm": { + "name": "didyoumean", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 75, + }, + { + "behavior": { + "normal": true, + }, + "id": 18, + "literal": "^1.1.3", + "name": "dlv", + "npm": { + "name": "dlv", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 74, + }, + { + "behavior": { + "normal": true, + }, + "id": 19, + "literal": "^3.2.12", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.12 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 20, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 21, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 22, + "literal": "^1.18.2", + "name": "jiti", + "npm": { + "name": "jiti", + "version": ">=1.18.2 <2.0.0", + }, + "package_id": 60, + }, + { + "behavior": { + "normal": true, + }, + "id": 23, + "literal": "^2.1.0", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 24, + "literal": "^4.0.5", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.5 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 25, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 26, + "literal": "^3.0.0", + "name": "object-hash", + "npm": { + "name": "object-hash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 52, + }, + { + "behavior": { + "normal": true, + }, + "id": 27, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 28, + "literal": "^8.4.23", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.23 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 29, + "literal": "^15.1.0", + "name": "postcss-import", + "npm": { + "name": "postcss-import", + "version": ">=15.1.0 <16.0.0", + }, + "package_id": 48, + }, + { + "behavior": { + "normal": true, + }, + "id": 30, + "literal": "^4.0.1", + "name": "postcss-js", + "npm": { + "name": "postcss-js", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 46, + }, + { + "behavior": { + "normal": true, + }, + "id": 31, + "literal": "^4.0.1", + "name": "postcss-load-config", + "npm": { + "name": "postcss-load-config", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 43, + }, + { + "behavior": { + "normal": true, + }, + "id": 32, + "literal": "^6.0.1", + "name": "postcss-nested", + "npm": { + "name": "postcss-nested", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 38, + }, + { + "behavior": { + "normal": true, + }, + "id": 33, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "normal": true, + }, + "id": 34, + "literal": "^1.22.2", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.2 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 35, + "literal": "^3.32.0", + "name": "sucrase", + "npm": { + "name": "sucrase", + "version": ">=3.32.0 <4.0.0", + }, + "package_id": 3, + }, + { + "behavior": { + "normal": true, + }, + "id": 36, + "literal": "^0.3.2", + "name": "@jridgewell/gen-mapping", + "npm": { + "name": "@jridgewell/gen-mapping", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 24, + }, + { + "behavior": { + "normal": true, + }, + "id": 37, + "literal": "^4.0.0", + "name": "commander", + "npm": { + "name": "commander", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 23, + }, + { + "behavior": { + "normal": true, + }, + "id": 38, + "literal": "7.1.6", + "name": "glob", + "npm": { + "name": "glob", + "version": "==7.1.6", + }, + "package_id": 12, + }, + { + "behavior": { + "normal": true, + }, + "id": 39, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 40, + "literal": "^2.7.0", + "name": "mz", + "npm": { + "name": "mz", + "version": ">=2.7.0 <3.0.0", + }, + "package_id": 6, + }, + { + "behavior": { + "normal": true, + }, + "id": 41, + "literal": "^4.0.1", + "name": "pirates", + "npm": { + "name": "pirates", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 5, + }, + { + "behavior": { + "normal": true, + }, + "id": 42, + "literal": "^0.1.9", + "name": "ts-interface-checker", + "npm": { + "name": "ts-interface-checker", + "version": ">=0.1.9 <0.2.0", + }, + "package_id": 4, + }, + { + "behavior": { + "normal": true, + }, + "id": 43, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 44, + "literal": "^4.0.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 45, + "literal": "^1.0.0", + "name": "thenify-all", + "npm": { + "name": "thenify-all", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 7, + }, + { + "behavior": { + "normal": true, + }, + "id": 46, + "literal": ">= 3.1.0 < 4", + "name": "thenify", + "npm": { + "name": "thenify", + "version": ">=3.1.0 && <4.0.0", + }, + "package_id": 8, + }, + { + "behavior": { + "normal": true, + }, + "id": 47, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 48, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 49, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 50, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 51, + "literal": "^3.0.4", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 52, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 53, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 54, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 55, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 56, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 57, + "literal": "0.0.1", + "name": "concat-map", + "npm": { + "name": "concat-map", + "version": "==0.0.1", + }, + "package_id": 18, + }, + { + "behavior": { + "normal": true, + }, + "id": 58, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 59, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 60, + "literal": "^1.0.1", + "name": "@jridgewell/set-array", + "npm": { + "name": "@jridgewell/set-array", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 28, + }, + { + "behavior": { + "normal": true, + }, + "id": 61, + "literal": "^1.4.10", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.10 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 62, + "literal": "^0.3.9", + "name": "@jridgewell/trace-mapping", + "npm": { + "name": "@jridgewell/trace-mapping", + "version": ">=0.3.9 <0.4.0", + }, + "package_id": 25, + }, + { + "behavior": { + "normal": true, + }, + "id": 63, + "literal": "^3.1.0", + "name": "@jridgewell/resolve-uri", + "npm": { + "name": "@jridgewell/resolve-uri", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 27, + }, + { + "behavior": { + "normal": true, + }, + "id": 64, + "literal": "^1.4.14", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.14 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 65, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 66, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 67, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 68, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 69, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 70, + "literal": "^3.0.0", + "name": "cssesc", + "npm": { + "name": "cssesc", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 37, + }, + { + "behavior": { + "normal": true, + }, + "id": 71, + "literal": "^1.0.2", + "name": "util-deprecate", + "npm": { + "name": "util-deprecate", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 36, + }, + { + "behavior": { + "normal": true, + }, + "id": 72, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "peer": true, + }, + "id": 73, + "literal": "^8.2.14", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.2.14 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 74, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 75, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 76, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 77, + "literal": "^2.0.5", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 78, + "literal": "^2.1.1", + "name": "yaml", + "npm": { + "name": "yaml", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 44, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 79, + "literal": ">=9.0.0", + "name": "ts-node", + "npm": { + "name": "ts-node", + "version": ">=9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 80, + "literal": ">=8.0.9", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.9", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 81, + "literal": "^2.0.1", + "name": "camelcase-css", + "npm": { + "name": "camelcase-css", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 47, + }, + { + "behavior": { + "peer": true, + }, + "id": 82, + "literal": "^8.4.21", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.21 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 83, + "literal": "^4.0.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "normal": true, + }, + "id": 84, + "literal": "^1.0.0", + "name": "read-cache", + "npm": { + "name": "read-cache", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 49, + }, + { + "behavior": { + "normal": true, + }, + "id": 85, + "literal": "^1.1.7", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "peer": true, + }, + "id": 86, + "literal": "^8.0.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 87, + "literal": "^2.3.0", + "name": "pify", + "npm": { + "name": "pify", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 50, + }, + { + "behavior": { + "normal": true, + }, + "id": 88, + "literal": "^3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 89, + "literal": "^2.3.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.3.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 90, + "literal": "^7.0.1", + "name": "fill-range", + "npm": { + "name": "fill-range", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 57, + }, + { + "behavior": { + "normal": true, + }, + "id": 91, + "literal": "^5.0.1", + "name": "to-regex-range", + "npm": { + "name": "to-regex-range", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 58, + }, + { + "behavior": { + "normal": true, + }, + "id": 92, + "literal": "^7.0.0", + "name": "is-number", + "npm": { + "name": "is-number", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 59, + }, + { + "behavior": { + "normal": true, + }, + "id": 93, + "literal": "^2.1.1", + "name": "is-extglob", + "npm": { + "name": "is-extglob", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 62, + }, + { + "behavior": { + "normal": true, + }, + "id": 94, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 95, + "literal": "^2.0.2", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 96, + "literal": "^1.2.3", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 97, + "literal": "^5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 98, + "literal": "^1.3.0", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 99, + "literal": "^4.0.4", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.4 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 100, + "literal": "^4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 101, + "literal": "2.1.5", + "name": "@nodelib/fs.scandir", + "npm": { + "name": "@nodelib/fs.scandir", + "version": "==2.1.5", + }, + "package_id": 70, + }, + { + "behavior": { + "normal": true, + }, + "id": 102, + "literal": "^1.6.0", + "name": "fastq", + "npm": { + "name": "fastq", + "version": ">=1.6.0 <2.0.0", + }, + "package_id": 68, + }, + { + "behavior": { + "normal": true, + }, + "id": 103, + "literal": "^1.0.4", + "name": "reusify", + "npm": { + "name": "reusify", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 69, + }, + { + "behavior": { + "normal": true, + }, + "id": 104, + "literal": "2.0.5", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": "==2.0.5", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 105, + "literal": "^1.1.9", + "name": "run-parallel", + "npm": { + "name": "run-parallel", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 71, + }, + { + "behavior": { + "normal": true, + }, + "id": 106, + "literal": "^1.2.2", + "name": "queue-microtask", + "npm": { + "name": "queue-microtask", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 72, + }, + { + "behavior": { + "normal": true, + }, + "id": 107, + "literal": "~3.1.2", + "name": "anymatch", + "npm": { + "name": "anymatch", + "version": ">=3.1.2 <3.2.0", + }, + "package_id": 81, + }, + { + "behavior": { + "normal": true, + }, + "id": 108, + "literal": "~3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <3.1.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 109, + "literal": "~5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <5.2.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 110, + "literal": "~2.1.0", + "name": "is-binary-path", + "npm": { + "name": "is-binary-path", + "version": ">=2.1.0 <2.2.0", + }, + "package_id": 79, + }, + { + "behavior": { + "normal": true, + }, + "id": 111, + "literal": "~4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <4.1.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 112, + "literal": "~3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <3.1.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 113, + "literal": "~3.6.0", + "name": "readdirp", + "npm": { + "name": "readdirp", + "version": ">=3.6.0 <3.7.0", + }, + "package_id": 78, + }, + { + "behavior": { + "optional": true, + }, + "id": 114, + "literal": "~2.3.2", + "name": "fsevents", + "npm": { + "name": "fsevents", + "version": ">=2.3.2 <2.4.0", + }, + "package_id": 77, + }, + { + "behavior": { + "normal": true, + }, + "id": 115, + "literal": "^2.2.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 116, + "literal": "^2.0.0", + "name": "binary-extensions", + "npm": { + "name": "binary-extensions", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 80, + }, + { + "behavior": { + "normal": true, + }, + "id": 117, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 118, + "literal": "^2.0.4", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.0.4 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 119, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 120, + "literal": "^0.23.0", + "name": "scheduler", + "npm": { + "name": "scheduler", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 85, + }, + { + "behavior": { + "peer": true, + }, + "id": 121, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 122, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 123, + "literal": "^3.0.0 || ^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 && >=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 124, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 125, + "literal": "9.0.0", + "name": "cosmiconfig", + "npm": { + "name": "cosmiconfig", + "version": "==9.0.0", + }, + "package_id": 181, + }, + { + "behavior": { + "normal": true, + }, + "id": 126, + "literal": "22.4.1", + "name": "puppeteer-core", + "npm": { + "name": "puppeteer-core", + "version": "==22.4.1", + }, + "package_id": 170, + }, + { + "behavior": { + "normal": true, + }, + "id": 127, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 128, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 129, + "literal": "2.0.1", + "name": "extract-zip", + "npm": { + "name": "extract-zip", + "version": "==2.0.1", + }, + "package_id": 162, + }, + { + "behavior": { + "normal": true, + }, + "id": 130, + "literal": "2.0.3", + "name": "progress", + "npm": { + "name": "progress", + "version": "==2.0.3", + }, + "package_id": 161, + }, + { + "behavior": { + "normal": true, + }, + "id": 131, + "literal": "6.4.0", + "name": "proxy-agent", + "npm": { + "name": "proxy-agent", + "version": "==6.4.0", + }, + "package_id": 127, + }, + { + "behavior": { + "normal": true, + }, + "id": 132, + "literal": "3.0.5", + "name": "tar-fs", + "npm": { + "name": "tar-fs", + "version": "==3.0.5", + }, + "package_id": 115, + }, + { + "behavior": { + "normal": true, + }, + "id": 133, + "literal": "1.4.3", + "name": "unbzip2-stream", + "npm": { + "name": "unbzip2-stream", + "version": "==1.4.3", + }, + "package_id": 110, + }, + { + "behavior": { + "normal": true, + }, + "id": 134, + "literal": "17.7.2", + "name": "yargs", + "npm": { + "name": "yargs", + "version": "==17.7.2", + }, + "package_id": 94, + }, + { + "behavior": { + "normal": true, + }, + "id": 135, + "literal": "7.6.0", + "name": "semver", + "npm": { + "name": "semver", + "version": "==7.6.0", + }, + "package_id": 91, + }, + { + "behavior": { + "normal": true, + }, + "id": 136, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 137, + "literal": "^4.0.0", + "name": "yallist", + "npm": { + "name": "yallist", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 93, + }, + { + "behavior": { + "normal": true, + }, + "id": 138, + "literal": "^8.0.1", + "name": "cliui", + "npm": { + "name": "cliui", + "version": ">=8.0.1 <9.0.0", + }, + "package_id": 105, + }, + { + "behavior": { + "normal": true, + }, + "id": 139, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 140, + "literal": "^2.0.5", + "name": "get-caller-file", + "npm": { + "name": "get-caller-file", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 103, + }, + { + "behavior": { + "normal": true, + }, + "id": 141, + "literal": "^2.1.1", + "name": "require-directory", + "npm": { + "name": "require-directory", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 102, + }, + { + "behavior": { + "normal": true, + }, + "id": 142, + "literal": "^4.2.3", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.3 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 143, + "literal": "^5.0.5", + "name": "y18n", + "npm": { + "name": "y18n", + "version": ">=5.0.5 <6.0.0", + }, + "package_id": 96, + }, + { + "behavior": { + "normal": true, + }, + "id": 144, + "literal": "^21.1.1", + "name": "yargs-parser", + "npm": { + "name": "yargs-parser", + "version": ">=21.1.1 <22.0.0", + }, + "package_id": 95, + }, + { + "behavior": { + "normal": true, + }, + "id": 145, + "literal": "^8.0.0", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 101, + }, + { + "behavior": { + "normal": true, + }, + "id": 146, + "literal": "^3.0.0", + "name": "is-fullwidth-code-point", + "npm": { + "name": "is-fullwidth-code-point", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 100, + }, + { + "behavior": { + "normal": true, + }, + "id": 147, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 148, + "literal": "^5.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 99, + }, + { + "behavior": { + "normal": true, + }, + "id": 149, + "literal": "^4.2.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 150, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 151, + "literal": "^7.0.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 152, + "literal": "^4.0.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 153, + "literal": "^4.1.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 154, + "literal": "^6.0.0", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 155, + "literal": "^2.0.1", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 108, + }, + { + "behavior": { + "normal": true, + }, + "id": 156, + "literal": "~1.1.4", + "name": "color-name", + "npm": { + "name": "color-name", + "version": ">=1.1.4 <1.2.0", + }, + "package_id": 109, + }, + { + "behavior": { + "normal": true, + }, + "id": 157, + "literal": "^5.2.1", + "name": "buffer", + "npm": { + "name": "buffer", + "version": ">=5.2.1 <6.0.0", + }, + "package_id": 112, + }, + { + "behavior": { + "normal": true, + }, + "id": 158, + "literal": "^2.3.8", + "name": "through", + "npm": { + "name": "through", + "version": ">=2.3.8 <3.0.0", + }, + "package_id": 111, + }, + { + "behavior": { + "normal": true, + }, + "id": 159, + "literal": "^1.3.1", + "name": "base64-js", + "npm": { + "name": "base64-js", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 114, + }, + { + "behavior": { + "normal": true, + }, + "id": 160, + "literal": "^1.1.13", + "name": "ieee754", + "npm": { + "name": "ieee754", + "version": ">=1.1.13 <2.0.0", + }, + "package_id": 113, + }, + { + "behavior": { + "normal": true, + }, + "id": 161, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 162, + "literal": "^3.1.5", + "name": "tar-stream", + "npm": { + "name": "tar-stream", + "version": ">=3.1.5 <4.0.0", + }, + "package_id": 123, + }, + { + "behavior": { + "optional": true, + }, + "id": 163, + "literal": "^2.1.1", + "name": "bare-fs", + "npm": { + "name": "bare-fs", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 118, + }, + { + "behavior": { + "optional": true, + }, + "id": 164, + "literal": "^2.1.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 165, + "literal": "^2.1.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 166, + "literal": "^2.0.0", + "name": "bare-events", + "npm": { + "name": "bare-events", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 122, + }, + { + "behavior": { + "normal": true, + }, + "id": 167, + "literal": "^2.0.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 168, + "literal": "^2.0.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 169, + "literal": "^2.13.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 170, + "literal": "^1.1.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 171, + "literal": "^1.0.1", + "name": "queue-tick", + "npm": { + "name": "queue-tick", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 120, + }, + { + "behavior": { + "normal": true, + }, + "id": 172, + "literal": "^1.6.4", + "name": "b4a", + "npm": { + "name": "b4a", + "version": ">=1.6.4 <2.0.0", + }, + "package_id": 124, + }, + { + "behavior": { + "normal": true, + }, + "id": 173, + "literal": "^1.2.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 174, + "literal": "^2.15.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.15.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 175, + "literal": "^1.1.0", + "name": "end-of-stream", + "npm": { + "name": "end-of-stream", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 126, + }, + { + "behavior": { + "normal": true, + }, + "id": 176, + "literal": "^1.3.1", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 177, + "literal": "^1.4.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 178, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 179, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 180, + "literal": "^7.0.1", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 160, + }, + { + "behavior": { + "normal": true, + }, + "id": 181, + "literal": "^7.0.3", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.3 <8.0.0", + }, + "package_id": 159, + }, + { + "behavior": { + "normal": true, + }, + "id": 182, + "literal": "^7.14.1", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=7.14.1 <8.0.0", + }, + "package_id": 158, + }, + { + "behavior": { + "normal": true, + }, + "id": 183, + "literal": "^7.0.1", + "name": "pac-proxy-agent", + "npm": { + "name": "pac-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 136, + }, + { + "behavior": { + "normal": true, + }, + "id": 184, + "literal": "^1.1.0", + "name": "proxy-from-env", + "npm": { + "name": "proxy-from-env", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 135, + }, + { + "behavior": { + "normal": true, + }, + "id": 185, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 186, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 187, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 188, + "literal": "^2.7.1", + "name": "socks", + "npm": { + "name": "socks", + "version": ">=2.7.1 <3.0.0", + }, + "package_id": 129, + }, + { + "behavior": { + "normal": true, + }, + "id": 189, + "literal": "^2.0.0", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 131, + }, + { + "behavior": { + "normal": true, + }, + "id": 190, + "literal": "^4.2.0", + "name": "smart-buffer", + "npm": { + "name": "smart-buffer", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 130, + }, + { + "behavior": { + "normal": true, + }, + "id": 191, + "literal": "2.1.2", + "name": "ms", + "npm": { + "name": "ms", + "version": "==2.1.2", + }, + "package_id": 133, + }, + { + "behavior": { + "normal": true, + }, + "id": 192, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 193, + "literal": "^0.23.0", + "name": "@tootallnate/quickjs-emscripten", + "npm": { + "name": "@tootallnate/quickjs-emscripten", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 157, + }, + { + "behavior": { + "normal": true, + }, + "id": 194, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 195, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 196, + "literal": "^6.0.1", + "name": "get-uri", + "npm": { + "name": "get-uri", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 150, + }, + { + "behavior": { + "normal": true, + }, + "id": 197, + "literal": "^7.0.0", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 149, + }, + { + "behavior": { + "normal": true, + }, + "id": 198, + "literal": "^7.0.2", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 148, + }, + { + "behavior": { + "normal": true, + }, + "id": 199, + "literal": "^7.0.0", + "name": "pac-resolver", + "npm": { + "name": "pac-resolver", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 137, + }, + { + "behavior": { + "normal": true, + }, + "id": 200, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 201, + "literal": "^5.0.0", + "name": "degenerator", + "npm": { + "name": "degenerator", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 140, + }, + { + "behavior": { + "normal": true, + }, + "id": 202, + "literal": "^1.1.8", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=1.1.8 <2.0.0", + }, + "package_id": 139, + }, + { + "behavior": { + "normal": true, + }, + "id": 203, + "literal": "^2.0.2", + "name": "netmask", + "npm": { + "name": "netmask", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 138, + }, + { + "behavior": { + "normal": true, + }, + "id": 204, + "literal": "^0.13.4", + "name": "ast-types", + "npm": { + "name": "ast-types", + "version": ">=0.13.4 <0.14.0", + }, + "package_id": 146, + }, + { + "behavior": { + "normal": true, + }, + "id": 205, + "literal": "^2.1.0", + "name": "escodegen", + "npm": { + "name": "escodegen", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 142, + }, + { + "behavior": { + "normal": true, + }, + "id": 206, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "normal": true, + }, + "id": 207, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 208, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 209, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "optional": true, + }, + "id": 210, + "literal": "~0.6.1", + "name": "source-map", + "npm": { + "name": "source-map", + "version": ">=0.6.1 <0.7.0", + }, + "package_id": 143, + }, + { + "behavior": { + "normal": true, + }, + "id": 211, + "literal": "^2.0.1", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 212, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 213, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 214, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 215, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 216, + "literal": "^5.0.2", + "name": "basic-ftp", + "npm": { + "name": "basic-ftp", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 156, + }, + { + "behavior": { + "normal": true, + }, + "id": 217, + "literal": "^5.0.1", + "name": "data-uri-to-buffer", + "npm": { + "name": "data-uri-to-buffer", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 155, + }, + { + "behavior": { + "normal": true, + }, + "id": 218, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 219, + "literal": "^8.1.0", + "name": "fs-extra", + "npm": { + "name": "fs-extra", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 151, + }, + { + "behavior": { + "normal": true, + }, + "id": 220, + "literal": "^4.2.0", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 221, + "literal": "^4.0.0", + "name": "jsonfile", + "npm": { + "name": "jsonfile", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 153, + }, + { + "behavior": { + "normal": true, + }, + "id": 222, + "literal": "^0.1.0", + "name": "universalify", + "npm": { + "name": "universalify", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 152, + }, + { + "behavior": { + "optional": true, + }, + "id": 223, + "literal": "^4.1.6", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.1.6 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 224, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 225, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 226, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 227, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 228, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 229, + "literal": "^5.1.0", + "name": "get-stream", + "npm": { + "name": "get-stream", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 169, + }, + { + "behavior": { + "normal": true, + }, + "id": 230, + "literal": "^2.10.0", + "name": "yauzl", + "npm": { + "name": "yauzl", + "version": ">=2.10.0 <3.0.0", + }, + "package_id": 165, + }, + { + "behavior": { + "optional": true, + }, + "id": 231, + "literal": "^2.9.1", + "name": "@types/yauzl", + "npm": { + "name": "@types/yauzl", + "version": ">=2.9.1 <3.0.0", + }, + "package_id": 163, + }, + { + "behavior": { + "normal": true, + }, + "id": 232, + "literal": "*", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": ">=0.0.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 233, + "literal": "~1.1.0", + "name": "fd-slicer", + "npm": { + "name": "fd-slicer", + "version": ">=1.1.0 <1.2.0", + }, + "package_id": 167, + }, + { + "behavior": { + "normal": true, + }, + "id": 234, + "literal": "~0.2.3", + "name": "buffer-crc32", + "npm": { + "name": "buffer-crc32", + "version": ">=0.2.3 <0.3.0", + }, + "package_id": 166, + }, + { + "behavior": { + "normal": true, + }, + "id": 235, + "literal": "~1.2.0", + "name": "pend", + "npm": { + "name": "pend", + "version": ">=1.2.0 <1.3.0", + }, + "package_id": 168, + }, + { + "behavior": { + "normal": true, + }, + "id": 236, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 237, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 238, + "literal": "0.5.12", + "name": "chromium-bidi", + "npm": { + "name": "chromium-bidi", + "version": "==0.5.12", + }, + "package_id": 178, + }, + { + "behavior": { + "normal": true, + }, + "id": 239, + "literal": "4.0.0", + "name": "cross-fetch", + "npm": { + "name": "cross-fetch", + "version": "==4.0.0", + }, + "package_id": 173, + }, + { + "behavior": { + "normal": true, + }, + "id": 240, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 241, + "literal": "0.0.1249869", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": "==0.0.1249869", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 242, + "literal": "8.16.0", + "name": "ws", + "npm": { + "name": "ws", + "version": "==8.16.0", + }, + "package_id": 171, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 243, + "literal": "^4.0.1", + "name": "bufferutil", + "npm": { + "name": "bufferutil", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 244, + "literal": ">=5.0.2", + "name": "utf-8-validate", + "npm": { + "name": "utf-8-validate", + "version": ">=5.0.2", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 245, + "literal": "^2.6.12", + "name": "node-fetch", + "npm": { + "name": "node-fetch", + "version": ">=2.6.12 <3.0.0", + }, + "package_id": 174, + }, + { + "behavior": { + "normal": true, + }, + "id": 246, + "literal": "^5.0.0", + "name": "whatwg-url", + "npm": { + "name": "whatwg-url", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 175, + }, + { + "behavior": { + "peer": true, + }, + "id": 247, + "literal": "^0.1.0", + "name": "encoding", + "npm": { + "name": "encoding", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 248, + "literal": "~0.0.3", + "name": "tr46", + "npm": { + "name": "tr46", + "version": ">=0.0.3 <0.1.0", + }, + "package_id": 177, + }, + { + "behavior": { + "normal": true, + }, + "id": 249, + "literal": "^3.0.0", + "name": "webidl-conversions", + "npm": { + "name": "webidl-conversions", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 176, + }, + { + "behavior": { + "normal": true, + }, + "id": 250, + "literal": "3.0.1", + "name": "mitt", + "npm": { + "name": "mitt", + "version": "==3.0.1", + }, + "package_id": 180, + }, + { + "behavior": { + "normal": true, + }, + "id": 251, + "literal": "10.0.0", + "name": "urlpattern-polyfill", + "npm": { + "name": "urlpattern-polyfill", + "version": "==10.0.0", + }, + "package_id": 179, + }, + { + "behavior": { + "peer": true, + }, + "id": 252, + "literal": "*", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": ">=0.0.0", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 253, + "literal": "^2.2.1", + "name": "env-paths", + "npm": { + "name": "env-paths", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 202, + }, + { + "behavior": { + "normal": true, + }, + "id": 254, + "literal": "^3.3.0", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 255, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 256, + "literal": "^5.2.0", + "name": "parse-json", + "npm": { + "name": "parse-json", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 182, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 257, + "literal": ">=4.9.5", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.9.5", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 258, + "literal": "^7.0.0", + "name": "@babel/code-frame", + "npm": { + "name": "@babel/code-frame", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 186, + }, + { + "behavior": { + "normal": true, + }, + "id": 259, + "literal": "^1.3.1", + "name": "error-ex", + "npm": { + "name": "error-ex", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 184, + }, + { + "behavior": { + "normal": true, + }, + "id": 260, + "literal": "^2.3.0", + "name": "json-parse-even-better-errors", + "npm": { + "name": "json-parse-even-better-errors", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 183, + }, + { + "behavior": { + "normal": true, + }, + "id": 261, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 262, + "literal": "^0.2.1", + "name": "is-arrayish", + "npm": { + "name": "is-arrayish", + "version": ">=0.2.1 <0.3.0", + }, + "package_id": 185, + }, + { + "behavior": { + "normal": true, + }, + "id": 263, + "literal": "^7.22.13", + "name": "@babel/highlight", + "npm": { + "name": "@babel/highlight", + "version": ">=7.22.13 <8.0.0", + }, + "package_id": 194, + }, + { + "behavior": { + "normal": true, + }, + "id": 264, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 265, + "literal": "^3.2.1", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 191, + }, + { + "behavior": { + "normal": true, + }, + "id": 266, + "literal": "^1.0.5", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 190, + }, + { + "behavior": { + "normal": true, + }, + "id": 267, + "literal": "^5.3.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 188, + }, + { + "behavior": { + "normal": true, + }, + "id": 268, + "literal": "^3.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 189, + }, + { + "behavior": { + "normal": true, + }, + "id": 269, + "literal": "^1.9.0", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 192, + }, + { + "behavior": { + "normal": true, + }, + "id": 270, + "literal": "1.1.3", + "name": "color-name", + "npm": { + "name": "color-name", + "version": "==1.1.3", + }, + "package_id": 193, + }, + { + "behavior": { + "normal": true, + }, + "id": 271, + "literal": "^7.22.20", + "name": "@babel/helper-validator-identifier", + "npm": { + "name": "@babel/helper-validator-identifier", + "version": ">=7.22.20 <8.0.0", + }, + "package_id": 195, + }, + { + "behavior": { + "normal": true, + }, + "id": 272, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 273, + "literal": "^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 274, + "literal": "^2.0.1", + "name": "argparse", + "npm": { + "name": "argparse", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 197, + }, + { + "behavior": { + "normal": true, + }, + "id": 275, + "literal": "^1.0.0", + "name": "parent-module", + "npm": { + "name": "parent-module", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 200, + }, + { + "behavior": { + "normal": true, + }, + "id": 276, + "literal": "^4.0.0", + "name": "resolve-from", + "npm": { + "name": "resolve-from", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 199, + }, + { + "behavior": { + "normal": true, + }, + "id": 277, + "literal": "^3.0.0", + "name": "callsites", + "npm": { + "name": "callsites", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 201, + }, + { + "behavior": { + "normal": true, + }, + "id": 278, + "literal": "14.1.3", + "name": "@next/env", + "npm": { + "name": "@next/env", + "version": "==14.1.3", + }, + "package_id": 220, + }, + { + "behavior": { + "normal": true, + }, + "id": 279, + "literal": "0.5.2", + "name": "@swc/helpers", + "npm": { + "name": "@swc/helpers", + "version": "==0.5.2", + }, + "package_id": 219, + }, + { + "behavior": { + "normal": true, + }, + "id": 280, + "literal": "1.6.0", + "name": "busboy", + "npm": { + "name": "busboy", + "version": "==1.6.0", + }, + "package_id": 217, + }, + { + "behavior": { + "normal": true, + }, + "id": 281, + "literal": "^1.0.30001579", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001579 <2.0.0", + }, + "package_id": 216, + }, + { + "behavior": { + "normal": true, + }, + "id": 282, + "literal": "^4.2.11", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.11 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 283, + "literal": "8.4.31", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.31", + }, + "package_id": 215, + }, + { + "behavior": { + "normal": true, + }, + "id": 284, + "literal": "5.1.1", + "name": "styled-jsx", + "npm": { + "name": "styled-jsx", + "version": "==5.1.1", + }, + "package_id": 213, + }, + { + "behavior": { + "optional": true, + }, + "id": 285, + "literal": "14.1.3", + "name": "@next/swc-darwin-arm64", + "npm": { + "name": "@next/swc-darwin-arm64", + "version": "==14.1.3", + }, + "package_id": 212, + }, + { + "behavior": { + "optional": true, + }, + "id": 286, + "literal": "14.1.3", + "name": "@next/swc-darwin-x64", + "npm": { + "name": "@next/swc-darwin-x64", + "version": "==14.1.3", + }, + "package_id": 211, + }, + { + "behavior": { + "optional": true, + }, + "id": 287, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-gnu", + "npm": { + "name": "@next/swc-linux-arm64-gnu", + "version": "==14.1.3", + }, + "package_id": 210, + }, + { + "behavior": { + "optional": true, + }, + "id": 288, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-musl", + "npm": { + "name": "@next/swc-linux-arm64-musl", + "version": "==14.1.3", + }, + "package_id": 209, + }, + { + "behavior": { + "optional": true, + }, + "id": 289, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-gnu", + "npm": { + "name": "@next/swc-linux-x64-gnu", + "version": "==14.1.3", + }, + "package_id": 208, + }, + { + "behavior": { + "optional": true, + }, + "id": 290, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-musl", + "npm": { + "name": "@next/swc-linux-x64-musl", + "version": "==14.1.3", + }, + "package_id": 207, + }, + { + "behavior": { + "optional": true, + }, + "id": 291, + "literal": "14.1.3", + "name": "@next/swc-win32-arm64-msvc", + "npm": { + "name": "@next/swc-win32-arm64-msvc", + "version": "==14.1.3", + }, + "package_id": 206, + }, + { + "behavior": { + "optional": true, + }, + "id": 292, + "literal": "14.1.3", + "name": "@next/swc-win32-ia32-msvc", + "npm": { + "name": "@next/swc-win32-ia32-msvc", + "version": "==14.1.3", + }, + "package_id": 205, + }, + { + "behavior": { + "optional": true, + }, + "id": 293, + "literal": "14.1.3", + "name": "@next/swc-win32-x64-msvc", + "npm": { + "name": "@next/swc-win32-x64-msvc", + "version": "==14.1.3", + }, + "package_id": 204, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 294, + "literal": "^1.1.0", + "name": "@opentelemetry/api", + "npm": { + "name": "@opentelemetry/api", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 295, + "literal": "^1.3.0", + "name": "sass", + "npm": { + "name": "sass", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 296, + "literal": "^18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 84, + }, + { + "behavior": { + "peer": true, + }, + "id": 297, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 298, + "literal": "0.0.1", + "name": "client-only", + "npm": { + "name": "client-only", + "version": "==0.0.1", + }, + "package_id": 214, + }, + { + "behavior": { + "peer": true, + }, + "id": 299, + "literal": ">= 16.8.0 || 17.x.x || ^18.0.0-0", + "name": "react", + "npm": { + "name": "react", + "version": ">=16.8.0 || <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && >=18.0.0-0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 300, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 301, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 302, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 303, + "literal": "^1.1.0", + "name": "streamsearch", + "npm": { + "name": "streamsearch", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 218, + }, + { + "behavior": { + "normal": true, + }, + "id": 304, + "literal": "^2.4.0", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.4.0 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 305, + "literal": "14.1.3", + "name": "@next/eslint-plugin-next", + "npm": { + "name": "@next/eslint-plugin-next", + "version": "==14.1.3", + }, + "package_id": 413, + }, + { + "behavior": { + "normal": true, + }, + "id": 306, + "literal": "^1.3.3", + "name": "@rushstack/eslint-patch", + "npm": { + "name": "@rushstack/eslint-patch", + "version": ">=1.3.3 <2.0.0", + }, + "package_id": 412, + }, + { + "behavior": { + "normal": true, + }, + "id": 307, + "literal": "^5.4.2 || ^6.0.0", + "name": "@typescript-eslint/parser", + "npm": { + "name": "@typescript-eslint/parser", + "version": ">=5.4.2 <6.0.0 || >=6.0.0 <7.0.0 && >=6.0.0 <7.0.0", + }, + "package_id": 400, + }, + { + "behavior": { + "normal": true, + }, + "id": 308, + "literal": "^0.3.6", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.6 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 309, + "literal": "^3.5.2", + "name": "eslint-import-resolver-typescript", + "npm": { + "name": "eslint-import-resolver-typescript", + "version": ">=3.5.2 <4.0.0", + }, + "package_id": 395, + }, + { + "behavior": { + "normal": true, + }, + "id": 310, + "literal": "^2.28.1", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=2.28.1 <3.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 311, + "literal": "^6.7.1", + "name": "eslint-plugin-jsx-a11y", + "npm": { + "name": "eslint-plugin-jsx-a11y", + "version": ">=6.7.1 <7.0.0", + }, + "package_id": 371, + }, + { + "behavior": { + "normal": true, + }, + "id": 312, + "literal": "^7.33.2", + "name": "eslint-plugin-react", + "npm": { + "name": "eslint-plugin-react", + "version": ">=7.33.2 <8.0.0", + }, + "package_id": 287, + }, + { + "behavior": { + "normal": true, + }, + "id": 313, + "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", + "name": "eslint-plugin-react-hooks", + "npm": { + "name": "eslint-plugin-react-hooks", + "version": ">=4.5.0 <5.0.0 || ==5.0.0-canary-7118f5dd7-20230705 && ==5.0.0-canary-7118f5dd7-20230705", + }, + "package_id": 286, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 314, + "literal": ">=3.3.1", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=3.3.1", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 315, + "literal": "^7.23.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.23.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 316, + "literal": "^4.2.0", + "name": "@eslint-community/eslint-utils", + "npm": { + "name": "@eslint-community/eslint-utils", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 285, + }, + { + "behavior": { + "normal": true, + }, + "id": 317, + "literal": "^4.6.1", + "name": "@eslint-community/regexpp", + "npm": { + "name": "@eslint-community/regexpp", + "version": ">=4.6.1 <5.0.0", + }, + "package_id": 284, + }, + { + "behavior": { + "normal": true, + }, + "id": 318, + "literal": "^2.1.2", + "name": "@eslint/eslintrc", + "npm": { + "name": "@eslint/eslintrc", + "version": ">=2.1.2 <3.0.0", + }, + "package_id": 282, + }, + { + "behavior": { + "normal": true, + }, + "id": 319, + "literal": "8.50.0", + "name": "@eslint/js", + "npm": { + "name": "@eslint/js", + "version": "==8.50.0", + }, + "package_id": 281, + }, + { + "behavior": { + "normal": true, + }, + "id": 320, + "literal": "^0.11.11", + "name": "@humanwhocodes/config-array", + "npm": { + "name": "@humanwhocodes/config-array", + "version": ">=0.11.11 <0.12.0", + }, + "package_id": 279, + }, + { + "behavior": { + "normal": true, + }, + "id": 321, + "literal": "^1.0.1", + "name": "@humanwhocodes/module-importer", + "npm": { + "name": "@humanwhocodes/module-importer", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 278, + }, + { + "behavior": { + "normal": true, + }, + "id": 322, + "literal": "^1.2.8", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 323, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 324, + "literal": "^4.0.0", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 270, + }, + { + "behavior": { + "normal": true, + }, + "id": 325, + "literal": "^7.0.2", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 326, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 327, + "literal": "^3.0.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 263, + }, + { + "behavior": { + "normal": true, + }, + "id": 328, + "literal": "^4.0.0", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 262, + }, + { + "behavior": { + "normal": true, + }, + "id": 329, + "literal": "^7.2.2", + "name": "eslint-scope", + "npm": { + "name": "eslint-scope", + "version": ">=7.2.2 <8.0.0", + }, + "package_id": 260, + }, + { + "behavior": { + "normal": true, + }, + "id": 330, + "literal": "^3.4.3", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.3 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 331, + "literal": "^9.6.1", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.1 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 332, + "literal": "^1.4.2", + "name": "esquery", + "npm": { + "name": "esquery", + "version": ">=1.4.2 <2.0.0", + }, + "package_id": 255, + }, + { + "behavior": { + "normal": true, + }, + "id": 333, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 334, + "literal": "^3.1.3", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.3 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 335, + "literal": "^6.0.1", + "name": "file-entry-cache", + "npm": { + "name": "file-entry-cache", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 247, + }, + { + "behavior": { + "normal": true, + }, + "id": 336, + "literal": "^5.0.0", + "name": "find-up", + "npm": { + "name": "find-up", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 241, + }, + { + "behavior": { + "normal": true, + }, + "id": 337, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 338, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 339, + "literal": "^1.4.0", + "name": "graphemer", + "npm": { + "name": "graphemer", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 238, + }, + { + "behavior": { + "normal": true, + }, + "id": 340, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 341, + "literal": "^0.1.4", + "name": "imurmurhash", + "npm": { + "name": "imurmurhash", + "version": ">=0.1.4 <0.2.0", + }, + "package_id": 236, + }, + { + "behavior": { + "normal": true, + }, + "id": 342, + "literal": "^4.0.0", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 343, + "literal": "^3.0.3", + "name": "is-path-inside", + "npm": { + "name": "is-path-inside", + "version": ">=3.0.3 <4.0.0", + }, + "package_id": 235, + }, + { + "behavior": { + "normal": true, + }, + "id": 344, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 345, + "literal": "^1.0.1", + "name": "json-stable-stringify-without-jsonify", + "npm": { + "name": "json-stable-stringify-without-jsonify", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 234, + }, + { + "behavior": { + "normal": true, + }, + "id": 346, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 347, + "literal": "^4.6.2", + "name": "lodash.merge", + "npm": { + "name": "lodash.merge", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 233, + }, + { + "behavior": { + "normal": true, + }, + "id": 348, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 349, + "literal": "^1.4.0", + "name": "natural-compare", + "npm": { + "name": "natural-compare", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 231, + }, + { + "behavior": { + "normal": true, + }, + "id": 350, + "literal": "^0.9.3", + "name": "optionator", + "npm": { + "name": "optionator", + "version": ">=0.9.3 <0.10.0", + }, + "package_id": 224, + }, + { + "behavior": { + "normal": true, + }, + "id": 351, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 352, + "literal": "^0.2.0", + "name": "text-table", + "npm": { + "name": "text-table", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 223, + }, + { + "behavior": { + "normal": true, + }, + "id": 353, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 354, + "literal": "^0.1.3", + "name": "deep-is", + "npm": { + "name": "deep-is", + "version": ">=0.1.3 <0.2.0", + }, + "package_id": 230, + }, + { + "behavior": { + "normal": true, + }, + "id": 355, + "literal": "^1.2.3", + "name": "@aashutoshrathi/word-wrap", + "npm": { + "name": "@aashutoshrathi/word-wrap", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 229, + }, + { + "behavior": { + "normal": true, + }, + "id": 356, + "literal": "^0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 357, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 358, + "literal": "^2.0.6", + "name": "fast-levenshtein", + "npm": { + "name": "fast-levenshtein", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 225, + }, + { + "behavior": { + "normal": true, + }, + "id": 359, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 360, + "literal": "~0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 361, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 362, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 363, + "literal": "^0.20.2", + "name": "type-fest", + "npm": { + "name": "type-fest", + "version": ">=0.20.2 <0.21.0", + }, + "package_id": 240, + }, + { + "behavior": { + "normal": true, + }, + "id": 364, + "literal": "^6.0.0", + "name": "locate-path", + "npm": { + "name": "locate-path", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 243, + }, + { + "behavior": { + "normal": true, + }, + "id": 365, + "literal": "^4.0.0", + "name": "path-exists", + "npm": { + "name": "path-exists", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 242, + }, + { + "behavior": { + "normal": true, + }, + "id": 366, + "literal": "^5.0.0", + "name": "p-locate", + "npm": { + "name": "p-locate", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 244, + }, + { + "behavior": { + "normal": true, + }, + "id": 367, + "literal": "^3.0.2", + "name": "p-limit", + "npm": { + "name": "p-limit", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 245, + }, + { + "behavior": { + "normal": true, + }, + "id": 368, + "literal": "^0.1.0", + "name": "yocto-queue", + "npm": { + "name": "yocto-queue", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 246, + }, + { + "behavior": { + "normal": true, + }, + "id": 369, + "literal": "^3.0.4", + "name": "flat-cache", + "npm": { + "name": "flat-cache", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 248, + }, + { + "behavior": { + "normal": true, + }, + "id": 370, + "literal": "^3.2.7", + "name": "flatted", + "npm": { + "name": "flatted", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 253, + }, + { + "behavior": { + "normal": true, + }, + "id": 371, + "literal": "^4.5.3", + "name": "keyv", + "npm": { + "name": "keyv", + "version": ">=4.5.3 <5.0.0", + }, + "package_id": 251, + }, + { + "behavior": { + "normal": true, + }, + "id": 372, + "literal": "^3.0.2", + "name": "rimraf", + "npm": { + "name": "rimraf", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 249, + }, + { + "behavior": { + "normal": true, + }, + "id": 373, + "literal": "^7.1.3", + "name": "glob", + "npm": { + "name": "glob", + "version": ">=7.1.3 <8.0.0", + }, + "package_id": 250, + }, + { + "behavior": { + "normal": true, + }, + "id": 374, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 375, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 376, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 377, + "literal": "^3.1.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 378, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 379, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 380, + "literal": "3.0.1", + "name": "json-buffer", + "npm": { + "name": "json-buffer", + "version": "==3.0.1", + }, + "package_id": 252, + }, + { + "behavior": { + "normal": true, + }, + "id": 381, + "literal": "^5.1.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 382, + "literal": "^8.9.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=8.9.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 383, + "literal": "^5.3.2", + "name": "acorn-jsx", + "npm": { + "name": "acorn-jsx", + "version": ">=5.3.2 <6.0.0", + }, + "package_id": 258, + }, + { + "behavior": { + "normal": true, + }, + "id": 384, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 385, + "literal": "^6.0.0 || ^7.0.0 || ^8.0.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 386, + "literal": "^4.3.0", + "name": "esrecurse", + "npm": { + "name": "esrecurse", + "version": ">=4.3.0 <5.0.0", + }, + "package_id": 261, + }, + { + "behavior": { + "normal": true, + }, + "id": 387, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 388, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 389, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 390, + "literal": "^3.1.0", + "name": "path-key", + "npm": { + "name": "path-key", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 269, + }, + { + "behavior": { + "normal": true, + }, + "id": 391, + "literal": "^2.0.0", + "name": "shebang-command", + "npm": { + "name": "shebang-command", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 267, + }, + { + "behavior": { + "normal": true, + }, + "id": 392, + "literal": "^2.0.1", + "name": "which", + "npm": { + "name": "which", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 265, + }, + { + "behavior": { + "normal": true, + }, + "id": 393, + "literal": "^2.0.0", + "name": "isexe", + "npm": { + "name": "isexe", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 266, + }, + { + "behavior": { + "normal": true, + }, + "id": 394, + "literal": "^3.0.0", + "name": "shebang-regex", + "npm": { + "name": "shebang-regex", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 268, + }, + { + "behavior": { + "normal": true, + }, + "id": 395, + "literal": "^4.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 396, + "literal": "^7.1.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 271, + }, + { + "behavior": { + "normal": true, + }, + "id": 397, + "literal": "^4.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 272, + }, + { + "behavior": { + "normal": true, + }, + "id": 398, + "literal": "^3.1.1", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 399, + "literal": "^2.0.0", + "name": "fast-json-stable-stringify", + "npm": { + "name": "fast-json-stable-stringify", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 277, + }, + { + "behavior": { + "normal": true, + }, + "id": 400, + "literal": "^0.4.1", + "name": "json-schema-traverse", + "npm": { + "name": "json-schema-traverse", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 276, + }, + { + "behavior": { + "normal": true, + }, + "id": 401, + "literal": "^4.2.2", + "name": "uri-js", + "npm": { + "name": "uri-js", + "version": ">=4.2.2 <5.0.0", + }, + "package_id": 274, + }, + { + "behavior": { + "normal": true, + }, + "id": 402, + "literal": "^2.1.0", + "name": "punycode", + "npm": { + "name": "punycode", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 275, + }, + { + "behavior": { + "normal": true, + }, + "id": 403, + "literal": "^1.2.1", + "name": "@humanwhocodes/object-schema", + "npm": { + "name": "@humanwhocodes/object-schema", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 280, + }, + { + "behavior": { + "normal": true, + }, + "id": 404, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 405, + "literal": "^3.0.5", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.5 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 406, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 407, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 408, + "literal": "^9.6.0", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.0 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 409, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 410, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 411, + "literal": "^3.2.1", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 412, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 413, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 414, + "literal": "^3.1.1", + "name": "strip-json-comments", + "npm": { + "name": "strip-json-comments", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 283, + }, + { + "behavior": { + "normal": true, + }, + "id": 415, + "literal": "^3.3.0", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 416, + "literal": "^6.0.0 || ^7.0.0 || >=8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 && >=8.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 417, + "literal": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=8.0.0-0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 418, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 419, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 420, + "literal": "^1.1.1", + "name": "array.prototype.tosorted", + "npm": { + "name": "array.prototype.tosorted", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 369, + }, + { + "behavior": { + "normal": true, + }, + "id": 421, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 422, + "literal": "^1.0.12", + "name": "es-iterator-helpers", + "npm": { + "name": "es-iterator-helpers", + "version": ">=1.0.12 <2.0.0", + }, + "package_id": 355, + }, + { + "behavior": { + "normal": true, + }, + "id": 423, + "literal": "^5.3.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 424, + "literal": "^2.4.1 || ^3.0.0", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=2.4.1 <3.0.0 || >=3.0.0 <4.0.0 && >=3.0.0 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 425, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 426, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 427, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 428, + "literal": "^1.1.2", + "name": "object.hasown", + "npm": { + "name": "object.hasown", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 348, + }, + { + "behavior": { + "normal": true, + }, + "id": 429, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 430, + "literal": "^15.8.1", + "name": "prop-types", + "npm": { + "name": "prop-types", + "version": ">=15.8.1 <16.0.0", + }, + "package_id": 345, + }, + { + "behavior": { + "normal": true, + }, + "id": 431, + "literal": "^2.0.0-next.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=2.0.0-next.4 <3.0.0", + }, + "package_id": 344, + }, + { + "behavior": { + "normal": true, + }, + "id": 432, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 433, + "literal": "^4.0.8", + "name": "string.prototype.matchall", + "npm": { + "name": "string.prototype.matchall", + "version": ">=4.0.8 <5.0.0", + }, + "package_id": 288, + }, + { + "behavior": { + "peer": true, + }, + "id": 434, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 435, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 436, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 437, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 438, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 439, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 440, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 441, + "literal": "^1.5.0", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.0 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 442, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 443, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 444, + "literal": "^1.0.0", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 445, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 446, + "literal": "^1.9.0", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 447, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 448, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 449, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 450, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 451, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 452, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 453, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 454, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 455, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 456, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 457, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 458, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 459, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 460, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 461, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 462, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 463, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 464, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 465, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 466, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 467, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 468, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 469, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 470, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 471, + "literal": "^1.0.2", + "name": "arraybuffer.prototype.slice", + "npm": { + "name": "arraybuffer.prototype.slice", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 341, + }, + { + "behavior": { + "normal": true, + }, + "id": 472, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 473, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 474, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 475, + "literal": "^1.2.1", + "name": "es-to-primitive", + "npm": { + "name": "es-to-primitive", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 338, + }, + { + "behavior": { + "normal": true, + }, + "id": 476, + "literal": "^1.1.6", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 477, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 478, + "literal": "^1.0.0", + "name": "get-symbol-description", + "npm": { + "name": "get-symbol-description", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 336, + }, + { + "behavior": { + "normal": true, + }, + "id": 479, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 480, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 481, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 482, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 483, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 484, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 485, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 486, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 487, + "literal": "^1.2.7", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.2.7 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 488, + "literal": "^2.0.2", + "name": "is-negative-zero", + "npm": { + "name": "is-negative-zero", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 333, + }, + { + "behavior": { + "normal": true, + }, + "id": 489, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 490, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 491, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 492, + "literal": "^1.1.12", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.12 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 493, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 494, + "literal": "^1.12.3", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.12.3 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 495, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 496, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 497, + "literal": "^1.5.1", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.1 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 498, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 499, + "literal": "^1.0.0", + "name": "safe-regex-test", + "npm": { + "name": "safe-regex-test", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 326, + }, + { + "behavior": { + "normal": true, + }, + "id": 500, + "literal": "^1.2.8", + "name": "string.prototype.trim", + "npm": { + "name": "string.prototype.trim", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 325, + }, + { + "behavior": { + "normal": true, + }, + "id": 501, + "literal": "^1.0.7", + "name": "string.prototype.trimend", + "npm": { + "name": "string.prototype.trimend", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 324, + }, + { + "behavior": { + "normal": true, + }, + "id": 502, + "literal": "^1.0.7", + "name": "string.prototype.trimstart", + "npm": { + "name": "string.prototype.trimstart", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 323, + }, + { + "behavior": { + "normal": true, + }, + "id": 503, + "literal": "^1.0.0", + "name": "typed-array-buffer", + "npm": { + "name": "typed-array-buffer", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 322, + }, + { + "behavior": { + "normal": true, + }, + "id": 504, + "literal": "^1.0.0", + "name": "typed-array-byte-length", + "npm": { + "name": "typed-array-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 321, + }, + { + "behavior": { + "normal": true, + }, + "id": 505, + "literal": "^1.0.0", + "name": "typed-array-byte-offset", + "npm": { + "name": "typed-array-byte-offset", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 320, + }, + { + "behavior": { + "normal": true, + }, + "id": 506, + "literal": "^1.0.4", + "name": "typed-array-length", + "npm": { + "name": "typed-array-length", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 318, + }, + { + "behavior": { + "normal": true, + }, + "id": 507, + "literal": "^1.0.2", + "name": "unbox-primitive", + "npm": { + "name": "unbox-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 310, + }, + { + "behavior": { + "normal": true, + }, + "id": 508, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 509, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 510, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 511, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 512, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 513, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 514, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 515, + "literal": "^1.1.3", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 516, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 517, + "literal": "^1.0.2", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 518, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 519, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 520, + "literal": "^1.0.1", + "name": "is-bigint", + "npm": { + "name": "is-bigint", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 316, + }, + { + "behavior": { + "normal": true, + }, + "id": 521, + "literal": "^1.1.0", + "name": "is-boolean-object", + "npm": { + "name": "is-boolean-object", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 315, + }, + { + "behavior": { + "normal": true, + }, + "id": 522, + "literal": "^1.0.4", + "name": "is-number-object", + "npm": { + "name": "is-number-object", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 314, + }, + { + "behavior": { + "normal": true, + }, + "id": 523, + "literal": "^1.0.5", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 524, + "literal": "^1.0.3", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 525, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 526, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 527, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 528, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 529, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 530, + "literal": "^1.0.1", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 531, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 532, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 533, + "literal": "^1.1.9", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 534, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 535, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 536, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 537, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 538, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 539, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 540, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 541, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 542, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 543, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 544, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 545, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 546, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 547, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 548, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 549, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 550, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 551, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 552, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 553, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 554, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 555, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 556, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 557, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 558, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 559, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 560, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 561, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 562, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 563, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 564, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 565, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 566, + "literal": "^1.1.4", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 567, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 568, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 569, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 570, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 571, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 572, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 573, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 574, + "literal": "^1.1.3", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 575, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 576, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 577, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 578, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 579, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 580, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 581, + "literal": "^1.1.4", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 582, + "literal": "^1.0.1", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 583, + "literal": "^1.0.2", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 584, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 585, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 586, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 587, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 588, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 589, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 590, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 591, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 592, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 593, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 594, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 595, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 596, + "literal": "^3.0.1", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 597, + "literal": "^2.9.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.9.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 598, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 599, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 600, + "literal": "^1.4.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 601, + "literal": "^4.1.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 602, + "literal": "^16.13.1", + "name": "react-is", + "npm": { + "name": "react-is", + "version": ">=16.13.1 <17.0.0", + }, + "package_id": 346, + }, + { + "behavior": { + "normal": true, + }, + "id": 603, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 604, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 605, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 606, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 607, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 608, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 609, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 610, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 611, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 612, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 613, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 614, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 615, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 616, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 617, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 618, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 619, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 620, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 621, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 622, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 623, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 624, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 625, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 626, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 627, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 628, + "literal": "^1.0.0", + "name": "asynciterator.prototype", + "npm": { + "name": "asynciterator.prototype", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 367, + }, + { + "behavior": { + "normal": true, + }, + "id": 629, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 630, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 631, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 632, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 633, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 634, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 635, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 636, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 637, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 638, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 639, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 640, + "literal": "^1.1.2", + "name": "iterator.prototype", + "npm": { + "name": "iterator.prototype", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 356, + }, + { + "behavior": { + "normal": true, + }, + "id": 641, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 642, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 643, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 644, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 645, + "literal": "^1.0.4", + "name": "reflect.getprototypeof", + "npm": { + "name": "reflect.getprototypeof", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 357, + }, + { + "behavior": { + "normal": true, + }, + "id": 646, + "literal": "^2.0.1", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 647, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 648, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 649, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 650, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 651, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 652, + "literal": "^1.1.3", + "name": "which-builtin-type", + "npm": { + "name": "which-builtin-type", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 358, + }, + { + "behavior": { + "normal": true, + }, + "id": 653, + "literal": "^1.1.5", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.5 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 654, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 655, + "literal": "^2.0.0", + "name": "is-async-function", + "npm": { + "name": "is-async-function", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 366, + }, + { + "behavior": { + "normal": true, + }, + "id": 656, + "literal": "^1.0.5", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 657, + "literal": "^1.0.2", + "name": "is-finalizationregistry", + "npm": { + "name": "is-finalizationregistry", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 365, + }, + { + "behavior": { + "normal": true, + }, + "id": 658, + "literal": "^1.0.10", + "name": "is-generator-function", + "npm": { + "name": "is-generator-function", + "version": ">=1.0.10 <2.0.0", + }, + "package_id": 364, + }, + { + "behavior": { + "normal": true, + }, + "id": 659, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 660, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 661, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 662, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 663, + "literal": "^1.0.1", + "name": "which-collection", + "npm": { + "name": "which-collection", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 359, + }, + { + "behavior": { + "normal": true, + }, + "id": 664, + "literal": "^1.1.9", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 665, + "literal": "^2.0.1", + "name": "is-map", + "npm": { + "name": "is-map", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 363, + }, + { + "behavior": { + "normal": true, + }, + "id": 666, + "literal": "^2.0.1", + "name": "is-set", + "npm": { + "name": "is-set", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 362, + }, + { + "behavior": { + "normal": true, + }, + "id": 667, + "literal": "^2.0.1", + "name": "is-weakmap", + "npm": { + "name": "is-weakmap", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 361, + }, + { + "behavior": { + "normal": true, + }, + "id": 668, + "literal": "^2.0.1", + "name": "is-weakset", + "npm": { + "name": "is-weakset", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 360, + }, + { + "behavior": { + "normal": true, + }, + "id": 669, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 670, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 671, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 672, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 673, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 674, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 675, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 676, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 677, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 678, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 679, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 680, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 681, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 682, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 683, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 684, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 685, + "literal": "^7.20.7", + "name": "@babel/runtime", + "npm": { + "name": "@babel/runtime", + "version": ">=7.20.7 <8.0.0", + }, + "package_id": 381, + }, + { + "behavior": { + "normal": true, + }, + "id": 686, + "literal": "^5.1.3", + "name": "aria-query", + "npm": { + "name": "aria-query", + "version": ">=5.1.3 <6.0.0", + }, + "package_id": 380, + }, + { + "behavior": { + "normal": true, + }, + "id": 687, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 688, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 689, + "literal": "^0.0.7", + "name": "ast-types-flow", + "npm": { + "name": "ast-types-flow", + "version": ">=0.0.7 <0.0.8", + }, + "package_id": 379, + }, + { + "behavior": { + "normal": true, + }, + "id": 690, + "literal": "^4.6.2", + "name": "axe-core", + "npm": { + "name": "axe-core", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 378, + }, + { + "behavior": { + "normal": true, + }, + "id": 691, + "literal": "^3.1.1", + "name": "axobject-query", + "npm": { + "name": "axobject-query", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 376, + }, + { + "behavior": { + "normal": true, + }, + "id": 692, + "literal": "^1.0.8", + "name": "damerau-levenshtein", + "npm": { + "name": "damerau-levenshtein", + "version": ">=1.0.8 <2.0.0", + }, + "package_id": 375, + }, + { + "behavior": { + "normal": true, + }, + "id": 693, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 694, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 695, + "literal": "^3.3.3", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=3.3.3 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 696, + "literal": "=1.0.5", + "name": "language-tags", + "npm": { + "name": "language-tags", + "version": "==1.0.5", + }, + "package_id": 372, + }, + { + "behavior": { + "normal": true, + }, + "id": 697, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 698, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 699, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 700, + "literal": "^6.3.0", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.0 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "peer": true, + }, + "id": 701, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 702, + "literal": "~0.3.2", + "name": "language-subtag-registry", + "npm": { + "name": "language-subtag-registry", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 373, + }, + { + "behavior": { + "normal": true, + }, + "id": 703, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 704, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 705, + "literal": "^0.14.0", + "name": "regenerator-runtime", + "npm": { + "name": "regenerator-runtime", + "version": ">=0.14.0 <0.15.0", + }, + "package_id": 382, + }, + { + "behavior": { + "normal": true, + }, + "id": 706, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 707, + "literal": "^1.2.2", + "name": "array.prototype.findlastindex", + "npm": { + "name": "array.prototype.findlastindex", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 394, + }, + { + "behavior": { + "normal": true, + }, + "id": 708, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 709, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 710, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 711, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 712, + "literal": "^0.3.7", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.7 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 713, + "literal": "^2.8.0", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.8.0 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 714, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 715, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 716, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 717, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 718, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 719, + "literal": "^1.0.0", + "name": "object.groupby", + "npm": { + "name": "object.groupby", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 389, + }, + { + "behavior": { + "normal": true, + }, + "id": 720, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 721, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 722, + "literal": "^3.14.2", + "name": "tsconfig-paths", + "npm": { + "name": "tsconfig-paths", + "version": ">=3.14.2 <4.0.0", + }, + "package_id": 384, + }, + { + "behavior": { + "peer": true, + }, + "id": 723, + "literal": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=2.0.0 <3.0.0 || >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 724, + "literal": "^0.0.29", + "name": "@types/json5", + "npm": { + "name": "@types/json5", + "version": ">=0.0.29 <0.0.30", + }, + "package_id": 388, + }, + { + "behavior": { + "normal": true, + }, + "id": 725, + "literal": "^1.0.2", + "name": "json5", + "npm": { + "name": "json5", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 387, + }, + { + "behavior": { + "normal": true, + }, + "id": 726, + "literal": "^1.2.6", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.6 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 727, + "literal": "^3.0.0", + "name": "strip-bom", + "npm": { + "name": "strip-bom", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 385, + }, + { + "behavior": { + "normal": true, + }, + "id": 728, + "literal": "^1.2.0", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 729, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 730, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 731, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 732, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 733, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 734, + "literal": "^2.1.1", + "name": "ms", + "npm": { + "name": "ms", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 392, + }, + { + "behavior": { + "normal": true, + }, + "id": 735, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 736, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 737, + "literal": "^1.22.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.4 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 738, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 739, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 740, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 741, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 742, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 743, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 744, + "literal": "^5.12.0", + "name": "enhanced-resolve", + "npm": { + "name": "enhanced-resolve", + "version": ">=5.12.0 <6.0.0", + }, + "package_id": 398, + }, + { + "behavior": { + "normal": true, + }, + "id": 745, + "literal": "^2.7.4", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.7.4 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 746, + "literal": "^3.3.1", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.3.1 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 747, + "literal": "^4.5.0", + "name": "get-tsconfig", + "npm": { + "name": "get-tsconfig", + "version": ">=4.5.0 <5.0.0", + }, + "package_id": 396, + }, + { + "behavior": { + "normal": true, + }, + "id": 748, + "literal": "^2.11.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.11.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 749, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "peer": true, + }, + "id": 750, + "literal": "*", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=0.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 751, + "literal": "*", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=0.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 752, + "literal": "^1.0.0", + "name": "resolve-pkg-maps", + "npm": { + "name": "resolve-pkg-maps", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 397, + }, + { + "behavior": { + "normal": true, + }, + "id": 753, + "literal": "^4.2.4", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.4 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 754, + "literal": "^2.2.0", + "name": "tapable", + "npm": { + "name": "tapable", + "version": ">=2.2.0 <3.0.0", + }, + "package_id": 399, + }, + { + "behavior": { + "normal": true, + }, + "id": 755, + "literal": "6.7.3", + "name": "@typescript-eslint/scope-manager", + "npm": { + "name": "@typescript-eslint/scope-manager", + "version": "==6.7.3", + }, + "package_id": 411, + }, + { + "behavior": { + "normal": true, + }, + "id": 756, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 757, + "literal": "6.7.3", + "name": "@typescript-eslint/typescript-estree", + "npm": { + "name": "@typescript-eslint/typescript-estree", + "version": "==6.7.3", + }, + "package_id": 403, + }, + { + "behavior": { + "normal": true, + }, + "id": 758, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 759, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "peer": true, + }, + "id": 760, + "literal": "^7.0.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 761, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 762, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 763, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 764, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 765, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 766, + "literal": "^11.1.0", + "name": "globby", + "npm": { + "name": "globby", + "version": ">=11.1.0 <12.0.0", + }, + "package_id": 406, + }, + { + "behavior": { + "normal": true, + }, + "id": 767, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 768, + "literal": "^7.5.4", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=7.5.4 <8.0.0", + }, + "package_id": 405, + }, + { + "behavior": { + "normal": true, + }, + "id": 769, + "literal": "^1.0.1", + "name": "ts-api-utils", + "npm": { + "name": "ts-api-utils", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 404, + }, + { + "behavior": { + "peer": true, + }, + "id": 770, + "literal": ">=4.2.0", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 771, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 772, + "literal": "^2.1.0", + "name": "array-union", + "npm": { + "name": "array-union", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 410, + }, + { + "behavior": { + "normal": true, + }, + "id": 773, + "literal": "^3.0.1", + "name": "dir-glob", + "npm": { + "name": "dir-glob", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 408, + }, + { + "behavior": { + "normal": true, + }, + "id": 774, + "literal": "^3.2.9", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.9 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 775, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 776, + "literal": "^1.4.1", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.4.1 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 777, + "literal": "^3.0.0", + "name": "slash", + "npm": { + "name": "slash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 407, + }, + { + "behavior": { + "normal": true, + }, + "id": 778, + "literal": "^4.0.0", + "name": "path-type", + "npm": { + "name": "path-type", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 409, + }, + { + "behavior": { + "normal": true, + }, + "id": 779, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 780, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 781, + "literal": "10.3.10", + "name": "glob", + "npm": { + "name": "glob", + "version": "==10.3.10", + }, + "package_id": 414, + }, + { + "behavior": { + "normal": true, + }, + "id": 782, + "literal": "^3.1.0", + "name": "foreground-child", + "npm": { + "name": "foreground-child", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 429, + }, + { + "behavior": { + "normal": true, + }, + "id": 783, + "literal": "^2.3.5", + "name": "jackspeak", + "npm": { + "name": "jackspeak", + "version": ">=2.3.5 <3.0.0", + }, + "package_id": 420, + }, + { + "behavior": { + "normal": true, + }, + "id": 784, + "literal": "^9.0.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=9.0.1 <10.0.0", + }, + "package_id": 418, + }, + { + "behavior": { + "normal": true, + }, + "id": 785, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 786, + "literal": "^1.10.1", + "name": "path-scurry", + "npm": { + "name": "path-scurry", + "version": ">=1.10.1 <2.0.0", + }, + "package_id": 415, + }, + { + "behavior": { + "normal": true, + }, + "id": 787, + "literal": "^9.1.1 || ^10.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=9.1.1 <10.0.0 || >=10.0.0 <11.0.0 && >=10.0.0 <11.0.0", + }, + "package_id": 417, + }, + { + "behavior": { + "normal": true, + }, + "id": 788, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 789, + "literal": "^2.0.1", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 419, + }, + { + "behavior": { + "normal": true, + }, + "id": 790, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 791, + "literal": "^8.0.2", + "name": "@isaacs/cliui", + "npm": { + "name": "@isaacs/cliui", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 422, + }, + { + "behavior": { + "optional": true, + }, + "id": 792, + "literal": "^0.11.0", + "name": "@pkgjs/parseargs", + "npm": { + "name": "@pkgjs/parseargs", + "version": ">=0.11.0 <0.12.0", + }, + "package_id": 421, + }, + { + "behavior": { + "normal": true, + }, + "id": 793, + "literal": "^5.1.2", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 794, + "is_alias": true, + "literal": "npm:string-width@^4.2.0", + "name": "string-width-cjs", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 795, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 796, + "is_alias": true, + "literal": "npm:strip-ansi@^6.0.1", + "name": "strip-ansi-cjs", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 797, + "literal": "^8.1.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 423, + }, + { + "behavior": { + "normal": true, + }, + "id": 798, + "is_alias": true, + "literal": "npm:wrap-ansi@^7.0.0", + "name": "wrap-ansi-cjs", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 799, + "literal": "^6.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=6.1.0 <7.0.0", + }, + "package_id": 428, + }, + { + "behavior": { + "normal": true, + }, + "id": 800, + "literal": "^5.0.1", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 801, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 802, + "literal": "^6.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 425, + }, + { + "behavior": { + "normal": true, + }, + "id": 803, + "literal": "^0.2.0", + "name": "eastasianwidth", + "npm": { + "name": "eastasianwidth", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 427, + }, + { + "behavior": { + "normal": true, + }, + "id": 804, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 805, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 806, + "literal": "^7.0.0", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 807, + "literal": "^4.0.1", + "name": "signal-exit", + "npm": { + "name": "signal-exit", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 430, + }, + { + "behavior": { + "normal": true, + }, + "id": 808, + "literal": "^4.21.10", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.10 <5.0.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 809, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 810, + "literal": "^4.3.6", + "name": "fraction.js", + "npm": { + "name": "fraction.js", + "version": ">=4.3.6 <5.0.0", + }, + "package_id": 434, + }, + { + "behavior": { + "normal": true, + }, + "id": 811, + "literal": "^0.1.2", + "name": "normalize-range", + "npm": { + "name": "normalize-range", + "version": ">=0.1.2 <0.2.0", + }, + "package_id": 433, + }, + { + "behavior": { + "normal": true, + }, + "id": 812, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 813, + "literal": "^4.2.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "peer": true, + }, + "id": 814, + "literal": "^8.1.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 815, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 816, + "literal": "^1.4.526", + "name": "electron-to-chromium", + "npm": { + "name": "electron-to-chromium", + "version": ">=1.4.526 <2.0.0", + }, + "package_id": 439, + }, + { + "behavior": { + "normal": true, + }, + "id": 817, + "literal": "^2.0.13", + "name": "node-releases", + "npm": { + "name": "node-releases", + "version": ">=2.0.13 <3.0.0", + }, + "package_id": 438, + }, + { + "behavior": { + "normal": true, + }, + "id": 818, + "literal": "^1.0.13", + "name": "update-browserslist-db", + "npm": { + "name": "update-browserslist-db", + "version": ">=1.0.13 <2.0.0", + }, + "package_id": 437, + }, + { + "behavior": { + "normal": true, + }, + "id": 819, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 820, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "peer": true, + }, + "id": 821, + "literal": ">= 4.21.0", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 822, + "literal": "*", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": ">=0.0.0", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 823, + "literal": "*", + "name": "@types/prop-types", + "npm": { + "name": "@types/prop-types", + "version": ">=0.0.0", + }, + "package_id": 444, + }, + { + "behavior": { + "normal": true, + }, + "id": 824, + "literal": "*", + "name": "@types/scheduler", + "npm": { + "name": "@types/scheduler", + "version": ">=0.0.0", + }, + "package_id": 443, + }, + { + "behavior": { + "normal": true, + }, + "id": 825, + "literal": "^3.0.2", + "name": "csstype", + "npm": { + "name": "csstype", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 442, + }, + ], + "format": "v2", + "meta_hash": "b2cad294acee563595dacd7ac0f31a4573add6541db0fbf935335319adde7a82", + "package_index": { + "@aashutoshrathi/word-wrap": 229, + "@alloc/quick-lru": 83, + "@babel/code-frame": 186, + "@babel/helper-validator-identifier": 195, + "@babel/highlight": 194, + "@babel/runtime": 381, + "@eslint-community/eslint-utils": 285, + "@eslint-community/regexpp": 284, + "@eslint/eslintrc": 282, + "@eslint/js": 281, + "@humanwhocodes/config-array": 279, + "@humanwhocodes/module-importer": 278, + "@humanwhocodes/object-schema": 280, + "@isaacs/cliui": 422, + "@jridgewell/gen-mapping": 24, + "@jridgewell/resolve-uri": 27, + "@jridgewell/set-array": 28, + "@jridgewell/sourcemap-codec": 26, + "@jridgewell/trace-mapping": 25, + "@next/env": 220, + "@next/eslint-plugin-next": 413, + "@next/swc-darwin-arm64": 212, + "@next/swc-darwin-x64": 211, + "@next/swc-linux-arm64-gnu": 210, + "@next/swc-linux-arm64-musl": 209, + "@next/swc-linux-x64-gnu": 208, + "@next/swc-linux-x64-musl": 207, + "@next/swc-win32-arm64-msvc": 206, + "@next/swc-win32-ia32-msvc": 205, + "@next/swc-win32-x64-msvc": 204, + "@nodelib/fs.scandir": 70, + "@nodelib/fs.stat": 73, + "@nodelib/fs.walk": 67, + "@pkgjs/parseargs": 421, + "@puppeteer/browsers": 90, + "@rushstack/eslint-patch": 412, + "@swc/helpers": 219, + "@tootallnate/quickjs-emscripten": 157, + "@types/json5": 388, + "@types/node": 164, + "@types/prop-types": 444, + "@types/react": 441, + "@types/react-dom": 440, + "@types/scheduler": 443, + "@types/yauzl": 163, + "@typescript-eslint/parser": 400, + "@typescript-eslint/scope-manager": 411, + "@typescript-eslint/types": 402, + "@typescript-eslint/typescript-estree": 403, + "@typescript-eslint/visitor-keys": 401, + "acorn": 259, + "acorn-jsx": 258, + "agent-base": 134, + "ajv": 273, + "ansi-regex": [ + 425, + 99, + ], + "ansi-styles": [ + 428, + 107, + 191, + ], + "any-promise": 9, + "anymatch": 81, + "arg": 82, + "argparse": 197, + "aria-query": 380, + "array-buffer-byte-length": 342, + "array-includes": 354, + "array-union": 410, + "array.prototype.findlastindex": 394, + "array.prototype.flat": 352, + "array.prototype.flatmap": 370, + "array.prototype.tosorted": 369, + "arraybuffer.prototype.slice": 341, + "ast-types": 146, + "ast-types-flow": 379, + "asynciterator.prototype": 367, + "autoprefixer": 432, + "available-typed-arrays": 309, + "axe-core": 378, + "axobject-query": 376, + "b4a": 124, + "balanced-match": 19, + "bare-events": 122, + "bare-fs": 118, + "bare-os": 117, + "bare-path": 116, + "base64-js": 114, + "basic-ftp": 156, + "binary-extensions": 80, + "brace-expansion": [ + 419, + 17, + ], + "braces": 56, + "browserslist": 436, + "buffer": 112, + "buffer-crc32": 166, + "bun-types": 431, + "busboy": 217, + "call-bind": 294, + "callsites": 201, + "camelcase-css": 47, + "caniuse-lite": [ + 216, + 435, + ], + "chalk": [ + 270, + 187, + ], + "chokidar": 76, + "chromium-bidi": 178, + "client-only": 214, + "cliui": 105, + "color-convert": [ + 108, + 192, + ], + "color-name": [ + 109, + 193, + ], + "commander": 23, + "concat-map": 18, + "cosmiconfig": 181, + "cross-fetch": 173, + "cross-spawn": 264, + "cssesc": 37, + "csstype": 442, + "damerau-levenshtein": 375, + "data-uri-to-buffer": 155, + "debug": [ + 132, + 391, + ], + "deep-is": 230, + "default-create-template": 0, + "define-data-property": 298, + "define-properties": 301, + "degenerator": 140, + "dequal": 377, + "devtools-protocol": 172, + "didyoumean": 75, + "dir-glob": 408, + "dlv": 74, + "doctrine": [ + 263, + 368, + ], + "eastasianwidth": 427, + "electron-to-chromium": 439, + "emoji-regex": [ + 374, + 101, + ], + "end-of-stream": 126, + "enhanced-resolve": 398, + "env-paths": 202, + "error-ex": 184, + "es-abstract": 304, + "es-iterator-helpers": 355, + "es-set-tostringtag": 340, + "es-shim-unscopables": 353, + "es-to-primitive": 338, + "escalade": 104, + "escape-string-regexp": [ + 262, + 190, + ], + "escodegen": 142, + "eslint": 222, + "eslint-config-next": 221, + "eslint-import-resolver-node": 393, + "eslint-import-resolver-typescript": 395, + "eslint-module-utils": 390, + "eslint-plugin-import": 383, + "eslint-plugin-jsx-a11y": 371, + "eslint-plugin-react": 287, + "eslint-plugin-react-hooks": 286, + "eslint-scope": 260, + "eslint-visitor-keys": 257, + "espree": 256, + "esprima": 141, + "esquery": 255, + "esrecurse": 261, + "estraverse": 145, + "esutils": 144, + "extract-zip": 162, + "fast-deep-equal": 254, + "fast-fifo": 121, + "fast-glob": 64, + "fast-json-stable-stringify": 277, + "fast-levenshtein": 225, + "fastq": 68, + "fd-slicer": 167, + "file-entry-cache": 247, + "fill-range": 57, + "find-up": 241, + "flat-cache": 248, + "flatted": 253, + "for-each": 307, + "foreground-child": 429, + "fraction.js": 434, + "fs-extra": 151, + "fs.realpath": 22, + "fsevents": 77, + "function-bind": 34, + "function.prototype.name": 337, + "functions-have-names": 297, + "get-caller-file": 103, + "get-intrinsic": 291, + "get-stream": 169, + "get-symbol-description": 336, + "get-tsconfig": 396, + "get-uri": 150, + "glob": [ + 414, + 250, + 12, + ], + "glob-parent": [ + 63, + 66, + ], + "globals": 239, + "globalthis": 335, + "globby": 406, + "gopd": 299, + "graceful-fs": 154, + "graphemer": 238, + "has": 33, + "has-bigints": 317, + "has-flag": [ + 272, + 189, + ], + "has-property-descriptors": 296, + "has-proto": 293, + "has-symbols": 292, + "has-tostringtag": 306, + "http-proxy-agent": [ + 160, + 149, + ], + "https-proxy-agent": [ + 159, + 148, + ], + "ieee754": 113, + "ignore": 237, + "import-fresh": 198, + "imurmurhash": 236, + "inflight": 21, + "inherits": 20, + "internal-slot": 303, + "ip": [ + 131, + 139, + ], + "is-array-buffer": 334, + "is-arrayish": 185, + "is-async-function": 366, + "is-bigint": 316, + "is-binary-path": 79, + "is-boolean-object": 315, + "is-callable": 308, + "is-core-module": 32, + "is-date-object": 339, + "is-extglob": 62, + "is-finalizationregistry": 365, + "is-fullwidth-code-point": 100, + "is-generator-function": 364, + "is-glob": 61, + "is-map": 363, + "is-negative-zero": 333, + "is-number": 59, + "is-number-object": 314, + "is-path-inside": 235, + "is-regex": 327, + "is-set": 362, + "is-shared-array-buffer": 332, + "is-string": 313, + "is-symbol": 312, + "is-typed-array": 319, + "is-weakmap": 361, + "is-weakref": 331, + "is-weakset": 360, + "isarray": 329, + "isexe": 266, + "iterator.prototype": 356, + "jackspeak": 420, + "jiti": 60, + "js-tokens": 87, + "js-yaml": 196, + "json-buffer": 252, + "json-parse-even-better-errors": 183, + "json-schema-traverse": 276, + "json-stable-stringify-without-jsonify": 234, + "json5": 387, + "jsonfile": 153, + "jsx-ast-utils": 351, + "keyv": 251, + "language-subtag-registry": 373, + "language-tags": 372, + "levn": 226, + "lilconfig": 45, + "lines-and-columns": 11, + "locate-path": 243, + "lodash.merge": 233, + "loose-envify": 86, + "lru-cache": [ + 417, + 158, + 92, + ], + "merge2": 65, + "micromatch": 54, + "minimatch": [ + 418, + 232, + 16, + ], + "minimist": 386, + "minipass": 416, + "mitt": 180, + "ms": [ + 392, + 133, + ], + "mz": 6, + "nanoid": 42, + "natural-compare": 231, + "netmask": 138, + "next": 203, + "node-fetch": 174, + "node-releases": 438, + "normalize-path": 53, + "normalize-range": 433, + "object-assign": 10, + "object-hash": 52, + "object-inspect": 290, + "object-keys": 302, + "object.assign": 330, + "object.entries": 350, + "object.fromentries": 349, + "object.groupby": 389, + "object.hasown": 348, + "object.values": 347, + "once": 14, + "optionator": 224, + "p-limit": 245, + "p-locate": 244, + "pac-proxy-agent": 136, + "pac-resolver": 137, + "parent-module": 200, + "parse-json": 182, + "path-exists": 242, + "path-is-absolute": 13, + "path-key": 269, + "path-parse": 31, + "path-scurry": 415, + "path-type": 409, + "pend": 168, + "picocolors": 41, + "picomatch": 55, + "pify": 50, + "pirates": 5, + "postcss": [ + 215, + 39, + ], + "postcss-import": 48, + "postcss-js": 46, + "postcss-load-config": 43, + "postcss-nested": 38, + "postcss-selector-parser": 35, + "postcss-value-parser": 51, + "prelude-ls": 228, + "progress": 161, + "prop-types": 345, + "proxy-agent": 127, + "proxy-from-env": 135, + "pump": 125, + "punycode": 275, + "puppeteer": 89, + "puppeteer-core": 170, + "queue-microtask": 72, + "queue-tick": 120, + "react": 88, + "react-dom": 84, + "react-is": 346, + "read-cache": 49, + "readdirp": 78, + "reflect.getprototypeof": 357, + "regenerator-runtime": 382, + "regexp.prototype.flags": 300, + "require-directory": 102, + "resolve": [ + 344, + 29, + ], + "resolve-from": 199, + "resolve-pkg-maps": 397, + "reusify": 69, + "rimraf": 249, + "run-parallel": 71, + "safe-array-concat": 328, + "safe-regex-test": 326, + "scheduler": 85, + "semver": [ + 91, + 405, + 343, + ], + "set-function-name": 295, + "shebang-command": 267, + "shebang-regex": 268, + "side-channel": 289, + "signal-exit": 430, + "slash": 407, + "smart-buffer": 130, + "socks": 129, + "socks-proxy-agent": 128, + "source-map": 143, + "source-map-js": 40, + "streamsearch": 218, + "streamx": 119, + "string-width": [ + 426, + 97, + ], + "string.prototype.matchall": 288, + "string.prototype.trim": 325, + "string.prototype.trimend": 324, + "string.prototype.trimstart": 323, + "strip-ansi": [ + 424, + 98, + ], + "strip-bom": 385, + "strip-json-comments": 283, + "styled-jsx": 213, + "sucrase": 3, + "supports-color": [ + 271, + 188, + ], + "supports-preserve-symlinks-flag": 30, + "tailwindcss": 2, + "tapable": 399, + "tar-fs": 115, + "tar-stream": 123, + "text-table": 223, + "thenify": 8, + "thenify-all": 7, + "through": 111, + "to-regex-range": 58, + "tr46": 177, + "ts-api-utils": 404, + "ts-interface-checker": 4, + "tsconfig-paths": 384, + "tslib": 147, + "type-check": 227, + "type-fest": 240, + "typed-array-buffer": 322, + "typed-array-byte-length": 321, + "typed-array-byte-offset": 320, + "typed-array-length": 318, + "typescript": 1, + "unbox-primitive": 310, + "unbzip2-stream": 110, + "universalify": 152, + "update-browserslist-db": 437, + "uri-js": 274, + "urlpattern-polyfill": 179, + "util-deprecate": 36, + "webidl-conversions": 176, + "whatwg-url": 175, + "which": 265, + "which-boxed-primitive": 311, + "which-builtin-type": 358, + "which-collection": 359, + "which-typed-array": 305, + "wrap-ansi": [ + 423, + 106, + ], + "wrappy": 15, + "ws": 171, + "y18n": 96, + "yallist": 93, + "yaml": 44, + "yargs": 94, + "yargs-parser": 95, + "yauzl": 165, + "yocto-queue": 246, + }, + "packages": [ + { + "bin": null, + "dependencies": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + ], + "id": 0, + "integrity": null, + "man_dir": "", + "name": "default-create-template", + "name_hash": "12362153275604125605", + "origin": "local", + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": { + "postinstall": "cd node_modules/puppeteer && bun install.mjs", + }, + }, + { + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver", + }, + "dependencies": [], + "id": 1, + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "man_dir": "", + "name": "typescript", + "name_hash": "7090219608841397663", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.2", + }, + "scripts": {}, + }, + { + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js", + }, + "dependencies": [ + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + ], + "id": 2, + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "man_dir": "", + "name": "tailwindcss", + "name_hash": "6098981126968834122", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.3", + }, + "scripts": {}, + }, + { + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node", + }, + "dependencies": [ + 36, + 37, + 38, + 39, + 40, + 41, + 42, + ], + "id": 3, + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "man_dir": "", + "name": "sucrase", + "name_hash": "8220562023141918134", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.34.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 4, + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "man_dir": "", + "name": "ts-interface-checker", + "name_hash": "9090669025631097322", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 5, + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "man_dir": "", + "name": "pirates", + "name_hash": "11463431525122174591", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 43, + 44, + 45, + ], + "id": 6, + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "man_dir": "", + "name": "mz", + "name_hash": "4860889167171965650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 46, + ], + "id": 7, + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "man_dir": "", + "name": "thenify-all", + "name_hash": "3497577183623575301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 47, + ], + "id": 8, + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "man_dir": "", + "name": "thenify", + "name_hash": "10214550608932566002", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 9, + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "man_dir": "", + "name": "any-promise", + "name_hash": "992496519212496549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 10, + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "man_dir": "", + "name": "object-assign", + "name_hash": "741501977461426514", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 11, + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "man_dir": "", + "name": "lines-and-columns", + "name_hash": "8731744980636261242", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 48, + 49, + 50, + 51, + 52, + 53, + ], + "id": 12, + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 13, + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "man_dir": "", + "name": "path-is-absolute", + "name_hash": "8164005222338448325", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 54, + ], + "id": 14, + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "man_dir": "", + "name": "once", + "name_hash": "748011609921859784", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 15, + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "man_dir": "", + "name": "wrappy", + "name_hash": "18119806661187706052", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 55, + ], + "id": 16, + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 56, + 57, + ], + "id": 17, + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 18, + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "man_dir": "", + "name": "concat-map", + "name_hash": "8706867752641269193", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 19, + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "man_dir": "", + "name": "balanced-match", + "name_hash": "16269801611404267863", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 20, + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "man_dir": "", + "name": "inherits", + "name_hash": "7481850175542696465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 58, + 59, + ], + "id": 21, + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "man_dir": "", + "name": "inflight", + "name_hash": "15335006233399436565", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 22, + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "man_dir": "", + "name": "fs.realpath", + "name_hash": "913835373532407557", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 23, + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "man_dir": "", + "name": "commander", + "name_hash": "5281338156924866262", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 60, + 61, + 62, + ], + "id": 24, + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "man_dir": "", + "name": "@jridgewell/gen-mapping", + "name_hash": "7763226208333403547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 63, + 64, + ], + "id": 25, + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "man_dir": "", + "name": "@jridgewell/trace-mapping", + "name_hash": "9132244357866713465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.19", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 26, + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "man_dir": "", + "name": "@jridgewell/sourcemap-codec", + "name_hash": "11082572525356782073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 27, + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "man_dir": "", + "name": "@jridgewell/resolve-uri", + "name_hash": "15732631652601645408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 28, + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "man_dir": "", + "name": "@jridgewell/set-array", + "name_hash": "10956470817798356705", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 65, + 66, + 67, + ], + "id": 29, + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 30, + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "man_dir": "", + "name": "supports-preserve-symlinks-flag", + "name_hash": "7228670803640303868", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 31, + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "man_dir": "", + "name": "path-parse", + "name_hash": "13352954276207767683", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 68, + ], + "id": 32, + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "man_dir": "", + "name": "is-core-module", + "name_hash": "2115564247595772579", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.13.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 69, + ], + "id": 33, + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "man_dir": "", + "name": "has", + "name_hash": "10277371301110365577", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 34, + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "man_dir": "", + "name": "function-bind", + "name_hash": "844545262680185243", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 70, + 71, + ], + "id": 35, + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "man_dir": "", + "name": "postcss-selector-parser", + "name_hash": "8882225543017639620", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 36, + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "man_dir": "", + "name": "util-deprecate", + "name_hash": "4033437044928033698", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/cssesc", + "name": "cssesc", + }, + "dependencies": [], + "id": 37, + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "man_dir": "", + "name": "cssesc", + "name_hash": "11039868621287934035", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 72, + 73, + ], + "id": 38, + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "man_dir": "", + "name": "postcss-nested", + "name_hash": "13580188021191584601", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 74, + 75, + 76, + ], + "id": 39, + "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.30", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 40, + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "man_dir": "", + "name": "source-map-js", + "name_hash": "6679519744659543339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 41, + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "man_dir": "", + "name": "picocolors", + "name_hash": "8945456956643510643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/nanoid.cjs", + "name": "nanoid", + }, + "dependencies": [], + "id": 42, + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "man_dir": "", + "name": "nanoid", + "name_hash": "10076454668178771807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 77, + 78, + 79, + 80, + ], + "id": 43, + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "man_dir": "", + "name": "postcss-load-config", + "name_hash": "11124459238108428623", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 44, + "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==", + "man_dir": "", + "name": "yaml", + "name_hash": "6823399114509449780", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 45, + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "man_dir": "", + "name": "lilconfig", + "name_hash": "17464546908434930808", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 81, + 82, + ], + "id": 46, + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "man_dir": "", + "name": "postcss-js", + "name_hash": "51201709044640027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 47, + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "man_dir": "", + "name": "camelcase-css", + "name_hash": "11196719252326564430", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 83, + 84, + 85, + 86, + ], + "id": 48, + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "man_dir": "", + "name": "postcss-import", + "name_hash": "3854262770217217840", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 87, + ], + "id": 49, + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "man_dir": "", + "name": "read-cache", + "name_hash": "10142894349910084417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 50, + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "man_dir": "", + "name": "pify", + "name_hash": "516088454160206643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 51, + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "man_dir": "", + "name": "postcss-value-parser", + "name_hash": "4513255719471974821", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 52, + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "man_dir": "", + "name": "object-hash", + "name_hash": "14333069055553598090", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 53, + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "man_dir": "", + "name": "normalize-path", + "name_hash": "7972932911556789884", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 88, + 89, + ], + "id": 54, + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "man_dir": "", + "name": "micromatch", + "name_hash": "14650745430569414123", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 55, + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "man_dir": "", + "name": "picomatch", + "name_hash": "17753630613781110869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 90, + ], + "id": 56, + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "man_dir": "", + "name": "braces", + "name_hash": "2299021338542085312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 91, + ], + "id": 57, + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "man_dir": "", + "name": "fill-range", + "name_hash": "7508926416461820733", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 92, + ], + "id": 58, + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "man_dir": "", + "name": "to-regex-range", + "name_hash": "14243204250463262724", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 59, + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "man_dir": "", + "name": "is-number", + "name_hash": "17443668381655379754", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/jiti.js", + "name": "jiti", + }, + "dependencies": [], + "id": 60, + "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==", + "man_dir": "", + "name": "jiti", + "name_hash": "13838530331656232073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.20.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 93, + ], + "id": 61, + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "man_dir": "", + "name": "is-glob", + "name_hash": "3852072119137895543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 62, + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "man_dir": "", + "name": "is-extglob", + "name_hash": "3738840382836940042", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 94, + ], + "id": 63, + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 95, + 96, + 97, + 98, + 99, + ], + "id": 64, + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "man_dir": "", + "name": "fast-glob", + "name_hash": "1878427088820911921", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 65, + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "man_dir": "", + "name": "merge2", + "name_hash": "10405164528992167668", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 100, + ], + "id": 66, + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 101, + 102, + ], + "id": 67, + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "man_dir": "", + "name": "@nodelib/fs.walk", + "name_hash": "5339111073806757055", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 103, + ], + "id": 68, + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "man_dir": "", + "name": "fastq", + "name_hash": "6741130188853797494", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 69, + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "man_dir": "", + "name": "reusify", + "name_hash": "6641847649693934607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 104, + 105, + ], + "id": 70, + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "man_dir": "", + "name": "@nodelib/fs.scandir", + "name_hash": "3021833276702395597", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 106, + ], + "id": 71, + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "man_dir": "", + "name": "run-parallel", + "name_hash": "12083900303949760391", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 72, + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "man_dir": "", + "name": "queue-microtask", + "name_hash": "5425309755386634043", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 73, + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "man_dir": "", + "name": "@nodelib/fs.stat", + "name_hash": "16125660444744770699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 74, + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "man_dir": "", + "name": "dlv", + "name_hash": "6290291366792823487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 75, + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "man_dir": "", + "name": "didyoumean", + "name_hash": "3290316626148068785", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + ], + "id": 76, + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "man_dir": "", + "name": "chokidar", + "name_hash": "13416011201726038119", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 77, + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "man_dir": "", + "name": "fsevents", + "name_hash": "16035328728645144760", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "2.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 115, + ], + "id": 78, + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "man_dir": "", + "name": "readdirp", + "name_hash": "10039124027740987170", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 116, + ], + "id": 79, + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "man_dir": "", + "name": "is-binary-path", + "name_hash": "10002650304558927684", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 80, + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "man_dir": "", + "name": "binary-extensions", + "name_hash": "17194422772331613284", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 117, + 118, + ], + "id": 81, + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "man_dir": "", + "name": "anymatch", + "name_hash": "13083778620000400888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 82, + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "man_dir": "", + "name": "arg", + "name_hash": "2472924048160638220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 83, + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "man_dir": "", + "name": "@alloc/quick-lru", + "name_hash": "11323404221389353756", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 119, + 120, + 121, + ], + "id": 84, + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "man_dir": "", + "name": "react-dom", + "name_hash": "7373667379151837307", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 122, + ], + "id": 85, + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "man_dir": "", + "name": "scheduler", + "name_hash": "6246319597786948434", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "loose-envify", + }, + "dependencies": [ + 123, + ], + "id": 86, + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "man_dir": "", + "name": "loose-envify", + "name_hash": "3112622411417245442", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 87, + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "man_dir": "", + "name": "js-tokens", + "name_hash": "8072375596980283624", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 124, + ], + "id": 88, + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "man_dir": "", + "name": "react", + "name_hash": "10719851453835962256", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/esm/puppeteer/node/cli.js", + "name": "puppeteer", + }, + "dependencies": [ + 125, + 126, + 127, + ], + "id": 89, + "integrity": "sha512-Mag1wRLanzwS4yEUyrDRBUgsKlH3dpL6oAfVwNHG09oxd0+ySsatMvYj7HwjynWy/S+Hg+XHLgjyC/F6CsL/lg==", + "man_dir": "", + "name": "puppeteer", + "name_hash": "13072297456933147981", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cjs/main-cli.js", + "name": "browsers", + }, + "dependencies": [ + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + ], + "id": 90, + "integrity": "sha512-xloWvocjvryHdUjDam/ZuGMh7zn4Sn3ZAaV4Ah2e2EwEt90N3XphZlSsU3n0VDc1F7kggCjMuH0UuxfPQ5mD9w==", + "man_dir": "", + "name": "@puppeteer/browsers", + "name_hash": "6318517029770692415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 136, + ], + "id": 91, + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 137, + ], + "id": 92, + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 93, + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "man_dir": "", + "name": "yallist", + "name_hash": "17447362886122903538", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 138, + 139, + 140, + 141, + 142, + 143, + 144, + ], + "id": 94, + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "man_dir": "", + "name": "yargs", + "name_hash": "18153588124555602831", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "17.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 95, + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "man_dir": "", + "name": "yargs-parser", + "name_hash": "2624058701233809213", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "21.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 96, + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "man_dir": "", + "name": "y18n", + "name_hash": "13867919047397601860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 145, + 146, + 147, + ], + "id": 97, + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 148, + ], + "id": 98, + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 99, + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 100, + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "man_dir": "", + "name": "is-fullwidth-code-point", + "name_hash": "11413228031333986220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 101, + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 102, + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "man_dir": "", + "name": "require-directory", + "name_hash": "6781837652461215204", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 103, + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "man_dir": "", + "name": "get-caller-file", + "name_hash": "1638769084888476079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 104, + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "man_dir": "", + "name": "escalade", + "name_hash": "6879348821336485116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 149, + 150, + 151, + ], + "id": 105, + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "man_dir": "", + "name": "cliui", + "name_hash": "5778858105899329304", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 152, + 153, + 154, + ], + "id": 106, + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 155, + ], + "id": 107, + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 156, + ], + "id": 108, + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 109, + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 157, + 158, + ], + "id": 110, + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "man_dir": "", + "name": "unbzip2-stream", + "name_hash": "12033811216485982774", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 111, + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "man_dir": "", + "name": "through", + "name_hash": "16941386786386382390", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 159, + 160, + ], + "id": 112, + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "man_dir": "", + "name": "buffer", + "name_hash": "10358694932499417541", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 113, + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "man_dir": "", + "name": "ieee754", + "name_hash": "17889458061139334532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 114, + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "man_dir": "", + "name": "base64-js", + "name_hash": "14626266614050083415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 161, + 162, + 163, + 164, + ], + "id": 115, + "integrity": "sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==", + "man_dir": "", + "name": "tar-fs", + "name_hash": "14440968244754303214", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 165, + ], + "id": 116, + "integrity": "sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==", + "man_dir": "", + "name": "bare-path", + "name_hash": "12654746909665824402", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 117, + "integrity": "sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==", + "man_dir": "", + "name": "bare-os", + "name_hash": "6865937522145537276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 166, + 167, + 168, + 169, + ], + "id": 118, + "integrity": "sha512-+CjmZANQDFZWy4PGbVdmALIwmt33aJg8qTkVjClU6X4WmZkTPBDxRHiBn7fpqEWEfF3AC2io++erpViAIQbSjg==", + "man_dir": "", + "name": "bare-fs", + "name_hash": "15205712258788157948", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 170, + 171, + ], + "id": 119, + "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "man_dir": "", + "name": "streamx", + "name_hash": "74555136203185339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.15.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 120, + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "man_dir": "", + "name": "queue-tick", + "name_hash": "9246306848360353145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 121, + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "man_dir": "", + "name": "fast-fifo", + "name_hash": "1244249015522350723", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 122, + "integrity": "sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==", + "man_dir": "", + "name": "bare-events", + "name_hash": "4035129451839648869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 172, + 173, + 174, + ], + "id": 123, + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "man_dir": "", + "name": "tar-stream", + "name_hash": "14255302179190904139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 124, + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "man_dir": "", + "name": "b4a", + "name_hash": "10649709558693226266", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 175, + 176, + ], + "id": 125, + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "man_dir": "", + "name": "pump", + "name_hash": "7040703475696644678", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 177, + ], + "id": 126, + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "man_dir": "", + "name": "end-of-stream", + "name_hash": "17455588742510412071", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + ], + "id": 127, + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", + "man_dir": "", + "name": "proxy-agent", + "name_hash": "9904923658574585845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 186, + 187, + 188, + ], + "id": 128, + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "man_dir": "", + "name": "socks-proxy-agent", + "name_hash": "11921171134012595164", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 189, + 190, + ], + "id": 129, + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "man_dir": "", + "name": "socks", + "name_hash": "16884970381877539768", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 130, + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "man_dir": "", + "name": "smart-buffer", + "name_hash": "9798348771309838398", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 131, + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 191, + ], + "id": 132, + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 133, + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 192, + ], + "id": 134, + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "man_dir": "", + "name": "agent-base", + "name_hash": "17689920659035782501", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 135, + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "man_dir": "", + "name": "proxy-from-env", + "name_hash": "1270194980615207566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + ], + "id": 136, + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "man_dir": "", + "name": "pac-proxy-agent", + "name_hash": "818729749152565950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 201, + 202, + 203, + ], + "id": 137, + "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "man_dir": "", + "name": "pac-resolver", + "name_hash": "12373948793919354804", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 138, + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "man_dir": "", + "name": "netmask", + "name_hash": "16100660929392435651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 139, + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 204, + 205, + 206, + ], + "id": 140, + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "man_dir": "", + "name": "degenerator", + "name_hash": "8612146826381285798", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js", + }, + "dependencies": [], + "id": 141, + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "man_dir": "", + "name": "esprima", + "name_hash": "16070041258147025859", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js", + }, + "dependencies": [ + 207, + 208, + 209, + 210, + ], + "id": 142, + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "man_dir": "", + "name": "escodegen", + "name_hash": "7568564790816534200", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 143, + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "man_dir": "", + "name": "source-map", + "name_hash": "15131286332489002212", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 144, + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "man_dir": "", + "name": "esutils", + "name_hash": "7981716078883515000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 145, + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "man_dir": "", + "name": "estraverse", + "name_hash": "14401618193000185195", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 211, + ], + "id": 146, + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "man_dir": "", + "name": "ast-types", + "name_hash": "4997596490212765360", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.13.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 147, + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "man_dir": "", + "name": "tslib", + "name_hash": "17922945129469812550", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 212, + 213, + ], + "id": 148, + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 214, + 215, + ], + "id": 149, + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 216, + 217, + 218, + 219, + ], + "id": 150, + "integrity": "sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==", + "man_dir": "", + "name": "get-uri", + "name_hash": "4377287927338690314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 220, + 221, + 222, + ], + "id": 151, + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "man_dir": "", + "name": "fs-extra", + "name_hash": "2453474818627632477", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 152, + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "man_dir": "", + "name": "universalify", + "name_hash": "9857909289728530428", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 223, + ], + "id": 153, + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "man_dir": "", + "name": "jsonfile", + "name_hash": "16030246458379256651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 154, + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "man_dir": "", + "name": "graceful-fs", + "name_hash": "8654400277002734136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 155, + "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", + "man_dir": "", + "name": "data-uri-to-buffer", + "name_hash": "14979328150197748023", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 156, + "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "man_dir": "", + "name": "basic-ftp", + "name_hash": "3294105759639631117", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 157, + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "man_dir": "", + "name": "@tootallnate/quickjs-emscripten", + "name_hash": "5414003337280545145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 158, + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.18.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 224, + 225, + ], + "id": 159, + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 226, + 227, + ], + "id": 160, + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 161, + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "man_dir": "", + "name": "progress", + "name_hash": "11283104389794780362", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "extract-zip", + }, + "dependencies": [ + 228, + 229, + 230, + 231, + ], + "id": 162, + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "man_dir": "", + "name": "extract-zip", + "name_hash": "8810061046982445994", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 232, + ], + "id": 163, + "integrity": "sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==", + "man_dir": "", + "name": "@types/yauzl", + "name_hash": "10273980999870455328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 164, + "integrity": "sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==", + "man_dir": "", + "name": "@types/node", + "name_hash": "4124652010926124945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "20.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 233, + 234, + ], + "id": 165, + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "man_dir": "", + "name": "yauzl", + "name_hash": "7329914562904170092", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 166, + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "man_dir": "", + "name": "buffer-crc32", + "name_hash": "4553253441045318076", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 235, + ], + "id": 167, + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "man_dir": "", + "name": "fd-slicer", + "name_hash": "10851489456408334660", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 168, + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "man_dir": "", + "name": "pend", + "name_hash": "11550940272933590184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 236, + ], + "id": 169, + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "man_dir": "", + "name": "get-stream", + "name_hash": "13254119490064412968", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 237, + 238, + 239, + 240, + 241, + 242, + ], + "id": 170, + "integrity": "sha512-l9nf8NcirYOHdID12CIMWyy7dqcJCVtgVS+YAiJuUJHg8+9yjgPiG2PcNhojIEEpCkvw3FxvnyITVfKVmkWpjA==", + "man_dir": "", + "name": "puppeteer-core", + "name_hash": "10954685796294859150", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 243, + 244, + ], + "id": 171, + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "man_dir": "", + "name": "ws", + "name_hash": "14644737011329074183", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.16.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 172, + "integrity": "sha512-Ctp4hInA0BEavlUoRy9mhGq0i+JSo/AwVyX2EFgZmV1kYB+Zq+EMBAn52QWu6FbRr10hRb6pBl420upbp4++vg==", + "man_dir": "", + "name": "devtools-protocol", + "name_hash": "12159960943916763407", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1249869", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 245, + ], + "id": 173, + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", + "man_dir": "", + "name": "cross-fetch", + "name_hash": "5665307032371542913", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 246, + 247, + ], + "id": 174, + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "man_dir": "", + "name": "node-fetch", + "name_hash": "9368364337257117328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 248, + 249, + ], + "id": 175, + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "man_dir": "", + "name": "whatwg-url", + "name_hash": "15436316526856444177", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 176, + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "man_dir": "", + "name": "webidl-conversions", + "name_hash": "5343883202058398372", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 177, + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "man_dir": "", + "name": "tr46", + "name_hash": "4865213169840252474", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 250, + 251, + 252, + ], + "id": 178, + "integrity": "sha512-sZMgEBWKbupD0Q7lyFu8AWkrE+rs5ycE12jFkGwIgD/VS8lDPtelPlXM7LYaq4zrkZ/O2L3f4afHUHL0ICdKog==", + "man_dir": "", + "name": "chromium-bidi", + "name_hash": "17738832193826713561", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 179, + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", + "man_dir": "", + "name": "urlpattern-polyfill", + "name_hash": "11822535153800140816", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 180, + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "man_dir": "", + "name": "mitt", + "name_hash": "8939019029139500810", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 253, + 254, + 255, + 256, + 257, + ], + "id": 181, + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "man_dir": "", + "name": "cosmiconfig", + "name_hash": "6870876620368412607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 258, + 259, + 260, + 261, + ], + "id": 182, + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "man_dir": "", + "name": "parse-json", + "name_hash": "10803339664298030440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 183, + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "man_dir": "", + "name": "json-parse-even-better-errors", + "name_hash": "13977239420854766139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 262, + ], + "id": 184, + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "man_dir": "", + "name": "error-ex", + "name_hash": "10994745590019451357", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 185, + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "man_dir": "", + "name": "is-arrayish", + "name_hash": "2568751720667967222", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 263, + 264, + ], + "id": 186, + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "man_dir": "", + "name": "@babel/code-frame", + "name_hash": "6188048000334411082", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 265, + 266, + 267, + ], + "id": 187, + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.4.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 268, + ], + "id": 188, + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 189, + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 190, + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 269, + ], + "id": 191, + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 270, + ], + "id": 192, + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 193, + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 271, + 272, + 273, + ], + "id": 194, + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "man_dir": "", + "name": "@babel/highlight", + "name_hash": "1462121684300951999", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 195, + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "man_dir": "", + "name": "@babel/helper-validator-identifier", + "name_hash": "13229699169636733158", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/js-yaml.js", + "name": "js-yaml", + }, + "dependencies": [ + 274, + ], + "id": 196, + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "man_dir": "", + "name": "js-yaml", + "name_hash": "192709174173096334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 197, + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "man_dir": "", + "name": "argparse", + "name_hash": "14330104742551621378", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 275, + 276, + ], + "id": 198, + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "man_dir": "", + "name": "import-fresh", + "name_hash": "11575749002643879646", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 199, + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "man_dir": "", + "name": "resolve-from", + "name_hash": "3749267992243009772", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 277, + ], + "id": 200, + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "man_dir": "", + "name": "parent-module", + "name_hash": "2665996815938625963", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 201, + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "man_dir": "", + "name": "callsites", + "name_hash": "3613437260212473067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 202, + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "man_dir": "", + "name": "env-paths", + "name_hash": "763024076902060186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/bin/next", + "name": "next", + }, + "dependencies": [ + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + ], + "id": 203, + "integrity": "sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==", + "man_dir": "", + "name": "next", + "name_hash": "11339591345958603137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 204, + "integrity": "sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==", + "man_dir": "", + "name": "@next/swc-win32-x64-msvc", + "name_hash": "9647815457301330905", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "ia32", + ], + "bin": null, + "dependencies": [], + "id": 205, + "integrity": "sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==", + "man_dir": "", + "name": "@next/swc-win32-ia32-msvc", + "name_hash": "9252805468461829479", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 206, + "integrity": "sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==", + "man_dir": "", + "name": "@next/swc-win32-arm64-msvc", + "name_hash": "2162381238028589388", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 207, + "integrity": "sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==", + "man_dir": "", + "name": "@next/swc-linux-x64-musl", + "name_hash": "2579566733029863568", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 208, + "integrity": "sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==", + "man_dir": "", + "name": "@next/swc-linux-x64-gnu", + "name_hash": "300847313706189527", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 209, + "integrity": "sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-musl", + "name_hash": "10617419930187892296", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 210, + "integrity": "sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-gnu", + "name_hash": "11020036790013624239", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 211, + "integrity": "sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==", + "man_dir": "", + "name": "@next/swc-darwin-x64", + "name_hash": "6382492463773593985", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 212, + "integrity": "sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==", + "man_dir": "", + "name": "@next/swc-darwin-arm64", + "name_hash": "2189808260783691934", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 298, + 299, + ], + "id": 213, + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "man_dir": "", + "name": "styled-jsx", + "name_hash": "3150382730046383618", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 214, + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "man_dir": "", + "name": "client-only", + "name_hash": "8802229738477874888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 300, + 301, + 302, + ], + "id": 215, + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.31", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 216, + "integrity": "sha512-zpkZ+kEr6We7w63ORkoJ2pOfBwBkY/bJrG/UZ90qNb45Isblu8wzDgevEOrRL1r9dWayHjYiiyCMEXPn4DweGQ==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001596", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 303, + ], + "id": 217, + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "man_dir": "", + "name": "busboy", + "name_hash": "12056783266830520862", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 218, + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "man_dir": "", + "name": "streamsearch", + "name_hash": "16767345128201185654", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 304, + ], + "id": 219, + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "man_dir": "", + "name": "@swc/helpers", + "name_hash": "6882297182432941771", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 220, + "integrity": "sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==", + "man_dir": "", + "name": "@next/env", + "name_hash": "14533567151760189614", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + ], + "id": 221, + "integrity": "sha512-sUCpWlGuHpEhI0pIT0UtdSLJk5Z8E2DYinPTwsBiWaSYQomchdl0i60pjynY48+oXvtyWMQ7oE+G3m49yrfacg==", + "man_dir": "", + "name": "eslint-config-next", + "name_hash": "7198338977897397487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/eslint.js", + "name": "eslint", + }, + "dependencies": [ + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + ], + "id": 222, + "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", + "man_dir": "", + "name": "eslint", + "name_hash": "17917589463370847417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 223, + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "man_dir": "", + "name": "text-table", + "name_hash": "8812171258786601301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 353, + 354, + 355, + 356, + 357, + 358, + ], + "id": 224, + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "man_dir": "", + "name": "optionator", + "name_hash": "13855909686375249440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 225, + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "man_dir": "", + "name": "fast-levenshtein", + "name_hash": "12342460047873653112", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 359, + 360, + ], + "id": 226, + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "man_dir": "", + "name": "levn", + "name_hash": "9969646077825321011", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 361, + ], + "id": 227, + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "man_dir": "", + "name": "type-check", + "name_hash": "14488857500191659576", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 228, + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "man_dir": "", + "name": "prelude-ls", + "name_hash": "2714658211020917171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 229, + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "man_dir": "", + "name": "@aashutoshrathi/word-wrap", + "name_hash": "17707028160503038136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 230, + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "man_dir": "", + "name": "deep-is", + "name_hash": "4678193845338186713", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 231, + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "man_dir": "", + "name": "natural-compare", + "name_hash": "10983874298500943893", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 362, + ], + "id": 232, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 233, + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "man_dir": "", + "name": "lodash.merge", + "name_hash": "1968752870223903086", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 234, + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "man_dir": "", + "name": "json-stable-stringify-without-jsonify", + "name_hash": "14534225541412166230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 235, + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "man_dir": "", + "name": "is-path-inside", + "name_hash": "11945178255920368404", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 236, + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "man_dir": "", + "name": "imurmurhash", + "name_hash": "16912020589681053487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 237, + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "man_dir": "", + "name": "ignore", + "name_hash": "7684941795926889194", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 238, + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "man_dir": "", + "name": "graphemer", + "name_hash": "10355618371909736900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 363, + ], + "id": 239, + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "man_dir": "", + "name": "globals", + "name_hash": "15143409006866382382", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "13.22.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 240, + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "man_dir": "", + "name": "type-fest", + "name_hash": "14668870911319020225", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.20.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 364, + 365, + ], + "id": 241, + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "man_dir": "", + "name": "find-up", + "name_hash": "8309621910990874126", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 242, + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "man_dir": "", + "name": "path-exists", + "name_hash": "12097053851796077639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 366, + ], + "id": 243, + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "man_dir": "", + "name": "locate-path", + "name_hash": "14390144719475396950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 367, + ], + "id": 244, + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "man_dir": "", + "name": "p-locate", + "name_hash": "9693850335197275095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 368, + ], + "id": 245, + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "man_dir": "", + "name": "p-limit", + "name_hash": "3083404427706523125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 246, + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "man_dir": "", + "name": "yocto-queue", + "name_hash": "9034931028572940079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 369, + ], + "id": 247, + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "man_dir": "", + "name": "file-entry-cache", + "name_hash": "7451434054063451186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 370, + 371, + 372, + ], + "id": 248, + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "man_dir": "", + "name": "flat-cache", + "name_hash": "1109822261564484039", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin.js", + "name": "rimraf", + }, + "dependencies": [ + 373, + ], + "id": 249, + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "man_dir": "", + "name": "rimraf", + "name_hash": "6866739241594583209", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 374, + 375, + 376, + 377, + 378, + 379, + ], + "id": 250, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 380, + ], + "id": 251, + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "man_dir": "", + "name": "keyv", + "name_hash": "11030851470615570686", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 252, + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "man_dir": "", + "name": "json-buffer", + "name_hash": "5720297936225446253", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 253, + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "man_dir": "", + "name": "flatted", + "name_hash": "12258717572737769681", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 254, + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "man_dir": "", + "name": "fast-deep-equal", + "name_hash": "12371535360781568025", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 381, + ], + "id": 255, + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "man_dir": "", + "name": "esquery", + "name_hash": "7289272869223478230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 382, + 383, + 384, + ], + "id": 256, + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "man_dir": "", + "name": "espree", + "name_hash": "3641367103187261350", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 257, + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "man_dir": "", + "name": "eslint-visitor-keys", + "name_hash": "17830281265467207399", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 385, + ], + "id": 258, + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "man_dir": "", + "name": "acorn-jsx", + "name_hash": "1754355278825952408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/acorn", + "name": "acorn", + }, + "dependencies": [], + "id": 259, + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "man_dir": "", + "name": "acorn", + "name_hash": "17430233180242180057", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 386, + 387, + ], + "id": 260, + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "man_dir": "", + "name": "eslint-scope", + "name_hash": "17629221228476930459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 388, + ], + "id": 261, + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "man_dir": "", + "name": "esrecurse", + "name_hash": "17661314847727534689", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 262, + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 389, + ], + "id": 263, + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 390, + 391, + 392, + ], + "id": 264, + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "man_dir": "", + "name": "cross-spawn", + "name_hash": "12444485756966960720", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "./bin/node-which", + "name": "node-which", + }, + "dependencies": [ + 393, + ], + "id": 265, + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "man_dir": "", + "name": "which", + "name_hash": "5112236092670504396", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 266, + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "man_dir": "", + "name": "isexe", + "name_hash": "15558268014059531432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 394, + ], + "id": 267, + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "man_dir": "", + "name": "shebang-command", + "name_hash": "9009661312948442432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 268, + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "man_dir": "", + "name": "shebang-regex", + "name_hash": "18053981199157160202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 269, + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "man_dir": "", + "name": "path-key", + "name_hash": "665497923999462354", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 395, + 396, + ], + "id": 270, + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 397, + ], + "id": 271, + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 272, + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 398, + 399, + 400, + 401, + ], + "id": 273, + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "man_dir": "", + "name": "ajv", + "name_hash": "4704814928422522869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.12.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 402, + ], + "id": 274, + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "man_dir": "", + "name": "uri-js", + "name_hash": "9694608825335680295", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 275, + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "man_dir": "", + "name": "punycode", + "name_hash": "6702779252101758505", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 276, + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "man_dir": "", + "name": "json-schema-traverse", + "name_hash": "686899269284038873", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 277, + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "man_dir": "", + "name": "fast-json-stable-stringify", + "name_hash": "5172613188748066692", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 278, + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "man_dir": "", + "name": "@humanwhocodes/module-importer", + "name_hash": "12456817044413428026", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 403, + 404, + 405, + ], + "id": 279, + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "man_dir": "", + "name": "@humanwhocodes/config-array", + "name_hash": "4378208149395492413", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 280, + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "man_dir": "", + "name": "@humanwhocodes/object-schema", + "name_hash": "8965646483962562622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 281, + "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", + "man_dir": "", + "name": "@eslint/js", + "name_hash": "14520481844909638934", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + ], + "id": 282, + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "man_dir": "", + "name": "@eslint/eslintrc", + "name_hash": "12097048422266797669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 283, + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "man_dir": "", + "name": "strip-json-comments", + "name_hash": "3826326773345398095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 284, + "integrity": "sha512-0MGxAVt1m/ZK+LTJp/j0qF7Hz97D9O/FH9Ms3ltnyIdDD57cbb1ACIQTkbHvNXtWDv5TPq7w5Kq56+cNukbo7g==", + "man_dir": "", + "name": "@eslint-community/regexpp", + "name_hash": "633405221675698401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 415, + 416, + ], + "id": 285, + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "man_dir": "", + "name": "@eslint-community/eslint-utils", + "name_hash": "17370105237013380211", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 417, + ], + "id": 286, + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "man_dir": "", + "name": "eslint-plugin-react-hooks", + "name_hash": "14057422571669714006", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + ], + "id": 287, + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "man_dir": "", + "name": "eslint-plugin-react", + "name_hash": "15811917473959571682", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.33.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + ], + "id": 288, + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "man_dir": "", + "name": "string.prototype.matchall", + "name_hash": "3859254092910215586", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 444, + 445, + 446, + ], + "id": 289, + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "man_dir": "", + "name": "side-channel", + "name_hash": "9070404613470426637", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 290, + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "man_dir": "", + "name": "object-inspect", + "name_hash": "956383507377191237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.12.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 447, + 448, + 449, + 450, + ], + "id": 291, + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "man_dir": "", + "name": "get-intrinsic", + "name_hash": "2906428234746671084", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 292, + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "man_dir": "", + "name": "has-symbols", + "name_hash": "11738213668566965255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 293, + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "man_dir": "", + "name": "has-proto", + "name_hash": "14548784663137950749", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 451, + 452, + ], + "id": 294, + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "man_dir": "", + "name": "call-bind", + "name_hash": "12438735438837079615", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 453, + 454, + 455, + ], + "id": 295, + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "man_dir": "", + "name": "set-function-name", + "name_hash": "15255527540049710000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 456, + ], + "id": 296, + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "man_dir": "", + "name": "has-property-descriptors", + "name_hash": "4664477375836720802", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 297, + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "man_dir": "", + "name": "functions-have-names", + "name_hash": "2705786889099279986", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 457, + 458, + 459, + ], + "id": 298, + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "man_dir": "", + "name": "define-data-property", + "name_hash": "11872812789934333141", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 460, + ], + "id": 299, + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "man_dir": "", + "name": "gopd", + "name_hash": "11067429752147099645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 461, + 462, + 463, + ], + "id": 300, + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "man_dir": "", + "name": "regexp.prototype.flags", + "name_hash": "1450419609126993699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 464, + 465, + 466, + ], + "id": 301, + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "man_dir": "", + "name": "define-properties", + "name_hash": "6291091409189323848", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 302, + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "man_dir": "", + "name": "object-keys", + "name_hash": "17064657543629771811", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 467, + 468, + 469, + ], + "id": 303, + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "man_dir": "", + "name": "internal-slot", + "name_hash": "5294586439646401067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + ], + "id": 304, + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "man_dir": "", + "name": "es-abstract", + "name_hash": "18149169871844198539", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 509, + 510, + 511, + 512, + 513, + ], + "id": 305, + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "man_dir": "", + "name": "which-typed-array", + "name_hash": "15299409777186876504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 514, + ], + "id": 306, + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "man_dir": "", + "name": "has-tostringtag", + "name_hash": "13213170068840407891", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 515, + ], + "id": 307, + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "man_dir": "", + "name": "for-each", + "name_hash": "10867395407301386752", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 308, + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "man_dir": "", + "name": "is-callable", + "name_hash": "8145804842618902795", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 309, + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "man_dir": "", + "name": "available-typed-arrays", + "name_hash": "16267035547686705519", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 516, + 517, + 518, + 519, + ], + "id": 310, + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "man_dir": "", + "name": "unbox-primitive", + "name_hash": "5619034830996442352", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 520, + 521, + 522, + 523, + 524, + ], + "id": 311, + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "man_dir": "", + "name": "which-boxed-primitive", + "name_hash": "16054727932152155669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 525, + ], + "id": 312, + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "man_dir": "", + "name": "is-symbol", + "name_hash": "17261375015506057632", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 526, + ], + "id": 313, + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "man_dir": "", + "name": "is-string", + "name_hash": "17134972543368483860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 527, + ], + "id": 314, + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "man_dir": "", + "name": "is-number-object", + "name_hash": "17734215349587891459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 528, + 529, + ], + "id": 315, + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "man_dir": "", + "name": "is-boolean-object", + "name_hash": "977724548377731595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 530, + ], + "id": 316, + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "man_dir": "", + "name": "is-bigint", + "name_hash": "15395120181649760746", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 317, + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "man_dir": "", + "name": "has-bigints", + "name_hash": "8902287851533908224", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 531, + 532, + 533, + ], + "id": 318, + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "man_dir": "", + "name": "typed-array-length", + "name_hash": "11116743844802335237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 534, + ], + "id": 319, + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "man_dir": "", + "name": "is-typed-array", + "name_hash": "9705410882361152938", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 535, + 536, + 537, + 538, + 539, + ], + "id": 320, + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "man_dir": "", + "name": "typed-array-byte-offset", + "name_hash": "4363148948656071809", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 540, + 541, + 542, + 543, + ], + "id": 321, + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "man_dir": "", + "name": "typed-array-byte-length", + "name_hash": "15839092223363072276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 544, + 545, + 546, + ], + "id": 322, + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "man_dir": "", + "name": "typed-array-buffer", + "name_hash": "12632345045689166547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 547, + 548, + 549, + ], + "id": 323, + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "man_dir": "", + "name": "string.prototype.trimstart", + "name_hash": "2565522221466854936", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 550, + 551, + 552, + ], + "id": 324, + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "man_dir": "", + "name": "string.prototype.trimend", + "name_hash": "1025553805644415088", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 553, + 554, + 555, + ], + "id": 325, + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "man_dir": "", + "name": "string.prototype.trim", + "name_hash": "13195996988681286312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 556, + 557, + 558, + ], + "id": 326, + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "man_dir": "", + "name": "safe-regex-test", + "name_hash": "7551602408075273083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 559, + 560, + ], + "id": 327, + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "man_dir": "", + "name": "is-regex", + "name_hash": "5347229372705359543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 561, + 562, + 563, + 564, + ], + "id": 328, + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "man_dir": "", + "name": "safe-array-concat", + "name_hash": "16724726882203544952", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 329, + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "man_dir": "", + "name": "isarray", + "name_hash": "1313190527457156627", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 565, + 566, + 567, + 568, + ], + "id": 330, + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "man_dir": "", + "name": "object.assign", + "name_hash": "3382096865825279030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 569, + ], + "id": 331, + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "man_dir": "", + "name": "is-weakref", + "name_hash": "16457982703851476953", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 570, + ], + "id": 332, + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "man_dir": "", + "name": "is-shared-array-buffer", + "name_hash": "16404740693320828184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 333, + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "man_dir": "", + "name": "is-negative-zero", + "name_hash": "15976851243871524828", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 571, + 572, + 573, + ], + "id": 334, + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "man_dir": "", + "name": "is-array-buffer", + "name_hash": "14032760764897204845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 574, + ], + "id": 335, + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "man_dir": "", + "name": "globalthis", + "name_hash": "13441561870904786738", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 575, + 576, + ], + "id": 336, + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "man_dir": "", + "name": "get-symbol-description", + "name_hash": "9231308723607962639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 577, + 578, + 579, + 580, + ], + "id": 337, + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "man_dir": "", + "name": "function.prototype.name", + "name_hash": "4695092674110180958", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 581, + 582, + 583, + ], + "id": 338, + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "man_dir": "", + "name": "es-to-primitive", + "name_hash": "5511149163085325549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 584, + ], + "id": 339, + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "man_dir": "", + "name": "is-date-object", + "name_hash": "2234586858061383196", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 585, + 586, + 587, + ], + "id": 340, + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "man_dir": "", + "name": "es-set-tostringtag", + "name_hash": "6364566058234691598", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 588, + 589, + 590, + 591, + 592, + 593, + 594, + ], + "id": 341, + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "man_dir": "", + "name": "arraybuffer.prototype.slice", + "name_hash": "11166998714227851504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 595, + 596, + ], + "id": 342, + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "man_dir": "", + "name": "array-buffer-byte-length", + "name_hash": "9975978122018604356", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [], + "id": 343, + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.3.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 597, + 598, + 599, + ], + "id": 344, + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0-next.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 600, + 601, + 602, + ], + "id": 345, + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "man_dir": "", + "name": "prop-types", + "name_hash": "2288456573804260909", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.8.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 346, + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "man_dir": "", + "name": "react-is", + "name_hash": "2565568243106125199", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "16.13.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 603, + 604, + 605, + ], + "id": 347, + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "man_dir": "", + "name": "object.values", + "name_hash": "17183857510284531499", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 606, + 607, + ], + "id": 348, + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "man_dir": "", + "name": "object.hasown", + "name_hash": "12140096160358655980", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 608, + 609, + 610, + ], + "id": 349, + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "man_dir": "", + "name": "object.fromentries", + "name_hash": "58142230756561331", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 611, + 612, + 613, + ], + "id": 350, + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "man_dir": "", + "name": "object.entries", + "name_hash": "9232336923373250807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 614, + 615, + 616, + 617, + ], + "id": 351, + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "man_dir": "", + "name": "jsx-ast-utils", + "name_hash": "7365668162252757844", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 618, + 619, + 620, + 621, + ], + "id": 352, + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "man_dir": "", + "name": "array.prototype.flat", + "name_hash": "13419566320551684202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 622, + ], + "id": 353, + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "man_dir": "", + "name": "es-shim-unscopables", + "name_hash": "9491299634916711255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 623, + 624, + 625, + 626, + 627, + ], + "id": 354, + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "man_dir": "", + "name": "array-includes", + "name_hash": "4525275494838245397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + ], + "id": 355, + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "man_dir": "", + "name": "es-iterator-helpers", + "name_hash": "6828621610707932693", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 642, + 643, + 644, + 645, + 646, + ], + "id": 356, + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "man_dir": "", + "name": "iterator.prototype", + "name_hash": "2087250667608616513", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 647, + 648, + 649, + 650, + 651, + 652, + ], + "id": 357, + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "man_dir": "", + "name": "reflect.getprototypeof", + "name_hash": "16421047821568888832", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + ], + "id": 358, + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "man_dir": "", + "name": "which-builtin-type", + "name_hash": "5638101803141645512", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 665, + 666, + 667, + 668, + ], + "id": 359, + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "man_dir": "", + "name": "which-collection", + "name_hash": "14526135543217104595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 669, + 670, + ], + "id": 360, + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "man_dir": "", + "name": "is-weakset", + "name_hash": "15512317874752413182", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 361, + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "man_dir": "", + "name": "is-weakmap", + "name_hash": "6846802860855249568", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 362, + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "man_dir": "", + "name": "is-set", + "name_hash": "711008573234634940", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 363, + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "man_dir": "", + "name": "is-map", + "name_hash": "13285296637631486371", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 671, + ], + "id": 364, + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "man_dir": "", + "name": "is-generator-function", + "name_hash": "6389681397246265335", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 672, + ], + "id": 365, + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "man_dir": "", + "name": "is-finalizationregistry", + "name_hash": "3324291948921067566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 673, + ], + "id": 366, + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "man_dir": "", + "name": "is-async-function", + "name_hash": "7396704721306843003", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 674, + ], + "id": 367, + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "man_dir": "", + "name": "asynciterator.prototype", + "name_hash": "3757020988614190728", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 675, + ], + "id": 368, + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 676, + 677, + 678, + 679, + 680, + ], + "id": 369, + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "man_dir": "", + "name": "array.prototype.tosorted", + "name_hash": "6050988382768901310", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 681, + 682, + 683, + 684, + ], + "id": 370, + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "man_dir": "", + "name": "array.prototype.flatmap", + "name_hash": "4112999450230342125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + ], + "id": 371, + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "man_dir": "", + "name": "eslint-plugin-jsx-a11y", + "name_hash": "17038906309846806775", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 702, + ], + "id": 372, + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "man_dir": "", + "name": "language-tags", + "name_hash": "3625175203997363083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 373, + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "man_dir": "", + "name": "language-subtag-registry", + "name_hash": "15962551382548022065", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 374, + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 375, + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "man_dir": "", + "name": "damerau-levenshtein", + "name_hash": "15167018638538311401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 703, + ], + "id": 376, + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "man_dir": "", + "name": "axobject-query", + "name_hash": "9344054106894956572", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 377, + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "man_dir": "", + "name": "dequal", + "name_hash": "9863785364709466334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 378, + "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "man_dir": "", + "name": "axe-core", + "name_hash": "13988195930258765777", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 379, + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "man_dir": "", + "name": "ast-types-flow", + "name_hash": "3772215945262775731", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 704, + ], + "id": 380, + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "man_dir": "", + "name": "aria-query", + "name_hash": "506127023625643336", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 705, + ], + "id": 381, + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "man_dir": "", + "name": "@babel/runtime", + "name_hash": "10291762809505250838", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.23.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 382, + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "man_dir": "", + "name": "regenerator-runtime", + "name_hash": "7537904526969317900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.14.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + ], + "id": 383, + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "man_dir": "", + "name": "eslint-plugin-import", + "name_hash": "8508429259951498502", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.28.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 724, + 725, + 726, + 727, + ], + "id": 384, + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "man_dir": "", + "name": "tsconfig-paths", + "name_hash": "9484880556576660029", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.14.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 385, + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "man_dir": "", + "name": "strip-bom", + "name_hash": "10409965272767959480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 386, + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "man_dir": "", + "name": "minimist", + "name_hash": "3523651443977674137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cli.js", + "name": "json5", + }, + "dependencies": [ + 728, + ], + "id": 387, + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "man_dir": "", + "name": "json5", + "name_hash": "8623012563386528314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 388, + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "man_dir": "", + "name": "@types/json5", + "name_hash": "7880870305537908928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.29", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 729, + 730, + 731, + 732, + ], + "id": 389, + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "man_dir": "", + "name": "object.groupby", + "name_hash": "11641877674072745532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 733, + ], + "id": 390, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "man_dir": "", + "name": "eslint-module-utils", + "name_hash": "8461306141657248779", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.8.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 734, + ], + "id": 391, + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 392, + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 735, + 736, + 737, + ], + "id": 393, + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "man_dir": "", + "name": "eslint-import-resolver-node", + "name_hash": "7112252065464945765", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 738, + 739, + 740, + 741, + 742, + ], + "id": 394, + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "man_dir": "", + "name": "array.prototype.findlastindex", + "name_hash": "12218267642355334154", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + ], + "id": 395, + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "man_dir": "", + "name": "eslint-import-resolver-typescript", + "name_hash": "15133821067886250480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 752, + ], + "id": 396, + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "man_dir": "", + "name": "get-tsconfig", + "name_hash": "4239972350118399509", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 397, + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "man_dir": "", + "name": "resolve-pkg-maps", + "name_hash": "2492033107302429470", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 753, + 754, + ], + "id": 398, + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "man_dir": "", + "name": "enhanced-resolve", + "name_hash": "2987069983667056488", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 399, + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "man_dir": "", + "name": "tapable", + "name_hash": "14182729765386254792", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 755, + 756, + 757, + 758, + 759, + 760, + ], + "id": 400, + "integrity": "sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==", + "man_dir": "", + "name": "@typescript-eslint/parser", + "name_hash": "16517001479467293030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 761, + 762, + ], + "id": 401, + "integrity": "sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==", + "man_dir": "", + "name": "@typescript-eslint/visitor-keys", + "name_hash": "7940841856001563650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 402, + "integrity": "sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==", + "man_dir": "", + "name": "@typescript-eslint/types", + "name_hash": "9755027355340495761", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 763, + 764, + 765, + 766, + 767, + 768, + 769, + ], + "id": 403, + "integrity": "sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==", + "man_dir": "", + "name": "@typescript-eslint/typescript-estree", + "name_hash": "17745786537991019945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 770, + ], + "id": 404, + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "man_dir": "", + "name": "ts-api-utils", + "name_hash": "16747467150637667790", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 771, + ], + "id": 405, + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.5.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 772, + 773, + 774, + 775, + 776, + 777, + ], + "id": 406, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "man_dir": "", + "name": "globby", + "name_hash": "15348107128072099982", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "11.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 407, + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "man_dir": "", + "name": "slash", + "name_hash": "14883663570633596397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 778, + ], + "id": 408, + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "man_dir": "", + "name": "dir-glob", + "name_hash": "7561427002176423027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 409, + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "man_dir": "", + "name": "path-type", + "name_hash": "1886008933504244910", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 410, + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "man_dir": "", + "name": "array-union", + "name_hash": "16137961625129706702", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 779, + 780, + ], + "id": 411, + "integrity": "sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==", + "man_dir": "", + "name": "@typescript-eslint/scope-manager", + "name_hash": "4117654371883490926", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 412, + "integrity": "sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg==", + "man_dir": "", + "name": "@rushstack/eslint-patch", + "name_hash": "11774582013079126290", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 781, + ], + "id": 413, + "integrity": "sha512-VCnZI2cy77Yaj3L7Uhs3+44ikMM1VD/fBMwvTBb3hIaTIuqa+DmG4dhUDq+MASu3yx97KhgsVJbsas0XuiKyww==", + "man_dir": "", + "name": "@next/eslint-plugin-next", + "name_hash": "12150179697604729174", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/esm/bin.mjs", + "name": "glob", + }, + "dependencies": [ + 782, + 783, + 784, + 785, + 786, + ], + "id": 414, + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.3.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 787, + 788, + ], + "id": 415, + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "man_dir": "", + "name": "path-scurry", + "name_hash": "11241411746102775941", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 416, + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "man_dir": "", + "name": "minipass", + "name_hash": "8663404386276345459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 417, + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 789, + ], + "id": 418, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 790, + ], + "id": 419, + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 791, + 792, + ], + "id": 420, + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "man_dir": "", + "name": "jackspeak", + "name_hash": "16168027919126698688", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 421, + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "man_dir": "", + "name": "@pkgjs/parseargs", + "name_hash": "4691519579619228072", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 793, + 794, + 795, + 796, + 797, + 798, + ], + "id": 422, + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "man_dir": "", + "name": "@isaacs/cliui", + "name_hash": "9642792940339374750", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 799, + 800, + 801, + ], + "id": 423, + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 802, + ], + "id": 424, + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 425, + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 803, + 804, + 805, + ], + "id": 426, + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 427, + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "man_dir": "", + "name": "eastasianwidth", + "name_hash": "17075761832414070361", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 428, + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 806, + 807, + ], + "id": 429, + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "man_dir": "", + "name": "foreground-child", + "name_hash": "15280470906188730905", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 430, + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "man_dir": "", + "name": "signal-exit", + "name_hash": "10435964049369420478", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 431, + "integrity": "sha512-XlyKVdYCHa7K5PHYGcwOVOrGE/bMnLS51y7zFA3ZAAXyiQ6dTaNXNCWTTufgII/6ruN770uhAXphQmzvU/r2fQ==", + "man_dir": "", + "name": "bun-types", + "name_hash": "2516125195587546235", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/autoprefixer", + "name": "autoprefixer", + }, + "dependencies": [ + 808, + 809, + 810, + 811, + 812, + 813, + 814, + ], + "id": 432, + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "man_dir": "", + "name": "autoprefixer", + "name_hash": "8637312893797281270", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.4.16", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 433, + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "man_dir": "", + "name": "normalize-range", + "name_hash": "2450824346687386237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 434, + "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "man_dir": "", + "name": "fraction.js", + "name_hash": "8226692764887072839", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 435, + "integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001539", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "browserslist", + }, + "dependencies": [ + 815, + 816, + 817, + 818, + ], + "id": 436, + "integrity": "sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==", + "man_dir": "", + "name": "browserslist", + "name_hash": "10902238872969648239", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.21.11", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "update-browserslist-db", + }, + "dependencies": [ + 819, + 820, + 821, + ], + "id": 437, + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "man_dir": "", + "name": "update-browserslist-db", + "name_hash": "6664421840286510928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 438, + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "man_dir": "", + "name": "node-releases", + "name_hash": "16500855680207755447", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 439, + "integrity": "sha512-6uyPyXTo8lkv8SWAmjKFbG42U073TXlzD4R8rW3EzuznhFS2olCIAfjjQtV2dV2ar/vRF55KUd3zQYnCB0dd3A==", + "man_dir": "", + "name": "electron-to-chromium", + "name_hash": "670529235028360171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.529", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 822, + ], + "id": 440, + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "man_dir": "", + "name": "@types/react-dom", + "name_hash": "3229493356298419080", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 823, + 824, + 825, + ], + "id": 441, + "integrity": "sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==", + "man_dir": "", + "name": "@types/react", + "name_hash": "14723150644049679642", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 442, + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "man_dir": "", + "name": "csstype", + "name_hash": "10489861045436610105", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 443, + "integrity": "sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==", + "man_dir": "", + "name": "@types/scheduler", + "name_hash": "12135549028975824460", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.16.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 444, + "integrity": "sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog==", + "man_dir": "", + "name": "@types/prop-types", + "name_hash": "14301724962060537021", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.7.7", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "@aashutoshrathi/word-wrap": { + "id": 355, + "package_id": 229, + }, + "@alloc/quick-lru": { + "id": 14, + "package_id": 83, + }, + "@babel/code-frame": { + "id": 258, + "package_id": 186, + }, + "@babel/helper-validator-identifier": { + "id": 271, + "package_id": 195, + }, + "@babel/highlight": { + "id": 263, + "package_id": 194, + }, + "@babel/runtime": { + "id": 685, + "package_id": 381, + }, + "@eslint-community/eslint-utils": { + "id": 316, + "package_id": 285, + }, + "@eslint-community/regexpp": { + "id": 317, + "package_id": 284, + }, + "@eslint/eslintrc": { + "id": 318, + "package_id": 282, + }, + "@eslint/js": { + "id": 319, + "package_id": 281, + }, + "@humanwhocodes/config-array": { + "id": 320, + "package_id": 279, + }, + "@humanwhocodes/module-importer": { + "id": 321, + "package_id": 278, + }, + "@humanwhocodes/object-schema": { + "id": 403, + "package_id": 280, + }, + "@isaacs/cliui": { + "id": 791, + "package_id": 422, + }, + "@jridgewell/gen-mapping": { + "id": 36, + "package_id": 24, + }, + "@jridgewell/resolve-uri": { + "id": 63, + "package_id": 27, + }, + "@jridgewell/set-array": { + "id": 60, + "package_id": 28, + }, + "@jridgewell/sourcemap-codec": { + "id": 61, + "package_id": 26, + }, + "@jridgewell/trace-mapping": { + "id": 62, + "package_id": 25, + }, + "@next/env": { + "id": 278, + "package_id": 220, + }, + "@next/eslint-plugin-next": { + "id": 305, + "package_id": 413, + }, + "@next/swc-darwin-arm64": { + "id": 285, + "package_id": 212, + }, + "@next/swc-darwin-x64": { + "id": 286, + "package_id": 211, + }, + "@next/swc-linux-arm64-gnu": { + "id": 287, + "package_id": 210, + }, + "@next/swc-linux-arm64-musl": { + "id": 288, + "package_id": 209, + }, + "@next/swc-linux-x64-gnu": { + "id": 289, + "package_id": 208, + }, + "@next/swc-linux-x64-musl": { + "id": 290, + "package_id": 207, + }, + "@next/swc-win32-arm64-msvc": { + "id": 291, + "package_id": 206, + }, + "@next/swc-win32-ia32-msvc": { + "id": 292, + "package_id": 205, + }, + "@next/swc-win32-x64-msvc": { + "id": 293, + "package_id": 204, + }, + "@nodelib/fs.scandir": { + "id": 101, + "package_id": 70, + }, + "@nodelib/fs.stat": { + "id": 95, + "package_id": 73, + }, + "@nodelib/fs.walk": { + "id": 322, + "package_id": 67, + }, + "@pkgjs/parseargs": { + "id": 792, + "package_id": 421, + }, + "@puppeteer/browsers": { + "id": 127, + "package_id": 90, + }, + "@rushstack/eslint-patch": { + "id": 306, + "package_id": 412, + }, + "@swc/helpers": { + "id": 279, + "package_id": 219, + }, + "@tootallnate/quickjs-emscripten": { + "id": 193, + "package_id": 157, + }, + "@types/json5": { + "id": 724, + "package_id": 388, + }, + "@types/node": { + "id": 0, + "package_id": 164, + }, + "@types/prop-types": { + "id": 823, + "package_id": 444, + }, + "@types/react": { + "id": 1, + "package_id": 441, + }, + "@types/react-dom": { + "id": 2, + "package_id": 440, + }, + "@types/scheduler": { + "id": 824, + "package_id": 443, + }, + "@types/yauzl": { + "id": 231, + "package_id": 163, + }, + "@typescript-eslint/parser": { + "id": 307, + "package_id": 400, + }, + "@typescript-eslint/scope-manager": { + "id": 755, + "package_id": 411, + }, + "@typescript-eslint/types": { + "id": 756, + "package_id": 402, + }, + "@typescript-eslint/typescript-estree": { + "id": 757, + "package_id": 403, + }, + "@typescript-eslint/visitor-keys": { + "id": 758, + "package_id": 401, + }, + "acorn": { + "id": 382, + "package_id": 259, + }, + "acorn-jsx": { + "id": 383, + "package_id": 258, + }, + "agent-base": { + "id": 178, + "package_id": 134, + }, + "ajv": { + "id": 323, + "package_id": 273, + }, + "ansi-regex": { + "id": 148, + "package_id": 99, + }, + "ansi-styles": { + "id": 395, + "package_id": 107, + }, + "any-promise": { + "id": 43, + "package_id": 9, + }, + "anymatch": { + "id": 107, + "package_id": 81, + }, + "arg": { + "id": 15, + "package_id": 82, + }, + "argparse": { + "id": 274, + "package_id": 197, + }, + "aria-query": { + "id": 686, + "package_id": 380, + }, + "array-buffer-byte-length": { + "id": 470, + "package_id": 342, + }, + "array-includes": { + "id": 706, + "package_id": 354, + }, + "array-union": { + "id": 772, + "package_id": 410, + }, + "array.prototype.findlastindex": { + "id": 707, + "package_id": 394, + }, + "array.prototype.flat": { + "id": 708, + "package_id": 352, + }, + "array.prototype.flatmap": { + "id": 709, + "package_id": 370, + }, + "array.prototype.tosorted": { + "id": 420, + "package_id": 369, + }, + "arraybuffer.prototype.slice": { + "id": 471, + "package_id": 341, + }, + "ast-types": { + "id": 204, + "package_id": 146, + }, + "ast-types-flow": { + "id": 689, + "package_id": 379, + }, + "asynciterator.prototype": { + "id": 628, + "package_id": 367, + }, + "autoprefixer": { + "id": 3, + "package_id": 432, + }, + "available-typed-arrays": { + "id": 472, + "package_id": 309, + }, + "axe-core": { + "id": 690, + "package_id": 378, + }, + "axobject-query": { + "id": 691, + "package_id": 376, + }, + "b4a": { + "id": 172, + "package_id": 124, + }, + "balanced-match": { + "id": 56, + "package_id": 19, + }, + "bare-events": { + "id": 166, + "package_id": 122, + }, + "bare-fs": { + "id": 163, + "package_id": 118, + }, + "bare-os": { + "id": 167, + "package_id": 117, + }, + "bare-path": { + "id": 164, + "package_id": 116, + }, + "base64-js": { + "id": 159, + "package_id": 114, + }, + "basic-ftp": { + "id": 216, + "package_id": 156, + }, + "binary-extensions": { + "id": 116, + "package_id": 80, + }, + "brace-expansion": { + "id": 362, + "package_id": 17, + }, + "braces": { + "id": 108, + "package_id": 56, + }, + "browserslist": { + "id": 808, + "package_id": 436, + }, + "buffer": { + "id": 157, + "package_id": 112, + }, + "buffer-crc32": { + "id": 234, + "package_id": 166, + }, + "bun-types": { + "id": 4, + "package_id": 431, + }, + "busboy": { + "id": 280, + "package_id": 217, + }, + "call-bind": { + "id": 623, + "package_id": 294, + }, + "callsites": { + "id": 277, + "package_id": 201, + }, + "camelcase-css": { + "id": 81, + "package_id": 47, + }, + "caniuse-lite": { + "id": 809, + "package_id": 435, + }, + "chalk": { + "id": 324, + "package_id": 270, + }, + "chokidar": { + "id": 16, + "package_id": 76, + }, + "chromium-bidi": { + "id": 238, + "package_id": 178, + }, + "client-only": { + "id": 298, + "package_id": 214, + }, + "cliui": { + "id": 138, + "package_id": 105, + }, + "color-convert": { + "id": 155, + "package_id": 108, + }, + "color-name": { + "id": 156, + "package_id": 109, + }, + "commander": { + "id": 37, + "package_id": 23, + }, + "concat-map": { + "id": 57, + "package_id": 18, + }, + "cosmiconfig": { + "id": 125, + "package_id": 181, + }, + "cross-fetch": { + "id": 239, + "package_id": 173, + }, + "cross-spawn": { + "id": 325, + "package_id": 264, + }, + "cssesc": { + "id": 70, + "package_id": 37, + }, + "csstype": { + "id": 825, + "package_id": 442, + }, + "damerau-levenshtein": { + "id": 692, + "package_id": 375, + }, + "data-uri-to-buffer": { + "id": 217, + "package_id": 155, + }, + "debug": { + "id": 326, + "package_id": 132, + }, + "deep-is": { + "id": 354, + "package_id": 230, + }, + "define-data-property": { + "id": 464, + "package_id": 298, + }, + "define-properties": { + "id": 624, + "package_id": 301, + }, + "degenerator": { + "id": 201, + "package_id": 140, + }, + "dequal": { + "id": 704, + "package_id": 377, + }, + "devtools-protocol": { + "id": 241, + "package_id": 172, + }, + "didyoumean": { + "id": 17, + "package_id": 75, + }, + "dir-glob": { + "id": 773, + "package_id": 408, + }, + "dlv": { + "id": 18, + "package_id": 74, + }, + "doctrine": { + "id": 327, + "package_id": 263, + }, + "eastasianwidth": { + "id": 803, + "package_id": 427, + }, + "electron-to-chromium": { + "id": 816, + "package_id": 439, + }, + "emoji-regex": { + "id": 693, + "package_id": 374, + }, + "end-of-stream": { + "id": 175, + "package_id": 126, + }, + "enhanced-resolve": { + "id": 744, + "package_id": 398, + }, + "env-paths": { + "id": 253, + "package_id": 202, + }, + "error-ex": { + "id": 259, + "package_id": 184, + }, + "es-abstract": { + "id": 625, + "package_id": 304, + }, + "es-iterator-helpers": { + "id": 422, + "package_id": 355, + }, + "es-set-tostringtag": { + "id": 632, + "package_id": 340, + }, + "es-shim-unscopables": { + "id": 741, + "package_id": 353, + }, + "es-to-primitive": { + "id": 475, + "package_id": 338, + }, + "escalade": { + "id": 819, + "package_id": 104, + }, + "escape-string-regexp": { + "id": 328, + "package_id": 262, + }, + "escodegen": { + "id": 205, + "package_id": 142, + }, + "eslint": { + "id": 5, + "package_id": 222, + }, + "eslint-config-next": { + "id": 6, + "package_id": 221, + }, + "eslint-import-resolver-node": { + "id": 308, + "package_id": 393, + }, + "eslint-import-resolver-typescript": { + "id": 309, + "package_id": 395, + }, + "eslint-module-utils": { + "id": 745, + "package_id": 390, + }, + "eslint-plugin-import": { + "id": 310, + "package_id": 383, + }, + "eslint-plugin-jsx-a11y": { + "id": 311, + "package_id": 371, + }, + "eslint-plugin-react": { + "id": 312, + "package_id": 287, + }, + "eslint-plugin-react-hooks": { + "id": 313, + "package_id": 286, + }, + "eslint-scope": { + "id": 329, + "package_id": 260, + }, + "eslint-visitor-keys": { + "id": 330, + "package_id": 257, + }, + "espree": { + "id": 331, + "package_id": 256, + }, + "esprima": { + "id": 206, + "package_id": 141, + }, + "esquery": { + "id": 332, + "package_id": 255, + }, + "esrecurse": { + "id": 386, + "package_id": 261, + }, + "estraverse": { + "id": 387, + "package_id": 145, + }, + "esutils": { + "id": 333, + "package_id": 144, + }, + "extract-zip": { + "id": 129, + "package_id": 162, + }, + "fast-deep-equal": { + "id": 334, + "package_id": 254, + }, + "fast-fifo": { + "id": 173, + "package_id": 121, + }, + "fast-glob": { + "id": 19, + "package_id": 64, + }, + "fast-json-stable-stringify": { + "id": 399, + "package_id": 277, + }, + "fast-levenshtein": { + "id": 358, + "package_id": 225, + }, + "fastq": { + "id": 102, + "package_id": 68, + }, + "fd-slicer": { + "id": 233, + "package_id": 167, + }, + "file-entry-cache": { + "id": 335, + "package_id": 247, + }, + "fill-range": { + "id": 90, + "package_id": 57, + }, + "find-up": { + "id": 336, + "package_id": 241, + }, + "flat-cache": { + "id": 369, + "package_id": 248, + }, + "flatted": { + "id": 370, + "package_id": 253, + }, + "for-each": { + "id": 541, + "package_id": 307, + }, + "foreground-child": { + "id": 782, + "package_id": 429, + }, + "fraction.js": { + "id": 810, + "package_id": 434, + }, + "fs-extra": { + "id": 219, + "package_id": 151, + }, + "fs.realpath": { + "id": 48, + "package_id": 22, + }, + "fsevents": { + "id": 114, + "package_id": 77, + }, + "function-bind": { + "id": 69, + "package_id": 34, + }, + "function.prototype.name": { + "id": 476, + "package_id": 337, + }, + "functions-have-names": { + "id": 454, + "package_id": 297, + }, + "get-caller-file": { + "id": 140, + "package_id": 103, + }, + "get-intrinsic": { + "id": 626, + "package_id": 291, + }, + "get-stream": { + "id": 229, + "package_id": 169, + }, + "get-symbol-description": { + "id": 478, + "package_id": 336, + }, + "get-tsconfig": { + "id": 747, + "package_id": 396, + }, + "get-uri": { + "id": 196, + "package_id": 150, + }, + "glob": { + "id": 781, + "package_id": 414, + }, + "glob-parent": { + "id": 337, + "package_id": 63, + }, + "globals": { + "id": 338, + "package_id": 239, + }, + "globalthis": { + "id": 635, + "package_id": 335, + }, + "globby": { + "id": 766, + "package_id": 406, + }, + "gopd": { + "id": 480, + "package_id": 299, + }, + "graceful-fs": { + "id": 282, + "package_id": 154, + }, + "graphemer": { + "id": 339, + "package_id": 238, + }, + "has": { + "id": 714, + "package_id": 33, + }, + "has-bigints": { + "id": 517, + "package_id": 317, + }, + "has-flag": { + "id": 397, + "package_id": 272, + }, + "has-property-descriptors": { + "id": 636, + "package_id": 296, + }, + "has-proto": { + "id": 637, + "package_id": 293, + }, + "has-symbols": { + "id": 638, + "package_id": 292, + }, + "has-tostringtag": { + "id": 526, + "package_id": 306, + }, + "http-proxy-agent": { + "id": 180, + "package_id": 160, + }, + "https-proxy-agent": { + "id": 181, + "package_id": 159, + }, + "ieee754": { + "id": 160, + "package_id": 113, + }, + "ignore": { + "id": 340, + "package_id": 237, + }, + "import-fresh": { + "id": 411, + "package_id": 198, + }, + "imurmurhash": { + "id": 341, + "package_id": 236, + }, + "inflight": { + "id": 49, + "package_id": 21, + }, + "inherits": { + "id": 50, + "package_id": 20, + }, + "internal-slot": { + "id": 639, + "package_id": 303, + }, + "ip": { + "id": 202, + "package_id": 139, + }, + "is-array-buffer": { + "id": 486, + "package_id": 334, + }, + "is-arrayish": { + "id": 262, + "package_id": 185, + }, + "is-async-function": { + "id": 655, + "package_id": 366, + }, + "is-bigint": { + "id": 520, + "package_id": 316, + }, + "is-binary-path": { + "id": 110, + "package_id": 79, + }, + "is-boolean-object": { + "id": 521, + "package_id": 315, + }, + "is-callable": { + "id": 487, + "package_id": 308, + }, + "is-core-module": { + "id": 736, + "package_id": 32, + }, + "is-date-object": { + "id": 582, + "package_id": 339, + }, + "is-extglob": { + "id": 93, + "package_id": 62, + }, + "is-finalizationregistry": { + "id": 657, + "package_id": 365, + }, + "is-fullwidth-code-point": { + "id": 146, + "package_id": 100, + }, + "is-generator-function": { + "id": 658, + "package_id": 364, + }, + "is-glob": { + "id": 342, + "package_id": 61, + }, + "is-map": { + "id": 665, + "package_id": 363, + }, + "is-negative-zero": { + "id": 488, + "package_id": 333, + }, + "is-number": { + "id": 92, + "package_id": 59, + }, + "is-number-object": { + "id": 522, + "package_id": 314, + }, + "is-path-inside": { + "id": 343, + "package_id": 235, + }, + "is-regex": { + "id": 489, + "package_id": 327, + }, + "is-set": { + "id": 666, + "package_id": 362, + }, + "is-shared-array-buffer": { + "id": 490, + "package_id": 332, + }, + "is-string": { + "id": 627, + "package_id": 313, + }, + "is-symbol": { + "id": 583, + "package_id": 312, + }, + "is-typed-array": { + "id": 492, + "package_id": 319, + }, + "is-weakmap": { + "id": 667, + "package_id": 361, + }, + "is-weakref": { + "id": 493, + "package_id": 331, + }, + "is-weakset": { + "id": 668, + "package_id": 360, + }, + "isarray": { + "id": 564, + "package_id": 329, + }, + "isexe": { + "id": 393, + "package_id": 266, + }, + "iterator.prototype": { + "id": 640, + "package_id": 356, + }, + "jackspeak": { + "id": 783, + "package_id": 420, + }, + "jiti": { + "id": 22, + "package_id": 60, + }, + "js-tokens": { + "id": 123, + "package_id": 87, + }, + "js-yaml": { + "id": 344, + "package_id": 196, + }, + "json-buffer": { + "id": 380, + "package_id": 252, + }, + "json-parse-even-better-errors": { + "id": 260, + "package_id": 183, + }, + "json-schema-traverse": { + "id": 400, + "package_id": 276, + }, + "json-stable-stringify-without-jsonify": { + "id": 345, + "package_id": 234, + }, + "json5": { + "id": 725, + "package_id": 387, + }, + "jsonfile": { + "id": 221, + "package_id": 153, + }, + "jsx-ast-utils": { + "id": 695, + "package_id": 351, + }, + "keyv": { + "id": 371, + "package_id": 251, + }, + "language-subtag-registry": { + "id": 702, + "package_id": 373, + }, + "language-tags": { + "id": 696, + "package_id": 372, + }, + "levn": { + "id": 346, + "package_id": 226, + }, + "lilconfig": { + "id": 23, + "package_id": 45, + }, + "lines-and-columns": { + "id": 39, + "package_id": 11, + }, + "locate-path": { + "id": 364, + "package_id": 243, + }, + "lodash.merge": { + "id": 347, + "package_id": 233, + }, + "loose-envify": { + "id": 124, + "package_id": 86, + }, + "lru-cache": { + "id": 182, + "package_id": 158, + }, + "merge2": { + "id": 98, + "package_id": 65, + }, + "micromatch": { + "id": 24, + "package_id": 54, + }, + "minimatch": { + "id": 348, + "package_id": 232, + }, + "minimist": { + "id": 726, + "package_id": 386, + }, + "minipass": { + "id": 785, + "package_id": 416, + }, + "mitt": { + "id": 250, + "package_id": 180, + }, + "ms": { + "id": 191, + "package_id": 133, + }, + "mz": { + "id": 40, + "package_id": 6, + }, + "nanoid": { + "id": 74, + "package_id": 42, + }, + "natural-compare": { + "id": 349, + "package_id": 231, + }, + "netmask": { + "id": 203, + "package_id": 138, + }, + "next": { + "id": 7, + "package_id": 203, + }, + "node-fetch": { + "id": 245, + "package_id": 174, + }, + "node-releases": { + "id": 817, + "package_id": 438, + }, + "normalize-path": { + "id": 25, + "package_id": 53, + }, + "normalize-range": { + "id": 811, + "package_id": 433, + }, + "object-assign": { + "id": 601, + "package_id": 10, + }, + "object-hash": { + "id": 26, + "package_id": 52, + }, + "object-inspect": { + "id": 494, + "package_id": 290, + }, + "object-keys": { + "id": 466, + "package_id": 302, + }, + "object.assign": { + "id": 616, + "package_id": 330, + }, + "object.entries": { + "id": 698, + "package_id": 350, + }, + "object.fromentries": { + "id": 718, + "package_id": 349, + }, + "object.groupby": { + "id": 719, + "package_id": 389, + }, + "object.hasown": { + "id": 428, + "package_id": 348, + }, + "object.values": { + "id": 720, + "package_id": 347, + }, + "once": { + "id": 52, + "package_id": 14, + }, + "optionator": { + "id": 350, + "package_id": 224, + }, + "p-limit": { + "id": 367, + "package_id": 245, + }, + "p-locate": { + "id": 366, + "package_id": 244, + }, + "pac-proxy-agent": { + "id": 183, + "package_id": 136, + }, + "pac-resolver": { + "id": 199, + "package_id": 137, + }, + "parent-module": { + "id": 275, + "package_id": 200, + }, + "parse-json": { + "id": 256, + "package_id": 182, + }, + "path-exists": { + "id": 365, + "package_id": 242, + }, + "path-is-absolute": { + "id": 53, + "package_id": 13, + }, + "path-key": { + "id": 390, + "package_id": 269, + }, + "path-parse": { + "id": 66, + "package_id": 31, + }, + "path-scurry": { + "id": 786, + "package_id": 415, + }, + "path-type": { + "id": 778, + "package_id": 409, + }, + "pend": { + "id": 235, + "package_id": 168, + }, + "picocolors": { + "id": 812, + "package_id": 41, + }, + "picomatch": { + "id": 89, + "package_id": 55, + }, + "pify": { + "id": 87, + "package_id": 50, + }, + "pirates": { + "id": 41, + "package_id": 5, + }, + "postcss": { + "id": 8, + "package_id": 39, + }, + "postcss-import": { + "id": 29, + "package_id": 48, + }, + "postcss-js": { + "id": 30, + "package_id": 46, + }, + "postcss-load-config": { + "id": 31, + "package_id": 43, + }, + "postcss-nested": { + "id": 32, + "package_id": 38, + }, + "postcss-selector-parser": { + "id": 33, + "package_id": 35, + }, + "postcss-value-parser": { + "id": 813, + "package_id": 51, + }, + "prelude-ls": { + "id": 359, + "package_id": 228, + }, + "progress": { + "id": 130, + "package_id": 161, + }, + "prop-types": { + "id": 430, + "package_id": 345, + }, + "proxy-agent": { + "id": 131, + "package_id": 127, + }, + "proxy-from-env": { + "id": 184, + "package_id": 135, + }, + "pump": { + "id": 161, + "package_id": 125, + }, + "punycode": { + "id": 402, + "package_id": 275, + }, + "puppeteer": { + "id": 9, + "package_id": 89, + }, + "puppeteer-core": { + "id": 126, + "package_id": 170, + }, + "queue-microtask": { + "id": 106, + "package_id": 72, + }, + "queue-tick": { + "id": 171, + "package_id": 120, + }, + "react": { + "id": 10, + "package_id": 88, + }, + "react-dom": { + "id": 11, + "package_id": 84, + }, + "react-is": { + "id": 602, + "package_id": 346, + }, + "read-cache": { + "id": 84, + "package_id": 49, + }, + "readdirp": { + "id": 113, + "package_id": 78, + }, + "reflect.getprototypeof": { + "id": 645, + "package_id": 357, + }, + "regenerator-runtime": { + "id": 705, + "package_id": 382, + }, + "regexp.prototype.flags": { + "id": 441, + "package_id": 300, + }, + "require-directory": { + "id": 141, + "package_id": 102, + }, + "resolve": { + "id": 34, + "package_id": 29, + }, + "resolve-from": { + "id": 276, + "package_id": 199, + }, + "resolve-pkg-maps": { + "id": 752, + "package_id": 397, + }, + "reusify": { + "id": 103, + "package_id": 69, + }, + "rimraf": { + "id": 372, + "package_id": 249, + }, + "run-parallel": { + "id": 105, + "package_id": 71, + }, + "safe-array-concat": { + "id": 641, + "package_id": 328, + }, + "safe-regex-test": { + "id": 499, + "package_id": 326, + }, + "scheduler": { + "id": 120, + "package_id": 85, + }, + "semver": { + "id": 721, + "package_id": 343, + }, + "set-function-name": { + "id": 442, + "package_id": 295, + }, + "shebang-command": { + "id": 391, + "package_id": 267, + }, + "shebang-regex": { + "id": 394, + "package_id": 268, + }, + "side-channel": { + "id": 443, + "package_id": 289, + }, + "signal-exit": { + "id": 807, + "package_id": 430, + }, + "slash": { + "id": 777, + "package_id": 407, + }, + "smart-buffer": { + "id": 190, + "package_id": 130, + }, + "socks": { + "id": 188, + "package_id": 129, + }, + "socks-proxy-agent": { + "id": 185, + "package_id": 128, + }, + "source-map": { + "id": 210, + "package_id": 143, + }, + "source-map-js": { + "id": 76, + "package_id": 40, + }, + "streamsearch": { + "id": 303, + "package_id": 218, + }, + "streamx": { + "id": 174, + "package_id": 119, + }, + "string-width": { + "id": 142, + "package_id": 97, + }, + "string.prototype.matchall": { + "id": 433, + "package_id": 288, + }, + "string.prototype.trim": { + "id": 500, + "package_id": 325, + }, + "string.prototype.trimend": { + "id": 501, + "package_id": 324, + }, + "string.prototype.trimstart": { + "id": 502, + "package_id": 323, + }, + "strip-ansi": { + "id": 351, + "package_id": 98, + }, + "strip-bom": { + "id": 727, + "package_id": 385, + }, + "strip-json-comments": { + "id": 414, + "package_id": 283, + }, + "styled-jsx": { + "id": 284, + "package_id": 213, + }, + "sucrase": { + "id": 35, + "package_id": 3, + }, + "supports-color": { + "id": 396, + "package_id": 271, + }, + "supports-preserve-symlinks-flag": { + "id": 67, + "package_id": 30, + }, + "tailwindcss": { + "id": 12, + "package_id": 2, + }, + "tapable": { + "id": 754, + "package_id": 399, + }, + "tar-fs": { + "id": 132, + "package_id": 115, + }, + "tar-stream": { + "id": 162, + "package_id": 123, + }, + "text-table": { + "id": 352, + "package_id": 223, + }, + "thenify": { + "id": 46, + "package_id": 8, + }, + "thenify-all": { + "id": 45, + "package_id": 7, + }, + "through": { + "id": 158, + "package_id": 111, + }, + "to-regex-range": { + "id": 91, + "package_id": 58, + }, + "tr46": { + "id": 248, + "package_id": 177, + }, + "ts-api-utils": { + "id": 769, + "package_id": 404, + }, + "ts-interface-checker": { + "id": 42, + "package_id": 4, + }, + "tsconfig-paths": { + "id": 722, + "package_id": 384, + }, + "tslib": { + "id": 304, + "package_id": 147, + }, + "type-check": { + "id": 360, + "package_id": 227, + }, + "type-fest": { + "id": 363, + "package_id": 240, + }, + "typed-array-buffer": { + "id": 503, + "package_id": 322, + }, + "typed-array-byte-length": { + "id": 504, + "package_id": 321, + }, + "typed-array-byte-offset": { + "id": 505, + "package_id": 320, + }, + "typed-array-length": { + "id": 506, + "package_id": 318, + }, + "typescript": { + "id": 13, + "package_id": 1, + }, + "unbox-primitive": { + "id": 507, + "package_id": 310, + }, + "unbzip2-stream": { + "id": 133, + "package_id": 110, + }, + "universalify": { + "id": 222, + "package_id": 152, + }, + "update-browserslist-db": { + "id": 818, + "package_id": 437, + }, + "uri-js": { + "id": 401, + "package_id": 274, + }, + "urlpattern-polyfill": { + "id": 251, + "package_id": 179, + }, + "util-deprecate": { + "id": 71, + "package_id": 36, + }, + "webidl-conversions": { + "id": 249, + "package_id": 176, + }, + "whatwg-url": { + "id": 246, + "package_id": 175, + }, + "which": { + "id": 392, + "package_id": 265, + }, + "which-boxed-primitive": { + "id": 519, + "package_id": 311, + }, + "which-builtin-type": { + "id": 652, + "package_id": 358, + }, + "which-collection": { + "id": 663, + "package_id": 359, + }, + "which-typed-array": { + "id": 508, + "package_id": 305, + }, + "wrap-ansi": { + "id": 151, + "package_id": 106, + }, + "wrappy": { + "id": 59, + "package_id": 15, + }, + "ws": { + "id": 242, + "package_id": 171, + }, + "y18n": { + "id": 143, + "package_id": 96, + }, + "yallist": { + "id": 137, + "package_id": 93, + }, + "yaml": { + "id": 78, + "package_id": 44, + }, + "yargs": { + "id": 134, + "package_id": 94, + }, + "yargs-parser": { + "id": 144, + "package_id": 95, + }, + "yauzl": { + "id": 230, + "package_id": 165, + }, + "yocto-queue": { + "id": 368, + "package_id": 246, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "caniuse-lite": { + "id": 281, + "package_id": 216, + }, + "postcss": { + "id": 283, + "package_id": 215, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/next/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 405, + "package_id": 16, + }, + }, + "depth": 1, + "id": 2, + "path": "node_modules/@humanwhocodes/config-array/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 735, + "package_id": 391, + }, + }, + "depth": 1, + "id": 3, + "path": "node_modules/eslint-import-resolver-node/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 710, + "package_id": 391, + }, + "doctrine": { + "id": 711, + "package_id": 368, + }, + }, + "depth": 1, + "id": 4, + "path": "node_modules/eslint-plugin-import/node_modules", + }, + { + "dependencies": { + "doctrine": { + "id": 421, + "package_id": 368, + }, + "resolve": { + "id": 431, + "package_id": 344, + }, + }, + "depth": 1, + "id": 5, + "path": "node_modules/eslint-plugin-react/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 135, + "package_id": 91, + }, + }, + "depth": 1, + "id": 6, + "path": "node_modules/@puppeteer/browsers/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 109, + "package_id": 66, + }, + }, + "depth": 1, + "id": 7, + "path": "node_modules/chokidar/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 97, + "package_id": 66, + }, + }, + "depth": 1, + "id": 8, + "path": "node_modules/fast-glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 38, + "package_id": 12, + }, + }, + "depth": 1, + "id": 9, + "path": "node_modules/sucrase/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 784, + "package_id": 418, + }, + }, + "depth": 1, + "id": 10, + "path": "node_modules/glob/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 768, + "package_id": 405, + }, + }, + "depth": 1, + "id": 11, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 12, + "path": "node_modules/eslint-import-resolver-node/node_modules/debug/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 733, + "package_id": 391, + }, + }, + "depth": 1, + "id": 13, + "path": "node_modules/eslint-module-utils/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 14, + "path": "node_modules/eslint-plugin-import/node_modules/debug/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 136, + "package_id": 92, + }, + }, + "depth": 2, + "id": 15, + "path": "node_modules/@puppeteer/browsers/node_modules/semver/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 51, + "package_id": 16, + }, + }, + "depth": 2, + "id": 16, + "path": "node_modules/sucrase/node_modules/glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 373, + "package_id": 250, + }, + }, + "depth": 1, + "id": 17, + "path": "node_modules/rimraf/node_modules", + }, + { + "dependencies": { + "brace-expansion": { + "id": 789, + "package_id": 419, + }, + }, + "depth": 2, + "id": 18, + "path": "node_modules/glob/node_modules/minimatch/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 787, + "package_id": 417, + }, + }, + "depth": 1, + "id": 19, + "path": "node_modules/path-scurry/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 771, + "package_id": 92, + }, + }, + "depth": 2, + "id": 20, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules/semver/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 21, + "path": "node_modules/eslint-module-utils/node_modules/debug/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 264, + "package_id": 187, + }, + }, + "depth": 1, + "id": 22, + "path": "node_modules/@babel/code-frame/node_modules", + }, + { + "dependencies": { + "http-proxy-agent": { + "id": 197, + "package_id": 149, + }, + "https-proxy-agent": { + "id": 198, + "package_id": 148, + }, + }, + "depth": 1, + "id": 23, + "path": "node_modules/pac-proxy-agent/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 1, + "id": 24, + "path": "node_modules/string-width/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 793, + "package_id": 426, + }, + "string-width-cjs": { + "id": 794, + "package_id": 97, + }, + "strip-ansi": { + "id": 795, + "package_id": 424, + }, + "strip-ansi-cjs": { + "id": 796, + "package_id": 98, + }, + "wrap-ansi": { + "id": 797, + "package_id": 423, + }, + "wrap-ansi-cjs": { + "id": 798, + "package_id": 106, + }, + }, + "depth": 1, + "id": 25, + "path": "node_modules/@isaacs/cliui/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 272, + "package_id": 187, + }, + }, + "depth": 1, + "id": 26, + "path": "node_modules/@babel/highlight/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 27, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "ip": { + "id": 189, + "package_id": 131, + }, + }, + "depth": 1, + "id": 28, + "path": "node_modules/socks/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + "strip-ansi": { + "id": 147, + "package_id": 98, + }, + }, + "depth": 2, + "id": 29, + "path": "node_modules/@isaacs/cliui/node_modules/string-width-cjs/node_modules", + }, + { + "dependencies": { + "ansi-regex": { + "id": 802, + "package_id": 425, + }, + }, + "depth": 2, + "id": 30, + "path": "node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 799, + "package_id": 428, + }, + }, + "depth": 2, + "id": 31, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 153, + "package_id": 97, + }, + "strip-ansi": { + "id": 154, + "package_id": 98, + }, + }, + "depth": 2, + "id": 32, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 33, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 34, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 35, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 3, + "id": 36, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/string-width/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 37, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 38, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 39, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 40, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + ], + "workspace_paths": {}, + "workspace_versions": {}, +} +`; 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 new file mode 100644 index 00000000000000..091e56cf92a6e8 --- /dev/null +++ b/test/integration/next-pages/test/__snapshots__/dev-server.test.ts.snap @@ -0,0 +1,21314 @@ +// Bun Snapshot v1, https://goo.gl/fbAQLP + +exports[`hot reloading works on the client (+ tailwind hmr) 1`] = ` +{ + "dependencies": [ + { + "behavior": { + "normal": true, + }, + "id": 0, + "literal": "20.7.0", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": "==20.7.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 1, + "literal": "18.2.22", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": "==18.2.22", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 2, + "literal": "18.2.7", + "name": "@types/react-dom", + "npm": { + "name": "@types/react-dom", + "version": "==18.2.7", + }, + "package_id": 440, + }, + { + "behavior": { + "normal": true, + }, + "id": 3, + "literal": "10.4.16", + "name": "autoprefixer", + "npm": { + "name": "autoprefixer", + "version": "==10.4.16", + }, + "package_id": 432, + }, + { + "behavior": { + "normal": true, + }, + "id": 4, + "literal": "^1.0.3", + "name": "bun-types", + "npm": { + "name": "bun-types", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 431, + }, + { + "behavior": { + "normal": true, + }, + "id": 5, + "literal": "8.50.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": "==8.50.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 6, + "literal": "14.1.3", + "name": "eslint-config-next", + "npm": { + "name": "eslint-config-next", + "version": "==14.1.3", + }, + "package_id": 221, + }, + { + "behavior": { + "normal": true, + }, + "id": 7, + "literal": "14.1.3", + "name": "next", + "npm": { + "name": "next", + "version": "==14.1.3", + }, + "package_id": 203, + }, + { + "behavior": { + "normal": true, + }, + "id": 8, + "literal": "8.4.30", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.30", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 9, + "literal": "22.4.1", + "name": "puppeteer", + "npm": { + "name": "puppeteer", + "version": "==22.4.1", + }, + "package_id": 89, + }, + { + "behavior": { + "normal": true, + }, + "id": 10, + "literal": "18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": "==18.2.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 11, + "literal": "18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": "==18.2.0", + }, + "package_id": 84, + }, + { + "behavior": { + "normal": true, + }, + "id": 12, + "literal": "3.3.3", + "name": "tailwindcss", + "npm": { + "name": "tailwindcss", + "version": "==3.3.3", + }, + "package_id": 2, + }, + { + "behavior": { + "normal": true, + }, + "id": 13, + "literal": "5.2.2", + "name": "typescript", + "npm": { + "name": "typescript", + "version": "==5.2.2", + }, + "package_id": 1, + }, + { + "behavior": { + "normal": true, + }, + "id": 14, + "literal": "^5.2.0", + "name": "@alloc/quick-lru", + "npm": { + "name": "@alloc/quick-lru", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 83, + }, + { + "behavior": { + "normal": true, + }, + "id": 15, + "literal": "^5.0.2", + "name": "arg", + "npm": { + "name": "arg", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 82, + }, + { + "behavior": { + "normal": true, + }, + "id": 16, + "literal": "^3.5.3", + "name": "chokidar", + "npm": { + "name": "chokidar", + "version": ">=3.5.3 <4.0.0", + }, + "package_id": 76, + }, + { + "behavior": { + "normal": true, + }, + "id": 17, + "literal": "^1.2.2", + "name": "didyoumean", + "npm": { + "name": "didyoumean", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 75, + }, + { + "behavior": { + "normal": true, + }, + "id": 18, + "literal": "^1.1.3", + "name": "dlv", + "npm": { + "name": "dlv", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 74, + }, + { + "behavior": { + "normal": true, + }, + "id": 19, + "literal": "^3.2.12", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.12 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 20, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 21, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 22, + "literal": "^1.18.2", + "name": "jiti", + "npm": { + "name": "jiti", + "version": ">=1.18.2 <2.0.0", + }, + "package_id": 60, + }, + { + "behavior": { + "normal": true, + }, + "id": 23, + "literal": "^2.1.0", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 24, + "literal": "^4.0.5", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.5 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 25, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 26, + "literal": "^3.0.0", + "name": "object-hash", + "npm": { + "name": "object-hash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 52, + }, + { + "behavior": { + "normal": true, + }, + "id": 27, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 28, + "literal": "^8.4.23", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.23 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 29, + "literal": "^15.1.0", + "name": "postcss-import", + "npm": { + "name": "postcss-import", + "version": ">=15.1.0 <16.0.0", + }, + "package_id": 48, + }, + { + "behavior": { + "normal": true, + }, + "id": 30, + "literal": "^4.0.1", + "name": "postcss-js", + "npm": { + "name": "postcss-js", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 46, + }, + { + "behavior": { + "normal": true, + }, + "id": 31, + "literal": "^4.0.1", + "name": "postcss-load-config", + "npm": { + "name": "postcss-load-config", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 43, + }, + { + "behavior": { + "normal": true, + }, + "id": 32, + "literal": "^6.0.1", + "name": "postcss-nested", + "npm": { + "name": "postcss-nested", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 38, + }, + { + "behavior": { + "normal": true, + }, + "id": 33, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "normal": true, + }, + "id": 34, + "literal": "^1.22.2", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.2 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 35, + "literal": "^3.32.0", + "name": "sucrase", + "npm": { + "name": "sucrase", + "version": ">=3.32.0 <4.0.0", + }, + "package_id": 3, + }, + { + "behavior": { + "normal": true, + }, + "id": 36, + "literal": "^0.3.2", + "name": "@jridgewell/gen-mapping", + "npm": { + "name": "@jridgewell/gen-mapping", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 24, + }, + { + "behavior": { + "normal": true, + }, + "id": 37, + "literal": "^4.0.0", + "name": "commander", + "npm": { + "name": "commander", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 23, + }, + { + "behavior": { + "normal": true, + }, + "id": 38, + "literal": "7.1.6", + "name": "glob", + "npm": { + "name": "glob", + "version": "==7.1.6", + }, + "package_id": 12, + }, + { + "behavior": { + "normal": true, + }, + "id": 39, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 40, + "literal": "^2.7.0", + "name": "mz", + "npm": { + "name": "mz", + "version": ">=2.7.0 <3.0.0", + }, + "package_id": 6, + }, + { + "behavior": { + "normal": true, + }, + "id": 41, + "literal": "^4.0.1", + "name": "pirates", + "npm": { + "name": "pirates", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 5, + }, + { + "behavior": { + "normal": true, + }, + "id": 42, + "literal": "^0.1.9", + "name": "ts-interface-checker", + "npm": { + "name": "ts-interface-checker", + "version": ">=0.1.9 <0.2.0", + }, + "package_id": 4, + }, + { + "behavior": { + "normal": true, + }, + "id": 43, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 44, + "literal": "^4.0.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 45, + "literal": "^1.0.0", + "name": "thenify-all", + "npm": { + "name": "thenify-all", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 7, + }, + { + "behavior": { + "normal": true, + }, + "id": 46, + "literal": ">= 3.1.0 < 4", + "name": "thenify", + "npm": { + "name": "thenify", + "version": ">=3.1.0 && <4.0.0", + }, + "package_id": 8, + }, + { + "behavior": { + "normal": true, + }, + "id": 47, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 48, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 49, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 50, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 51, + "literal": "^3.0.4", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 52, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 53, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 54, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 55, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 56, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 57, + "literal": "0.0.1", + "name": "concat-map", + "npm": { + "name": "concat-map", + "version": "==0.0.1", + }, + "package_id": 18, + }, + { + "behavior": { + "normal": true, + }, + "id": 58, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 59, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 60, + "literal": "^1.0.1", + "name": "@jridgewell/set-array", + "npm": { + "name": "@jridgewell/set-array", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 28, + }, + { + "behavior": { + "normal": true, + }, + "id": 61, + "literal": "^1.4.10", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.10 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 62, + "literal": "^0.3.9", + "name": "@jridgewell/trace-mapping", + "npm": { + "name": "@jridgewell/trace-mapping", + "version": ">=0.3.9 <0.4.0", + }, + "package_id": 25, + }, + { + "behavior": { + "normal": true, + }, + "id": 63, + "literal": "^3.1.0", + "name": "@jridgewell/resolve-uri", + "npm": { + "name": "@jridgewell/resolve-uri", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 27, + }, + { + "behavior": { + "normal": true, + }, + "id": 64, + "literal": "^1.4.14", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.14 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 65, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 66, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 67, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 68, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 69, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 70, + "literal": "^3.0.0", + "name": "cssesc", + "npm": { + "name": "cssesc", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 37, + }, + { + "behavior": { + "normal": true, + }, + "id": 71, + "literal": "^1.0.2", + "name": "util-deprecate", + "npm": { + "name": "util-deprecate", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 36, + }, + { + "behavior": { + "normal": true, + }, + "id": 72, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "peer": true, + }, + "id": 73, + "literal": "^8.2.14", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.2.14 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 74, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 75, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 76, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 77, + "literal": "^2.0.5", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 78, + "literal": "^2.1.1", + "name": "yaml", + "npm": { + "name": "yaml", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 44, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 79, + "literal": ">=9.0.0", + "name": "ts-node", + "npm": { + "name": "ts-node", + "version": ">=9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 80, + "literal": ">=8.0.9", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.9", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 81, + "literal": "^2.0.1", + "name": "camelcase-css", + "npm": { + "name": "camelcase-css", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 47, + }, + { + "behavior": { + "peer": true, + }, + "id": 82, + "literal": "^8.4.21", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.21 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 83, + "literal": "^4.0.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "normal": true, + }, + "id": 84, + "literal": "^1.0.0", + "name": "read-cache", + "npm": { + "name": "read-cache", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 49, + }, + { + "behavior": { + "normal": true, + }, + "id": 85, + "literal": "^1.1.7", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "peer": true, + }, + "id": 86, + "literal": "^8.0.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 87, + "literal": "^2.3.0", + "name": "pify", + "npm": { + "name": "pify", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 50, + }, + { + "behavior": { + "normal": true, + }, + "id": 88, + "literal": "^3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 89, + "literal": "^2.3.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.3.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 90, + "literal": "^7.0.1", + "name": "fill-range", + "npm": { + "name": "fill-range", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 57, + }, + { + "behavior": { + "normal": true, + }, + "id": 91, + "literal": "^5.0.1", + "name": "to-regex-range", + "npm": { + "name": "to-regex-range", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 58, + }, + { + "behavior": { + "normal": true, + }, + "id": 92, + "literal": "^7.0.0", + "name": "is-number", + "npm": { + "name": "is-number", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 59, + }, + { + "behavior": { + "normal": true, + }, + "id": 93, + "literal": "^2.1.1", + "name": "is-extglob", + "npm": { + "name": "is-extglob", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 62, + }, + { + "behavior": { + "normal": true, + }, + "id": 94, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 95, + "literal": "^2.0.2", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 96, + "literal": "^1.2.3", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 97, + "literal": "^5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 98, + "literal": "^1.3.0", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 99, + "literal": "^4.0.4", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.4 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 100, + "literal": "^4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 101, + "literal": "2.1.5", + "name": "@nodelib/fs.scandir", + "npm": { + "name": "@nodelib/fs.scandir", + "version": "==2.1.5", + }, + "package_id": 70, + }, + { + "behavior": { + "normal": true, + }, + "id": 102, + "literal": "^1.6.0", + "name": "fastq", + "npm": { + "name": "fastq", + "version": ">=1.6.0 <2.0.0", + }, + "package_id": 68, + }, + { + "behavior": { + "normal": true, + }, + "id": 103, + "literal": "^1.0.4", + "name": "reusify", + "npm": { + "name": "reusify", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 69, + }, + { + "behavior": { + "normal": true, + }, + "id": 104, + "literal": "2.0.5", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": "==2.0.5", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 105, + "literal": "^1.1.9", + "name": "run-parallel", + "npm": { + "name": "run-parallel", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 71, + }, + { + "behavior": { + "normal": true, + }, + "id": 106, + "literal": "^1.2.2", + "name": "queue-microtask", + "npm": { + "name": "queue-microtask", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 72, + }, + { + "behavior": { + "normal": true, + }, + "id": 107, + "literal": "~3.1.2", + "name": "anymatch", + "npm": { + "name": "anymatch", + "version": ">=3.1.2 <3.2.0", + }, + "package_id": 81, + }, + { + "behavior": { + "normal": true, + }, + "id": 108, + "literal": "~3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <3.1.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 109, + "literal": "~5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <5.2.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 110, + "literal": "~2.1.0", + "name": "is-binary-path", + "npm": { + "name": "is-binary-path", + "version": ">=2.1.0 <2.2.0", + }, + "package_id": 79, + }, + { + "behavior": { + "normal": true, + }, + "id": 111, + "literal": "~4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <4.1.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 112, + "literal": "~3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <3.1.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 113, + "literal": "~3.6.0", + "name": "readdirp", + "npm": { + "name": "readdirp", + "version": ">=3.6.0 <3.7.0", + }, + "package_id": 78, + }, + { + "behavior": { + "optional": true, + }, + "id": 114, + "literal": "~2.3.2", + "name": "fsevents", + "npm": { + "name": "fsevents", + "version": ">=2.3.2 <2.4.0", + }, + "package_id": 77, + }, + { + "behavior": { + "normal": true, + }, + "id": 115, + "literal": "^2.2.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 116, + "literal": "^2.0.0", + "name": "binary-extensions", + "npm": { + "name": "binary-extensions", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 80, + }, + { + "behavior": { + "normal": true, + }, + "id": 117, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 118, + "literal": "^2.0.4", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.0.4 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 119, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 120, + "literal": "^0.23.0", + "name": "scheduler", + "npm": { + "name": "scheduler", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 85, + }, + { + "behavior": { + "peer": true, + }, + "id": 121, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 122, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 123, + "literal": "^3.0.0 || ^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 && >=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 124, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 125, + "literal": "9.0.0", + "name": "cosmiconfig", + "npm": { + "name": "cosmiconfig", + "version": "==9.0.0", + }, + "package_id": 181, + }, + { + "behavior": { + "normal": true, + }, + "id": 126, + "literal": "22.4.1", + "name": "puppeteer-core", + "npm": { + "name": "puppeteer-core", + "version": "==22.4.1", + }, + "package_id": 170, + }, + { + "behavior": { + "normal": true, + }, + "id": 127, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 128, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 129, + "literal": "2.0.1", + "name": "extract-zip", + "npm": { + "name": "extract-zip", + "version": "==2.0.1", + }, + "package_id": 162, + }, + { + "behavior": { + "normal": true, + }, + "id": 130, + "literal": "2.0.3", + "name": "progress", + "npm": { + "name": "progress", + "version": "==2.0.3", + }, + "package_id": 161, + }, + { + "behavior": { + "normal": true, + }, + "id": 131, + "literal": "6.4.0", + "name": "proxy-agent", + "npm": { + "name": "proxy-agent", + "version": "==6.4.0", + }, + "package_id": 127, + }, + { + "behavior": { + "normal": true, + }, + "id": 132, + "literal": "3.0.5", + "name": "tar-fs", + "npm": { + "name": "tar-fs", + "version": "==3.0.5", + }, + "package_id": 115, + }, + { + "behavior": { + "normal": true, + }, + "id": 133, + "literal": "1.4.3", + "name": "unbzip2-stream", + "npm": { + "name": "unbzip2-stream", + "version": "==1.4.3", + }, + "package_id": 110, + }, + { + "behavior": { + "normal": true, + }, + "id": 134, + "literal": "17.7.2", + "name": "yargs", + "npm": { + "name": "yargs", + "version": "==17.7.2", + }, + "package_id": 94, + }, + { + "behavior": { + "normal": true, + }, + "id": 135, + "literal": "7.6.0", + "name": "semver", + "npm": { + "name": "semver", + "version": "==7.6.0", + }, + "package_id": 91, + }, + { + "behavior": { + "normal": true, + }, + "id": 136, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 137, + "literal": "^4.0.0", + "name": "yallist", + "npm": { + "name": "yallist", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 93, + }, + { + "behavior": { + "normal": true, + }, + "id": 138, + "literal": "^8.0.1", + "name": "cliui", + "npm": { + "name": "cliui", + "version": ">=8.0.1 <9.0.0", + }, + "package_id": 105, + }, + { + "behavior": { + "normal": true, + }, + "id": 139, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 140, + "literal": "^2.0.5", + "name": "get-caller-file", + "npm": { + "name": "get-caller-file", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 103, + }, + { + "behavior": { + "normal": true, + }, + "id": 141, + "literal": "^2.1.1", + "name": "require-directory", + "npm": { + "name": "require-directory", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 102, + }, + { + "behavior": { + "normal": true, + }, + "id": 142, + "literal": "^4.2.3", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.3 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 143, + "literal": "^5.0.5", + "name": "y18n", + "npm": { + "name": "y18n", + "version": ">=5.0.5 <6.0.0", + }, + "package_id": 96, + }, + { + "behavior": { + "normal": true, + }, + "id": 144, + "literal": "^21.1.1", + "name": "yargs-parser", + "npm": { + "name": "yargs-parser", + "version": ">=21.1.1 <22.0.0", + }, + "package_id": 95, + }, + { + "behavior": { + "normal": true, + }, + "id": 145, + "literal": "^8.0.0", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 101, + }, + { + "behavior": { + "normal": true, + }, + "id": 146, + "literal": "^3.0.0", + "name": "is-fullwidth-code-point", + "npm": { + "name": "is-fullwidth-code-point", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 100, + }, + { + "behavior": { + "normal": true, + }, + "id": 147, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 148, + "literal": "^5.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 99, + }, + { + "behavior": { + "normal": true, + }, + "id": 149, + "literal": "^4.2.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 150, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 151, + "literal": "^7.0.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 152, + "literal": "^4.0.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 153, + "literal": "^4.1.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 154, + "literal": "^6.0.0", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 155, + "literal": "^2.0.1", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 108, + }, + { + "behavior": { + "normal": true, + }, + "id": 156, + "literal": "~1.1.4", + "name": "color-name", + "npm": { + "name": "color-name", + "version": ">=1.1.4 <1.2.0", + }, + "package_id": 109, + }, + { + "behavior": { + "normal": true, + }, + "id": 157, + "literal": "^5.2.1", + "name": "buffer", + "npm": { + "name": "buffer", + "version": ">=5.2.1 <6.0.0", + }, + "package_id": 112, + }, + { + "behavior": { + "normal": true, + }, + "id": 158, + "literal": "^2.3.8", + "name": "through", + "npm": { + "name": "through", + "version": ">=2.3.8 <3.0.0", + }, + "package_id": 111, + }, + { + "behavior": { + "normal": true, + }, + "id": 159, + "literal": "^1.3.1", + "name": "base64-js", + "npm": { + "name": "base64-js", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 114, + }, + { + "behavior": { + "normal": true, + }, + "id": 160, + "literal": "^1.1.13", + "name": "ieee754", + "npm": { + "name": "ieee754", + "version": ">=1.1.13 <2.0.0", + }, + "package_id": 113, + }, + { + "behavior": { + "normal": true, + }, + "id": 161, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 162, + "literal": "^3.1.5", + "name": "tar-stream", + "npm": { + "name": "tar-stream", + "version": ">=3.1.5 <4.0.0", + }, + "package_id": 123, + }, + { + "behavior": { + "optional": true, + }, + "id": 163, + "literal": "^2.1.1", + "name": "bare-fs", + "npm": { + "name": "bare-fs", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 118, + }, + { + "behavior": { + "optional": true, + }, + "id": 164, + "literal": "^2.1.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 165, + "literal": "^2.1.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 166, + "literal": "^2.0.0", + "name": "bare-events", + "npm": { + "name": "bare-events", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 122, + }, + { + "behavior": { + "normal": true, + }, + "id": 167, + "literal": "^2.0.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 168, + "literal": "^2.0.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 169, + "literal": "^2.13.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 170, + "literal": "^1.1.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 171, + "literal": "^1.0.1", + "name": "queue-tick", + "npm": { + "name": "queue-tick", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 120, + }, + { + "behavior": { + "normal": true, + }, + "id": 172, + "literal": "^1.6.4", + "name": "b4a", + "npm": { + "name": "b4a", + "version": ">=1.6.4 <2.0.0", + }, + "package_id": 124, + }, + { + "behavior": { + "normal": true, + }, + "id": 173, + "literal": "^1.2.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 174, + "literal": "^2.15.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.15.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 175, + "literal": "^1.1.0", + "name": "end-of-stream", + "npm": { + "name": "end-of-stream", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 126, + }, + { + "behavior": { + "normal": true, + }, + "id": 176, + "literal": "^1.3.1", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 177, + "literal": "^1.4.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 178, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 179, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 180, + "literal": "^7.0.1", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 160, + }, + { + "behavior": { + "normal": true, + }, + "id": 181, + "literal": "^7.0.3", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.3 <8.0.0", + }, + "package_id": 159, + }, + { + "behavior": { + "normal": true, + }, + "id": 182, + "literal": "^7.14.1", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=7.14.1 <8.0.0", + }, + "package_id": 158, + }, + { + "behavior": { + "normal": true, + }, + "id": 183, + "literal": "^7.0.1", + "name": "pac-proxy-agent", + "npm": { + "name": "pac-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 136, + }, + { + "behavior": { + "normal": true, + }, + "id": 184, + "literal": "^1.1.0", + "name": "proxy-from-env", + "npm": { + "name": "proxy-from-env", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 135, + }, + { + "behavior": { + "normal": true, + }, + "id": 185, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 186, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 187, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 188, + "literal": "^2.7.1", + "name": "socks", + "npm": { + "name": "socks", + "version": ">=2.7.1 <3.0.0", + }, + "package_id": 129, + }, + { + "behavior": { + "normal": true, + }, + "id": 189, + "literal": "^2.0.0", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 131, + }, + { + "behavior": { + "normal": true, + }, + "id": 190, + "literal": "^4.2.0", + "name": "smart-buffer", + "npm": { + "name": "smart-buffer", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 130, + }, + { + "behavior": { + "normal": true, + }, + "id": 191, + "literal": "2.1.2", + "name": "ms", + "npm": { + "name": "ms", + "version": "==2.1.2", + }, + "package_id": 133, + }, + { + "behavior": { + "normal": true, + }, + "id": 192, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 193, + "literal": "^0.23.0", + "name": "@tootallnate/quickjs-emscripten", + "npm": { + "name": "@tootallnate/quickjs-emscripten", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 157, + }, + { + "behavior": { + "normal": true, + }, + "id": 194, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 195, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 196, + "literal": "^6.0.1", + "name": "get-uri", + "npm": { + "name": "get-uri", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 150, + }, + { + "behavior": { + "normal": true, + }, + "id": 197, + "literal": "^7.0.0", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 149, + }, + { + "behavior": { + "normal": true, + }, + "id": 198, + "literal": "^7.0.2", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 148, + }, + { + "behavior": { + "normal": true, + }, + "id": 199, + "literal": "^7.0.0", + "name": "pac-resolver", + "npm": { + "name": "pac-resolver", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 137, + }, + { + "behavior": { + "normal": true, + }, + "id": 200, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 201, + "literal": "^5.0.0", + "name": "degenerator", + "npm": { + "name": "degenerator", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 140, + }, + { + "behavior": { + "normal": true, + }, + "id": 202, + "literal": "^1.1.8", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=1.1.8 <2.0.0", + }, + "package_id": 139, + }, + { + "behavior": { + "normal": true, + }, + "id": 203, + "literal": "^2.0.2", + "name": "netmask", + "npm": { + "name": "netmask", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 138, + }, + { + "behavior": { + "normal": true, + }, + "id": 204, + "literal": "^0.13.4", + "name": "ast-types", + "npm": { + "name": "ast-types", + "version": ">=0.13.4 <0.14.0", + }, + "package_id": 146, + }, + { + "behavior": { + "normal": true, + }, + "id": 205, + "literal": "^2.1.0", + "name": "escodegen", + "npm": { + "name": "escodegen", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 142, + }, + { + "behavior": { + "normal": true, + }, + "id": 206, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "normal": true, + }, + "id": 207, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 208, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 209, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "optional": true, + }, + "id": 210, + "literal": "~0.6.1", + "name": "source-map", + "npm": { + "name": "source-map", + "version": ">=0.6.1 <0.7.0", + }, + "package_id": 143, + }, + { + "behavior": { + "normal": true, + }, + "id": 211, + "literal": "^2.0.1", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 212, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 213, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 214, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 215, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 216, + "literal": "^5.0.2", + "name": "basic-ftp", + "npm": { + "name": "basic-ftp", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 156, + }, + { + "behavior": { + "normal": true, + }, + "id": 217, + "literal": "^5.0.1", + "name": "data-uri-to-buffer", + "npm": { + "name": "data-uri-to-buffer", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 155, + }, + { + "behavior": { + "normal": true, + }, + "id": 218, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 219, + "literal": "^8.1.0", + "name": "fs-extra", + "npm": { + "name": "fs-extra", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 151, + }, + { + "behavior": { + "normal": true, + }, + "id": 220, + "literal": "^4.2.0", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 221, + "literal": "^4.0.0", + "name": "jsonfile", + "npm": { + "name": "jsonfile", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 153, + }, + { + "behavior": { + "normal": true, + }, + "id": 222, + "literal": "^0.1.0", + "name": "universalify", + "npm": { + "name": "universalify", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 152, + }, + { + "behavior": { + "optional": true, + }, + "id": 223, + "literal": "^4.1.6", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.1.6 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 224, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 225, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 226, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 227, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 228, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 229, + "literal": "^5.1.0", + "name": "get-stream", + "npm": { + "name": "get-stream", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 169, + }, + { + "behavior": { + "normal": true, + }, + "id": 230, + "literal": "^2.10.0", + "name": "yauzl", + "npm": { + "name": "yauzl", + "version": ">=2.10.0 <3.0.0", + }, + "package_id": 165, + }, + { + "behavior": { + "optional": true, + }, + "id": 231, + "literal": "^2.9.1", + "name": "@types/yauzl", + "npm": { + "name": "@types/yauzl", + "version": ">=2.9.1 <3.0.0", + }, + "package_id": 163, + }, + { + "behavior": { + "normal": true, + }, + "id": 232, + "literal": "*", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": ">=0.0.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 233, + "literal": "~1.1.0", + "name": "fd-slicer", + "npm": { + "name": "fd-slicer", + "version": ">=1.1.0 <1.2.0", + }, + "package_id": 167, + }, + { + "behavior": { + "normal": true, + }, + "id": 234, + "literal": "~0.2.3", + "name": "buffer-crc32", + "npm": { + "name": "buffer-crc32", + "version": ">=0.2.3 <0.3.0", + }, + "package_id": 166, + }, + { + "behavior": { + "normal": true, + }, + "id": 235, + "literal": "~1.2.0", + "name": "pend", + "npm": { + "name": "pend", + "version": ">=1.2.0 <1.3.0", + }, + "package_id": 168, + }, + { + "behavior": { + "normal": true, + }, + "id": 236, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 237, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 238, + "literal": "0.5.12", + "name": "chromium-bidi", + "npm": { + "name": "chromium-bidi", + "version": "==0.5.12", + }, + "package_id": 178, + }, + { + "behavior": { + "normal": true, + }, + "id": 239, + "literal": "4.0.0", + "name": "cross-fetch", + "npm": { + "name": "cross-fetch", + "version": "==4.0.0", + }, + "package_id": 173, + }, + { + "behavior": { + "normal": true, + }, + "id": 240, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 241, + "literal": "0.0.1249869", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": "==0.0.1249869", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 242, + "literal": "8.16.0", + "name": "ws", + "npm": { + "name": "ws", + "version": "==8.16.0", + }, + "package_id": 171, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 243, + "literal": "^4.0.1", + "name": "bufferutil", + "npm": { + "name": "bufferutil", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 244, + "literal": ">=5.0.2", + "name": "utf-8-validate", + "npm": { + "name": "utf-8-validate", + "version": ">=5.0.2", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 245, + "literal": "^2.6.12", + "name": "node-fetch", + "npm": { + "name": "node-fetch", + "version": ">=2.6.12 <3.0.0", + }, + "package_id": 174, + }, + { + "behavior": { + "normal": true, + }, + "id": 246, + "literal": "^5.0.0", + "name": "whatwg-url", + "npm": { + "name": "whatwg-url", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 175, + }, + { + "behavior": { + "peer": true, + }, + "id": 247, + "literal": "^0.1.0", + "name": "encoding", + "npm": { + "name": "encoding", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 248, + "literal": "~0.0.3", + "name": "tr46", + "npm": { + "name": "tr46", + "version": ">=0.0.3 <0.1.0", + }, + "package_id": 177, + }, + { + "behavior": { + "normal": true, + }, + "id": 249, + "literal": "^3.0.0", + "name": "webidl-conversions", + "npm": { + "name": "webidl-conversions", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 176, + }, + { + "behavior": { + "normal": true, + }, + "id": 250, + "literal": "3.0.1", + "name": "mitt", + "npm": { + "name": "mitt", + "version": "==3.0.1", + }, + "package_id": 180, + }, + { + "behavior": { + "normal": true, + }, + "id": 251, + "literal": "10.0.0", + "name": "urlpattern-polyfill", + "npm": { + "name": "urlpattern-polyfill", + "version": "==10.0.0", + }, + "package_id": 179, + }, + { + "behavior": { + "peer": true, + }, + "id": 252, + "literal": "*", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": ">=0.0.0", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 253, + "literal": "^2.2.1", + "name": "env-paths", + "npm": { + "name": "env-paths", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 202, + }, + { + "behavior": { + "normal": true, + }, + "id": 254, + "literal": "^3.3.0", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 255, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 256, + "literal": "^5.2.0", + "name": "parse-json", + "npm": { + "name": "parse-json", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 182, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 257, + "literal": ">=4.9.5", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.9.5", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 258, + "literal": "^7.0.0", + "name": "@babel/code-frame", + "npm": { + "name": "@babel/code-frame", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 186, + }, + { + "behavior": { + "normal": true, + }, + "id": 259, + "literal": "^1.3.1", + "name": "error-ex", + "npm": { + "name": "error-ex", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 184, + }, + { + "behavior": { + "normal": true, + }, + "id": 260, + "literal": "^2.3.0", + "name": "json-parse-even-better-errors", + "npm": { + "name": "json-parse-even-better-errors", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 183, + }, + { + "behavior": { + "normal": true, + }, + "id": 261, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 262, + "literal": "^0.2.1", + "name": "is-arrayish", + "npm": { + "name": "is-arrayish", + "version": ">=0.2.1 <0.3.0", + }, + "package_id": 185, + }, + { + "behavior": { + "normal": true, + }, + "id": 263, + "literal": "^7.22.13", + "name": "@babel/highlight", + "npm": { + "name": "@babel/highlight", + "version": ">=7.22.13 <8.0.0", + }, + "package_id": 194, + }, + { + "behavior": { + "normal": true, + }, + "id": 264, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 265, + "literal": "^3.2.1", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 191, + }, + { + "behavior": { + "normal": true, + }, + "id": 266, + "literal": "^1.0.5", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 190, + }, + { + "behavior": { + "normal": true, + }, + "id": 267, + "literal": "^5.3.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 188, + }, + { + "behavior": { + "normal": true, + }, + "id": 268, + "literal": "^3.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 189, + }, + { + "behavior": { + "normal": true, + }, + "id": 269, + "literal": "^1.9.0", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 192, + }, + { + "behavior": { + "normal": true, + }, + "id": 270, + "literal": "1.1.3", + "name": "color-name", + "npm": { + "name": "color-name", + "version": "==1.1.3", + }, + "package_id": 193, + }, + { + "behavior": { + "normal": true, + }, + "id": 271, + "literal": "^7.22.20", + "name": "@babel/helper-validator-identifier", + "npm": { + "name": "@babel/helper-validator-identifier", + "version": ">=7.22.20 <8.0.0", + }, + "package_id": 195, + }, + { + "behavior": { + "normal": true, + }, + "id": 272, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 273, + "literal": "^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 274, + "literal": "^2.0.1", + "name": "argparse", + "npm": { + "name": "argparse", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 197, + }, + { + "behavior": { + "normal": true, + }, + "id": 275, + "literal": "^1.0.0", + "name": "parent-module", + "npm": { + "name": "parent-module", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 200, + }, + { + "behavior": { + "normal": true, + }, + "id": 276, + "literal": "^4.0.0", + "name": "resolve-from", + "npm": { + "name": "resolve-from", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 199, + }, + { + "behavior": { + "normal": true, + }, + "id": 277, + "literal": "^3.0.0", + "name": "callsites", + "npm": { + "name": "callsites", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 201, + }, + { + "behavior": { + "normal": true, + }, + "id": 278, + "literal": "14.1.3", + "name": "@next/env", + "npm": { + "name": "@next/env", + "version": "==14.1.3", + }, + "package_id": 220, + }, + { + "behavior": { + "normal": true, + }, + "id": 279, + "literal": "0.5.2", + "name": "@swc/helpers", + "npm": { + "name": "@swc/helpers", + "version": "==0.5.2", + }, + "package_id": 219, + }, + { + "behavior": { + "normal": true, + }, + "id": 280, + "literal": "1.6.0", + "name": "busboy", + "npm": { + "name": "busboy", + "version": "==1.6.0", + }, + "package_id": 217, + }, + { + "behavior": { + "normal": true, + }, + "id": 281, + "literal": "^1.0.30001579", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001579 <2.0.0", + }, + "package_id": 216, + }, + { + "behavior": { + "normal": true, + }, + "id": 282, + "literal": "^4.2.11", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.11 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 283, + "literal": "8.4.31", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.31", + }, + "package_id": 215, + }, + { + "behavior": { + "normal": true, + }, + "id": 284, + "literal": "5.1.1", + "name": "styled-jsx", + "npm": { + "name": "styled-jsx", + "version": "==5.1.1", + }, + "package_id": 213, + }, + { + "behavior": { + "optional": true, + }, + "id": 285, + "literal": "14.1.3", + "name": "@next/swc-darwin-arm64", + "npm": { + "name": "@next/swc-darwin-arm64", + "version": "==14.1.3", + }, + "package_id": 212, + }, + { + "behavior": { + "optional": true, + }, + "id": 286, + "literal": "14.1.3", + "name": "@next/swc-darwin-x64", + "npm": { + "name": "@next/swc-darwin-x64", + "version": "==14.1.3", + }, + "package_id": 211, + }, + { + "behavior": { + "optional": true, + }, + "id": 287, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-gnu", + "npm": { + "name": "@next/swc-linux-arm64-gnu", + "version": "==14.1.3", + }, + "package_id": 210, + }, + { + "behavior": { + "optional": true, + }, + "id": 288, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-musl", + "npm": { + "name": "@next/swc-linux-arm64-musl", + "version": "==14.1.3", + }, + "package_id": 209, + }, + { + "behavior": { + "optional": true, + }, + "id": 289, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-gnu", + "npm": { + "name": "@next/swc-linux-x64-gnu", + "version": "==14.1.3", + }, + "package_id": 208, + }, + { + "behavior": { + "optional": true, + }, + "id": 290, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-musl", + "npm": { + "name": "@next/swc-linux-x64-musl", + "version": "==14.1.3", + }, + "package_id": 207, + }, + { + "behavior": { + "optional": true, + }, + "id": 291, + "literal": "14.1.3", + "name": "@next/swc-win32-arm64-msvc", + "npm": { + "name": "@next/swc-win32-arm64-msvc", + "version": "==14.1.3", + }, + "package_id": 206, + }, + { + "behavior": { + "optional": true, + }, + "id": 292, + "literal": "14.1.3", + "name": "@next/swc-win32-ia32-msvc", + "npm": { + "name": "@next/swc-win32-ia32-msvc", + "version": "==14.1.3", + }, + "package_id": 205, + }, + { + "behavior": { + "optional": true, + }, + "id": 293, + "literal": "14.1.3", + "name": "@next/swc-win32-x64-msvc", + "npm": { + "name": "@next/swc-win32-x64-msvc", + "version": "==14.1.3", + }, + "package_id": 204, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 294, + "literal": "^1.1.0", + "name": "@opentelemetry/api", + "npm": { + "name": "@opentelemetry/api", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 295, + "literal": "^1.3.0", + "name": "sass", + "npm": { + "name": "sass", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 296, + "literal": "^18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 84, + }, + { + "behavior": { + "peer": true, + }, + "id": 297, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 298, + "literal": "0.0.1", + "name": "client-only", + "npm": { + "name": "client-only", + "version": "==0.0.1", + }, + "package_id": 214, + }, + { + "behavior": { + "peer": true, + }, + "id": 299, + "literal": ">= 16.8.0 || 17.x.x || ^18.0.0-0", + "name": "react", + "npm": { + "name": "react", + "version": ">=16.8.0 || <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && >=18.0.0-0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 300, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 301, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 302, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 303, + "literal": "^1.1.0", + "name": "streamsearch", + "npm": { + "name": "streamsearch", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 218, + }, + { + "behavior": { + "normal": true, + }, + "id": 304, + "literal": "^2.4.0", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.4.0 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 305, + "literal": "14.1.3", + "name": "@next/eslint-plugin-next", + "npm": { + "name": "@next/eslint-plugin-next", + "version": "==14.1.3", + }, + "package_id": 413, + }, + { + "behavior": { + "normal": true, + }, + "id": 306, + "literal": "^1.3.3", + "name": "@rushstack/eslint-patch", + "npm": { + "name": "@rushstack/eslint-patch", + "version": ">=1.3.3 <2.0.0", + }, + "package_id": 412, + }, + { + "behavior": { + "normal": true, + }, + "id": 307, + "literal": "^5.4.2 || ^6.0.0", + "name": "@typescript-eslint/parser", + "npm": { + "name": "@typescript-eslint/parser", + "version": ">=5.4.2 <6.0.0 || >=6.0.0 <7.0.0 && >=6.0.0 <7.0.0", + }, + "package_id": 400, + }, + { + "behavior": { + "normal": true, + }, + "id": 308, + "literal": "^0.3.6", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.6 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 309, + "literal": "^3.5.2", + "name": "eslint-import-resolver-typescript", + "npm": { + "name": "eslint-import-resolver-typescript", + "version": ">=3.5.2 <4.0.0", + }, + "package_id": 395, + }, + { + "behavior": { + "normal": true, + }, + "id": 310, + "literal": "^2.28.1", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=2.28.1 <3.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 311, + "literal": "^6.7.1", + "name": "eslint-plugin-jsx-a11y", + "npm": { + "name": "eslint-plugin-jsx-a11y", + "version": ">=6.7.1 <7.0.0", + }, + "package_id": 371, + }, + { + "behavior": { + "normal": true, + }, + "id": 312, + "literal": "^7.33.2", + "name": "eslint-plugin-react", + "npm": { + "name": "eslint-plugin-react", + "version": ">=7.33.2 <8.0.0", + }, + "package_id": 287, + }, + { + "behavior": { + "normal": true, + }, + "id": 313, + "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", + "name": "eslint-plugin-react-hooks", + "npm": { + "name": "eslint-plugin-react-hooks", + "version": ">=4.5.0 <5.0.0 || ==5.0.0-canary-7118f5dd7-20230705 && ==5.0.0-canary-7118f5dd7-20230705", + }, + "package_id": 286, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 314, + "literal": ">=3.3.1", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=3.3.1", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 315, + "literal": "^7.23.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.23.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 316, + "literal": "^4.2.0", + "name": "@eslint-community/eslint-utils", + "npm": { + "name": "@eslint-community/eslint-utils", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 285, + }, + { + "behavior": { + "normal": true, + }, + "id": 317, + "literal": "^4.6.1", + "name": "@eslint-community/regexpp", + "npm": { + "name": "@eslint-community/regexpp", + "version": ">=4.6.1 <5.0.0", + }, + "package_id": 284, + }, + { + "behavior": { + "normal": true, + }, + "id": 318, + "literal": "^2.1.2", + "name": "@eslint/eslintrc", + "npm": { + "name": "@eslint/eslintrc", + "version": ">=2.1.2 <3.0.0", + }, + "package_id": 282, + }, + { + "behavior": { + "normal": true, + }, + "id": 319, + "literal": "8.50.0", + "name": "@eslint/js", + "npm": { + "name": "@eslint/js", + "version": "==8.50.0", + }, + "package_id": 281, + }, + { + "behavior": { + "normal": true, + }, + "id": 320, + "literal": "^0.11.11", + "name": "@humanwhocodes/config-array", + "npm": { + "name": "@humanwhocodes/config-array", + "version": ">=0.11.11 <0.12.0", + }, + "package_id": 279, + }, + { + "behavior": { + "normal": true, + }, + "id": 321, + "literal": "^1.0.1", + "name": "@humanwhocodes/module-importer", + "npm": { + "name": "@humanwhocodes/module-importer", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 278, + }, + { + "behavior": { + "normal": true, + }, + "id": 322, + "literal": "^1.2.8", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 323, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 324, + "literal": "^4.0.0", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 270, + }, + { + "behavior": { + "normal": true, + }, + "id": 325, + "literal": "^7.0.2", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 326, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 327, + "literal": "^3.0.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 263, + }, + { + "behavior": { + "normal": true, + }, + "id": 328, + "literal": "^4.0.0", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 262, + }, + { + "behavior": { + "normal": true, + }, + "id": 329, + "literal": "^7.2.2", + "name": "eslint-scope", + "npm": { + "name": "eslint-scope", + "version": ">=7.2.2 <8.0.0", + }, + "package_id": 260, + }, + { + "behavior": { + "normal": true, + }, + "id": 330, + "literal": "^3.4.3", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.3 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 331, + "literal": "^9.6.1", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.1 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 332, + "literal": "^1.4.2", + "name": "esquery", + "npm": { + "name": "esquery", + "version": ">=1.4.2 <2.0.0", + }, + "package_id": 255, + }, + { + "behavior": { + "normal": true, + }, + "id": 333, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 334, + "literal": "^3.1.3", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.3 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 335, + "literal": "^6.0.1", + "name": "file-entry-cache", + "npm": { + "name": "file-entry-cache", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 247, + }, + { + "behavior": { + "normal": true, + }, + "id": 336, + "literal": "^5.0.0", + "name": "find-up", + "npm": { + "name": "find-up", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 241, + }, + { + "behavior": { + "normal": true, + }, + "id": 337, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 338, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 339, + "literal": "^1.4.0", + "name": "graphemer", + "npm": { + "name": "graphemer", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 238, + }, + { + "behavior": { + "normal": true, + }, + "id": 340, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 341, + "literal": "^0.1.4", + "name": "imurmurhash", + "npm": { + "name": "imurmurhash", + "version": ">=0.1.4 <0.2.0", + }, + "package_id": 236, + }, + { + "behavior": { + "normal": true, + }, + "id": 342, + "literal": "^4.0.0", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 343, + "literal": "^3.0.3", + "name": "is-path-inside", + "npm": { + "name": "is-path-inside", + "version": ">=3.0.3 <4.0.0", + }, + "package_id": 235, + }, + { + "behavior": { + "normal": true, + }, + "id": 344, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 345, + "literal": "^1.0.1", + "name": "json-stable-stringify-without-jsonify", + "npm": { + "name": "json-stable-stringify-without-jsonify", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 234, + }, + { + "behavior": { + "normal": true, + }, + "id": 346, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 347, + "literal": "^4.6.2", + "name": "lodash.merge", + "npm": { + "name": "lodash.merge", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 233, + }, + { + "behavior": { + "normal": true, + }, + "id": 348, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 349, + "literal": "^1.4.0", + "name": "natural-compare", + "npm": { + "name": "natural-compare", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 231, + }, + { + "behavior": { + "normal": true, + }, + "id": 350, + "literal": "^0.9.3", + "name": "optionator", + "npm": { + "name": "optionator", + "version": ">=0.9.3 <0.10.0", + }, + "package_id": 224, + }, + { + "behavior": { + "normal": true, + }, + "id": 351, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 352, + "literal": "^0.2.0", + "name": "text-table", + "npm": { + "name": "text-table", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 223, + }, + { + "behavior": { + "normal": true, + }, + "id": 353, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 354, + "literal": "^0.1.3", + "name": "deep-is", + "npm": { + "name": "deep-is", + "version": ">=0.1.3 <0.2.0", + }, + "package_id": 230, + }, + { + "behavior": { + "normal": true, + }, + "id": 355, + "literal": "^1.2.3", + "name": "@aashutoshrathi/word-wrap", + "npm": { + "name": "@aashutoshrathi/word-wrap", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 229, + }, + { + "behavior": { + "normal": true, + }, + "id": 356, + "literal": "^0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 357, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 358, + "literal": "^2.0.6", + "name": "fast-levenshtein", + "npm": { + "name": "fast-levenshtein", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 225, + }, + { + "behavior": { + "normal": true, + }, + "id": 359, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 360, + "literal": "~0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 361, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 362, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 363, + "literal": "^0.20.2", + "name": "type-fest", + "npm": { + "name": "type-fest", + "version": ">=0.20.2 <0.21.0", + }, + "package_id": 240, + }, + { + "behavior": { + "normal": true, + }, + "id": 364, + "literal": "^6.0.0", + "name": "locate-path", + "npm": { + "name": "locate-path", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 243, + }, + { + "behavior": { + "normal": true, + }, + "id": 365, + "literal": "^4.0.0", + "name": "path-exists", + "npm": { + "name": "path-exists", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 242, + }, + { + "behavior": { + "normal": true, + }, + "id": 366, + "literal": "^5.0.0", + "name": "p-locate", + "npm": { + "name": "p-locate", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 244, + }, + { + "behavior": { + "normal": true, + }, + "id": 367, + "literal": "^3.0.2", + "name": "p-limit", + "npm": { + "name": "p-limit", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 245, + }, + { + "behavior": { + "normal": true, + }, + "id": 368, + "literal": "^0.1.0", + "name": "yocto-queue", + "npm": { + "name": "yocto-queue", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 246, + }, + { + "behavior": { + "normal": true, + }, + "id": 369, + "literal": "^3.0.4", + "name": "flat-cache", + "npm": { + "name": "flat-cache", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 248, + }, + { + "behavior": { + "normal": true, + }, + "id": 370, + "literal": "^3.2.7", + "name": "flatted", + "npm": { + "name": "flatted", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 253, + }, + { + "behavior": { + "normal": true, + }, + "id": 371, + "literal": "^4.5.3", + "name": "keyv", + "npm": { + "name": "keyv", + "version": ">=4.5.3 <5.0.0", + }, + "package_id": 251, + }, + { + "behavior": { + "normal": true, + }, + "id": 372, + "literal": "^3.0.2", + "name": "rimraf", + "npm": { + "name": "rimraf", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 249, + }, + { + "behavior": { + "normal": true, + }, + "id": 373, + "literal": "^7.1.3", + "name": "glob", + "npm": { + "name": "glob", + "version": ">=7.1.3 <8.0.0", + }, + "package_id": 250, + }, + { + "behavior": { + "normal": true, + }, + "id": 374, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 375, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 376, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 377, + "literal": "^3.1.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 378, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 379, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 380, + "literal": "3.0.1", + "name": "json-buffer", + "npm": { + "name": "json-buffer", + "version": "==3.0.1", + }, + "package_id": 252, + }, + { + "behavior": { + "normal": true, + }, + "id": 381, + "literal": "^5.1.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 382, + "literal": "^8.9.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=8.9.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 383, + "literal": "^5.3.2", + "name": "acorn-jsx", + "npm": { + "name": "acorn-jsx", + "version": ">=5.3.2 <6.0.0", + }, + "package_id": 258, + }, + { + "behavior": { + "normal": true, + }, + "id": 384, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 385, + "literal": "^6.0.0 || ^7.0.0 || ^8.0.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 386, + "literal": "^4.3.0", + "name": "esrecurse", + "npm": { + "name": "esrecurse", + "version": ">=4.3.0 <5.0.0", + }, + "package_id": 261, + }, + { + "behavior": { + "normal": true, + }, + "id": 387, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 388, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 389, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 390, + "literal": "^3.1.0", + "name": "path-key", + "npm": { + "name": "path-key", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 269, + }, + { + "behavior": { + "normal": true, + }, + "id": 391, + "literal": "^2.0.0", + "name": "shebang-command", + "npm": { + "name": "shebang-command", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 267, + }, + { + "behavior": { + "normal": true, + }, + "id": 392, + "literal": "^2.0.1", + "name": "which", + "npm": { + "name": "which", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 265, + }, + { + "behavior": { + "normal": true, + }, + "id": 393, + "literal": "^2.0.0", + "name": "isexe", + "npm": { + "name": "isexe", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 266, + }, + { + "behavior": { + "normal": true, + }, + "id": 394, + "literal": "^3.0.0", + "name": "shebang-regex", + "npm": { + "name": "shebang-regex", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 268, + }, + { + "behavior": { + "normal": true, + }, + "id": 395, + "literal": "^4.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 396, + "literal": "^7.1.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 271, + }, + { + "behavior": { + "normal": true, + }, + "id": 397, + "literal": "^4.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 272, + }, + { + "behavior": { + "normal": true, + }, + "id": 398, + "literal": "^3.1.1", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 399, + "literal": "^2.0.0", + "name": "fast-json-stable-stringify", + "npm": { + "name": "fast-json-stable-stringify", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 277, + }, + { + "behavior": { + "normal": true, + }, + "id": 400, + "literal": "^0.4.1", + "name": "json-schema-traverse", + "npm": { + "name": "json-schema-traverse", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 276, + }, + { + "behavior": { + "normal": true, + }, + "id": 401, + "literal": "^4.2.2", + "name": "uri-js", + "npm": { + "name": "uri-js", + "version": ">=4.2.2 <5.0.0", + }, + "package_id": 274, + }, + { + "behavior": { + "normal": true, + }, + "id": 402, + "literal": "^2.1.0", + "name": "punycode", + "npm": { + "name": "punycode", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 275, + }, + { + "behavior": { + "normal": true, + }, + "id": 403, + "literal": "^1.2.1", + "name": "@humanwhocodes/object-schema", + "npm": { + "name": "@humanwhocodes/object-schema", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 280, + }, + { + "behavior": { + "normal": true, + }, + "id": 404, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 405, + "literal": "^3.0.5", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.5 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 406, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 407, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 408, + "literal": "^9.6.0", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.0 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 409, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 410, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 411, + "literal": "^3.2.1", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 412, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 413, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 414, + "literal": "^3.1.1", + "name": "strip-json-comments", + "npm": { + "name": "strip-json-comments", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 283, + }, + { + "behavior": { + "normal": true, + }, + "id": 415, + "literal": "^3.3.0", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 416, + "literal": "^6.0.0 || ^7.0.0 || >=8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 && >=8.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 417, + "literal": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=8.0.0-0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 418, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 419, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 420, + "literal": "^1.1.1", + "name": "array.prototype.tosorted", + "npm": { + "name": "array.prototype.tosorted", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 369, + }, + { + "behavior": { + "normal": true, + }, + "id": 421, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 422, + "literal": "^1.0.12", + "name": "es-iterator-helpers", + "npm": { + "name": "es-iterator-helpers", + "version": ">=1.0.12 <2.0.0", + }, + "package_id": 355, + }, + { + "behavior": { + "normal": true, + }, + "id": 423, + "literal": "^5.3.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 424, + "literal": "^2.4.1 || ^3.0.0", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=2.4.1 <3.0.0 || >=3.0.0 <4.0.0 && >=3.0.0 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 425, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 426, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 427, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 428, + "literal": "^1.1.2", + "name": "object.hasown", + "npm": { + "name": "object.hasown", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 348, + }, + { + "behavior": { + "normal": true, + }, + "id": 429, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 430, + "literal": "^15.8.1", + "name": "prop-types", + "npm": { + "name": "prop-types", + "version": ">=15.8.1 <16.0.0", + }, + "package_id": 345, + }, + { + "behavior": { + "normal": true, + }, + "id": 431, + "literal": "^2.0.0-next.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=2.0.0-next.4 <3.0.0", + }, + "package_id": 344, + }, + { + "behavior": { + "normal": true, + }, + "id": 432, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 433, + "literal": "^4.0.8", + "name": "string.prototype.matchall", + "npm": { + "name": "string.prototype.matchall", + "version": ">=4.0.8 <5.0.0", + }, + "package_id": 288, + }, + { + "behavior": { + "peer": true, + }, + "id": 434, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 435, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 436, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 437, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 438, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 439, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 440, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 441, + "literal": "^1.5.0", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.0 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 442, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 443, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 444, + "literal": "^1.0.0", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 445, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 446, + "literal": "^1.9.0", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 447, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 448, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 449, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 450, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 451, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 452, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 453, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 454, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 455, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 456, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 457, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 458, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 459, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 460, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 461, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 462, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 463, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 464, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 465, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 466, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 467, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 468, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 469, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 470, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 471, + "literal": "^1.0.2", + "name": "arraybuffer.prototype.slice", + "npm": { + "name": "arraybuffer.prototype.slice", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 341, + }, + { + "behavior": { + "normal": true, + }, + "id": 472, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 473, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 474, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 475, + "literal": "^1.2.1", + "name": "es-to-primitive", + "npm": { + "name": "es-to-primitive", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 338, + }, + { + "behavior": { + "normal": true, + }, + "id": 476, + "literal": "^1.1.6", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 477, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 478, + "literal": "^1.0.0", + "name": "get-symbol-description", + "npm": { + "name": "get-symbol-description", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 336, + }, + { + "behavior": { + "normal": true, + }, + "id": 479, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 480, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 481, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 482, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 483, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 484, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 485, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 486, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 487, + "literal": "^1.2.7", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.2.7 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 488, + "literal": "^2.0.2", + "name": "is-negative-zero", + "npm": { + "name": "is-negative-zero", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 333, + }, + { + "behavior": { + "normal": true, + }, + "id": 489, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 490, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 491, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 492, + "literal": "^1.1.12", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.12 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 493, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 494, + "literal": "^1.12.3", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.12.3 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 495, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 496, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 497, + "literal": "^1.5.1", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.1 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 498, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 499, + "literal": "^1.0.0", + "name": "safe-regex-test", + "npm": { + "name": "safe-regex-test", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 326, + }, + { + "behavior": { + "normal": true, + }, + "id": 500, + "literal": "^1.2.8", + "name": "string.prototype.trim", + "npm": { + "name": "string.prototype.trim", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 325, + }, + { + "behavior": { + "normal": true, + }, + "id": 501, + "literal": "^1.0.7", + "name": "string.prototype.trimend", + "npm": { + "name": "string.prototype.trimend", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 324, + }, + { + "behavior": { + "normal": true, + }, + "id": 502, + "literal": "^1.0.7", + "name": "string.prototype.trimstart", + "npm": { + "name": "string.prototype.trimstart", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 323, + }, + { + "behavior": { + "normal": true, + }, + "id": 503, + "literal": "^1.0.0", + "name": "typed-array-buffer", + "npm": { + "name": "typed-array-buffer", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 322, + }, + { + "behavior": { + "normal": true, + }, + "id": 504, + "literal": "^1.0.0", + "name": "typed-array-byte-length", + "npm": { + "name": "typed-array-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 321, + }, + { + "behavior": { + "normal": true, + }, + "id": 505, + "literal": "^1.0.0", + "name": "typed-array-byte-offset", + "npm": { + "name": "typed-array-byte-offset", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 320, + }, + { + "behavior": { + "normal": true, + }, + "id": 506, + "literal": "^1.0.4", + "name": "typed-array-length", + "npm": { + "name": "typed-array-length", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 318, + }, + { + "behavior": { + "normal": true, + }, + "id": 507, + "literal": "^1.0.2", + "name": "unbox-primitive", + "npm": { + "name": "unbox-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 310, + }, + { + "behavior": { + "normal": true, + }, + "id": 508, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 509, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 510, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 511, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 512, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 513, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 514, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 515, + "literal": "^1.1.3", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 516, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 517, + "literal": "^1.0.2", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 518, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 519, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 520, + "literal": "^1.0.1", + "name": "is-bigint", + "npm": { + "name": "is-bigint", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 316, + }, + { + "behavior": { + "normal": true, + }, + "id": 521, + "literal": "^1.1.0", + "name": "is-boolean-object", + "npm": { + "name": "is-boolean-object", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 315, + }, + { + "behavior": { + "normal": true, + }, + "id": 522, + "literal": "^1.0.4", + "name": "is-number-object", + "npm": { + "name": "is-number-object", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 314, + }, + { + "behavior": { + "normal": true, + }, + "id": 523, + "literal": "^1.0.5", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 524, + "literal": "^1.0.3", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 525, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 526, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 527, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 528, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 529, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 530, + "literal": "^1.0.1", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 531, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 532, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 533, + "literal": "^1.1.9", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 534, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 535, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 536, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 537, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 538, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 539, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 540, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 541, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 542, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 543, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 544, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 545, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 546, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 547, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 548, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 549, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 550, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 551, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 552, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 553, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 554, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 555, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 556, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 557, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 558, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 559, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 560, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 561, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 562, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 563, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 564, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 565, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 566, + "literal": "^1.1.4", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 567, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 568, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 569, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 570, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 571, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 572, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 573, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 574, + "literal": "^1.1.3", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 575, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 576, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 577, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 578, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 579, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 580, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 581, + "literal": "^1.1.4", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 582, + "literal": "^1.0.1", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 583, + "literal": "^1.0.2", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 584, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 585, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 586, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 587, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 588, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 589, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 590, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 591, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 592, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 593, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 594, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 595, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 596, + "literal": "^3.0.1", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 597, + "literal": "^2.9.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.9.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 598, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 599, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 600, + "literal": "^1.4.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 601, + "literal": "^4.1.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 602, + "literal": "^16.13.1", + "name": "react-is", + "npm": { + "name": "react-is", + "version": ">=16.13.1 <17.0.0", + }, + "package_id": 346, + }, + { + "behavior": { + "normal": true, + }, + "id": 603, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 604, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 605, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 606, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 607, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 608, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 609, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 610, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 611, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 612, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 613, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 614, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 615, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 616, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 617, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 618, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 619, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 620, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 621, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 622, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 623, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 624, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 625, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 626, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 627, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 628, + "literal": "^1.0.0", + "name": "asynciterator.prototype", + "npm": { + "name": "asynciterator.prototype", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 367, + }, + { + "behavior": { + "normal": true, + }, + "id": 629, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 630, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 631, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 632, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 633, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 634, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 635, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 636, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 637, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 638, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 639, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 640, + "literal": "^1.1.2", + "name": "iterator.prototype", + "npm": { + "name": "iterator.prototype", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 356, + }, + { + "behavior": { + "normal": true, + }, + "id": 641, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 642, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 643, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 644, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 645, + "literal": "^1.0.4", + "name": "reflect.getprototypeof", + "npm": { + "name": "reflect.getprototypeof", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 357, + }, + { + "behavior": { + "normal": true, + }, + "id": 646, + "literal": "^2.0.1", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 647, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 648, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 649, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 650, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 651, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 652, + "literal": "^1.1.3", + "name": "which-builtin-type", + "npm": { + "name": "which-builtin-type", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 358, + }, + { + "behavior": { + "normal": true, + }, + "id": 653, + "literal": "^1.1.5", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.5 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 654, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 655, + "literal": "^2.0.0", + "name": "is-async-function", + "npm": { + "name": "is-async-function", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 366, + }, + { + "behavior": { + "normal": true, + }, + "id": 656, + "literal": "^1.0.5", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 657, + "literal": "^1.0.2", + "name": "is-finalizationregistry", + "npm": { + "name": "is-finalizationregistry", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 365, + }, + { + "behavior": { + "normal": true, + }, + "id": 658, + "literal": "^1.0.10", + "name": "is-generator-function", + "npm": { + "name": "is-generator-function", + "version": ">=1.0.10 <2.0.0", + }, + "package_id": 364, + }, + { + "behavior": { + "normal": true, + }, + "id": 659, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 660, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 661, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 662, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 663, + "literal": "^1.0.1", + "name": "which-collection", + "npm": { + "name": "which-collection", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 359, + }, + { + "behavior": { + "normal": true, + }, + "id": 664, + "literal": "^1.1.9", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 665, + "literal": "^2.0.1", + "name": "is-map", + "npm": { + "name": "is-map", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 363, + }, + { + "behavior": { + "normal": true, + }, + "id": 666, + "literal": "^2.0.1", + "name": "is-set", + "npm": { + "name": "is-set", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 362, + }, + { + "behavior": { + "normal": true, + }, + "id": 667, + "literal": "^2.0.1", + "name": "is-weakmap", + "npm": { + "name": "is-weakmap", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 361, + }, + { + "behavior": { + "normal": true, + }, + "id": 668, + "literal": "^2.0.1", + "name": "is-weakset", + "npm": { + "name": "is-weakset", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 360, + }, + { + "behavior": { + "normal": true, + }, + "id": 669, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 670, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 671, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 672, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 673, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 674, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 675, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 676, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 677, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 678, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 679, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 680, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 681, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 682, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 683, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 684, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 685, + "literal": "^7.20.7", + "name": "@babel/runtime", + "npm": { + "name": "@babel/runtime", + "version": ">=7.20.7 <8.0.0", + }, + "package_id": 381, + }, + { + "behavior": { + "normal": true, + }, + "id": 686, + "literal": "^5.1.3", + "name": "aria-query", + "npm": { + "name": "aria-query", + "version": ">=5.1.3 <6.0.0", + }, + "package_id": 380, + }, + { + "behavior": { + "normal": true, + }, + "id": 687, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 688, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 689, + "literal": "^0.0.7", + "name": "ast-types-flow", + "npm": { + "name": "ast-types-flow", + "version": ">=0.0.7 <0.0.8", + }, + "package_id": 379, + }, + { + "behavior": { + "normal": true, + }, + "id": 690, + "literal": "^4.6.2", + "name": "axe-core", + "npm": { + "name": "axe-core", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 378, + }, + { + "behavior": { + "normal": true, + }, + "id": 691, + "literal": "^3.1.1", + "name": "axobject-query", + "npm": { + "name": "axobject-query", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 376, + }, + { + "behavior": { + "normal": true, + }, + "id": 692, + "literal": "^1.0.8", + "name": "damerau-levenshtein", + "npm": { + "name": "damerau-levenshtein", + "version": ">=1.0.8 <2.0.0", + }, + "package_id": 375, + }, + { + "behavior": { + "normal": true, + }, + "id": 693, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 694, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 695, + "literal": "^3.3.3", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=3.3.3 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 696, + "literal": "=1.0.5", + "name": "language-tags", + "npm": { + "name": "language-tags", + "version": "==1.0.5", + }, + "package_id": 372, + }, + { + "behavior": { + "normal": true, + }, + "id": 697, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 698, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 699, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 700, + "literal": "^6.3.0", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.0 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "peer": true, + }, + "id": 701, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 702, + "literal": "~0.3.2", + "name": "language-subtag-registry", + "npm": { + "name": "language-subtag-registry", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 373, + }, + { + "behavior": { + "normal": true, + }, + "id": 703, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 704, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 705, + "literal": "^0.14.0", + "name": "regenerator-runtime", + "npm": { + "name": "regenerator-runtime", + "version": ">=0.14.0 <0.15.0", + }, + "package_id": 382, + }, + { + "behavior": { + "normal": true, + }, + "id": 706, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 707, + "literal": "^1.2.2", + "name": "array.prototype.findlastindex", + "npm": { + "name": "array.prototype.findlastindex", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 394, + }, + { + "behavior": { + "normal": true, + }, + "id": 708, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 709, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 710, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 711, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 712, + "literal": "^0.3.7", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.7 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 713, + "literal": "^2.8.0", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.8.0 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 714, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 715, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 716, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 717, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 718, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 719, + "literal": "^1.0.0", + "name": "object.groupby", + "npm": { + "name": "object.groupby", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 389, + }, + { + "behavior": { + "normal": true, + }, + "id": 720, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 721, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 722, + "literal": "^3.14.2", + "name": "tsconfig-paths", + "npm": { + "name": "tsconfig-paths", + "version": ">=3.14.2 <4.0.0", + }, + "package_id": 384, + }, + { + "behavior": { + "peer": true, + }, + "id": 723, + "literal": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=2.0.0 <3.0.0 || >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 724, + "literal": "^0.0.29", + "name": "@types/json5", + "npm": { + "name": "@types/json5", + "version": ">=0.0.29 <0.0.30", + }, + "package_id": 388, + }, + { + "behavior": { + "normal": true, + }, + "id": 725, + "literal": "^1.0.2", + "name": "json5", + "npm": { + "name": "json5", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 387, + }, + { + "behavior": { + "normal": true, + }, + "id": 726, + "literal": "^1.2.6", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.6 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 727, + "literal": "^3.0.0", + "name": "strip-bom", + "npm": { + "name": "strip-bom", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 385, + }, + { + "behavior": { + "normal": true, + }, + "id": 728, + "literal": "^1.2.0", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 729, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 730, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 731, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 732, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 733, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 734, + "literal": "^2.1.1", + "name": "ms", + "npm": { + "name": "ms", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 392, + }, + { + "behavior": { + "normal": true, + }, + "id": 735, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 736, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 737, + "literal": "^1.22.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.4 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 738, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 739, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 740, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 741, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 742, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 743, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 744, + "literal": "^5.12.0", + "name": "enhanced-resolve", + "npm": { + "name": "enhanced-resolve", + "version": ">=5.12.0 <6.0.0", + }, + "package_id": 398, + }, + { + "behavior": { + "normal": true, + }, + "id": 745, + "literal": "^2.7.4", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.7.4 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 746, + "literal": "^3.3.1", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.3.1 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 747, + "literal": "^4.5.0", + "name": "get-tsconfig", + "npm": { + "name": "get-tsconfig", + "version": ">=4.5.0 <5.0.0", + }, + "package_id": 396, + }, + { + "behavior": { + "normal": true, + }, + "id": 748, + "literal": "^2.11.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.11.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 749, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "peer": true, + }, + "id": 750, + "literal": "*", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=0.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 751, + "literal": "*", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=0.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 752, + "literal": "^1.0.0", + "name": "resolve-pkg-maps", + "npm": { + "name": "resolve-pkg-maps", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 397, + }, + { + "behavior": { + "normal": true, + }, + "id": 753, + "literal": "^4.2.4", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.4 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 754, + "literal": "^2.2.0", + "name": "tapable", + "npm": { + "name": "tapable", + "version": ">=2.2.0 <3.0.0", + }, + "package_id": 399, + }, + { + "behavior": { + "normal": true, + }, + "id": 755, + "literal": "6.7.3", + "name": "@typescript-eslint/scope-manager", + "npm": { + "name": "@typescript-eslint/scope-manager", + "version": "==6.7.3", + }, + "package_id": 411, + }, + { + "behavior": { + "normal": true, + }, + "id": 756, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 757, + "literal": "6.7.3", + "name": "@typescript-eslint/typescript-estree", + "npm": { + "name": "@typescript-eslint/typescript-estree", + "version": "==6.7.3", + }, + "package_id": 403, + }, + { + "behavior": { + "normal": true, + }, + "id": 758, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 759, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "peer": true, + }, + "id": 760, + "literal": "^7.0.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 761, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 762, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 763, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 764, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 765, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 766, + "literal": "^11.1.0", + "name": "globby", + "npm": { + "name": "globby", + "version": ">=11.1.0 <12.0.0", + }, + "package_id": 406, + }, + { + "behavior": { + "normal": true, + }, + "id": 767, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 768, + "literal": "^7.5.4", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=7.5.4 <8.0.0", + }, + "package_id": 405, + }, + { + "behavior": { + "normal": true, + }, + "id": 769, + "literal": "^1.0.1", + "name": "ts-api-utils", + "npm": { + "name": "ts-api-utils", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 404, + }, + { + "behavior": { + "peer": true, + }, + "id": 770, + "literal": ">=4.2.0", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 771, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 772, + "literal": "^2.1.0", + "name": "array-union", + "npm": { + "name": "array-union", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 410, + }, + { + "behavior": { + "normal": true, + }, + "id": 773, + "literal": "^3.0.1", + "name": "dir-glob", + "npm": { + "name": "dir-glob", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 408, + }, + { + "behavior": { + "normal": true, + }, + "id": 774, + "literal": "^3.2.9", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.9 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 775, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 776, + "literal": "^1.4.1", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.4.1 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 777, + "literal": "^3.0.0", + "name": "slash", + "npm": { + "name": "slash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 407, + }, + { + "behavior": { + "normal": true, + }, + "id": 778, + "literal": "^4.0.0", + "name": "path-type", + "npm": { + "name": "path-type", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 409, + }, + { + "behavior": { + "normal": true, + }, + "id": 779, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 780, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 781, + "literal": "10.3.10", + "name": "glob", + "npm": { + "name": "glob", + "version": "==10.3.10", + }, + "package_id": 414, + }, + { + "behavior": { + "normal": true, + }, + "id": 782, + "literal": "^3.1.0", + "name": "foreground-child", + "npm": { + "name": "foreground-child", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 429, + }, + { + "behavior": { + "normal": true, + }, + "id": 783, + "literal": "^2.3.5", + "name": "jackspeak", + "npm": { + "name": "jackspeak", + "version": ">=2.3.5 <3.0.0", + }, + "package_id": 420, + }, + { + "behavior": { + "normal": true, + }, + "id": 784, + "literal": "^9.0.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=9.0.1 <10.0.0", + }, + "package_id": 418, + }, + { + "behavior": { + "normal": true, + }, + "id": 785, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 786, + "literal": "^1.10.1", + "name": "path-scurry", + "npm": { + "name": "path-scurry", + "version": ">=1.10.1 <2.0.0", + }, + "package_id": 415, + }, + { + "behavior": { + "normal": true, + }, + "id": 787, + "literal": "^9.1.1 || ^10.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=9.1.1 <10.0.0 || >=10.0.0 <11.0.0 && >=10.0.0 <11.0.0", + }, + "package_id": 417, + }, + { + "behavior": { + "normal": true, + }, + "id": 788, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 789, + "literal": "^2.0.1", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 419, + }, + { + "behavior": { + "normal": true, + }, + "id": 790, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 791, + "literal": "^8.0.2", + "name": "@isaacs/cliui", + "npm": { + "name": "@isaacs/cliui", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 422, + }, + { + "behavior": { + "optional": true, + }, + "id": 792, + "literal": "^0.11.0", + "name": "@pkgjs/parseargs", + "npm": { + "name": "@pkgjs/parseargs", + "version": ">=0.11.0 <0.12.0", + }, + "package_id": 421, + }, + { + "behavior": { + "normal": true, + }, + "id": 793, + "literal": "^5.1.2", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 794, + "is_alias": true, + "literal": "npm:string-width@^4.2.0", + "name": "string-width-cjs", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 795, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 796, + "is_alias": true, + "literal": "npm:strip-ansi@^6.0.1", + "name": "strip-ansi-cjs", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 797, + "literal": "^8.1.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 423, + }, + { + "behavior": { + "normal": true, + }, + "id": 798, + "is_alias": true, + "literal": "npm:wrap-ansi@^7.0.0", + "name": "wrap-ansi-cjs", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 799, + "literal": "^6.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=6.1.0 <7.0.0", + }, + "package_id": 428, + }, + { + "behavior": { + "normal": true, + }, + "id": 800, + "literal": "^5.0.1", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 801, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 802, + "literal": "^6.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 425, + }, + { + "behavior": { + "normal": true, + }, + "id": 803, + "literal": "^0.2.0", + "name": "eastasianwidth", + "npm": { + "name": "eastasianwidth", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 427, + }, + { + "behavior": { + "normal": true, + }, + "id": 804, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 805, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 806, + "literal": "^7.0.0", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 807, + "literal": "^4.0.1", + "name": "signal-exit", + "npm": { + "name": "signal-exit", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 430, + }, + { + "behavior": { + "normal": true, + }, + "id": 808, + "literal": "^4.21.10", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.10 <5.0.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 809, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 810, + "literal": "^4.3.6", + "name": "fraction.js", + "npm": { + "name": "fraction.js", + "version": ">=4.3.6 <5.0.0", + }, + "package_id": 434, + }, + { + "behavior": { + "normal": true, + }, + "id": 811, + "literal": "^0.1.2", + "name": "normalize-range", + "npm": { + "name": "normalize-range", + "version": ">=0.1.2 <0.2.0", + }, + "package_id": 433, + }, + { + "behavior": { + "normal": true, + }, + "id": 812, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 813, + "literal": "^4.2.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "peer": true, + }, + "id": 814, + "literal": "^8.1.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 815, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 816, + "literal": "^1.4.526", + "name": "electron-to-chromium", + "npm": { + "name": "electron-to-chromium", + "version": ">=1.4.526 <2.0.0", + }, + "package_id": 439, + }, + { + "behavior": { + "normal": true, + }, + "id": 817, + "literal": "^2.0.13", + "name": "node-releases", + "npm": { + "name": "node-releases", + "version": ">=2.0.13 <3.0.0", + }, + "package_id": 438, + }, + { + "behavior": { + "normal": true, + }, + "id": 818, + "literal": "^1.0.13", + "name": "update-browserslist-db", + "npm": { + "name": "update-browserslist-db", + "version": ">=1.0.13 <2.0.0", + }, + "package_id": 437, + }, + { + "behavior": { + "normal": true, + }, + "id": 819, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 820, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "peer": true, + }, + "id": 821, + "literal": ">= 4.21.0", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 822, + "literal": "*", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": ">=0.0.0", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 823, + "literal": "*", + "name": "@types/prop-types", + "npm": { + "name": "@types/prop-types", + "version": ">=0.0.0", + }, + "package_id": 444, + }, + { + "behavior": { + "normal": true, + }, + "id": 824, + "literal": "*", + "name": "@types/scheduler", + "npm": { + "name": "@types/scheduler", + "version": ">=0.0.0", + }, + "package_id": 443, + }, + { + "behavior": { + "normal": true, + }, + "id": 825, + "literal": "^3.0.2", + "name": "csstype", + "npm": { + "name": "csstype", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 442, + }, + ], + "format": "v2", + "meta_hash": "b2cad294acee563595dacd7ac0f31a4573add6541db0fbf935335319adde7a82", + "package_index": { + "@aashutoshrathi/word-wrap": 229, + "@alloc/quick-lru": 83, + "@babel/code-frame": 186, + "@babel/helper-validator-identifier": 195, + "@babel/highlight": 194, + "@babel/runtime": 381, + "@eslint-community/eslint-utils": 285, + "@eslint-community/regexpp": 284, + "@eslint/eslintrc": 282, + "@eslint/js": 281, + "@humanwhocodes/config-array": 279, + "@humanwhocodes/module-importer": 278, + "@humanwhocodes/object-schema": 280, + "@isaacs/cliui": 422, + "@jridgewell/gen-mapping": 24, + "@jridgewell/resolve-uri": 27, + "@jridgewell/set-array": 28, + "@jridgewell/sourcemap-codec": 26, + "@jridgewell/trace-mapping": 25, + "@next/env": 220, + "@next/eslint-plugin-next": 413, + "@next/swc-darwin-arm64": 212, + "@next/swc-darwin-x64": 211, + "@next/swc-linux-arm64-gnu": 210, + "@next/swc-linux-arm64-musl": 209, + "@next/swc-linux-x64-gnu": 208, + "@next/swc-linux-x64-musl": 207, + "@next/swc-win32-arm64-msvc": 206, + "@next/swc-win32-ia32-msvc": 205, + "@next/swc-win32-x64-msvc": 204, + "@nodelib/fs.scandir": 70, + "@nodelib/fs.stat": 73, + "@nodelib/fs.walk": 67, + "@pkgjs/parseargs": 421, + "@puppeteer/browsers": 90, + "@rushstack/eslint-patch": 412, + "@swc/helpers": 219, + "@tootallnate/quickjs-emscripten": 157, + "@types/json5": 388, + "@types/node": 164, + "@types/prop-types": 444, + "@types/react": 441, + "@types/react-dom": 440, + "@types/scheduler": 443, + "@types/yauzl": 163, + "@typescript-eslint/parser": 400, + "@typescript-eslint/scope-manager": 411, + "@typescript-eslint/types": 402, + "@typescript-eslint/typescript-estree": 403, + "@typescript-eslint/visitor-keys": 401, + "acorn": 259, + "acorn-jsx": 258, + "agent-base": 134, + "ajv": 273, + "ansi-regex": [ + 425, + 99, + ], + "ansi-styles": [ + 428, + 107, + 191, + ], + "any-promise": 9, + "anymatch": 81, + "arg": 82, + "argparse": 197, + "aria-query": 380, + "array-buffer-byte-length": 342, + "array-includes": 354, + "array-union": 410, + "array.prototype.findlastindex": 394, + "array.prototype.flat": 352, + "array.prototype.flatmap": 370, + "array.prototype.tosorted": 369, + "arraybuffer.prototype.slice": 341, + "ast-types": 146, + "ast-types-flow": 379, + "asynciterator.prototype": 367, + "autoprefixer": 432, + "available-typed-arrays": 309, + "axe-core": 378, + "axobject-query": 376, + "b4a": 124, + "balanced-match": 19, + "bare-events": 122, + "bare-fs": 118, + "bare-os": 117, + "bare-path": 116, + "base64-js": 114, + "basic-ftp": 156, + "binary-extensions": 80, + "brace-expansion": [ + 419, + 17, + ], + "braces": 56, + "browserslist": 436, + "buffer": 112, + "buffer-crc32": 166, + "bun-types": 431, + "busboy": 217, + "call-bind": 294, + "callsites": 201, + "camelcase-css": 47, + "caniuse-lite": [ + 216, + 435, + ], + "chalk": [ + 270, + 187, + ], + "chokidar": 76, + "chromium-bidi": 178, + "client-only": 214, + "cliui": 105, + "color-convert": [ + 108, + 192, + ], + "color-name": [ + 109, + 193, + ], + "commander": 23, + "concat-map": 18, + "cosmiconfig": 181, + "cross-fetch": 173, + "cross-spawn": 264, + "cssesc": 37, + "csstype": 442, + "damerau-levenshtein": 375, + "data-uri-to-buffer": 155, + "debug": [ + 132, + 391, + ], + "deep-is": 230, + "default-create-template": 0, + "define-data-property": 298, + "define-properties": 301, + "degenerator": 140, + "dequal": 377, + "devtools-protocol": 172, + "didyoumean": 75, + "dir-glob": 408, + "dlv": 74, + "doctrine": [ + 263, + 368, + ], + "eastasianwidth": 427, + "electron-to-chromium": 439, + "emoji-regex": [ + 374, + 101, + ], + "end-of-stream": 126, + "enhanced-resolve": 398, + "env-paths": 202, + "error-ex": 184, + "es-abstract": 304, + "es-iterator-helpers": 355, + "es-set-tostringtag": 340, + "es-shim-unscopables": 353, + "es-to-primitive": 338, + "escalade": 104, + "escape-string-regexp": [ + 262, + 190, + ], + "escodegen": 142, + "eslint": 222, + "eslint-config-next": 221, + "eslint-import-resolver-node": 393, + "eslint-import-resolver-typescript": 395, + "eslint-module-utils": 390, + "eslint-plugin-import": 383, + "eslint-plugin-jsx-a11y": 371, + "eslint-plugin-react": 287, + "eslint-plugin-react-hooks": 286, + "eslint-scope": 260, + "eslint-visitor-keys": 257, + "espree": 256, + "esprima": 141, + "esquery": 255, + "esrecurse": 261, + "estraverse": 145, + "esutils": 144, + "extract-zip": 162, + "fast-deep-equal": 254, + "fast-fifo": 121, + "fast-glob": 64, + "fast-json-stable-stringify": 277, + "fast-levenshtein": 225, + "fastq": 68, + "fd-slicer": 167, + "file-entry-cache": 247, + "fill-range": 57, + "find-up": 241, + "flat-cache": 248, + "flatted": 253, + "for-each": 307, + "foreground-child": 429, + "fraction.js": 434, + "fs-extra": 151, + "fs.realpath": 22, + "fsevents": 77, + "function-bind": 34, + "function.prototype.name": 337, + "functions-have-names": 297, + "get-caller-file": 103, + "get-intrinsic": 291, + "get-stream": 169, + "get-symbol-description": 336, + "get-tsconfig": 396, + "get-uri": 150, + "glob": [ + 414, + 250, + 12, + ], + "glob-parent": [ + 63, + 66, + ], + "globals": 239, + "globalthis": 335, + "globby": 406, + "gopd": 299, + "graceful-fs": 154, + "graphemer": 238, + "has": 33, + "has-bigints": 317, + "has-flag": [ + 272, + 189, + ], + "has-property-descriptors": 296, + "has-proto": 293, + "has-symbols": 292, + "has-tostringtag": 306, + "http-proxy-agent": [ + 160, + 149, + ], + "https-proxy-agent": [ + 159, + 148, + ], + "ieee754": 113, + "ignore": 237, + "import-fresh": 198, + "imurmurhash": 236, + "inflight": 21, + "inherits": 20, + "internal-slot": 303, + "ip": [ + 131, + 139, + ], + "is-array-buffer": 334, + "is-arrayish": 185, + "is-async-function": 366, + "is-bigint": 316, + "is-binary-path": 79, + "is-boolean-object": 315, + "is-callable": 308, + "is-core-module": 32, + "is-date-object": 339, + "is-extglob": 62, + "is-finalizationregistry": 365, + "is-fullwidth-code-point": 100, + "is-generator-function": 364, + "is-glob": 61, + "is-map": 363, + "is-negative-zero": 333, + "is-number": 59, + "is-number-object": 314, + "is-path-inside": 235, + "is-regex": 327, + "is-set": 362, + "is-shared-array-buffer": 332, + "is-string": 313, + "is-symbol": 312, + "is-typed-array": 319, + "is-weakmap": 361, + "is-weakref": 331, + "is-weakset": 360, + "isarray": 329, + "isexe": 266, + "iterator.prototype": 356, + "jackspeak": 420, + "jiti": 60, + "js-tokens": 87, + "js-yaml": 196, + "json-buffer": 252, + "json-parse-even-better-errors": 183, + "json-schema-traverse": 276, + "json-stable-stringify-without-jsonify": 234, + "json5": 387, + "jsonfile": 153, + "jsx-ast-utils": 351, + "keyv": 251, + "language-subtag-registry": 373, + "language-tags": 372, + "levn": 226, + "lilconfig": 45, + "lines-and-columns": 11, + "locate-path": 243, + "lodash.merge": 233, + "loose-envify": 86, + "lru-cache": [ + 417, + 158, + 92, + ], + "merge2": 65, + "micromatch": 54, + "minimatch": [ + 418, + 232, + 16, + ], + "minimist": 386, + "minipass": 416, + "mitt": 180, + "ms": [ + 392, + 133, + ], + "mz": 6, + "nanoid": 42, + "natural-compare": 231, + "netmask": 138, + "next": 203, + "node-fetch": 174, + "node-releases": 438, + "normalize-path": 53, + "normalize-range": 433, + "object-assign": 10, + "object-hash": 52, + "object-inspect": 290, + "object-keys": 302, + "object.assign": 330, + "object.entries": 350, + "object.fromentries": 349, + "object.groupby": 389, + "object.hasown": 348, + "object.values": 347, + "once": 14, + "optionator": 224, + "p-limit": 245, + "p-locate": 244, + "pac-proxy-agent": 136, + "pac-resolver": 137, + "parent-module": 200, + "parse-json": 182, + "path-exists": 242, + "path-is-absolute": 13, + "path-key": 269, + "path-parse": 31, + "path-scurry": 415, + "path-type": 409, + "pend": 168, + "picocolors": 41, + "picomatch": 55, + "pify": 50, + "pirates": 5, + "postcss": [ + 215, + 39, + ], + "postcss-import": 48, + "postcss-js": 46, + "postcss-load-config": 43, + "postcss-nested": 38, + "postcss-selector-parser": 35, + "postcss-value-parser": 51, + "prelude-ls": 228, + "progress": 161, + "prop-types": 345, + "proxy-agent": 127, + "proxy-from-env": 135, + "pump": 125, + "punycode": 275, + "puppeteer": 89, + "puppeteer-core": 170, + "queue-microtask": 72, + "queue-tick": 120, + "react": 88, + "react-dom": 84, + "react-is": 346, + "read-cache": 49, + "readdirp": 78, + "reflect.getprototypeof": 357, + "regenerator-runtime": 382, + "regexp.prototype.flags": 300, + "require-directory": 102, + "resolve": [ + 344, + 29, + ], + "resolve-from": 199, + "resolve-pkg-maps": 397, + "reusify": 69, + "rimraf": 249, + "run-parallel": 71, + "safe-array-concat": 328, + "safe-regex-test": 326, + "scheduler": 85, + "semver": [ + 91, + 405, + 343, + ], + "set-function-name": 295, + "shebang-command": 267, + "shebang-regex": 268, + "side-channel": 289, + "signal-exit": 430, + "slash": 407, + "smart-buffer": 130, + "socks": 129, + "socks-proxy-agent": 128, + "source-map": 143, + "source-map-js": 40, + "streamsearch": 218, + "streamx": 119, + "string-width": [ + 426, + 97, + ], + "string.prototype.matchall": 288, + "string.prototype.trim": 325, + "string.prototype.trimend": 324, + "string.prototype.trimstart": 323, + "strip-ansi": [ + 424, + 98, + ], + "strip-bom": 385, + "strip-json-comments": 283, + "styled-jsx": 213, + "sucrase": 3, + "supports-color": [ + 271, + 188, + ], + "supports-preserve-symlinks-flag": 30, + "tailwindcss": 2, + "tapable": 399, + "tar-fs": 115, + "tar-stream": 123, + "text-table": 223, + "thenify": 8, + "thenify-all": 7, + "through": 111, + "to-regex-range": 58, + "tr46": 177, + "ts-api-utils": 404, + "ts-interface-checker": 4, + "tsconfig-paths": 384, + "tslib": 147, + "type-check": 227, + "type-fest": 240, + "typed-array-buffer": 322, + "typed-array-byte-length": 321, + "typed-array-byte-offset": 320, + "typed-array-length": 318, + "typescript": 1, + "unbox-primitive": 310, + "unbzip2-stream": 110, + "universalify": 152, + "update-browserslist-db": 437, + "uri-js": 274, + "urlpattern-polyfill": 179, + "util-deprecate": 36, + "webidl-conversions": 176, + "whatwg-url": 175, + "which": 265, + "which-boxed-primitive": 311, + "which-builtin-type": 358, + "which-collection": 359, + "which-typed-array": 305, + "wrap-ansi": [ + 423, + 106, + ], + "wrappy": 15, + "ws": 171, + "y18n": 96, + "yallist": 93, + "yaml": 44, + "yargs": 94, + "yargs-parser": 95, + "yauzl": 165, + "yocto-queue": 246, + }, + "packages": [ + { + "bin": null, + "dependencies": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + ], + "id": 0, + "integrity": null, + "man_dir": "", + "name": "default-create-template", + "name_hash": "12362153275604125605", + "origin": "local", + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": { + "postinstall": "cd node_modules/puppeteer && bun install.mjs", + }, + }, + { + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver", + }, + "dependencies": [], + "id": 1, + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "man_dir": "", + "name": "typescript", + "name_hash": "7090219608841397663", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.2", + }, + "scripts": {}, + }, + { + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js", + }, + "dependencies": [ + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + ], + "id": 2, + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "man_dir": "", + "name": "tailwindcss", + "name_hash": "6098981126968834122", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.3", + }, + "scripts": {}, + }, + { + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node", + }, + "dependencies": [ + 36, + 37, + 38, + 39, + 40, + 41, + 42, + ], + "id": 3, + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "man_dir": "", + "name": "sucrase", + "name_hash": "8220562023141918134", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.34.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 4, + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "man_dir": "", + "name": "ts-interface-checker", + "name_hash": "9090669025631097322", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 5, + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "man_dir": "", + "name": "pirates", + "name_hash": "11463431525122174591", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 43, + 44, + 45, + ], + "id": 6, + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "man_dir": "", + "name": "mz", + "name_hash": "4860889167171965650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 46, + ], + "id": 7, + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "man_dir": "", + "name": "thenify-all", + "name_hash": "3497577183623575301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 47, + ], + "id": 8, + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "man_dir": "", + "name": "thenify", + "name_hash": "10214550608932566002", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 9, + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "man_dir": "", + "name": "any-promise", + "name_hash": "992496519212496549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 10, + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "man_dir": "", + "name": "object-assign", + "name_hash": "741501977461426514", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 11, + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "man_dir": "", + "name": "lines-and-columns", + "name_hash": "8731744980636261242", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 48, + 49, + 50, + 51, + 52, + 53, + ], + "id": 12, + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 13, + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "man_dir": "", + "name": "path-is-absolute", + "name_hash": "8164005222338448325", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 54, + ], + "id": 14, + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "man_dir": "", + "name": "once", + "name_hash": "748011609921859784", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 15, + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "man_dir": "", + "name": "wrappy", + "name_hash": "18119806661187706052", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 55, + ], + "id": 16, + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 56, + 57, + ], + "id": 17, + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 18, + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "man_dir": "", + "name": "concat-map", + "name_hash": "8706867752641269193", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 19, + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "man_dir": "", + "name": "balanced-match", + "name_hash": "16269801611404267863", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 20, + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "man_dir": "", + "name": "inherits", + "name_hash": "7481850175542696465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 58, + 59, + ], + "id": 21, + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "man_dir": "", + "name": "inflight", + "name_hash": "15335006233399436565", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 22, + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "man_dir": "", + "name": "fs.realpath", + "name_hash": "913835373532407557", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 23, + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "man_dir": "", + "name": "commander", + "name_hash": "5281338156924866262", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 60, + 61, + 62, + ], + "id": 24, + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "man_dir": "", + "name": "@jridgewell/gen-mapping", + "name_hash": "7763226208333403547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 63, + 64, + ], + "id": 25, + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "man_dir": "", + "name": "@jridgewell/trace-mapping", + "name_hash": "9132244357866713465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.19", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 26, + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "man_dir": "", + "name": "@jridgewell/sourcemap-codec", + "name_hash": "11082572525356782073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 27, + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "man_dir": "", + "name": "@jridgewell/resolve-uri", + "name_hash": "15732631652601645408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 28, + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "man_dir": "", + "name": "@jridgewell/set-array", + "name_hash": "10956470817798356705", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 65, + 66, + 67, + ], + "id": 29, + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 30, + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "man_dir": "", + "name": "supports-preserve-symlinks-flag", + "name_hash": "7228670803640303868", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 31, + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "man_dir": "", + "name": "path-parse", + "name_hash": "13352954276207767683", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 68, + ], + "id": 32, + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "man_dir": "", + "name": "is-core-module", + "name_hash": "2115564247595772579", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.13.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 69, + ], + "id": 33, + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "man_dir": "", + "name": "has", + "name_hash": "10277371301110365577", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 34, + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "man_dir": "", + "name": "function-bind", + "name_hash": "844545262680185243", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 70, + 71, + ], + "id": 35, + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "man_dir": "", + "name": "postcss-selector-parser", + "name_hash": "8882225543017639620", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 36, + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "man_dir": "", + "name": "util-deprecate", + "name_hash": "4033437044928033698", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/cssesc", + "name": "cssesc", + }, + "dependencies": [], + "id": 37, + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "man_dir": "", + "name": "cssesc", + "name_hash": "11039868621287934035", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 72, + 73, + ], + "id": 38, + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "man_dir": "", + "name": "postcss-nested", + "name_hash": "13580188021191584601", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 74, + 75, + 76, + ], + "id": 39, + "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.30", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 40, + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "man_dir": "", + "name": "source-map-js", + "name_hash": "6679519744659543339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 41, + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "man_dir": "", + "name": "picocolors", + "name_hash": "8945456956643510643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/nanoid.cjs", + "name": "nanoid", + }, + "dependencies": [], + "id": 42, + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "man_dir": "", + "name": "nanoid", + "name_hash": "10076454668178771807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 77, + 78, + 79, + 80, + ], + "id": 43, + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "man_dir": "", + "name": "postcss-load-config", + "name_hash": "11124459238108428623", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 44, + "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==", + "man_dir": "", + "name": "yaml", + "name_hash": "6823399114509449780", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 45, + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "man_dir": "", + "name": "lilconfig", + "name_hash": "17464546908434930808", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 81, + 82, + ], + "id": 46, + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "man_dir": "", + "name": "postcss-js", + "name_hash": "51201709044640027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 47, + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "man_dir": "", + "name": "camelcase-css", + "name_hash": "11196719252326564430", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 83, + 84, + 85, + 86, + ], + "id": 48, + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "man_dir": "", + "name": "postcss-import", + "name_hash": "3854262770217217840", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 87, + ], + "id": 49, + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "man_dir": "", + "name": "read-cache", + "name_hash": "10142894349910084417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 50, + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "man_dir": "", + "name": "pify", + "name_hash": "516088454160206643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 51, + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "man_dir": "", + "name": "postcss-value-parser", + "name_hash": "4513255719471974821", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 52, + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "man_dir": "", + "name": "object-hash", + "name_hash": "14333069055553598090", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 53, + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "man_dir": "", + "name": "normalize-path", + "name_hash": "7972932911556789884", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 88, + 89, + ], + "id": 54, + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "man_dir": "", + "name": "micromatch", + "name_hash": "14650745430569414123", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 55, + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "man_dir": "", + "name": "picomatch", + "name_hash": "17753630613781110869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 90, + ], + "id": 56, + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "man_dir": "", + "name": "braces", + "name_hash": "2299021338542085312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 91, + ], + "id": 57, + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "man_dir": "", + "name": "fill-range", + "name_hash": "7508926416461820733", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 92, + ], + "id": 58, + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "man_dir": "", + "name": "to-regex-range", + "name_hash": "14243204250463262724", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 59, + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "man_dir": "", + "name": "is-number", + "name_hash": "17443668381655379754", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/jiti.js", + "name": "jiti", + }, + "dependencies": [], + "id": 60, + "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==", + "man_dir": "", + "name": "jiti", + "name_hash": "13838530331656232073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.20.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 93, + ], + "id": 61, + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "man_dir": "", + "name": "is-glob", + "name_hash": "3852072119137895543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 62, + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "man_dir": "", + "name": "is-extglob", + "name_hash": "3738840382836940042", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 94, + ], + "id": 63, + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 95, + 96, + 97, + 98, + 99, + ], + "id": 64, + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "man_dir": "", + "name": "fast-glob", + "name_hash": "1878427088820911921", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 65, + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "man_dir": "", + "name": "merge2", + "name_hash": "10405164528992167668", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 100, + ], + "id": 66, + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 101, + 102, + ], + "id": 67, + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "man_dir": "", + "name": "@nodelib/fs.walk", + "name_hash": "5339111073806757055", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 103, + ], + "id": 68, + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "man_dir": "", + "name": "fastq", + "name_hash": "6741130188853797494", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 69, + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "man_dir": "", + "name": "reusify", + "name_hash": "6641847649693934607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 104, + 105, + ], + "id": 70, + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "man_dir": "", + "name": "@nodelib/fs.scandir", + "name_hash": "3021833276702395597", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 106, + ], + "id": 71, + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "man_dir": "", + "name": "run-parallel", + "name_hash": "12083900303949760391", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 72, + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "man_dir": "", + "name": "queue-microtask", + "name_hash": "5425309755386634043", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 73, + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "man_dir": "", + "name": "@nodelib/fs.stat", + "name_hash": "16125660444744770699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 74, + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "man_dir": "", + "name": "dlv", + "name_hash": "6290291366792823487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 75, + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "man_dir": "", + "name": "didyoumean", + "name_hash": "3290316626148068785", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + ], + "id": 76, + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "man_dir": "", + "name": "chokidar", + "name_hash": "13416011201726038119", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 77, + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "man_dir": "", + "name": "fsevents", + "name_hash": "16035328728645144760", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "2.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 115, + ], + "id": 78, + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "man_dir": "", + "name": "readdirp", + "name_hash": "10039124027740987170", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 116, + ], + "id": 79, + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "man_dir": "", + "name": "is-binary-path", + "name_hash": "10002650304558927684", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 80, + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "man_dir": "", + "name": "binary-extensions", + "name_hash": "17194422772331613284", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 117, + 118, + ], + "id": 81, + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "man_dir": "", + "name": "anymatch", + "name_hash": "13083778620000400888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 82, + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "man_dir": "", + "name": "arg", + "name_hash": "2472924048160638220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 83, + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "man_dir": "", + "name": "@alloc/quick-lru", + "name_hash": "11323404221389353756", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 119, + 120, + 121, + ], + "id": 84, + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "man_dir": "", + "name": "react-dom", + "name_hash": "7373667379151837307", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 122, + ], + "id": 85, + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "man_dir": "", + "name": "scheduler", + "name_hash": "6246319597786948434", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "loose-envify", + }, + "dependencies": [ + 123, + ], + "id": 86, + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "man_dir": "", + "name": "loose-envify", + "name_hash": "3112622411417245442", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 87, + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "man_dir": "", + "name": "js-tokens", + "name_hash": "8072375596980283624", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 124, + ], + "id": 88, + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "man_dir": "", + "name": "react", + "name_hash": "10719851453835962256", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/esm/puppeteer/node/cli.js", + "name": "puppeteer", + }, + "dependencies": [ + 125, + 126, + 127, + ], + "id": 89, + "integrity": "sha512-Mag1wRLanzwS4yEUyrDRBUgsKlH3dpL6oAfVwNHG09oxd0+ySsatMvYj7HwjynWy/S+Hg+XHLgjyC/F6CsL/lg==", + "man_dir": "", + "name": "puppeteer", + "name_hash": "13072297456933147981", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cjs/main-cli.js", + "name": "browsers", + }, + "dependencies": [ + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + ], + "id": 90, + "integrity": "sha512-xloWvocjvryHdUjDam/ZuGMh7zn4Sn3ZAaV4Ah2e2EwEt90N3XphZlSsU3n0VDc1F7kggCjMuH0UuxfPQ5mD9w==", + "man_dir": "", + "name": "@puppeteer/browsers", + "name_hash": "6318517029770692415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 136, + ], + "id": 91, + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 137, + ], + "id": 92, + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 93, + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "man_dir": "", + "name": "yallist", + "name_hash": "17447362886122903538", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 138, + 139, + 140, + 141, + 142, + 143, + 144, + ], + "id": 94, + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "man_dir": "", + "name": "yargs", + "name_hash": "18153588124555602831", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "17.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 95, + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "man_dir": "", + "name": "yargs-parser", + "name_hash": "2624058701233809213", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "21.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 96, + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "man_dir": "", + "name": "y18n", + "name_hash": "13867919047397601860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 145, + 146, + 147, + ], + "id": 97, + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 148, + ], + "id": 98, + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 99, + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 100, + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "man_dir": "", + "name": "is-fullwidth-code-point", + "name_hash": "11413228031333986220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 101, + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 102, + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "man_dir": "", + "name": "require-directory", + "name_hash": "6781837652461215204", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 103, + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "man_dir": "", + "name": "get-caller-file", + "name_hash": "1638769084888476079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 104, + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "man_dir": "", + "name": "escalade", + "name_hash": "6879348821336485116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 149, + 150, + 151, + ], + "id": 105, + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "man_dir": "", + "name": "cliui", + "name_hash": "5778858105899329304", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 152, + 153, + 154, + ], + "id": 106, + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 155, + ], + "id": 107, + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 156, + ], + "id": 108, + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 109, + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 157, + 158, + ], + "id": 110, + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "man_dir": "", + "name": "unbzip2-stream", + "name_hash": "12033811216485982774", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 111, + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "man_dir": "", + "name": "through", + "name_hash": "16941386786386382390", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 159, + 160, + ], + "id": 112, + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "man_dir": "", + "name": "buffer", + "name_hash": "10358694932499417541", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 113, + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "man_dir": "", + "name": "ieee754", + "name_hash": "17889458061139334532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 114, + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "man_dir": "", + "name": "base64-js", + "name_hash": "14626266614050083415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 161, + 162, + 163, + 164, + ], + "id": 115, + "integrity": "sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==", + "man_dir": "", + "name": "tar-fs", + "name_hash": "14440968244754303214", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 165, + ], + "id": 116, + "integrity": "sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==", + "man_dir": "", + "name": "bare-path", + "name_hash": "12654746909665824402", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 117, + "integrity": "sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==", + "man_dir": "", + "name": "bare-os", + "name_hash": "6865937522145537276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 166, + 167, + 168, + 169, + ], + "id": 118, + "integrity": "sha512-+CjmZANQDFZWy4PGbVdmALIwmt33aJg8qTkVjClU6X4WmZkTPBDxRHiBn7fpqEWEfF3AC2io++erpViAIQbSjg==", + "man_dir": "", + "name": "bare-fs", + "name_hash": "15205712258788157948", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 170, + 171, + ], + "id": 119, + "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "man_dir": "", + "name": "streamx", + "name_hash": "74555136203185339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.15.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 120, + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "man_dir": "", + "name": "queue-tick", + "name_hash": "9246306848360353145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 121, + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "man_dir": "", + "name": "fast-fifo", + "name_hash": "1244249015522350723", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 122, + "integrity": "sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==", + "man_dir": "", + "name": "bare-events", + "name_hash": "4035129451839648869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 172, + 173, + 174, + ], + "id": 123, + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "man_dir": "", + "name": "tar-stream", + "name_hash": "14255302179190904139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 124, + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "man_dir": "", + "name": "b4a", + "name_hash": "10649709558693226266", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 175, + 176, + ], + "id": 125, + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "man_dir": "", + "name": "pump", + "name_hash": "7040703475696644678", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 177, + ], + "id": 126, + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "man_dir": "", + "name": "end-of-stream", + "name_hash": "17455588742510412071", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + ], + "id": 127, + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", + "man_dir": "", + "name": "proxy-agent", + "name_hash": "9904923658574585845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 186, + 187, + 188, + ], + "id": 128, + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "man_dir": "", + "name": "socks-proxy-agent", + "name_hash": "11921171134012595164", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 189, + 190, + ], + "id": 129, + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "man_dir": "", + "name": "socks", + "name_hash": "16884970381877539768", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 130, + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "man_dir": "", + "name": "smart-buffer", + "name_hash": "9798348771309838398", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 131, + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 191, + ], + "id": 132, + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 133, + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 192, + ], + "id": 134, + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "man_dir": "", + "name": "agent-base", + "name_hash": "17689920659035782501", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 135, + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "man_dir": "", + "name": "proxy-from-env", + "name_hash": "1270194980615207566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + ], + "id": 136, + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "man_dir": "", + "name": "pac-proxy-agent", + "name_hash": "818729749152565950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 201, + 202, + 203, + ], + "id": 137, + "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "man_dir": "", + "name": "pac-resolver", + "name_hash": "12373948793919354804", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 138, + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "man_dir": "", + "name": "netmask", + "name_hash": "16100660929392435651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 139, + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 204, + 205, + 206, + ], + "id": 140, + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "man_dir": "", + "name": "degenerator", + "name_hash": "8612146826381285798", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js", + }, + "dependencies": [], + "id": 141, + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "man_dir": "", + "name": "esprima", + "name_hash": "16070041258147025859", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js", + }, + "dependencies": [ + 207, + 208, + 209, + 210, + ], + "id": 142, + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "man_dir": "", + "name": "escodegen", + "name_hash": "7568564790816534200", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 143, + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "man_dir": "", + "name": "source-map", + "name_hash": "15131286332489002212", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 144, + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "man_dir": "", + "name": "esutils", + "name_hash": "7981716078883515000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 145, + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "man_dir": "", + "name": "estraverse", + "name_hash": "14401618193000185195", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 211, + ], + "id": 146, + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "man_dir": "", + "name": "ast-types", + "name_hash": "4997596490212765360", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.13.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 147, + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "man_dir": "", + "name": "tslib", + "name_hash": "17922945129469812550", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 212, + 213, + ], + "id": 148, + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 214, + 215, + ], + "id": 149, + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 216, + 217, + 218, + 219, + ], + "id": 150, + "integrity": "sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==", + "man_dir": "", + "name": "get-uri", + "name_hash": "4377287927338690314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 220, + 221, + 222, + ], + "id": 151, + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "man_dir": "", + "name": "fs-extra", + "name_hash": "2453474818627632477", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 152, + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "man_dir": "", + "name": "universalify", + "name_hash": "9857909289728530428", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 223, + ], + "id": 153, + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "man_dir": "", + "name": "jsonfile", + "name_hash": "16030246458379256651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 154, + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "man_dir": "", + "name": "graceful-fs", + "name_hash": "8654400277002734136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 155, + "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", + "man_dir": "", + "name": "data-uri-to-buffer", + "name_hash": "14979328150197748023", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 156, + "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "man_dir": "", + "name": "basic-ftp", + "name_hash": "3294105759639631117", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 157, + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "man_dir": "", + "name": "@tootallnate/quickjs-emscripten", + "name_hash": "5414003337280545145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 158, + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.18.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 224, + 225, + ], + "id": 159, + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 226, + 227, + ], + "id": 160, + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 161, + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "man_dir": "", + "name": "progress", + "name_hash": "11283104389794780362", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "extract-zip", + }, + "dependencies": [ + 228, + 229, + 230, + 231, + ], + "id": 162, + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "man_dir": "", + "name": "extract-zip", + "name_hash": "8810061046982445994", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 232, + ], + "id": 163, + "integrity": "sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==", + "man_dir": "", + "name": "@types/yauzl", + "name_hash": "10273980999870455328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 164, + "integrity": "sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==", + "man_dir": "", + "name": "@types/node", + "name_hash": "4124652010926124945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "20.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 233, + 234, + ], + "id": 165, + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "man_dir": "", + "name": "yauzl", + "name_hash": "7329914562904170092", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 166, + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "man_dir": "", + "name": "buffer-crc32", + "name_hash": "4553253441045318076", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 235, + ], + "id": 167, + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "man_dir": "", + "name": "fd-slicer", + "name_hash": "10851489456408334660", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 168, + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "man_dir": "", + "name": "pend", + "name_hash": "11550940272933590184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 236, + ], + "id": 169, + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "man_dir": "", + "name": "get-stream", + "name_hash": "13254119490064412968", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 237, + 238, + 239, + 240, + 241, + 242, + ], + "id": 170, + "integrity": "sha512-l9nf8NcirYOHdID12CIMWyy7dqcJCVtgVS+YAiJuUJHg8+9yjgPiG2PcNhojIEEpCkvw3FxvnyITVfKVmkWpjA==", + "man_dir": "", + "name": "puppeteer-core", + "name_hash": "10954685796294859150", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 243, + 244, + ], + "id": 171, + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "man_dir": "", + "name": "ws", + "name_hash": "14644737011329074183", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.16.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 172, + "integrity": "sha512-Ctp4hInA0BEavlUoRy9mhGq0i+JSo/AwVyX2EFgZmV1kYB+Zq+EMBAn52QWu6FbRr10hRb6pBl420upbp4++vg==", + "man_dir": "", + "name": "devtools-protocol", + "name_hash": "12159960943916763407", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1249869", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 245, + ], + "id": 173, + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", + "man_dir": "", + "name": "cross-fetch", + "name_hash": "5665307032371542913", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 246, + 247, + ], + "id": 174, + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "man_dir": "", + "name": "node-fetch", + "name_hash": "9368364337257117328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 248, + 249, + ], + "id": 175, + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "man_dir": "", + "name": "whatwg-url", + "name_hash": "15436316526856444177", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 176, + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "man_dir": "", + "name": "webidl-conversions", + "name_hash": "5343883202058398372", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 177, + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "man_dir": "", + "name": "tr46", + "name_hash": "4865213169840252474", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 250, + 251, + 252, + ], + "id": 178, + "integrity": "sha512-sZMgEBWKbupD0Q7lyFu8AWkrE+rs5ycE12jFkGwIgD/VS8lDPtelPlXM7LYaq4zrkZ/O2L3f4afHUHL0ICdKog==", + "man_dir": "", + "name": "chromium-bidi", + "name_hash": "17738832193826713561", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 179, + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", + "man_dir": "", + "name": "urlpattern-polyfill", + "name_hash": "11822535153800140816", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 180, + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "man_dir": "", + "name": "mitt", + "name_hash": "8939019029139500810", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 253, + 254, + 255, + 256, + 257, + ], + "id": 181, + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "man_dir": "", + "name": "cosmiconfig", + "name_hash": "6870876620368412607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 258, + 259, + 260, + 261, + ], + "id": 182, + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "man_dir": "", + "name": "parse-json", + "name_hash": "10803339664298030440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 183, + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "man_dir": "", + "name": "json-parse-even-better-errors", + "name_hash": "13977239420854766139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 262, + ], + "id": 184, + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "man_dir": "", + "name": "error-ex", + "name_hash": "10994745590019451357", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 185, + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "man_dir": "", + "name": "is-arrayish", + "name_hash": "2568751720667967222", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 263, + 264, + ], + "id": 186, + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "man_dir": "", + "name": "@babel/code-frame", + "name_hash": "6188048000334411082", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 265, + 266, + 267, + ], + "id": 187, + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.4.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 268, + ], + "id": 188, + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 189, + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 190, + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 269, + ], + "id": 191, + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 270, + ], + "id": 192, + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 193, + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 271, + 272, + 273, + ], + "id": 194, + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "man_dir": "", + "name": "@babel/highlight", + "name_hash": "1462121684300951999", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 195, + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "man_dir": "", + "name": "@babel/helper-validator-identifier", + "name_hash": "13229699169636733158", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/js-yaml.js", + "name": "js-yaml", + }, + "dependencies": [ + 274, + ], + "id": 196, + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "man_dir": "", + "name": "js-yaml", + "name_hash": "192709174173096334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 197, + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "man_dir": "", + "name": "argparse", + "name_hash": "14330104742551621378", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 275, + 276, + ], + "id": 198, + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "man_dir": "", + "name": "import-fresh", + "name_hash": "11575749002643879646", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 199, + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "man_dir": "", + "name": "resolve-from", + "name_hash": "3749267992243009772", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 277, + ], + "id": 200, + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "man_dir": "", + "name": "parent-module", + "name_hash": "2665996815938625963", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 201, + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "man_dir": "", + "name": "callsites", + "name_hash": "3613437260212473067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 202, + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "man_dir": "", + "name": "env-paths", + "name_hash": "763024076902060186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/bin/next", + "name": "next", + }, + "dependencies": [ + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + ], + "id": 203, + "integrity": "sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==", + "man_dir": "", + "name": "next", + "name_hash": "11339591345958603137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 204, + "integrity": "sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==", + "man_dir": "", + "name": "@next/swc-win32-x64-msvc", + "name_hash": "9647815457301330905", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "ia32", + ], + "bin": null, + "dependencies": [], + "id": 205, + "integrity": "sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==", + "man_dir": "", + "name": "@next/swc-win32-ia32-msvc", + "name_hash": "9252805468461829479", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 206, + "integrity": "sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==", + "man_dir": "", + "name": "@next/swc-win32-arm64-msvc", + "name_hash": "2162381238028589388", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 207, + "integrity": "sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==", + "man_dir": "", + "name": "@next/swc-linux-x64-musl", + "name_hash": "2579566733029863568", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 208, + "integrity": "sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==", + "man_dir": "", + "name": "@next/swc-linux-x64-gnu", + "name_hash": "300847313706189527", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 209, + "integrity": "sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-musl", + "name_hash": "10617419930187892296", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 210, + "integrity": "sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-gnu", + "name_hash": "11020036790013624239", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 211, + "integrity": "sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==", + "man_dir": "", + "name": "@next/swc-darwin-x64", + "name_hash": "6382492463773593985", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 212, + "integrity": "sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==", + "man_dir": "", + "name": "@next/swc-darwin-arm64", + "name_hash": "2189808260783691934", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 298, + 299, + ], + "id": 213, + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "man_dir": "", + "name": "styled-jsx", + "name_hash": "3150382730046383618", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 214, + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "man_dir": "", + "name": "client-only", + "name_hash": "8802229738477874888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 300, + 301, + 302, + ], + "id": 215, + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.31", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 216, + "integrity": "sha512-zpkZ+kEr6We7w63ORkoJ2pOfBwBkY/bJrG/UZ90qNb45Isblu8wzDgevEOrRL1r9dWayHjYiiyCMEXPn4DweGQ==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001596", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 303, + ], + "id": 217, + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "man_dir": "", + "name": "busboy", + "name_hash": "12056783266830520862", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 218, + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "man_dir": "", + "name": "streamsearch", + "name_hash": "16767345128201185654", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 304, + ], + "id": 219, + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "man_dir": "", + "name": "@swc/helpers", + "name_hash": "6882297182432941771", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 220, + "integrity": "sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==", + "man_dir": "", + "name": "@next/env", + "name_hash": "14533567151760189614", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + ], + "id": 221, + "integrity": "sha512-sUCpWlGuHpEhI0pIT0UtdSLJk5Z8E2DYinPTwsBiWaSYQomchdl0i60pjynY48+oXvtyWMQ7oE+G3m49yrfacg==", + "man_dir": "", + "name": "eslint-config-next", + "name_hash": "7198338977897397487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/eslint.js", + "name": "eslint", + }, + "dependencies": [ + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + ], + "id": 222, + "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", + "man_dir": "", + "name": "eslint", + "name_hash": "17917589463370847417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 223, + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "man_dir": "", + "name": "text-table", + "name_hash": "8812171258786601301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 353, + 354, + 355, + 356, + 357, + 358, + ], + "id": 224, + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "man_dir": "", + "name": "optionator", + "name_hash": "13855909686375249440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 225, + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "man_dir": "", + "name": "fast-levenshtein", + "name_hash": "12342460047873653112", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 359, + 360, + ], + "id": 226, + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "man_dir": "", + "name": "levn", + "name_hash": "9969646077825321011", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 361, + ], + "id": 227, + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "man_dir": "", + "name": "type-check", + "name_hash": "14488857500191659576", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 228, + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "man_dir": "", + "name": "prelude-ls", + "name_hash": "2714658211020917171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 229, + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "man_dir": "", + "name": "@aashutoshrathi/word-wrap", + "name_hash": "17707028160503038136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 230, + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "man_dir": "", + "name": "deep-is", + "name_hash": "4678193845338186713", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 231, + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "man_dir": "", + "name": "natural-compare", + "name_hash": "10983874298500943893", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 362, + ], + "id": 232, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 233, + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "man_dir": "", + "name": "lodash.merge", + "name_hash": "1968752870223903086", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 234, + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "man_dir": "", + "name": "json-stable-stringify-without-jsonify", + "name_hash": "14534225541412166230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 235, + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "man_dir": "", + "name": "is-path-inside", + "name_hash": "11945178255920368404", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 236, + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "man_dir": "", + "name": "imurmurhash", + "name_hash": "16912020589681053487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 237, + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "man_dir": "", + "name": "ignore", + "name_hash": "7684941795926889194", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 238, + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "man_dir": "", + "name": "graphemer", + "name_hash": "10355618371909736900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 363, + ], + "id": 239, + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "man_dir": "", + "name": "globals", + "name_hash": "15143409006866382382", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "13.22.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 240, + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "man_dir": "", + "name": "type-fest", + "name_hash": "14668870911319020225", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.20.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 364, + 365, + ], + "id": 241, + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "man_dir": "", + "name": "find-up", + "name_hash": "8309621910990874126", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 242, + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "man_dir": "", + "name": "path-exists", + "name_hash": "12097053851796077639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 366, + ], + "id": 243, + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "man_dir": "", + "name": "locate-path", + "name_hash": "14390144719475396950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 367, + ], + "id": 244, + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "man_dir": "", + "name": "p-locate", + "name_hash": "9693850335197275095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 368, + ], + "id": 245, + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "man_dir": "", + "name": "p-limit", + "name_hash": "3083404427706523125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 246, + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "man_dir": "", + "name": "yocto-queue", + "name_hash": "9034931028572940079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 369, + ], + "id": 247, + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "man_dir": "", + "name": "file-entry-cache", + "name_hash": "7451434054063451186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 370, + 371, + 372, + ], + "id": 248, + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "man_dir": "", + "name": "flat-cache", + "name_hash": "1109822261564484039", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin.js", + "name": "rimraf", + }, + "dependencies": [ + 373, + ], + "id": 249, + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "man_dir": "", + "name": "rimraf", + "name_hash": "6866739241594583209", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 374, + 375, + 376, + 377, + 378, + 379, + ], + "id": 250, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 380, + ], + "id": 251, + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "man_dir": "", + "name": "keyv", + "name_hash": "11030851470615570686", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 252, + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "man_dir": "", + "name": "json-buffer", + "name_hash": "5720297936225446253", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 253, + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "man_dir": "", + "name": "flatted", + "name_hash": "12258717572737769681", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 254, + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "man_dir": "", + "name": "fast-deep-equal", + "name_hash": "12371535360781568025", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 381, + ], + "id": 255, + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "man_dir": "", + "name": "esquery", + "name_hash": "7289272869223478230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 382, + 383, + 384, + ], + "id": 256, + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "man_dir": "", + "name": "espree", + "name_hash": "3641367103187261350", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 257, + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "man_dir": "", + "name": "eslint-visitor-keys", + "name_hash": "17830281265467207399", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 385, + ], + "id": 258, + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "man_dir": "", + "name": "acorn-jsx", + "name_hash": "1754355278825952408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/acorn", + "name": "acorn", + }, + "dependencies": [], + "id": 259, + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "man_dir": "", + "name": "acorn", + "name_hash": "17430233180242180057", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 386, + 387, + ], + "id": 260, + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "man_dir": "", + "name": "eslint-scope", + "name_hash": "17629221228476930459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 388, + ], + "id": 261, + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "man_dir": "", + "name": "esrecurse", + "name_hash": "17661314847727534689", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 262, + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 389, + ], + "id": 263, + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 390, + 391, + 392, + ], + "id": 264, + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "man_dir": "", + "name": "cross-spawn", + "name_hash": "12444485756966960720", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "./bin/node-which", + "name": "node-which", + }, + "dependencies": [ + 393, + ], + "id": 265, + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "man_dir": "", + "name": "which", + "name_hash": "5112236092670504396", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 266, + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "man_dir": "", + "name": "isexe", + "name_hash": "15558268014059531432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 394, + ], + "id": 267, + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "man_dir": "", + "name": "shebang-command", + "name_hash": "9009661312948442432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 268, + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "man_dir": "", + "name": "shebang-regex", + "name_hash": "18053981199157160202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 269, + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "man_dir": "", + "name": "path-key", + "name_hash": "665497923999462354", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 395, + 396, + ], + "id": 270, + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 397, + ], + "id": 271, + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 272, + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 398, + 399, + 400, + 401, + ], + "id": 273, + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "man_dir": "", + "name": "ajv", + "name_hash": "4704814928422522869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.12.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 402, + ], + "id": 274, + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "man_dir": "", + "name": "uri-js", + "name_hash": "9694608825335680295", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 275, + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "man_dir": "", + "name": "punycode", + "name_hash": "6702779252101758505", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 276, + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "man_dir": "", + "name": "json-schema-traverse", + "name_hash": "686899269284038873", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 277, + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "man_dir": "", + "name": "fast-json-stable-stringify", + "name_hash": "5172613188748066692", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 278, + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "man_dir": "", + "name": "@humanwhocodes/module-importer", + "name_hash": "12456817044413428026", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 403, + 404, + 405, + ], + "id": 279, + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "man_dir": "", + "name": "@humanwhocodes/config-array", + "name_hash": "4378208149395492413", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 280, + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "man_dir": "", + "name": "@humanwhocodes/object-schema", + "name_hash": "8965646483962562622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 281, + "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", + "man_dir": "", + "name": "@eslint/js", + "name_hash": "14520481844909638934", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + ], + "id": 282, + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "man_dir": "", + "name": "@eslint/eslintrc", + "name_hash": "12097048422266797669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 283, + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "man_dir": "", + "name": "strip-json-comments", + "name_hash": "3826326773345398095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 284, + "integrity": "sha512-0MGxAVt1m/ZK+LTJp/j0qF7Hz97D9O/FH9Ms3ltnyIdDD57cbb1ACIQTkbHvNXtWDv5TPq7w5Kq56+cNukbo7g==", + "man_dir": "", + "name": "@eslint-community/regexpp", + "name_hash": "633405221675698401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 415, + 416, + ], + "id": 285, + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "man_dir": "", + "name": "@eslint-community/eslint-utils", + "name_hash": "17370105237013380211", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 417, + ], + "id": 286, + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "man_dir": "", + "name": "eslint-plugin-react-hooks", + "name_hash": "14057422571669714006", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + ], + "id": 287, + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "man_dir": "", + "name": "eslint-plugin-react", + "name_hash": "15811917473959571682", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.33.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + ], + "id": 288, + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "man_dir": "", + "name": "string.prototype.matchall", + "name_hash": "3859254092910215586", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 444, + 445, + 446, + ], + "id": 289, + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "man_dir": "", + "name": "side-channel", + "name_hash": "9070404613470426637", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 290, + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "man_dir": "", + "name": "object-inspect", + "name_hash": "956383507377191237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.12.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 447, + 448, + 449, + 450, + ], + "id": 291, + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "man_dir": "", + "name": "get-intrinsic", + "name_hash": "2906428234746671084", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 292, + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "man_dir": "", + "name": "has-symbols", + "name_hash": "11738213668566965255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 293, + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "man_dir": "", + "name": "has-proto", + "name_hash": "14548784663137950749", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 451, + 452, + ], + "id": 294, + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "man_dir": "", + "name": "call-bind", + "name_hash": "12438735438837079615", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 453, + 454, + 455, + ], + "id": 295, + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "man_dir": "", + "name": "set-function-name", + "name_hash": "15255527540049710000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 456, + ], + "id": 296, + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "man_dir": "", + "name": "has-property-descriptors", + "name_hash": "4664477375836720802", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 297, + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "man_dir": "", + "name": "functions-have-names", + "name_hash": "2705786889099279986", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 457, + 458, + 459, + ], + "id": 298, + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "man_dir": "", + "name": "define-data-property", + "name_hash": "11872812789934333141", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 460, + ], + "id": 299, + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "man_dir": "", + "name": "gopd", + "name_hash": "11067429752147099645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 461, + 462, + 463, + ], + "id": 300, + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "man_dir": "", + "name": "regexp.prototype.flags", + "name_hash": "1450419609126993699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 464, + 465, + 466, + ], + "id": 301, + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "man_dir": "", + "name": "define-properties", + "name_hash": "6291091409189323848", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 302, + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "man_dir": "", + "name": "object-keys", + "name_hash": "17064657543629771811", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 467, + 468, + 469, + ], + "id": 303, + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "man_dir": "", + "name": "internal-slot", + "name_hash": "5294586439646401067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + ], + "id": 304, + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "man_dir": "", + "name": "es-abstract", + "name_hash": "18149169871844198539", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 509, + 510, + 511, + 512, + 513, + ], + "id": 305, + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "man_dir": "", + "name": "which-typed-array", + "name_hash": "15299409777186876504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 514, + ], + "id": 306, + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "man_dir": "", + "name": "has-tostringtag", + "name_hash": "13213170068840407891", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 515, + ], + "id": 307, + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "man_dir": "", + "name": "for-each", + "name_hash": "10867395407301386752", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 308, + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "man_dir": "", + "name": "is-callable", + "name_hash": "8145804842618902795", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 309, + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "man_dir": "", + "name": "available-typed-arrays", + "name_hash": "16267035547686705519", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 516, + 517, + 518, + 519, + ], + "id": 310, + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "man_dir": "", + "name": "unbox-primitive", + "name_hash": "5619034830996442352", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 520, + 521, + 522, + 523, + 524, + ], + "id": 311, + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "man_dir": "", + "name": "which-boxed-primitive", + "name_hash": "16054727932152155669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 525, + ], + "id": 312, + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "man_dir": "", + "name": "is-symbol", + "name_hash": "17261375015506057632", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 526, + ], + "id": 313, + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "man_dir": "", + "name": "is-string", + "name_hash": "17134972543368483860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 527, + ], + "id": 314, + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "man_dir": "", + "name": "is-number-object", + "name_hash": "17734215349587891459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 528, + 529, + ], + "id": 315, + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "man_dir": "", + "name": "is-boolean-object", + "name_hash": "977724548377731595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 530, + ], + "id": 316, + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "man_dir": "", + "name": "is-bigint", + "name_hash": "15395120181649760746", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 317, + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "man_dir": "", + "name": "has-bigints", + "name_hash": "8902287851533908224", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 531, + 532, + 533, + ], + "id": 318, + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "man_dir": "", + "name": "typed-array-length", + "name_hash": "11116743844802335237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 534, + ], + "id": 319, + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "man_dir": "", + "name": "is-typed-array", + "name_hash": "9705410882361152938", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 535, + 536, + 537, + 538, + 539, + ], + "id": 320, + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "man_dir": "", + "name": "typed-array-byte-offset", + "name_hash": "4363148948656071809", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 540, + 541, + 542, + 543, + ], + "id": 321, + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "man_dir": "", + "name": "typed-array-byte-length", + "name_hash": "15839092223363072276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 544, + 545, + 546, + ], + "id": 322, + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "man_dir": "", + "name": "typed-array-buffer", + "name_hash": "12632345045689166547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 547, + 548, + 549, + ], + "id": 323, + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "man_dir": "", + "name": "string.prototype.trimstart", + "name_hash": "2565522221466854936", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 550, + 551, + 552, + ], + "id": 324, + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "man_dir": "", + "name": "string.prototype.trimend", + "name_hash": "1025553805644415088", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 553, + 554, + 555, + ], + "id": 325, + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "man_dir": "", + "name": "string.prototype.trim", + "name_hash": "13195996988681286312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 556, + 557, + 558, + ], + "id": 326, + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "man_dir": "", + "name": "safe-regex-test", + "name_hash": "7551602408075273083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 559, + 560, + ], + "id": 327, + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "man_dir": "", + "name": "is-regex", + "name_hash": "5347229372705359543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 561, + 562, + 563, + 564, + ], + "id": 328, + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "man_dir": "", + "name": "safe-array-concat", + "name_hash": "16724726882203544952", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 329, + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "man_dir": "", + "name": "isarray", + "name_hash": "1313190527457156627", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 565, + 566, + 567, + 568, + ], + "id": 330, + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "man_dir": "", + "name": "object.assign", + "name_hash": "3382096865825279030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 569, + ], + "id": 331, + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "man_dir": "", + "name": "is-weakref", + "name_hash": "16457982703851476953", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 570, + ], + "id": 332, + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "man_dir": "", + "name": "is-shared-array-buffer", + "name_hash": "16404740693320828184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 333, + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "man_dir": "", + "name": "is-negative-zero", + "name_hash": "15976851243871524828", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 571, + 572, + 573, + ], + "id": 334, + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "man_dir": "", + "name": "is-array-buffer", + "name_hash": "14032760764897204845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 574, + ], + "id": 335, + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "man_dir": "", + "name": "globalthis", + "name_hash": "13441561870904786738", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 575, + 576, + ], + "id": 336, + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "man_dir": "", + "name": "get-symbol-description", + "name_hash": "9231308723607962639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 577, + 578, + 579, + 580, + ], + "id": 337, + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "man_dir": "", + "name": "function.prototype.name", + "name_hash": "4695092674110180958", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 581, + 582, + 583, + ], + "id": 338, + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "man_dir": "", + "name": "es-to-primitive", + "name_hash": "5511149163085325549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 584, + ], + "id": 339, + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "man_dir": "", + "name": "is-date-object", + "name_hash": "2234586858061383196", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 585, + 586, + 587, + ], + "id": 340, + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "man_dir": "", + "name": "es-set-tostringtag", + "name_hash": "6364566058234691598", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 588, + 589, + 590, + 591, + 592, + 593, + 594, + ], + "id": 341, + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "man_dir": "", + "name": "arraybuffer.prototype.slice", + "name_hash": "11166998714227851504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 595, + 596, + ], + "id": 342, + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "man_dir": "", + "name": "array-buffer-byte-length", + "name_hash": "9975978122018604356", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [], + "id": 343, + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.3.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 597, + 598, + 599, + ], + "id": 344, + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0-next.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 600, + 601, + 602, + ], + "id": 345, + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "man_dir": "", + "name": "prop-types", + "name_hash": "2288456573804260909", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.8.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 346, + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "man_dir": "", + "name": "react-is", + "name_hash": "2565568243106125199", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "16.13.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 603, + 604, + 605, + ], + "id": 347, + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "man_dir": "", + "name": "object.values", + "name_hash": "17183857510284531499", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 606, + 607, + ], + "id": 348, + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "man_dir": "", + "name": "object.hasown", + "name_hash": "12140096160358655980", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 608, + 609, + 610, + ], + "id": 349, + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "man_dir": "", + "name": "object.fromentries", + "name_hash": "58142230756561331", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 611, + 612, + 613, + ], + "id": 350, + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "man_dir": "", + "name": "object.entries", + "name_hash": "9232336923373250807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 614, + 615, + 616, + 617, + ], + "id": 351, + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "man_dir": "", + "name": "jsx-ast-utils", + "name_hash": "7365668162252757844", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 618, + 619, + 620, + 621, + ], + "id": 352, + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "man_dir": "", + "name": "array.prototype.flat", + "name_hash": "13419566320551684202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 622, + ], + "id": 353, + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "man_dir": "", + "name": "es-shim-unscopables", + "name_hash": "9491299634916711255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 623, + 624, + 625, + 626, + 627, + ], + "id": 354, + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "man_dir": "", + "name": "array-includes", + "name_hash": "4525275494838245397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + ], + "id": 355, + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "man_dir": "", + "name": "es-iterator-helpers", + "name_hash": "6828621610707932693", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 642, + 643, + 644, + 645, + 646, + ], + "id": 356, + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "man_dir": "", + "name": "iterator.prototype", + "name_hash": "2087250667608616513", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 647, + 648, + 649, + 650, + 651, + 652, + ], + "id": 357, + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "man_dir": "", + "name": "reflect.getprototypeof", + "name_hash": "16421047821568888832", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + ], + "id": 358, + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "man_dir": "", + "name": "which-builtin-type", + "name_hash": "5638101803141645512", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 665, + 666, + 667, + 668, + ], + "id": 359, + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "man_dir": "", + "name": "which-collection", + "name_hash": "14526135543217104595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 669, + 670, + ], + "id": 360, + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "man_dir": "", + "name": "is-weakset", + "name_hash": "15512317874752413182", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 361, + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "man_dir": "", + "name": "is-weakmap", + "name_hash": "6846802860855249568", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 362, + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "man_dir": "", + "name": "is-set", + "name_hash": "711008573234634940", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 363, + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "man_dir": "", + "name": "is-map", + "name_hash": "13285296637631486371", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 671, + ], + "id": 364, + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "man_dir": "", + "name": "is-generator-function", + "name_hash": "6389681397246265335", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 672, + ], + "id": 365, + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "man_dir": "", + "name": "is-finalizationregistry", + "name_hash": "3324291948921067566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 673, + ], + "id": 366, + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "man_dir": "", + "name": "is-async-function", + "name_hash": "7396704721306843003", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 674, + ], + "id": 367, + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "man_dir": "", + "name": "asynciterator.prototype", + "name_hash": "3757020988614190728", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 675, + ], + "id": 368, + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 676, + 677, + 678, + 679, + 680, + ], + "id": 369, + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "man_dir": "", + "name": "array.prototype.tosorted", + "name_hash": "6050988382768901310", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 681, + 682, + 683, + 684, + ], + "id": 370, + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "man_dir": "", + "name": "array.prototype.flatmap", + "name_hash": "4112999450230342125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + ], + "id": 371, + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "man_dir": "", + "name": "eslint-plugin-jsx-a11y", + "name_hash": "17038906309846806775", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 702, + ], + "id": 372, + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "man_dir": "", + "name": "language-tags", + "name_hash": "3625175203997363083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 373, + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "man_dir": "", + "name": "language-subtag-registry", + "name_hash": "15962551382548022065", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 374, + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 375, + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "man_dir": "", + "name": "damerau-levenshtein", + "name_hash": "15167018638538311401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 703, + ], + "id": 376, + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "man_dir": "", + "name": "axobject-query", + "name_hash": "9344054106894956572", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 377, + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "man_dir": "", + "name": "dequal", + "name_hash": "9863785364709466334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 378, + "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "man_dir": "", + "name": "axe-core", + "name_hash": "13988195930258765777", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 379, + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "man_dir": "", + "name": "ast-types-flow", + "name_hash": "3772215945262775731", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 704, + ], + "id": 380, + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "man_dir": "", + "name": "aria-query", + "name_hash": "506127023625643336", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 705, + ], + "id": 381, + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "man_dir": "", + "name": "@babel/runtime", + "name_hash": "10291762809505250838", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.23.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 382, + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "man_dir": "", + "name": "regenerator-runtime", + "name_hash": "7537904526969317900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.14.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + ], + "id": 383, + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "man_dir": "", + "name": "eslint-plugin-import", + "name_hash": "8508429259951498502", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.28.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 724, + 725, + 726, + 727, + ], + "id": 384, + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "man_dir": "", + "name": "tsconfig-paths", + "name_hash": "9484880556576660029", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.14.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 385, + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "man_dir": "", + "name": "strip-bom", + "name_hash": "10409965272767959480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 386, + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "man_dir": "", + "name": "minimist", + "name_hash": "3523651443977674137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cli.js", + "name": "json5", + }, + "dependencies": [ + 728, + ], + "id": 387, + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "man_dir": "", + "name": "json5", + "name_hash": "8623012563386528314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 388, + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "man_dir": "", + "name": "@types/json5", + "name_hash": "7880870305537908928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.29", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 729, + 730, + 731, + 732, + ], + "id": 389, + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "man_dir": "", + "name": "object.groupby", + "name_hash": "11641877674072745532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 733, + ], + "id": 390, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "man_dir": "", + "name": "eslint-module-utils", + "name_hash": "8461306141657248779", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.8.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 734, + ], + "id": 391, + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 392, + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 735, + 736, + 737, + ], + "id": 393, + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "man_dir": "", + "name": "eslint-import-resolver-node", + "name_hash": "7112252065464945765", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 738, + 739, + 740, + 741, + 742, + ], + "id": 394, + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "man_dir": "", + "name": "array.prototype.findlastindex", + "name_hash": "12218267642355334154", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + ], + "id": 395, + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "man_dir": "", + "name": "eslint-import-resolver-typescript", + "name_hash": "15133821067886250480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 752, + ], + "id": 396, + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "man_dir": "", + "name": "get-tsconfig", + "name_hash": "4239972350118399509", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 397, + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "man_dir": "", + "name": "resolve-pkg-maps", + "name_hash": "2492033107302429470", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 753, + 754, + ], + "id": 398, + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "man_dir": "", + "name": "enhanced-resolve", + "name_hash": "2987069983667056488", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 399, + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "man_dir": "", + "name": "tapable", + "name_hash": "14182729765386254792", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 755, + 756, + 757, + 758, + 759, + 760, + ], + "id": 400, + "integrity": "sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==", + "man_dir": "", + "name": "@typescript-eslint/parser", + "name_hash": "16517001479467293030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 761, + 762, + ], + "id": 401, + "integrity": "sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==", + "man_dir": "", + "name": "@typescript-eslint/visitor-keys", + "name_hash": "7940841856001563650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 402, + "integrity": "sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==", + "man_dir": "", + "name": "@typescript-eslint/types", + "name_hash": "9755027355340495761", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 763, + 764, + 765, + 766, + 767, + 768, + 769, + ], + "id": 403, + "integrity": "sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==", + "man_dir": "", + "name": "@typescript-eslint/typescript-estree", + "name_hash": "17745786537991019945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 770, + ], + "id": 404, + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "man_dir": "", + "name": "ts-api-utils", + "name_hash": "16747467150637667790", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 771, + ], + "id": 405, + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.5.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 772, + 773, + 774, + 775, + 776, + 777, + ], + "id": 406, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "man_dir": "", + "name": "globby", + "name_hash": "15348107128072099982", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "11.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 407, + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "man_dir": "", + "name": "slash", + "name_hash": "14883663570633596397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 778, + ], + "id": 408, + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "man_dir": "", + "name": "dir-glob", + "name_hash": "7561427002176423027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 409, + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "man_dir": "", + "name": "path-type", + "name_hash": "1886008933504244910", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 410, + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "man_dir": "", + "name": "array-union", + "name_hash": "16137961625129706702", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 779, + 780, + ], + "id": 411, + "integrity": "sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==", + "man_dir": "", + "name": "@typescript-eslint/scope-manager", + "name_hash": "4117654371883490926", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 412, + "integrity": "sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg==", + "man_dir": "", + "name": "@rushstack/eslint-patch", + "name_hash": "11774582013079126290", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 781, + ], + "id": 413, + "integrity": "sha512-VCnZI2cy77Yaj3L7Uhs3+44ikMM1VD/fBMwvTBb3hIaTIuqa+DmG4dhUDq+MASu3yx97KhgsVJbsas0XuiKyww==", + "man_dir": "", + "name": "@next/eslint-plugin-next", + "name_hash": "12150179697604729174", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/esm/bin.mjs", + "name": "glob", + }, + "dependencies": [ + 782, + 783, + 784, + 785, + 786, + ], + "id": 414, + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.3.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 787, + 788, + ], + "id": 415, + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "man_dir": "", + "name": "path-scurry", + "name_hash": "11241411746102775941", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 416, + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "man_dir": "", + "name": "minipass", + "name_hash": "8663404386276345459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 417, + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 789, + ], + "id": 418, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 790, + ], + "id": 419, + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 791, + 792, + ], + "id": 420, + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "man_dir": "", + "name": "jackspeak", + "name_hash": "16168027919126698688", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 421, + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "man_dir": "", + "name": "@pkgjs/parseargs", + "name_hash": "4691519579619228072", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 793, + 794, + 795, + 796, + 797, + 798, + ], + "id": 422, + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "man_dir": "", + "name": "@isaacs/cliui", + "name_hash": "9642792940339374750", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 799, + 800, + 801, + ], + "id": 423, + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 802, + ], + "id": 424, + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 425, + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 803, + 804, + 805, + ], + "id": 426, + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 427, + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "man_dir": "", + "name": "eastasianwidth", + "name_hash": "17075761832414070361", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 428, + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 806, + 807, + ], + "id": 429, + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "man_dir": "", + "name": "foreground-child", + "name_hash": "15280470906188730905", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 430, + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "man_dir": "", + "name": "signal-exit", + "name_hash": "10435964049369420478", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 431, + "integrity": "sha512-XlyKVdYCHa7K5PHYGcwOVOrGE/bMnLS51y7zFA3ZAAXyiQ6dTaNXNCWTTufgII/6ruN770uhAXphQmzvU/r2fQ==", + "man_dir": "", + "name": "bun-types", + "name_hash": "2516125195587546235", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/autoprefixer", + "name": "autoprefixer", + }, + "dependencies": [ + 808, + 809, + 810, + 811, + 812, + 813, + 814, + ], + "id": 432, + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "man_dir": "", + "name": "autoprefixer", + "name_hash": "8637312893797281270", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.4.16", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 433, + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "man_dir": "", + "name": "normalize-range", + "name_hash": "2450824346687386237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 434, + "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "man_dir": "", + "name": "fraction.js", + "name_hash": "8226692764887072839", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 435, + "integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001539", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "browserslist", + }, + "dependencies": [ + 815, + 816, + 817, + 818, + ], + "id": 436, + "integrity": "sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==", + "man_dir": "", + "name": "browserslist", + "name_hash": "10902238872969648239", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.21.11", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "update-browserslist-db", + }, + "dependencies": [ + 819, + 820, + 821, + ], + "id": 437, + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "man_dir": "", + "name": "update-browserslist-db", + "name_hash": "6664421840286510928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 438, + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "man_dir": "", + "name": "node-releases", + "name_hash": "16500855680207755447", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 439, + "integrity": "sha512-6uyPyXTo8lkv8SWAmjKFbG42U073TXlzD4R8rW3EzuznhFS2olCIAfjjQtV2dV2ar/vRF55KUd3zQYnCB0dd3A==", + "man_dir": "", + "name": "electron-to-chromium", + "name_hash": "670529235028360171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.529", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 822, + ], + "id": 440, + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "man_dir": "", + "name": "@types/react-dom", + "name_hash": "3229493356298419080", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 823, + 824, + 825, + ], + "id": 441, + "integrity": "sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==", + "man_dir": "", + "name": "@types/react", + "name_hash": "14723150644049679642", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 442, + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "man_dir": "", + "name": "csstype", + "name_hash": "10489861045436610105", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 443, + "integrity": "sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==", + "man_dir": "", + "name": "@types/scheduler", + "name_hash": "12135549028975824460", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.16.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 444, + "integrity": "sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog==", + "man_dir": "", + "name": "@types/prop-types", + "name_hash": "14301724962060537021", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.7.7", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "@aashutoshrathi/word-wrap": { + "id": 355, + "package_id": 229, + }, + "@alloc/quick-lru": { + "id": 14, + "package_id": 83, + }, + "@babel/code-frame": { + "id": 258, + "package_id": 186, + }, + "@babel/helper-validator-identifier": { + "id": 271, + "package_id": 195, + }, + "@babel/highlight": { + "id": 263, + "package_id": 194, + }, + "@babel/runtime": { + "id": 685, + "package_id": 381, + }, + "@eslint-community/eslint-utils": { + "id": 316, + "package_id": 285, + }, + "@eslint-community/regexpp": { + "id": 317, + "package_id": 284, + }, + "@eslint/eslintrc": { + "id": 318, + "package_id": 282, + }, + "@eslint/js": { + "id": 319, + "package_id": 281, + }, + "@humanwhocodes/config-array": { + "id": 320, + "package_id": 279, + }, + "@humanwhocodes/module-importer": { + "id": 321, + "package_id": 278, + }, + "@humanwhocodes/object-schema": { + "id": 403, + "package_id": 280, + }, + "@isaacs/cliui": { + "id": 791, + "package_id": 422, + }, + "@jridgewell/gen-mapping": { + "id": 36, + "package_id": 24, + }, + "@jridgewell/resolve-uri": { + "id": 63, + "package_id": 27, + }, + "@jridgewell/set-array": { + "id": 60, + "package_id": 28, + }, + "@jridgewell/sourcemap-codec": { + "id": 61, + "package_id": 26, + }, + "@jridgewell/trace-mapping": { + "id": 62, + "package_id": 25, + }, + "@next/env": { + "id": 278, + "package_id": 220, + }, + "@next/eslint-plugin-next": { + "id": 305, + "package_id": 413, + }, + "@next/swc-darwin-arm64": { + "id": 285, + "package_id": 212, + }, + "@next/swc-darwin-x64": { + "id": 286, + "package_id": 211, + }, + "@next/swc-linux-arm64-gnu": { + "id": 287, + "package_id": 210, + }, + "@next/swc-linux-arm64-musl": { + "id": 288, + "package_id": 209, + }, + "@next/swc-linux-x64-gnu": { + "id": 289, + "package_id": 208, + }, + "@next/swc-linux-x64-musl": { + "id": 290, + "package_id": 207, + }, + "@next/swc-win32-arm64-msvc": { + "id": 291, + "package_id": 206, + }, + "@next/swc-win32-ia32-msvc": { + "id": 292, + "package_id": 205, + }, + "@next/swc-win32-x64-msvc": { + "id": 293, + "package_id": 204, + }, + "@nodelib/fs.scandir": { + "id": 101, + "package_id": 70, + }, + "@nodelib/fs.stat": { + "id": 95, + "package_id": 73, + }, + "@nodelib/fs.walk": { + "id": 322, + "package_id": 67, + }, + "@pkgjs/parseargs": { + "id": 792, + "package_id": 421, + }, + "@puppeteer/browsers": { + "id": 127, + "package_id": 90, + }, + "@rushstack/eslint-patch": { + "id": 306, + "package_id": 412, + }, + "@swc/helpers": { + "id": 279, + "package_id": 219, + }, + "@tootallnate/quickjs-emscripten": { + "id": 193, + "package_id": 157, + }, + "@types/json5": { + "id": 724, + "package_id": 388, + }, + "@types/node": { + "id": 0, + "package_id": 164, + }, + "@types/prop-types": { + "id": 823, + "package_id": 444, + }, + "@types/react": { + "id": 1, + "package_id": 441, + }, + "@types/react-dom": { + "id": 2, + "package_id": 440, + }, + "@types/scheduler": { + "id": 824, + "package_id": 443, + }, + "@types/yauzl": { + "id": 231, + "package_id": 163, + }, + "@typescript-eslint/parser": { + "id": 307, + "package_id": 400, + }, + "@typescript-eslint/scope-manager": { + "id": 755, + "package_id": 411, + }, + "@typescript-eslint/types": { + "id": 756, + "package_id": 402, + }, + "@typescript-eslint/typescript-estree": { + "id": 757, + "package_id": 403, + }, + "@typescript-eslint/visitor-keys": { + "id": 758, + "package_id": 401, + }, + "acorn": { + "id": 382, + "package_id": 259, + }, + "acorn-jsx": { + "id": 383, + "package_id": 258, + }, + "agent-base": { + "id": 178, + "package_id": 134, + }, + "ajv": { + "id": 323, + "package_id": 273, + }, + "ansi-regex": { + "id": 148, + "package_id": 99, + }, + "ansi-styles": { + "id": 395, + "package_id": 107, + }, + "any-promise": { + "id": 43, + "package_id": 9, + }, + "anymatch": { + "id": 107, + "package_id": 81, + }, + "arg": { + "id": 15, + "package_id": 82, + }, + "argparse": { + "id": 274, + "package_id": 197, + }, + "aria-query": { + "id": 686, + "package_id": 380, + }, + "array-buffer-byte-length": { + "id": 470, + "package_id": 342, + }, + "array-includes": { + "id": 706, + "package_id": 354, + }, + "array-union": { + "id": 772, + "package_id": 410, + }, + "array.prototype.findlastindex": { + "id": 707, + "package_id": 394, + }, + "array.prototype.flat": { + "id": 708, + "package_id": 352, + }, + "array.prototype.flatmap": { + "id": 709, + "package_id": 370, + }, + "array.prototype.tosorted": { + "id": 420, + "package_id": 369, + }, + "arraybuffer.prototype.slice": { + "id": 471, + "package_id": 341, + }, + "ast-types": { + "id": 204, + "package_id": 146, + }, + "ast-types-flow": { + "id": 689, + "package_id": 379, + }, + "asynciterator.prototype": { + "id": 628, + "package_id": 367, + }, + "autoprefixer": { + "id": 3, + "package_id": 432, + }, + "available-typed-arrays": { + "id": 472, + "package_id": 309, + }, + "axe-core": { + "id": 690, + "package_id": 378, + }, + "axobject-query": { + "id": 691, + "package_id": 376, + }, + "b4a": { + "id": 172, + "package_id": 124, + }, + "balanced-match": { + "id": 56, + "package_id": 19, + }, + "bare-events": { + "id": 166, + "package_id": 122, + }, + "bare-fs": { + "id": 163, + "package_id": 118, + }, + "bare-os": { + "id": 167, + "package_id": 117, + }, + "bare-path": { + "id": 164, + "package_id": 116, + }, + "base64-js": { + "id": 159, + "package_id": 114, + }, + "basic-ftp": { + "id": 216, + "package_id": 156, + }, + "binary-extensions": { + "id": 116, + "package_id": 80, + }, + "brace-expansion": { + "id": 362, + "package_id": 17, + }, + "braces": { + "id": 108, + "package_id": 56, + }, + "browserslist": { + "id": 808, + "package_id": 436, + }, + "buffer": { + "id": 157, + "package_id": 112, + }, + "buffer-crc32": { + "id": 234, + "package_id": 166, + }, + "bun-types": { + "id": 4, + "package_id": 431, + }, + "busboy": { + "id": 280, + "package_id": 217, + }, + "call-bind": { + "id": 623, + "package_id": 294, + }, + "callsites": { + "id": 277, + "package_id": 201, + }, + "camelcase-css": { + "id": 81, + "package_id": 47, + }, + "caniuse-lite": { + "id": 809, + "package_id": 435, + }, + "chalk": { + "id": 324, + "package_id": 270, + }, + "chokidar": { + "id": 16, + "package_id": 76, + }, + "chromium-bidi": { + "id": 238, + "package_id": 178, + }, + "client-only": { + "id": 298, + "package_id": 214, + }, + "cliui": { + "id": 138, + "package_id": 105, + }, + "color-convert": { + "id": 155, + "package_id": 108, + }, + "color-name": { + "id": 156, + "package_id": 109, + }, + "commander": { + "id": 37, + "package_id": 23, + }, + "concat-map": { + "id": 57, + "package_id": 18, + }, + "cosmiconfig": { + "id": 125, + "package_id": 181, + }, + "cross-fetch": { + "id": 239, + "package_id": 173, + }, + "cross-spawn": { + "id": 325, + "package_id": 264, + }, + "cssesc": { + "id": 70, + "package_id": 37, + }, + "csstype": { + "id": 825, + "package_id": 442, + }, + "damerau-levenshtein": { + "id": 692, + "package_id": 375, + }, + "data-uri-to-buffer": { + "id": 217, + "package_id": 155, + }, + "debug": { + "id": 326, + "package_id": 132, + }, + "deep-is": { + "id": 354, + "package_id": 230, + }, + "define-data-property": { + "id": 464, + "package_id": 298, + }, + "define-properties": { + "id": 624, + "package_id": 301, + }, + "degenerator": { + "id": 201, + "package_id": 140, + }, + "dequal": { + "id": 704, + "package_id": 377, + }, + "devtools-protocol": { + "id": 241, + "package_id": 172, + }, + "didyoumean": { + "id": 17, + "package_id": 75, + }, + "dir-glob": { + "id": 773, + "package_id": 408, + }, + "dlv": { + "id": 18, + "package_id": 74, + }, + "doctrine": { + "id": 327, + "package_id": 263, + }, + "eastasianwidth": { + "id": 803, + "package_id": 427, + }, + "electron-to-chromium": { + "id": 816, + "package_id": 439, + }, + "emoji-regex": { + "id": 693, + "package_id": 374, + }, + "end-of-stream": { + "id": 175, + "package_id": 126, + }, + "enhanced-resolve": { + "id": 744, + "package_id": 398, + }, + "env-paths": { + "id": 253, + "package_id": 202, + }, + "error-ex": { + "id": 259, + "package_id": 184, + }, + "es-abstract": { + "id": 625, + "package_id": 304, + }, + "es-iterator-helpers": { + "id": 422, + "package_id": 355, + }, + "es-set-tostringtag": { + "id": 632, + "package_id": 340, + }, + "es-shim-unscopables": { + "id": 741, + "package_id": 353, + }, + "es-to-primitive": { + "id": 475, + "package_id": 338, + }, + "escalade": { + "id": 819, + "package_id": 104, + }, + "escape-string-regexp": { + "id": 328, + "package_id": 262, + }, + "escodegen": { + "id": 205, + "package_id": 142, + }, + "eslint": { + "id": 5, + "package_id": 222, + }, + "eslint-config-next": { + "id": 6, + "package_id": 221, + }, + "eslint-import-resolver-node": { + "id": 308, + "package_id": 393, + }, + "eslint-import-resolver-typescript": { + "id": 309, + "package_id": 395, + }, + "eslint-module-utils": { + "id": 745, + "package_id": 390, + }, + "eslint-plugin-import": { + "id": 310, + "package_id": 383, + }, + "eslint-plugin-jsx-a11y": { + "id": 311, + "package_id": 371, + }, + "eslint-plugin-react": { + "id": 312, + "package_id": 287, + }, + "eslint-plugin-react-hooks": { + "id": 313, + "package_id": 286, + }, + "eslint-scope": { + "id": 329, + "package_id": 260, + }, + "eslint-visitor-keys": { + "id": 330, + "package_id": 257, + }, + "espree": { + "id": 331, + "package_id": 256, + }, + "esprima": { + "id": 206, + "package_id": 141, + }, + "esquery": { + "id": 332, + "package_id": 255, + }, + "esrecurse": { + "id": 386, + "package_id": 261, + }, + "estraverse": { + "id": 387, + "package_id": 145, + }, + "esutils": { + "id": 333, + "package_id": 144, + }, + "extract-zip": { + "id": 129, + "package_id": 162, + }, + "fast-deep-equal": { + "id": 334, + "package_id": 254, + }, + "fast-fifo": { + "id": 173, + "package_id": 121, + }, + "fast-glob": { + "id": 19, + "package_id": 64, + }, + "fast-json-stable-stringify": { + "id": 399, + "package_id": 277, + }, + "fast-levenshtein": { + "id": 358, + "package_id": 225, + }, + "fastq": { + "id": 102, + "package_id": 68, + }, + "fd-slicer": { + "id": 233, + "package_id": 167, + }, + "file-entry-cache": { + "id": 335, + "package_id": 247, + }, + "fill-range": { + "id": 90, + "package_id": 57, + }, + "find-up": { + "id": 336, + "package_id": 241, + }, + "flat-cache": { + "id": 369, + "package_id": 248, + }, + "flatted": { + "id": 370, + "package_id": 253, + }, + "for-each": { + "id": 541, + "package_id": 307, + }, + "foreground-child": { + "id": 782, + "package_id": 429, + }, + "fraction.js": { + "id": 810, + "package_id": 434, + }, + "fs-extra": { + "id": 219, + "package_id": 151, + }, + "fs.realpath": { + "id": 48, + "package_id": 22, + }, + "fsevents": { + "id": 114, + "package_id": 77, + }, + "function-bind": { + "id": 69, + "package_id": 34, + }, + "function.prototype.name": { + "id": 476, + "package_id": 337, + }, + "functions-have-names": { + "id": 454, + "package_id": 297, + }, + "get-caller-file": { + "id": 140, + "package_id": 103, + }, + "get-intrinsic": { + "id": 626, + "package_id": 291, + }, + "get-stream": { + "id": 229, + "package_id": 169, + }, + "get-symbol-description": { + "id": 478, + "package_id": 336, + }, + "get-tsconfig": { + "id": 747, + "package_id": 396, + }, + "get-uri": { + "id": 196, + "package_id": 150, + }, + "glob": { + "id": 781, + "package_id": 414, + }, + "glob-parent": { + "id": 337, + "package_id": 63, + }, + "globals": { + "id": 338, + "package_id": 239, + }, + "globalthis": { + "id": 635, + "package_id": 335, + }, + "globby": { + "id": 766, + "package_id": 406, + }, + "gopd": { + "id": 480, + "package_id": 299, + }, + "graceful-fs": { + "id": 282, + "package_id": 154, + }, + "graphemer": { + "id": 339, + "package_id": 238, + }, + "has": { + "id": 714, + "package_id": 33, + }, + "has-bigints": { + "id": 517, + "package_id": 317, + }, + "has-flag": { + "id": 397, + "package_id": 272, + }, + "has-property-descriptors": { + "id": 636, + "package_id": 296, + }, + "has-proto": { + "id": 637, + "package_id": 293, + }, + "has-symbols": { + "id": 638, + "package_id": 292, + }, + "has-tostringtag": { + "id": 526, + "package_id": 306, + }, + "http-proxy-agent": { + "id": 180, + "package_id": 160, + }, + "https-proxy-agent": { + "id": 181, + "package_id": 159, + }, + "ieee754": { + "id": 160, + "package_id": 113, + }, + "ignore": { + "id": 340, + "package_id": 237, + }, + "import-fresh": { + "id": 411, + "package_id": 198, + }, + "imurmurhash": { + "id": 341, + "package_id": 236, + }, + "inflight": { + "id": 49, + "package_id": 21, + }, + "inherits": { + "id": 50, + "package_id": 20, + }, + "internal-slot": { + "id": 639, + "package_id": 303, + }, + "ip": { + "id": 202, + "package_id": 139, + }, + "is-array-buffer": { + "id": 486, + "package_id": 334, + }, + "is-arrayish": { + "id": 262, + "package_id": 185, + }, + "is-async-function": { + "id": 655, + "package_id": 366, + }, + "is-bigint": { + "id": 520, + "package_id": 316, + }, + "is-binary-path": { + "id": 110, + "package_id": 79, + }, + "is-boolean-object": { + "id": 521, + "package_id": 315, + }, + "is-callable": { + "id": 487, + "package_id": 308, + }, + "is-core-module": { + "id": 736, + "package_id": 32, + }, + "is-date-object": { + "id": 582, + "package_id": 339, + }, + "is-extglob": { + "id": 93, + "package_id": 62, + }, + "is-finalizationregistry": { + "id": 657, + "package_id": 365, + }, + "is-fullwidth-code-point": { + "id": 146, + "package_id": 100, + }, + "is-generator-function": { + "id": 658, + "package_id": 364, + }, + "is-glob": { + "id": 342, + "package_id": 61, + }, + "is-map": { + "id": 665, + "package_id": 363, + }, + "is-negative-zero": { + "id": 488, + "package_id": 333, + }, + "is-number": { + "id": 92, + "package_id": 59, + }, + "is-number-object": { + "id": 522, + "package_id": 314, + }, + "is-path-inside": { + "id": 343, + "package_id": 235, + }, + "is-regex": { + "id": 489, + "package_id": 327, + }, + "is-set": { + "id": 666, + "package_id": 362, + }, + "is-shared-array-buffer": { + "id": 490, + "package_id": 332, + }, + "is-string": { + "id": 627, + "package_id": 313, + }, + "is-symbol": { + "id": 583, + "package_id": 312, + }, + "is-typed-array": { + "id": 492, + "package_id": 319, + }, + "is-weakmap": { + "id": 667, + "package_id": 361, + }, + "is-weakref": { + "id": 493, + "package_id": 331, + }, + "is-weakset": { + "id": 668, + "package_id": 360, + }, + "isarray": { + "id": 564, + "package_id": 329, + }, + "isexe": { + "id": 393, + "package_id": 266, + }, + "iterator.prototype": { + "id": 640, + "package_id": 356, + }, + "jackspeak": { + "id": 783, + "package_id": 420, + }, + "jiti": { + "id": 22, + "package_id": 60, + }, + "js-tokens": { + "id": 123, + "package_id": 87, + }, + "js-yaml": { + "id": 344, + "package_id": 196, + }, + "json-buffer": { + "id": 380, + "package_id": 252, + }, + "json-parse-even-better-errors": { + "id": 260, + "package_id": 183, + }, + "json-schema-traverse": { + "id": 400, + "package_id": 276, + }, + "json-stable-stringify-without-jsonify": { + "id": 345, + "package_id": 234, + }, + "json5": { + "id": 725, + "package_id": 387, + }, + "jsonfile": { + "id": 221, + "package_id": 153, + }, + "jsx-ast-utils": { + "id": 695, + "package_id": 351, + }, + "keyv": { + "id": 371, + "package_id": 251, + }, + "language-subtag-registry": { + "id": 702, + "package_id": 373, + }, + "language-tags": { + "id": 696, + "package_id": 372, + }, + "levn": { + "id": 346, + "package_id": 226, + }, + "lilconfig": { + "id": 23, + "package_id": 45, + }, + "lines-and-columns": { + "id": 39, + "package_id": 11, + }, + "locate-path": { + "id": 364, + "package_id": 243, + }, + "lodash.merge": { + "id": 347, + "package_id": 233, + }, + "loose-envify": { + "id": 124, + "package_id": 86, + }, + "lru-cache": { + "id": 182, + "package_id": 158, + }, + "merge2": { + "id": 98, + "package_id": 65, + }, + "micromatch": { + "id": 24, + "package_id": 54, + }, + "minimatch": { + "id": 348, + "package_id": 232, + }, + "minimist": { + "id": 726, + "package_id": 386, + }, + "minipass": { + "id": 785, + "package_id": 416, + }, + "mitt": { + "id": 250, + "package_id": 180, + }, + "ms": { + "id": 191, + "package_id": 133, + }, + "mz": { + "id": 40, + "package_id": 6, + }, + "nanoid": { + "id": 74, + "package_id": 42, + }, + "natural-compare": { + "id": 349, + "package_id": 231, + }, + "netmask": { + "id": 203, + "package_id": 138, + }, + "next": { + "id": 7, + "package_id": 203, + }, + "node-fetch": { + "id": 245, + "package_id": 174, + }, + "node-releases": { + "id": 817, + "package_id": 438, + }, + "normalize-path": { + "id": 25, + "package_id": 53, + }, + "normalize-range": { + "id": 811, + "package_id": 433, + }, + "object-assign": { + "id": 601, + "package_id": 10, + }, + "object-hash": { + "id": 26, + "package_id": 52, + }, + "object-inspect": { + "id": 494, + "package_id": 290, + }, + "object-keys": { + "id": 466, + "package_id": 302, + }, + "object.assign": { + "id": 616, + "package_id": 330, + }, + "object.entries": { + "id": 698, + "package_id": 350, + }, + "object.fromentries": { + "id": 718, + "package_id": 349, + }, + "object.groupby": { + "id": 719, + "package_id": 389, + }, + "object.hasown": { + "id": 428, + "package_id": 348, + }, + "object.values": { + "id": 720, + "package_id": 347, + }, + "once": { + "id": 52, + "package_id": 14, + }, + "optionator": { + "id": 350, + "package_id": 224, + }, + "p-limit": { + "id": 367, + "package_id": 245, + }, + "p-locate": { + "id": 366, + "package_id": 244, + }, + "pac-proxy-agent": { + "id": 183, + "package_id": 136, + }, + "pac-resolver": { + "id": 199, + "package_id": 137, + }, + "parent-module": { + "id": 275, + "package_id": 200, + }, + "parse-json": { + "id": 256, + "package_id": 182, + }, + "path-exists": { + "id": 365, + "package_id": 242, + }, + "path-is-absolute": { + "id": 53, + "package_id": 13, + }, + "path-key": { + "id": 390, + "package_id": 269, + }, + "path-parse": { + "id": 66, + "package_id": 31, + }, + "path-scurry": { + "id": 786, + "package_id": 415, + }, + "path-type": { + "id": 778, + "package_id": 409, + }, + "pend": { + "id": 235, + "package_id": 168, + }, + "picocolors": { + "id": 812, + "package_id": 41, + }, + "picomatch": { + "id": 89, + "package_id": 55, + }, + "pify": { + "id": 87, + "package_id": 50, + }, + "pirates": { + "id": 41, + "package_id": 5, + }, + "postcss": { + "id": 8, + "package_id": 39, + }, + "postcss-import": { + "id": 29, + "package_id": 48, + }, + "postcss-js": { + "id": 30, + "package_id": 46, + }, + "postcss-load-config": { + "id": 31, + "package_id": 43, + }, + "postcss-nested": { + "id": 32, + "package_id": 38, + }, + "postcss-selector-parser": { + "id": 33, + "package_id": 35, + }, + "postcss-value-parser": { + "id": 813, + "package_id": 51, + }, + "prelude-ls": { + "id": 359, + "package_id": 228, + }, + "progress": { + "id": 130, + "package_id": 161, + }, + "prop-types": { + "id": 430, + "package_id": 345, + }, + "proxy-agent": { + "id": 131, + "package_id": 127, + }, + "proxy-from-env": { + "id": 184, + "package_id": 135, + }, + "pump": { + "id": 161, + "package_id": 125, + }, + "punycode": { + "id": 402, + "package_id": 275, + }, + "puppeteer": { + "id": 9, + "package_id": 89, + }, + "puppeteer-core": { + "id": 126, + "package_id": 170, + }, + "queue-microtask": { + "id": 106, + "package_id": 72, + }, + "queue-tick": { + "id": 171, + "package_id": 120, + }, + "react": { + "id": 10, + "package_id": 88, + }, + "react-dom": { + "id": 11, + "package_id": 84, + }, + "react-is": { + "id": 602, + "package_id": 346, + }, + "read-cache": { + "id": 84, + "package_id": 49, + }, + "readdirp": { + "id": 113, + "package_id": 78, + }, + "reflect.getprototypeof": { + "id": 645, + "package_id": 357, + }, + "regenerator-runtime": { + "id": 705, + "package_id": 382, + }, + "regexp.prototype.flags": { + "id": 441, + "package_id": 300, + }, + "require-directory": { + "id": 141, + "package_id": 102, + }, + "resolve": { + "id": 34, + "package_id": 29, + }, + "resolve-from": { + "id": 276, + "package_id": 199, + }, + "resolve-pkg-maps": { + "id": 752, + "package_id": 397, + }, + "reusify": { + "id": 103, + "package_id": 69, + }, + "rimraf": { + "id": 372, + "package_id": 249, + }, + "run-parallel": { + "id": 105, + "package_id": 71, + }, + "safe-array-concat": { + "id": 641, + "package_id": 328, + }, + "safe-regex-test": { + "id": 499, + "package_id": 326, + }, + "scheduler": { + "id": 120, + "package_id": 85, + }, + "semver": { + "id": 721, + "package_id": 343, + }, + "set-function-name": { + "id": 442, + "package_id": 295, + }, + "shebang-command": { + "id": 391, + "package_id": 267, + }, + "shebang-regex": { + "id": 394, + "package_id": 268, + }, + "side-channel": { + "id": 443, + "package_id": 289, + }, + "signal-exit": { + "id": 807, + "package_id": 430, + }, + "slash": { + "id": 777, + "package_id": 407, + }, + "smart-buffer": { + "id": 190, + "package_id": 130, + }, + "socks": { + "id": 188, + "package_id": 129, + }, + "socks-proxy-agent": { + "id": 185, + "package_id": 128, + }, + "source-map": { + "id": 210, + "package_id": 143, + }, + "source-map-js": { + "id": 76, + "package_id": 40, + }, + "streamsearch": { + "id": 303, + "package_id": 218, + }, + "streamx": { + "id": 174, + "package_id": 119, + }, + "string-width": { + "id": 142, + "package_id": 97, + }, + "string.prototype.matchall": { + "id": 433, + "package_id": 288, + }, + "string.prototype.trim": { + "id": 500, + "package_id": 325, + }, + "string.prototype.trimend": { + "id": 501, + "package_id": 324, + }, + "string.prototype.trimstart": { + "id": 502, + "package_id": 323, + }, + "strip-ansi": { + "id": 351, + "package_id": 98, + }, + "strip-bom": { + "id": 727, + "package_id": 385, + }, + "strip-json-comments": { + "id": 414, + "package_id": 283, + }, + "styled-jsx": { + "id": 284, + "package_id": 213, + }, + "sucrase": { + "id": 35, + "package_id": 3, + }, + "supports-color": { + "id": 396, + "package_id": 271, + }, + "supports-preserve-symlinks-flag": { + "id": 67, + "package_id": 30, + }, + "tailwindcss": { + "id": 12, + "package_id": 2, + }, + "tapable": { + "id": 754, + "package_id": 399, + }, + "tar-fs": { + "id": 132, + "package_id": 115, + }, + "tar-stream": { + "id": 162, + "package_id": 123, + }, + "text-table": { + "id": 352, + "package_id": 223, + }, + "thenify": { + "id": 46, + "package_id": 8, + }, + "thenify-all": { + "id": 45, + "package_id": 7, + }, + "through": { + "id": 158, + "package_id": 111, + }, + "to-regex-range": { + "id": 91, + "package_id": 58, + }, + "tr46": { + "id": 248, + "package_id": 177, + }, + "ts-api-utils": { + "id": 769, + "package_id": 404, + }, + "ts-interface-checker": { + "id": 42, + "package_id": 4, + }, + "tsconfig-paths": { + "id": 722, + "package_id": 384, + }, + "tslib": { + "id": 304, + "package_id": 147, + }, + "type-check": { + "id": 360, + "package_id": 227, + }, + "type-fest": { + "id": 363, + "package_id": 240, + }, + "typed-array-buffer": { + "id": 503, + "package_id": 322, + }, + "typed-array-byte-length": { + "id": 504, + "package_id": 321, + }, + "typed-array-byte-offset": { + "id": 505, + "package_id": 320, + }, + "typed-array-length": { + "id": 506, + "package_id": 318, + }, + "typescript": { + "id": 13, + "package_id": 1, + }, + "unbox-primitive": { + "id": 507, + "package_id": 310, + }, + "unbzip2-stream": { + "id": 133, + "package_id": 110, + }, + "universalify": { + "id": 222, + "package_id": 152, + }, + "update-browserslist-db": { + "id": 818, + "package_id": 437, + }, + "uri-js": { + "id": 401, + "package_id": 274, + }, + "urlpattern-polyfill": { + "id": 251, + "package_id": 179, + }, + "util-deprecate": { + "id": 71, + "package_id": 36, + }, + "webidl-conversions": { + "id": 249, + "package_id": 176, + }, + "whatwg-url": { + "id": 246, + "package_id": 175, + }, + "which": { + "id": 392, + "package_id": 265, + }, + "which-boxed-primitive": { + "id": 519, + "package_id": 311, + }, + "which-builtin-type": { + "id": 652, + "package_id": 358, + }, + "which-collection": { + "id": 663, + "package_id": 359, + }, + "which-typed-array": { + "id": 508, + "package_id": 305, + }, + "wrap-ansi": { + "id": 151, + "package_id": 106, + }, + "wrappy": { + "id": 59, + "package_id": 15, + }, + "ws": { + "id": 242, + "package_id": 171, + }, + "y18n": { + "id": 143, + "package_id": 96, + }, + "yallist": { + "id": 137, + "package_id": 93, + }, + "yaml": { + "id": 78, + "package_id": 44, + }, + "yargs": { + "id": 134, + "package_id": 94, + }, + "yargs-parser": { + "id": 144, + "package_id": 95, + }, + "yauzl": { + "id": 230, + "package_id": 165, + }, + "yocto-queue": { + "id": 368, + "package_id": 246, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "caniuse-lite": { + "id": 281, + "package_id": 216, + }, + "postcss": { + "id": 283, + "package_id": 215, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/next/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 405, + "package_id": 16, + }, + }, + "depth": 1, + "id": 2, + "path": "node_modules/@humanwhocodes/config-array/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 735, + "package_id": 391, + }, + }, + "depth": 1, + "id": 3, + "path": "node_modules/eslint-import-resolver-node/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 710, + "package_id": 391, + }, + "doctrine": { + "id": 711, + "package_id": 368, + }, + }, + "depth": 1, + "id": 4, + "path": "node_modules/eslint-plugin-import/node_modules", + }, + { + "dependencies": { + "doctrine": { + "id": 421, + "package_id": 368, + }, + "resolve": { + "id": 431, + "package_id": 344, + }, + }, + "depth": 1, + "id": 5, + "path": "node_modules/eslint-plugin-react/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 135, + "package_id": 91, + }, + }, + "depth": 1, + "id": 6, + "path": "node_modules/@puppeteer/browsers/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 109, + "package_id": 66, + }, + }, + "depth": 1, + "id": 7, + "path": "node_modules/chokidar/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 97, + "package_id": 66, + }, + }, + "depth": 1, + "id": 8, + "path": "node_modules/fast-glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 38, + "package_id": 12, + }, + }, + "depth": 1, + "id": 9, + "path": "node_modules/sucrase/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 784, + "package_id": 418, + }, + }, + "depth": 1, + "id": 10, + "path": "node_modules/glob/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 768, + "package_id": 405, + }, + }, + "depth": 1, + "id": 11, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 12, + "path": "node_modules/eslint-import-resolver-node/node_modules/debug/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 733, + "package_id": 391, + }, + }, + "depth": 1, + "id": 13, + "path": "node_modules/eslint-module-utils/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 14, + "path": "node_modules/eslint-plugin-import/node_modules/debug/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 136, + "package_id": 92, + }, + }, + "depth": 2, + "id": 15, + "path": "node_modules/@puppeteer/browsers/node_modules/semver/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 51, + "package_id": 16, + }, + }, + "depth": 2, + "id": 16, + "path": "node_modules/sucrase/node_modules/glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 373, + "package_id": 250, + }, + }, + "depth": 1, + "id": 17, + "path": "node_modules/rimraf/node_modules", + }, + { + "dependencies": { + "brace-expansion": { + "id": 789, + "package_id": 419, + }, + }, + "depth": 2, + "id": 18, + "path": "node_modules/glob/node_modules/minimatch/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 787, + "package_id": 417, + }, + }, + "depth": 1, + "id": 19, + "path": "node_modules/path-scurry/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 771, + "package_id": 92, + }, + }, + "depth": 2, + "id": 20, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules/semver/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 21, + "path": "node_modules/eslint-module-utils/node_modules/debug/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 264, + "package_id": 187, + }, + }, + "depth": 1, + "id": 22, + "path": "node_modules/@babel/code-frame/node_modules", + }, + { + "dependencies": { + "http-proxy-agent": { + "id": 197, + "package_id": 149, + }, + "https-proxy-agent": { + "id": 198, + "package_id": 148, + }, + }, + "depth": 1, + "id": 23, + "path": "node_modules/pac-proxy-agent/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 1, + "id": 24, + "path": "node_modules/string-width/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 793, + "package_id": 426, + }, + "string-width-cjs": { + "id": 794, + "package_id": 97, + }, + "strip-ansi": { + "id": 795, + "package_id": 424, + }, + "strip-ansi-cjs": { + "id": 796, + "package_id": 98, + }, + "wrap-ansi": { + "id": 797, + "package_id": 423, + }, + "wrap-ansi-cjs": { + "id": 798, + "package_id": 106, + }, + }, + "depth": 1, + "id": 25, + "path": "node_modules/@isaacs/cliui/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 272, + "package_id": 187, + }, + }, + "depth": 1, + "id": 26, + "path": "node_modules/@babel/highlight/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 27, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "ip": { + "id": 189, + "package_id": 131, + }, + }, + "depth": 1, + "id": 28, + "path": "node_modules/socks/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + "strip-ansi": { + "id": 147, + "package_id": 98, + }, + }, + "depth": 2, + "id": 29, + "path": "node_modules/@isaacs/cliui/node_modules/string-width-cjs/node_modules", + }, + { + "dependencies": { + "ansi-regex": { + "id": 802, + "package_id": 425, + }, + }, + "depth": 2, + "id": 30, + "path": "node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 799, + "package_id": 428, + }, + }, + "depth": 2, + "id": 31, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 153, + "package_id": 97, + }, + "strip-ansi": { + "id": 154, + "package_id": 98, + }, + }, + "depth": 2, + "id": 32, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 33, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 34, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 35, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 3, + "id": 36, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/string-width/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 37, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 38, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 39, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 40, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + ], + "workspace_paths": {}, + "workspace_versions": {}, +} +`; 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 new file mode 100644 index 00000000000000..b3bacc9d0f86ce --- /dev/null +++ b/test/integration/next-pages/test/__snapshots__/next-build.test.ts.snap @@ -0,0 +1,42627 @@ +// Bun Snapshot v1, https://goo.gl/fbAQLP + +exports[`next build works: bun 1`] = ` +{ + "dependencies": [ + { + "behavior": { + "normal": true, + }, + "id": 0, + "literal": "20.7.0", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": "==20.7.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 1, + "literal": "18.2.22", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": "==18.2.22", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 2, + "literal": "18.2.7", + "name": "@types/react-dom", + "npm": { + "name": "@types/react-dom", + "version": "==18.2.7", + }, + "package_id": 440, + }, + { + "behavior": { + "normal": true, + }, + "id": 3, + "literal": "10.4.16", + "name": "autoprefixer", + "npm": { + "name": "autoprefixer", + "version": "==10.4.16", + }, + "package_id": 432, + }, + { + "behavior": { + "normal": true, + }, + "id": 4, + "literal": "^1.0.3", + "name": "bun-types", + "npm": { + "name": "bun-types", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 431, + }, + { + "behavior": { + "normal": true, + }, + "id": 5, + "literal": "8.50.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": "==8.50.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 6, + "literal": "14.1.3", + "name": "eslint-config-next", + "npm": { + "name": "eslint-config-next", + "version": "==14.1.3", + }, + "package_id": 221, + }, + { + "behavior": { + "normal": true, + }, + "id": 7, + "literal": "14.1.3", + "name": "next", + "npm": { + "name": "next", + "version": "==14.1.3", + }, + "package_id": 203, + }, + { + "behavior": { + "normal": true, + }, + "id": 8, + "literal": "8.4.30", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.30", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 9, + "literal": "22.4.1", + "name": "puppeteer", + "npm": { + "name": "puppeteer", + "version": "==22.4.1", + }, + "package_id": 89, + }, + { + "behavior": { + "normal": true, + }, + "id": 10, + "literal": "18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": "==18.2.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 11, + "literal": "18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": "==18.2.0", + }, + "package_id": 84, + }, + { + "behavior": { + "normal": true, + }, + "id": 12, + "literal": "3.3.3", + "name": "tailwindcss", + "npm": { + "name": "tailwindcss", + "version": "==3.3.3", + }, + "package_id": 2, + }, + { + "behavior": { + "normal": true, + }, + "id": 13, + "literal": "5.2.2", + "name": "typescript", + "npm": { + "name": "typescript", + "version": "==5.2.2", + }, + "package_id": 1, + }, + { + "behavior": { + "normal": true, + }, + "id": 14, + "literal": "^5.2.0", + "name": "@alloc/quick-lru", + "npm": { + "name": "@alloc/quick-lru", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 83, + }, + { + "behavior": { + "normal": true, + }, + "id": 15, + "literal": "^5.0.2", + "name": "arg", + "npm": { + "name": "arg", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 82, + }, + { + "behavior": { + "normal": true, + }, + "id": 16, + "literal": "^3.5.3", + "name": "chokidar", + "npm": { + "name": "chokidar", + "version": ">=3.5.3 <4.0.0", + }, + "package_id": 76, + }, + { + "behavior": { + "normal": true, + }, + "id": 17, + "literal": "^1.2.2", + "name": "didyoumean", + "npm": { + "name": "didyoumean", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 75, + }, + { + "behavior": { + "normal": true, + }, + "id": 18, + "literal": "^1.1.3", + "name": "dlv", + "npm": { + "name": "dlv", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 74, + }, + { + "behavior": { + "normal": true, + }, + "id": 19, + "literal": "^3.2.12", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.12 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 20, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 21, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 22, + "literal": "^1.18.2", + "name": "jiti", + "npm": { + "name": "jiti", + "version": ">=1.18.2 <2.0.0", + }, + "package_id": 60, + }, + { + "behavior": { + "normal": true, + }, + "id": 23, + "literal": "^2.1.0", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 24, + "literal": "^4.0.5", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.5 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 25, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 26, + "literal": "^3.0.0", + "name": "object-hash", + "npm": { + "name": "object-hash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 52, + }, + { + "behavior": { + "normal": true, + }, + "id": 27, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 28, + "literal": "^8.4.23", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.23 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 29, + "literal": "^15.1.0", + "name": "postcss-import", + "npm": { + "name": "postcss-import", + "version": ">=15.1.0 <16.0.0", + }, + "package_id": 48, + }, + { + "behavior": { + "normal": true, + }, + "id": 30, + "literal": "^4.0.1", + "name": "postcss-js", + "npm": { + "name": "postcss-js", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 46, + }, + { + "behavior": { + "normal": true, + }, + "id": 31, + "literal": "^4.0.1", + "name": "postcss-load-config", + "npm": { + "name": "postcss-load-config", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 43, + }, + { + "behavior": { + "normal": true, + }, + "id": 32, + "literal": "^6.0.1", + "name": "postcss-nested", + "npm": { + "name": "postcss-nested", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 38, + }, + { + "behavior": { + "normal": true, + }, + "id": 33, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "normal": true, + }, + "id": 34, + "literal": "^1.22.2", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.2 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 35, + "literal": "^3.32.0", + "name": "sucrase", + "npm": { + "name": "sucrase", + "version": ">=3.32.0 <4.0.0", + }, + "package_id": 3, + }, + { + "behavior": { + "normal": true, + }, + "id": 36, + "literal": "^0.3.2", + "name": "@jridgewell/gen-mapping", + "npm": { + "name": "@jridgewell/gen-mapping", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 24, + }, + { + "behavior": { + "normal": true, + }, + "id": 37, + "literal": "^4.0.0", + "name": "commander", + "npm": { + "name": "commander", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 23, + }, + { + "behavior": { + "normal": true, + }, + "id": 38, + "literal": "7.1.6", + "name": "glob", + "npm": { + "name": "glob", + "version": "==7.1.6", + }, + "package_id": 12, + }, + { + "behavior": { + "normal": true, + }, + "id": 39, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 40, + "literal": "^2.7.0", + "name": "mz", + "npm": { + "name": "mz", + "version": ">=2.7.0 <3.0.0", + }, + "package_id": 6, + }, + { + "behavior": { + "normal": true, + }, + "id": 41, + "literal": "^4.0.1", + "name": "pirates", + "npm": { + "name": "pirates", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 5, + }, + { + "behavior": { + "normal": true, + }, + "id": 42, + "literal": "^0.1.9", + "name": "ts-interface-checker", + "npm": { + "name": "ts-interface-checker", + "version": ">=0.1.9 <0.2.0", + }, + "package_id": 4, + }, + { + "behavior": { + "normal": true, + }, + "id": 43, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 44, + "literal": "^4.0.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 45, + "literal": "^1.0.0", + "name": "thenify-all", + "npm": { + "name": "thenify-all", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 7, + }, + { + "behavior": { + "normal": true, + }, + "id": 46, + "literal": ">= 3.1.0 < 4", + "name": "thenify", + "npm": { + "name": "thenify", + "version": ">=3.1.0 && <4.0.0", + }, + "package_id": 8, + }, + { + "behavior": { + "normal": true, + }, + "id": 47, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 48, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 49, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 50, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 51, + "literal": "^3.0.4", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 52, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 53, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 54, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 55, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 56, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 57, + "literal": "0.0.1", + "name": "concat-map", + "npm": { + "name": "concat-map", + "version": "==0.0.1", + }, + "package_id": 18, + }, + { + "behavior": { + "normal": true, + }, + "id": 58, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 59, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 60, + "literal": "^1.0.1", + "name": "@jridgewell/set-array", + "npm": { + "name": "@jridgewell/set-array", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 28, + }, + { + "behavior": { + "normal": true, + }, + "id": 61, + "literal": "^1.4.10", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.10 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 62, + "literal": "^0.3.9", + "name": "@jridgewell/trace-mapping", + "npm": { + "name": "@jridgewell/trace-mapping", + "version": ">=0.3.9 <0.4.0", + }, + "package_id": 25, + }, + { + "behavior": { + "normal": true, + }, + "id": 63, + "literal": "^3.1.0", + "name": "@jridgewell/resolve-uri", + "npm": { + "name": "@jridgewell/resolve-uri", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 27, + }, + { + "behavior": { + "normal": true, + }, + "id": 64, + "literal": "^1.4.14", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.14 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 65, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 66, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 67, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 68, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 69, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 70, + "literal": "^3.0.0", + "name": "cssesc", + "npm": { + "name": "cssesc", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 37, + }, + { + "behavior": { + "normal": true, + }, + "id": 71, + "literal": "^1.0.2", + "name": "util-deprecate", + "npm": { + "name": "util-deprecate", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 36, + }, + { + "behavior": { + "normal": true, + }, + "id": 72, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "peer": true, + }, + "id": 73, + "literal": "^8.2.14", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.2.14 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 74, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 75, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 76, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 77, + "literal": "^2.0.5", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 78, + "literal": "^2.1.1", + "name": "yaml", + "npm": { + "name": "yaml", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 44, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 79, + "literal": ">=9.0.0", + "name": "ts-node", + "npm": { + "name": "ts-node", + "version": ">=9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 80, + "literal": ">=8.0.9", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.9", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 81, + "literal": "^2.0.1", + "name": "camelcase-css", + "npm": { + "name": "camelcase-css", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 47, + }, + { + "behavior": { + "peer": true, + }, + "id": 82, + "literal": "^8.4.21", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.21 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 83, + "literal": "^4.0.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "normal": true, + }, + "id": 84, + "literal": "^1.0.0", + "name": "read-cache", + "npm": { + "name": "read-cache", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 49, + }, + { + "behavior": { + "normal": true, + }, + "id": 85, + "literal": "^1.1.7", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "peer": true, + }, + "id": 86, + "literal": "^8.0.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 87, + "literal": "^2.3.0", + "name": "pify", + "npm": { + "name": "pify", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 50, + }, + { + "behavior": { + "normal": true, + }, + "id": 88, + "literal": "^3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 89, + "literal": "^2.3.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.3.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 90, + "literal": "^7.0.1", + "name": "fill-range", + "npm": { + "name": "fill-range", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 57, + }, + { + "behavior": { + "normal": true, + }, + "id": 91, + "literal": "^5.0.1", + "name": "to-regex-range", + "npm": { + "name": "to-regex-range", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 58, + }, + { + "behavior": { + "normal": true, + }, + "id": 92, + "literal": "^7.0.0", + "name": "is-number", + "npm": { + "name": "is-number", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 59, + }, + { + "behavior": { + "normal": true, + }, + "id": 93, + "literal": "^2.1.1", + "name": "is-extglob", + "npm": { + "name": "is-extglob", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 62, + }, + { + "behavior": { + "normal": true, + }, + "id": 94, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 95, + "literal": "^2.0.2", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 96, + "literal": "^1.2.3", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 97, + "literal": "^5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 98, + "literal": "^1.3.0", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 99, + "literal": "^4.0.4", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.4 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 100, + "literal": "^4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 101, + "literal": "2.1.5", + "name": "@nodelib/fs.scandir", + "npm": { + "name": "@nodelib/fs.scandir", + "version": "==2.1.5", + }, + "package_id": 70, + }, + { + "behavior": { + "normal": true, + }, + "id": 102, + "literal": "^1.6.0", + "name": "fastq", + "npm": { + "name": "fastq", + "version": ">=1.6.0 <2.0.0", + }, + "package_id": 68, + }, + { + "behavior": { + "normal": true, + }, + "id": 103, + "literal": "^1.0.4", + "name": "reusify", + "npm": { + "name": "reusify", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 69, + }, + { + "behavior": { + "normal": true, + }, + "id": 104, + "literal": "2.0.5", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": "==2.0.5", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 105, + "literal": "^1.1.9", + "name": "run-parallel", + "npm": { + "name": "run-parallel", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 71, + }, + { + "behavior": { + "normal": true, + }, + "id": 106, + "literal": "^1.2.2", + "name": "queue-microtask", + "npm": { + "name": "queue-microtask", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 72, + }, + { + "behavior": { + "normal": true, + }, + "id": 107, + "literal": "~3.1.2", + "name": "anymatch", + "npm": { + "name": "anymatch", + "version": ">=3.1.2 <3.2.0", + }, + "package_id": 81, + }, + { + "behavior": { + "normal": true, + }, + "id": 108, + "literal": "~3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <3.1.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 109, + "literal": "~5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <5.2.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 110, + "literal": "~2.1.0", + "name": "is-binary-path", + "npm": { + "name": "is-binary-path", + "version": ">=2.1.0 <2.2.0", + }, + "package_id": 79, + }, + { + "behavior": { + "normal": true, + }, + "id": 111, + "literal": "~4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <4.1.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 112, + "literal": "~3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <3.1.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 113, + "literal": "~3.6.0", + "name": "readdirp", + "npm": { + "name": "readdirp", + "version": ">=3.6.0 <3.7.0", + }, + "package_id": 78, + }, + { + "behavior": { + "optional": true, + }, + "id": 114, + "literal": "~2.3.2", + "name": "fsevents", + "npm": { + "name": "fsevents", + "version": ">=2.3.2 <2.4.0", + }, + "package_id": 77, + }, + { + "behavior": { + "normal": true, + }, + "id": 115, + "literal": "^2.2.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 116, + "literal": "^2.0.0", + "name": "binary-extensions", + "npm": { + "name": "binary-extensions", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 80, + }, + { + "behavior": { + "normal": true, + }, + "id": 117, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 118, + "literal": "^2.0.4", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.0.4 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 119, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 120, + "literal": "^0.23.0", + "name": "scheduler", + "npm": { + "name": "scheduler", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 85, + }, + { + "behavior": { + "peer": true, + }, + "id": 121, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 122, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 123, + "literal": "^3.0.0 || ^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 && >=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 124, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 125, + "literal": "9.0.0", + "name": "cosmiconfig", + "npm": { + "name": "cosmiconfig", + "version": "==9.0.0", + }, + "package_id": 181, + }, + { + "behavior": { + "normal": true, + }, + "id": 126, + "literal": "22.4.1", + "name": "puppeteer-core", + "npm": { + "name": "puppeteer-core", + "version": "==22.4.1", + }, + "package_id": 170, + }, + { + "behavior": { + "normal": true, + }, + "id": 127, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 128, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 129, + "literal": "2.0.1", + "name": "extract-zip", + "npm": { + "name": "extract-zip", + "version": "==2.0.1", + }, + "package_id": 162, + }, + { + "behavior": { + "normal": true, + }, + "id": 130, + "literal": "2.0.3", + "name": "progress", + "npm": { + "name": "progress", + "version": "==2.0.3", + }, + "package_id": 161, + }, + { + "behavior": { + "normal": true, + }, + "id": 131, + "literal": "6.4.0", + "name": "proxy-agent", + "npm": { + "name": "proxy-agent", + "version": "==6.4.0", + }, + "package_id": 127, + }, + { + "behavior": { + "normal": true, + }, + "id": 132, + "literal": "3.0.5", + "name": "tar-fs", + "npm": { + "name": "tar-fs", + "version": "==3.0.5", + }, + "package_id": 115, + }, + { + "behavior": { + "normal": true, + }, + "id": 133, + "literal": "1.4.3", + "name": "unbzip2-stream", + "npm": { + "name": "unbzip2-stream", + "version": "==1.4.3", + }, + "package_id": 110, + }, + { + "behavior": { + "normal": true, + }, + "id": 134, + "literal": "17.7.2", + "name": "yargs", + "npm": { + "name": "yargs", + "version": "==17.7.2", + }, + "package_id": 94, + }, + { + "behavior": { + "normal": true, + }, + "id": 135, + "literal": "7.6.0", + "name": "semver", + "npm": { + "name": "semver", + "version": "==7.6.0", + }, + "package_id": 91, + }, + { + "behavior": { + "normal": true, + }, + "id": 136, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 137, + "literal": "^4.0.0", + "name": "yallist", + "npm": { + "name": "yallist", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 93, + }, + { + "behavior": { + "normal": true, + }, + "id": 138, + "literal": "^8.0.1", + "name": "cliui", + "npm": { + "name": "cliui", + "version": ">=8.0.1 <9.0.0", + }, + "package_id": 105, + }, + { + "behavior": { + "normal": true, + }, + "id": 139, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 140, + "literal": "^2.0.5", + "name": "get-caller-file", + "npm": { + "name": "get-caller-file", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 103, + }, + { + "behavior": { + "normal": true, + }, + "id": 141, + "literal": "^2.1.1", + "name": "require-directory", + "npm": { + "name": "require-directory", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 102, + }, + { + "behavior": { + "normal": true, + }, + "id": 142, + "literal": "^4.2.3", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.3 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 143, + "literal": "^5.0.5", + "name": "y18n", + "npm": { + "name": "y18n", + "version": ">=5.0.5 <6.0.0", + }, + "package_id": 96, + }, + { + "behavior": { + "normal": true, + }, + "id": 144, + "literal": "^21.1.1", + "name": "yargs-parser", + "npm": { + "name": "yargs-parser", + "version": ">=21.1.1 <22.0.0", + }, + "package_id": 95, + }, + { + "behavior": { + "normal": true, + }, + "id": 145, + "literal": "^8.0.0", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 101, + }, + { + "behavior": { + "normal": true, + }, + "id": 146, + "literal": "^3.0.0", + "name": "is-fullwidth-code-point", + "npm": { + "name": "is-fullwidth-code-point", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 100, + }, + { + "behavior": { + "normal": true, + }, + "id": 147, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 148, + "literal": "^5.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 99, + }, + { + "behavior": { + "normal": true, + }, + "id": 149, + "literal": "^4.2.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 150, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 151, + "literal": "^7.0.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 152, + "literal": "^4.0.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 153, + "literal": "^4.1.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 154, + "literal": "^6.0.0", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 155, + "literal": "^2.0.1", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 108, + }, + { + "behavior": { + "normal": true, + }, + "id": 156, + "literal": "~1.1.4", + "name": "color-name", + "npm": { + "name": "color-name", + "version": ">=1.1.4 <1.2.0", + }, + "package_id": 109, + }, + { + "behavior": { + "normal": true, + }, + "id": 157, + "literal": "^5.2.1", + "name": "buffer", + "npm": { + "name": "buffer", + "version": ">=5.2.1 <6.0.0", + }, + "package_id": 112, + }, + { + "behavior": { + "normal": true, + }, + "id": 158, + "literal": "^2.3.8", + "name": "through", + "npm": { + "name": "through", + "version": ">=2.3.8 <3.0.0", + }, + "package_id": 111, + }, + { + "behavior": { + "normal": true, + }, + "id": 159, + "literal": "^1.3.1", + "name": "base64-js", + "npm": { + "name": "base64-js", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 114, + }, + { + "behavior": { + "normal": true, + }, + "id": 160, + "literal": "^1.1.13", + "name": "ieee754", + "npm": { + "name": "ieee754", + "version": ">=1.1.13 <2.0.0", + }, + "package_id": 113, + }, + { + "behavior": { + "normal": true, + }, + "id": 161, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 162, + "literal": "^3.1.5", + "name": "tar-stream", + "npm": { + "name": "tar-stream", + "version": ">=3.1.5 <4.0.0", + }, + "package_id": 123, + }, + { + "behavior": { + "optional": true, + }, + "id": 163, + "literal": "^2.1.1", + "name": "bare-fs", + "npm": { + "name": "bare-fs", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 118, + }, + { + "behavior": { + "optional": true, + }, + "id": 164, + "literal": "^2.1.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 165, + "literal": "^2.1.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 166, + "literal": "^2.0.0", + "name": "bare-events", + "npm": { + "name": "bare-events", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 122, + }, + { + "behavior": { + "normal": true, + }, + "id": 167, + "literal": "^2.0.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 168, + "literal": "^2.0.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 169, + "literal": "^2.13.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 170, + "literal": "^1.1.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 171, + "literal": "^1.0.1", + "name": "queue-tick", + "npm": { + "name": "queue-tick", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 120, + }, + { + "behavior": { + "normal": true, + }, + "id": 172, + "literal": "^1.6.4", + "name": "b4a", + "npm": { + "name": "b4a", + "version": ">=1.6.4 <2.0.0", + }, + "package_id": 124, + }, + { + "behavior": { + "normal": true, + }, + "id": 173, + "literal": "^1.2.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 174, + "literal": "^2.15.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.15.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 175, + "literal": "^1.1.0", + "name": "end-of-stream", + "npm": { + "name": "end-of-stream", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 126, + }, + { + "behavior": { + "normal": true, + }, + "id": 176, + "literal": "^1.3.1", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 177, + "literal": "^1.4.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 178, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 179, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 180, + "literal": "^7.0.1", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 160, + }, + { + "behavior": { + "normal": true, + }, + "id": 181, + "literal": "^7.0.3", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.3 <8.0.0", + }, + "package_id": 159, + }, + { + "behavior": { + "normal": true, + }, + "id": 182, + "literal": "^7.14.1", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=7.14.1 <8.0.0", + }, + "package_id": 158, + }, + { + "behavior": { + "normal": true, + }, + "id": 183, + "literal": "^7.0.1", + "name": "pac-proxy-agent", + "npm": { + "name": "pac-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 136, + }, + { + "behavior": { + "normal": true, + }, + "id": 184, + "literal": "^1.1.0", + "name": "proxy-from-env", + "npm": { + "name": "proxy-from-env", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 135, + }, + { + "behavior": { + "normal": true, + }, + "id": 185, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 186, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 187, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 188, + "literal": "^2.7.1", + "name": "socks", + "npm": { + "name": "socks", + "version": ">=2.7.1 <3.0.0", + }, + "package_id": 129, + }, + { + "behavior": { + "normal": true, + }, + "id": 189, + "literal": "^2.0.0", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 131, + }, + { + "behavior": { + "normal": true, + }, + "id": 190, + "literal": "^4.2.0", + "name": "smart-buffer", + "npm": { + "name": "smart-buffer", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 130, + }, + { + "behavior": { + "normal": true, + }, + "id": 191, + "literal": "2.1.2", + "name": "ms", + "npm": { + "name": "ms", + "version": "==2.1.2", + }, + "package_id": 133, + }, + { + "behavior": { + "normal": true, + }, + "id": 192, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 193, + "literal": "^0.23.0", + "name": "@tootallnate/quickjs-emscripten", + "npm": { + "name": "@tootallnate/quickjs-emscripten", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 157, + }, + { + "behavior": { + "normal": true, + }, + "id": 194, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 195, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 196, + "literal": "^6.0.1", + "name": "get-uri", + "npm": { + "name": "get-uri", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 150, + }, + { + "behavior": { + "normal": true, + }, + "id": 197, + "literal": "^7.0.0", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 149, + }, + { + "behavior": { + "normal": true, + }, + "id": 198, + "literal": "^7.0.2", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 148, + }, + { + "behavior": { + "normal": true, + }, + "id": 199, + "literal": "^7.0.0", + "name": "pac-resolver", + "npm": { + "name": "pac-resolver", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 137, + }, + { + "behavior": { + "normal": true, + }, + "id": 200, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 201, + "literal": "^5.0.0", + "name": "degenerator", + "npm": { + "name": "degenerator", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 140, + }, + { + "behavior": { + "normal": true, + }, + "id": 202, + "literal": "^1.1.8", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=1.1.8 <2.0.0", + }, + "package_id": 139, + }, + { + "behavior": { + "normal": true, + }, + "id": 203, + "literal": "^2.0.2", + "name": "netmask", + "npm": { + "name": "netmask", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 138, + }, + { + "behavior": { + "normal": true, + }, + "id": 204, + "literal": "^0.13.4", + "name": "ast-types", + "npm": { + "name": "ast-types", + "version": ">=0.13.4 <0.14.0", + }, + "package_id": 146, + }, + { + "behavior": { + "normal": true, + }, + "id": 205, + "literal": "^2.1.0", + "name": "escodegen", + "npm": { + "name": "escodegen", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 142, + }, + { + "behavior": { + "normal": true, + }, + "id": 206, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "normal": true, + }, + "id": 207, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 208, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 209, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "optional": true, + }, + "id": 210, + "literal": "~0.6.1", + "name": "source-map", + "npm": { + "name": "source-map", + "version": ">=0.6.1 <0.7.0", + }, + "package_id": 143, + }, + { + "behavior": { + "normal": true, + }, + "id": 211, + "literal": "^2.0.1", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 212, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 213, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 214, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 215, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 216, + "literal": "^5.0.2", + "name": "basic-ftp", + "npm": { + "name": "basic-ftp", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 156, + }, + { + "behavior": { + "normal": true, + }, + "id": 217, + "literal": "^5.0.1", + "name": "data-uri-to-buffer", + "npm": { + "name": "data-uri-to-buffer", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 155, + }, + { + "behavior": { + "normal": true, + }, + "id": 218, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 219, + "literal": "^8.1.0", + "name": "fs-extra", + "npm": { + "name": "fs-extra", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 151, + }, + { + "behavior": { + "normal": true, + }, + "id": 220, + "literal": "^4.2.0", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 221, + "literal": "^4.0.0", + "name": "jsonfile", + "npm": { + "name": "jsonfile", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 153, + }, + { + "behavior": { + "normal": true, + }, + "id": 222, + "literal": "^0.1.0", + "name": "universalify", + "npm": { + "name": "universalify", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 152, + }, + { + "behavior": { + "optional": true, + }, + "id": 223, + "literal": "^4.1.6", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.1.6 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 224, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 225, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 226, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 227, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 228, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 229, + "literal": "^5.1.0", + "name": "get-stream", + "npm": { + "name": "get-stream", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 169, + }, + { + "behavior": { + "normal": true, + }, + "id": 230, + "literal": "^2.10.0", + "name": "yauzl", + "npm": { + "name": "yauzl", + "version": ">=2.10.0 <3.0.0", + }, + "package_id": 165, + }, + { + "behavior": { + "optional": true, + }, + "id": 231, + "literal": "^2.9.1", + "name": "@types/yauzl", + "npm": { + "name": "@types/yauzl", + "version": ">=2.9.1 <3.0.0", + }, + "package_id": 163, + }, + { + "behavior": { + "normal": true, + }, + "id": 232, + "literal": "*", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": ">=0.0.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 233, + "literal": "~1.1.0", + "name": "fd-slicer", + "npm": { + "name": "fd-slicer", + "version": ">=1.1.0 <1.2.0", + }, + "package_id": 167, + }, + { + "behavior": { + "normal": true, + }, + "id": 234, + "literal": "~0.2.3", + "name": "buffer-crc32", + "npm": { + "name": "buffer-crc32", + "version": ">=0.2.3 <0.3.0", + }, + "package_id": 166, + }, + { + "behavior": { + "normal": true, + }, + "id": 235, + "literal": "~1.2.0", + "name": "pend", + "npm": { + "name": "pend", + "version": ">=1.2.0 <1.3.0", + }, + "package_id": 168, + }, + { + "behavior": { + "normal": true, + }, + "id": 236, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 237, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 238, + "literal": "0.5.12", + "name": "chromium-bidi", + "npm": { + "name": "chromium-bidi", + "version": "==0.5.12", + }, + "package_id": 178, + }, + { + "behavior": { + "normal": true, + }, + "id": 239, + "literal": "4.0.0", + "name": "cross-fetch", + "npm": { + "name": "cross-fetch", + "version": "==4.0.0", + }, + "package_id": 173, + }, + { + "behavior": { + "normal": true, + }, + "id": 240, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 241, + "literal": "0.0.1249869", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": "==0.0.1249869", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 242, + "literal": "8.16.0", + "name": "ws", + "npm": { + "name": "ws", + "version": "==8.16.0", + }, + "package_id": 171, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 243, + "literal": "^4.0.1", + "name": "bufferutil", + "npm": { + "name": "bufferutil", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 244, + "literal": ">=5.0.2", + "name": "utf-8-validate", + "npm": { + "name": "utf-8-validate", + "version": ">=5.0.2", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 245, + "literal": "^2.6.12", + "name": "node-fetch", + "npm": { + "name": "node-fetch", + "version": ">=2.6.12 <3.0.0", + }, + "package_id": 174, + }, + { + "behavior": { + "normal": true, + }, + "id": 246, + "literal": "^5.0.0", + "name": "whatwg-url", + "npm": { + "name": "whatwg-url", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 175, + }, + { + "behavior": { + "peer": true, + }, + "id": 247, + "literal": "^0.1.0", + "name": "encoding", + "npm": { + "name": "encoding", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 248, + "literal": "~0.0.3", + "name": "tr46", + "npm": { + "name": "tr46", + "version": ">=0.0.3 <0.1.0", + }, + "package_id": 177, + }, + { + "behavior": { + "normal": true, + }, + "id": 249, + "literal": "^3.0.0", + "name": "webidl-conversions", + "npm": { + "name": "webidl-conversions", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 176, + }, + { + "behavior": { + "normal": true, + }, + "id": 250, + "literal": "3.0.1", + "name": "mitt", + "npm": { + "name": "mitt", + "version": "==3.0.1", + }, + "package_id": 180, + }, + { + "behavior": { + "normal": true, + }, + "id": 251, + "literal": "10.0.0", + "name": "urlpattern-polyfill", + "npm": { + "name": "urlpattern-polyfill", + "version": "==10.0.0", + }, + "package_id": 179, + }, + { + "behavior": { + "peer": true, + }, + "id": 252, + "literal": "*", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": ">=0.0.0", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 253, + "literal": "^2.2.1", + "name": "env-paths", + "npm": { + "name": "env-paths", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 202, + }, + { + "behavior": { + "normal": true, + }, + "id": 254, + "literal": "^3.3.0", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 255, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 256, + "literal": "^5.2.0", + "name": "parse-json", + "npm": { + "name": "parse-json", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 182, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 257, + "literal": ">=4.9.5", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.9.5", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 258, + "literal": "^7.0.0", + "name": "@babel/code-frame", + "npm": { + "name": "@babel/code-frame", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 186, + }, + { + "behavior": { + "normal": true, + }, + "id": 259, + "literal": "^1.3.1", + "name": "error-ex", + "npm": { + "name": "error-ex", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 184, + }, + { + "behavior": { + "normal": true, + }, + "id": 260, + "literal": "^2.3.0", + "name": "json-parse-even-better-errors", + "npm": { + "name": "json-parse-even-better-errors", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 183, + }, + { + "behavior": { + "normal": true, + }, + "id": 261, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 262, + "literal": "^0.2.1", + "name": "is-arrayish", + "npm": { + "name": "is-arrayish", + "version": ">=0.2.1 <0.3.0", + }, + "package_id": 185, + }, + { + "behavior": { + "normal": true, + }, + "id": 263, + "literal": "^7.22.13", + "name": "@babel/highlight", + "npm": { + "name": "@babel/highlight", + "version": ">=7.22.13 <8.0.0", + }, + "package_id": 194, + }, + { + "behavior": { + "normal": true, + }, + "id": 264, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 265, + "literal": "^3.2.1", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 191, + }, + { + "behavior": { + "normal": true, + }, + "id": 266, + "literal": "^1.0.5", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 190, + }, + { + "behavior": { + "normal": true, + }, + "id": 267, + "literal": "^5.3.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 188, + }, + { + "behavior": { + "normal": true, + }, + "id": 268, + "literal": "^3.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 189, + }, + { + "behavior": { + "normal": true, + }, + "id": 269, + "literal": "^1.9.0", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 192, + }, + { + "behavior": { + "normal": true, + }, + "id": 270, + "literal": "1.1.3", + "name": "color-name", + "npm": { + "name": "color-name", + "version": "==1.1.3", + }, + "package_id": 193, + }, + { + "behavior": { + "normal": true, + }, + "id": 271, + "literal": "^7.22.20", + "name": "@babel/helper-validator-identifier", + "npm": { + "name": "@babel/helper-validator-identifier", + "version": ">=7.22.20 <8.0.0", + }, + "package_id": 195, + }, + { + "behavior": { + "normal": true, + }, + "id": 272, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 273, + "literal": "^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 274, + "literal": "^2.0.1", + "name": "argparse", + "npm": { + "name": "argparse", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 197, + }, + { + "behavior": { + "normal": true, + }, + "id": 275, + "literal": "^1.0.0", + "name": "parent-module", + "npm": { + "name": "parent-module", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 200, + }, + { + "behavior": { + "normal": true, + }, + "id": 276, + "literal": "^4.0.0", + "name": "resolve-from", + "npm": { + "name": "resolve-from", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 199, + }, + { + "behavior": { + "normal": true, + }, + "id": 277, + "literal": "^3.0.0", + "name": "callsites", + "npm": { + "name": "callsites", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 201, + }, + { + "behavior": { + "normal": true, + }, + "id": 278, + "literal": "14.1.3", + "name": "@next/env", + "npm": { + "name": "@next/env", + "version": "==14.1.3", + }, + "package_id": 220, + }, + { + "behavior": { + "normal": true, + }, + "id": 279, + "literal": "0.5.2", + "name": "@swc/helpers", + "npm": { + "name": "@swc/helpers", + "version": "==0.5.2", + }, + "package_id": 219, + }, + { + "behavior": { + "normal": true, + }, + "id": 280, + "literal": "1.6.0", + "name": "busboy", + "npm": { + "name": "busboy", + "version": "==1.6.0", + }, + "package_id": 217, + }, + { + "behavior": { + "normal": true, + }, + "id": 281, + "literal": "^1.0.30001579", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001579 <2.0.0", + }, + "package_id": 216, + }, + { + "behavior": { + "normal": true, + }, + "id": 282, + "literal": "^4.2.11", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.11 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 283, + "literal": "8.4.31", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.31", + }, + "package_id": 215, + }, + { + "behavior": { + "normal": true, + }, + "id": 284, + "literal": "5.1.1", + "name": "styled-jsx", + "npm": { + "name": "styled-jsx", + "version": "==5.1.1", + }, + "package_id": 213, + }, + { + "behavior": { + "optional": true, + }, + "id": 285, + "literal": "14.1.3", + "name": "@next/swc-darwin-arm64", + "npm": { + "name": "@next/swc-darwin-arm64", + "version": "==14.1.3", + }, + "package_id": 212, + }, + { + "behavior": { + "optional": true, + }, + "id": 286, + "literal": "14.1.3", + "name": "@next/swc-darwin-x64", + "npm": { + "name": "@next/swc-darwin-x64", + "version": "==14.1.3", + }, + "package_id": 211, + }, + { + "behavior": { + "optional": true, + }, + "id": 287, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-gnu", + "npm": { + "name": "@next/swc-linux-arm64-gnu", + "version": "==14.1.3", + }, + "package_id": 210, + }, + { + "behavior": { + "optional": true, + }, + "id": 288, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-musl", + "npm": { + "name": "@next/swc-linux-arm64-musl", + "version": "==14.1.3", + }, + "package_id": 209, + }, + { + "behavior": { + "optional": true, + }, + "id": 289, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-gnu", + "npm": { + "name": "@next/swc-linux-x64-gnu", + "version": "==14.1.3", + }, + "package_id": 208, + }, + { + "behavior": { + "optional": true, + }, + "id": 290, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-musl", + "npm": { + "name": "@next/swc-linux-x64-musl", + "version": "==14.1.3", + }, + "package_id": 207, + }, + { + "behavior": { + "optional": true, + }, + "id": 291, + "literal": "14.1.3", + "name": "@next/swc-win32-arm64-msvc", + "npm": { + "name": "@next/swc-win32-arm64-msvc", + "version": "==14.1.3", + }, + "package_id": 206, + }, + { + "behavior": { + "optional": true, + }, + "id": 292, + "literal": "14.1.3", + "name": "@next/swc-win32-ia32-msvc", + "npm": { + "name": "@next/swc-win32-ia32-msvc", + "version": "==14.1.3", + }, + "package_id": 205, + }, + { + "behavior": { + "optional": true, + }, + "id": 293, + "literal": "14.1.3", + "name": "@next/swc-win32-x64-msvc", + "npm": { + "name": "@next/swc-win32-x64-msvc", + "version": "==14.1.3", + }, + "package_id": 204, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 294, + "literal": "^1.1.0", + "name": "@opentelemetry/api", + "npm": { + "name": "@opentelemetry/api", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 295, + "literal": "^1.3.0", + "name": "sass", + "npm": { + "name": "sass", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 296, + "literal": "^18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 84, + }, + { + "behavior": { + "peer": true, + }, + "id": 297, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 298, + "literal": "0.0.1", + "name": "client-only", + "npm": { + "name": "client-only", + "version": "==0.0.1", + }, + "package_id": 214, + }, + { + "behavior": { + "peer": true, + }, + "id": 299, + "literal": ">= 16.8.0 || 17.x.x || ^18.0.0-0", + "name": "react", + "npm": { + "name": "react", + "version": ">=16.8.0 || <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && >=18.0.0-0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 300, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 301, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 302, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 303, + "literal": "^1.1.0", + "name": "streamsearch", + "npm": { + "name": "streamsearch", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 218, + }, + { + "behavior": { + "normal": true, + }, + "id": 304, + "literal": "^2.4.0", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.4.0 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 305, + "literal": "14.1.3", + "name": "@next/eslint-plugin-next", + "npm": { + "name": "@next/eslint-plugin-next", + "version": "==14.1.3", + }, + "package_id": 413, + }, + { + "behavior": { + "normal": true, + }, + "id": 306, + "literal": "^1.3.3", + "name": "@rushstack/eslint-patch", + "npm": { + "name": "@rushstack/eslint-patch", + "version": ">=1.3.3 <2.0.0", + }, + "package_id": 412, + }, + { + "behavior": { + "normal": true, + }, + "id": 307, + "literal": "^5.4.2 || ^6.0.0", + "name": "@typescript-eslint/parser", + "npm": { + "name": "@typescript-eslint/parser", + "version": ">=5.4.2 <6.0.0 || >=6.0.0 <7.0.0 && >=6.0.0 <7.0.0", + }, + "package_id": 400, + }, + { + "behavior": { + "normal": true, + }, + "id": 308, + "literal": "^0.3.6", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.6 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 309, + "literal": "^3.5.2", + "name": "eslint-import-resolver-typescript", + "npm": { + "name": "eslint-import-resolver-typescript", + "version": ">=3.5.2 <4.0.0", + }, + "package_id": 395, + }, + { + "behavior": { + "normal": true, + }, + "id": 310, + "literal": "^2.28.1", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=2.28.1 <3.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 311, + "literal": "^6.7.1", + "name": "eslint-plugin-jsx-a11y", + "npm": { + "name": "eslint-plugin-jsx-a11y", + "version": ">=6.7.1 <7.0.0", + }, + "package_id": 371, + }, + { + "behavior": { + "normal": true, + }, + "id": 312, + "literal": "^7.33.2", + "name": "eslint-plugin-react", + "npm": { + "name": "eslint-plugin-react", + "version": ">=7.33.2 <8.0.0", + }, + "package_id": 287, + }, + { + "behavior": { + "normal": true, + }, + "id": 313, + "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", + "name": "eslint-plugin-react-hooks", + "npm": { + "name": "eslint-plugin-react-hooks", + "version": ">=4.5.0 <5.0.0 || ==5.0.0-canary-7118f5dd7-20230705 && ==5.0.0-canary-7118f5dd7-20230705", + }, + "package_id": 286, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 314, + "literal": ">=3.3.1", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=3.3.1", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 315, + "literal": "^7.23.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.23.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 316, + "literal": "^4.2.0", + "name": "@eslint-community/eslint-utils", + "npm": { + "name": "@eslint-community/eslint-utils", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 285, + }, + { + "behavior": { + "normal": true, + }, + "id": 317, + "literal": "^4.6.1", + "name": "@eslint-community/regexpp", + "npm": { + "name": "@eslint-community/regexpp", + "version": ">=4.6.1 <5.0.0", + }, + "package_id": 284, + }, + { + "behavior": { + "normal": true, + }, + "id": 318, + "literal": "^2.1.2", + "name": "@eslint/eslintrc", + "npm": { + "name": "@eslint/eslintrc", + "version": ">=2.1.2 <3.0.0", + }, + "package_id": 282, + }, + { + "behavior": { + "normal": true, + }, + "id": 319, + "literal": "8.50.0", + "name": "@eslint/js", + "npm": { + "name": "@eslint/js", + "version": "==8.50.0", + }, + "package_id": 281, + }, + { + "behavior": { + "normal": true, + }, + "id": 320, + "literal": "^0.11.11", + "name": "@humanwhocodes/config-array", + "npm": { + "name": "@humanwhocodes/config-array", + "version": ">=0.11.11 <0.12.0", + }, + "package_id": 279, + }, + { + "behavior": { + "normal": true, + }, + "id": 321, + "literal": "^1.0.1", + "name": "@humanwhocodes/module-importer", + "npm": { + "name": "@humanwhocodes/module-importer", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 278, + }, + { + "behavior": { + "normal": true, + }, + "id": 322, + "literal": "^1.2.8", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 323, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 324, + "literal": "^4.0.0", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 270, + }, + { + "behavior": { + "normal": true, + }, + "id": 325, + "literal": "^7.0.2", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 326, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 327, + "literal": "^3.0.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 263, + }, + { + "behavior": { + "normal": true, + }, + "id": 328, + "literal": "^4.0.0", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 262, + }, + { + "behavior": { + "normal": true, + }, + "id": 329, + "literal": "^7.2.2", + "name": "eslint-scope", + "npm": { + "name": "eslint-scope", + "version": ">=7.2.2 <8.0.0", + }, + "package_id": 260, + }, + { + "behavior": { + "normal": true, + }, + "id": 330, + "literal": "^3.4.3", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.3 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 331, + "literal": "^9.6.1", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.1 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 332, + "literal": "^1.4.2", + "name": "esquery", + "npm": { + "name": "esquery", + "version": ">=1.4.2 <2.0.0", + }, + "package_id": 255, + }, + { + "behavior": { + "normal": true, + }, + "id": 333, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 334, + "literal": "^3.1.3", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.3 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 335, + "literal": "^6.0.1", + "name": "file-entry-cache", + "npm": { + "name": "file-entry-cache", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 247, + }, + { + "behavior": { + "normal": true, + }, + "id": 336, + "literal": "^5.0.0", + "name": "find-up", + "npm": { + "name": "find-up", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 241, + }, + { + "behavior": { + "normal": true, + }, + "id": 337, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 338, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 339, + "literal": "^1.4.0", + "name": "graphemer", + "npm": { + "name": "graphemer", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 238, + }, + { + "behavior": { + "normal": true, + }, + "id": 340, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 341, + "literal": "^0.1.4", + "name": "imurmurhash", + "npm": { + "name": "imurmurhash", + "version": ">=0.1.4 <0.2.0", + }, + "package_id": 236, + }, + { + "behavior": { + "normal": true, + }, + "id": 342, + "literal": "^4.0.0", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 343, + "literal": "^3.0.3", + "name": "is-path-inside", + "npm": { + "name": "is-path-inside", + "version": ">=3.0.3 <4.0.0", + }, + "package_id": 235, + }, + { + "behavior": { + "normal": true, + }, + "id": 344, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 345, + "literal": "^1.0.1", + "name": "json-stable-stringify-without-jsonify", + "npm": { + "name": "json-stable-stringify-without-jsonify", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 234, + }, + { + "behavior": { + "normal": true, + }, + "id": 346, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 347, + "literal": "^4.6.2", + "name": "lodash.merge", + "npm": { + "name": "lodash.merge", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 233, + }, + { + "behavior": { + "normal": true, + }, + "id": 348, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 349, + "literal": "^1.4.0", + "name": "natural-compare", + "npm": { + "name": "natural-compare", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 231, + }, + { + "behavior": { + "normal": true, + }, + "id": 350, + "literal": "^0.9.3", + "name": "optionator", + "npm": { + "name": "optionator", + "version": ">=0.9.3 <0.10.0", + }, + "package_id": 224, + }, + { + "behavior": { + "normal": true, + }, + "id": 351, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 352, + "literal": "^0.2.0", + "name": "text-table", + "npm": { + "name": "text-table", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 223, + }, + { + "behavior": { + "normal": true, + }, + "id": 353, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 354, + "literal": "^0.1.3", + "name": "deep-is", + "npm": { + "name": "deep-is", + "version": ">=0.1.3 <0.2.0", + }, + "package_id": 230, + }, + { + "behavior": { + "normal": true, + }, + "id": 355, + "literal": "^1.2.3", + "name": "@aashutoshrathi/word-wrap", + "npm": { + "name": "@aashutoshrathi/word-wrap", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 229, + }, + { + "behavior": { + "normal": true, + }, + "id": 356, + "literal": "^0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 357, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 358, + "literal": "^2.0.6", + "name": "fast-levenshtein", + "npm": { + "name": "fast-levenshtein", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 225, + }, + { + "behavior": { + "normal": true, + }, + "id": 359, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 360, + "literal": "~0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 361, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 362, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 363, + "literal": "^0.20.2", + "name": "type-fest", + "npm": { + "name": "type-fest", + "version": ">=0.20.2 <0.21.0", + }, + "package_id": 240, + }, + { + "behavior": { + "normal": true, + }, + "id": 364, + "literal": "^6.0.0", + "name": "locate-path", + "npm": { + "name": "locate-path", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 243, + }, + { + "behavior": { + "normal": true, + }, + "id": 365, + "literal": "^4.0.0", + "name": "path-exists", + "npm": { + "name": "path-exists", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 242, + }, + { + "behavior": { + "normal": true, + }, + "id": 366, + "literal": "^5.0.0", + "name": "p-locate", + "npm": { + "name": "p-locate", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 244, + }, + { + "behavior": { + "normal": true, + }, + "id": 367, + "literal": "^3.0.2", + "name": "p-limit", + "npm": { + "name": "p-limit", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 245, + }, + { + "behavior": { + "normal": true, + }, + "id": 368, + "literal": "^0.1.0", + "name": "yocto-queue", + "npm": { + "name": "yocto-queue", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 246, + }, + { + "behavior": { + "normal": true, + }, + "id": 369, + "literal": "^3.0.4", + "name": "flat-cache", + "npm": { + "name": "flat-cache", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 248, + }, + { + "behavior": { + "normal": true, + }, + "id": 370, + "literal": "^3.2.7", + "name": "flatted", + "npm": { + "name": "flatted", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 253, + }, + { + "behavior": { + "normal": true, + }, + "id": 371, + "literal": "^4.5.3", + "name": "keyv", + "npm": { + "name": "keyv", + "version": ">=4.5.3 <5.0.0", + }, + "package_id": 251, + }, + { + "behavior": { + "normal": true, + }, + "id": 372, + "literal": "^3.0.2", + "name": "rimraf", + "npm": { + "name": "rimraf", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 249, + }, + { + "behavior": { + "normal": true, + }, + "id": 373, + "literal": "^7.1.3", + "name": "glob", + "npm": { + "name": "glob", + "version": ">=7.1.3 <8.0.0", + }, + "package_id": 250, + }, + { + "behavior": { + "normal": true, + }, + "id": 374, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 375, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 376, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 377, + "literal": "^3.1.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 378, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 379, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 380, + "literal": "3.0.1", + "name": "json-buffer", + "npm": { + "name": "json-buffer", + "version": "==3.0.1", + }, + "package_id": 252, + }, + { + "behavior": { + "normal": true, + }, + "id": 381, + "literal": "^5.1.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 382, + "literal": "^8.9.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=8.9.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 383, + "literal": "^5.3.2", + "name": "acorn-jsx", + "npm": { + "name": "acorn-jsx", + "version": ">=5.3.2 <6.0.0", + }, + "package_id": 258, + }, + { + "behavior": { + "normal": true, + }, + "id": 384, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 385, + "literal": "^6.0.0 || ^7.0.0 || ^8.0.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 386, + "literal": "^4.3.0", + "name": "esrecurse", + "npm": { + "name": "esrecurse", + "version": ">=4.3.0 <5.0.0", + }, + "package_id": 261, + }, + { + "behavior": { + "normal": true, + }, + "id": 387, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 388, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 389, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 390, + "literal": "^3.1.0", + "name": "path-key", + "npm": { + "name": "path-key", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 269, + }, + { + "behavior": { + "normal": true, + }, + "id": 391, + "literal": "^2.0.0", + "name": "shebang-command", + "npm": { + "name": "shebang-command", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 267, + }, + { + "behavior": { + "normal": true, + }, + "id": 392, + "literal": "^2.0.1", + "name": "which", + "npm": { + "name": "which", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 265, + }, + { + "behavior": { + "normal": true, + }, + "id": 393, + "literal": "^2.0.0", + "name": "isexe", + "npm": { + "name": "isexe", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 266, + }, + { + "behavior": { + "normal": true, + }, + "id": 394, + "literal": "^3.0.0", + "name": "shebang-regex", + "npm": { + "name": "shebang-regex", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 268, + }, + { + "behavior": { + "normal": true, + }, + "id": 395, + "literal": "^4.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 396, + "literal": "^7.1.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 271, + }, + { + "behavior": { + "normal": true, + }, + "id": 397, + "literal": "^4.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 272, + }, + { + "behavior": { + "normal": true, + }, + "id": 398, + "literal": "^3.1.1", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 399, + "literal": "^2.0.0", + "name": "fast-json-stable-stringify", + "npm": { + "name": "fast-json-stable-stringify", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 277, + }, + { + "behavior": { + "normal": true, + }, + "id": 400, + "literal": "^0.4.1", + "name": "json-schema-traverse", + "npm": { + "name": "json-schema-traverse", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 276, + }, + { + "behavior": { + "normal": true, + }, + "id": 401, + "literal": "^4.2.2", + "name": "uri-js", + "npm": { + "name": "uri-js", + "version": ">=4.2.2 <5.0.0", + }, + "package_id": 274, + }, + { + "behavior": { + "normal": true, + }, + "id": 402, + "literal": "^2.1.0", + "name": "punycode", + "npm": { + "name": "punycode", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 275, + }, + { + "behavior": { + "normal": true, + }, + "id": 403, + "literal": "^1.2.1", + "name": "@humanwhocodes/object-schema", + "npm": { + "name": "@humanwhocodes/object-schema", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 280, + }, + { + "behavior": { + "normal": true, + }, + "id": 404, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 405, + "literal": "^3.0.5", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.5 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 406, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 407, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 408, + "literal": "^9.6.0", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.0 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 409, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 410, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 411, + "literal": "^3.2.1", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 412, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 413, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 414, + "literal": "^3.1.1", + "name": "strip-json-comments", + "npm": { + "name": "strip-json-comments", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 283, + }, + { + "behavior": { + "normal": true, + }, + "id": 415, + "literal": "^3.3.0", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 416, + "literal": "^6.0.0 || ^7.0.0 || >=8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 && >=8.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 417, + "literal": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=8.0.0-0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 418, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 419, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 420, + "literal": "^1.1.1", + "name": "array.prototype.tosorted", + "npm": { + "name": "array.prototype.tosorted", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 369, + }, + { + "behavior": { + "normal": true, + }, + "id": 421, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 422, + "literal": "^1.0.12", + "name": "es-iterator-helpers", + "npm": { + "name": "es-iterator-helpers", + "version": ">=1.0.12 <2.0.0", + }, + "package_id": 355, + }, + { + "behavior": { + "normal": true, + }, + "id": 423, + "literal": "^5.3.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 424, + "literal": "^2.4.1 || ^3.0.0", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=2.4.1 <3.0.0 || >=3.0.0 <4.0.0 && >=3.0.0 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 425, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 426, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 427, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 428, + "literal": "^1.1.2", + "name": "object.hasown", + "npm": { + "name": "object.hasown", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 348, + }, + { + "behavior": { + "normal": true, + }, + "id": 429, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 430, + "literal": "^15.8.1", + "name": "prop-types", + "npm": { + "name": "prop-types", + "version": ">=15.8.1 <16.0.0", + }, + "package_id": 345, + }, + { + "behavior": { + "normal": true, + }, + "id": 431, + "literal": "^2.0.0-next.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=2.0.0-next.4 <3.0.0", + }, + "package_id": 344, + }, + { + "behavior": { + "normal": true, + }, + "id": 432, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 433, + "literal": "^4.0.8", + "name": "string.prototype.matchall", + "npm": { + "name": "string.prototype.matchall", + "version": ">=4.0.8 <5.0.0", + }, + "package_id": 288, + }, + { + "behavior": { + "peer": true, + }, + "id": 434, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 435, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 436, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 437, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 438, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 439, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 440, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 441, + "literal": "^1.5.0", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.0 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 442, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 443, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 444, + "literal": "^1.0.0", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 445, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 446, + "literal": "^1.9.0", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 447, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 448, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 449, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 450, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 451, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 452, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 453, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 454, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 455, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 456, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 457, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 458, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 459, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 460, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 461, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 462, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 463, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 464, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 465, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 466, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 467, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 468, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 469, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 470, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 471, + "literal": "^1.0.2", + "name": "arraybuffer.prototype.slice", + "npm": { + "name": "arraybuffer.prototype.slice", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 341, + }, + { + "behavior": { + "normal": true, + }, + "id": 472, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 473, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 474, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 475, + "literal": "^1.2.1", + "name": "es-to-primitive", + "npm": { + "name": "es-to-primitive", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 338, + }, + { + "behavior": { + "normal": true, + }, + "id": 476, + "literal": "^1.1.6", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 477, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 478, + "literal": "^1.0.0", + "name": "get-symbol-description", + "npm": { + "name": "get-symbol-description", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 336, + }, + { + "behavior": { + "normal": true, + }, + "id": 479, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 480, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 481, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 482, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 483, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 484, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 485, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 486, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 487, + "literal": "^1.2.7", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.2.7 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 488, + "literal": "^2.0.2", + "name": "is-negative-zero", + "npm": { + "name": "is-negative-zero", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 333, + }, + { + "behavior": { + "normal": true, + }, + "id": 489, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 490, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 491, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 492, + "literal": "^1.1.12", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.12 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 493, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 494, + "literal": "^1.12.3", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.12.3 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 495, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 496, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 497, + "literal": "^1.5.1", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.1 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 498, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 499, + "literal": "^1.0.0", + "name": "safe-regex-test", + "npm": { + "name": "safe-regex-test", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 326, + }, + { + "behavior": { + "normal": true, + }, + "id": 500, + "literal": "^1.2.8", + "name": "string.prototype.trim", + "npm": { + "name": "string.prototype.trim", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 325, + }, + { + "behavior": { + "normal": true, + }, + "id": 501, + "literal": "^1.0.7", + "name": "string.prototype.trimend", + "npm": { + "name": "string.prototype.trimend", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 324, + }, + { + "behavior": { + "normal": true, + }, + "id": 502, + "literal": "^1.0.7", + "name": "string.prototype.trimstart", + "npm": { + "name": "string.prototype.trimstart", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 323, + }, + { + "behavior": { + "normal": true, + }, + "id": 503, + "literal": "^1.0.0", + "name": "typed-array-buffer", + "npm": { + "name": "typed-array-buffer", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 322, + }, + { + "behavior": { + "normal": true, + }, + "id": 504, + "literal": "^1.0.0", + "name": "typed-array-byte-length", + "npm": { + "name": "typed-array-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 321, + }, + { + "behavior": { + "normal": true, + }, + "id": 505, + "literal": "^1.0.0", + "name": "typed-array-byte-offset", + "npm": { + "name": "typed-array-byte-offset", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 320, + }, + { + "behavior": { + "normal": true, + }, + "id": 506, + "literal": "^1.0.4", + "name": "typed-array-length", + "npm": { + "name": "typed-array-length", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 318, + }, + { + "behavior": { + "normal": true, + }, + "id": 507, + "literal": "^1.0.2", + "name": "unbox-primitive", + "npm": { + "name": "unbox-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 310, + }, + { + "behavior": { + "normal": true, + }, + "id": 508, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 509, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 510, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 511, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 512, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 513, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 514, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 515, + "literal": "^1.1.3", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 516, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 517, + "literal": "^1.0.2", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 518, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 519, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 520, + "literal": "^1.0.1", + "name": "is-bigint", + "npm": { + "name": "is-bigint", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 316, + }, + { + "behavior": { + "normal": true, + }, + "id": 521, + "literal": "^1.1.0", + "name": "is-boolean-object", + "npm": { + "name": "is-boolean-object", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 315, + }, + { + "behavior": { + "normal": true, + }, + "id": 522, + "literal": "^1.0.4", + "name": "is-number-object", + "npm": { + "name": "is-number-object", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 314, + }, + { + "behavior": { + "normal": true, + }, + "id": 523, + "literal": "^1.0.5", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 524, + "literal": "^1.0.3", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 525, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 526, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 527, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 528, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 529, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 530, + "literal": "^1.0.1", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 531, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 532, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 533, + "literal": "^1.1.9", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 534, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 535, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 536, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 537, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 538, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 539, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 540, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 541, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 542, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 543, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 544, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 545, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 546, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 547, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 548, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 549, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 550, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 551, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 552, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 553, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 554, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 555, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 556, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 557, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 558, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 559, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 560, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 561, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 562, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 563, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 564, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 565, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 566, + "literal": "^1.1.4", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 567, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 568, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 569, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 570, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 571, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 572, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 573, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 574, + "literal": "^1.1.3", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 575, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 576, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 577, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 578, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 579, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 580, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 581, + "literal": "^1.1.4", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 582, + "literal": "^1.0.1", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 583, + "literal": "^1.0.2", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 584, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 585, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 586, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 587, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 588, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 589, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 590, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 591, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 592, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 593, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 594, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 595, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 596, + "literal": "^3.0.1", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 597, + "literal": "^2.9.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.9.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 598, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 599, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 600, + "literal": "^1.4.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 601, + "literal": "^4.1.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 602, + "literal": "^16.13.1", + "name": "react-is", + "npm": { + "name": "react-is", + "version": ">=16.13.1 <17.0.0", + }, + "package_id": 346, + }, + { + "behavior": { + "normal": true, + }, + "id": 603, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 604, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 605, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 606, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 607, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 608, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 609, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 610, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 611, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 612, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 613, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 614, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 615, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 616, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 617, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 618, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 619, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 620, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 621, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 622, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 623, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 624, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 625, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 626, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 627, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 628, + "literal": "^1.0.0", + "name": "asynciterator.prototype", + "npm": { + "name": "asynciterator.prototype", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 367, + }, + { + "behavior": { + "normal": true, + }, + "id": 629, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 630, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 631, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 632, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 633, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 634, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 635, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 636, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 637, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 638, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 639, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 640, + "literal": "^1.1.2", + "name": "iterator.prototype", + "npm": { + "name": "iterator.prototype", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 356, + }, + { + "behavior": { + "normal": true, + }, + "id": 641, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 642, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 643, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 644, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 645, + "literal": "^1.0.4", + "name": "reflect.getprototypeof", + "npm": { + "name": "reflect.getprototypeof", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 357, + }, + { + "behavior": { + "normal": true, + }, + "id": 646, + "literal": "^2.0.1", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 647, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 648, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 649, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 650, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 651, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 652, + "literal": "^1.1.3", + "name": "which-builtin-type", + "npm": { + "name": "which-builtin-type", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 358, + }, + { + "behavior": { + "normal": true, + }, + "id": 653, + "literal": "^1.1.5", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.5 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 654, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 655, + "literal": "^2.0.0", + "name": "is-async-function", + "npm": { + "name": "is-async-function", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 366, + }, + { + "behavior": { + "normal": true, + }, + "id": 656, + "literal": "^1.0.5", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 657, + "literal": "^1.0.2", + "name": "is-finalizationregistry", + "npm": { + "name": "is-finalizationregistry", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 365, + }, + { + "behavior": { + "normal": true, + }, + "id": 658, + "literal": "^1.0.10", + "name": "is-generator-function", + "npm": { + "name": "is-generator-function", + "version": ">=1.0.10 <2.0.0", + }, + "package_id": 364, + }, + { + "behavior": { + "normal": true, + }, + "id": 659, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 660, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 661, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 662, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 663, + "literal": "^1.0.1", + "name": "which-collection", + "npm": { + "name": "which-collection", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 359, + }, + { + "behavior": { + "normal": true, + }, + "id": 664, + "literal": "^1.1.9", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 665, + "literal": "^2.0.1", + "name": "is-map", + "npm": { + "name": "is-map", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 363, + }, + { + "behavior": { + "normal": true, + }, + "id": 666, + "literal": "^2.0.1", + "name": "is-set", + "npm": { + "name": "is-set", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 362, + }, + { + "behavior": { + "normal": true, + }, + "id": 667, + "literal": "^2.0.1", + "name": "is-weakmap", + "npm": { + "name": "is-weakmap", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 361, + }, + { + "behavior": { + "normal": true, + }, + "id": 668, + "literal": "^2.0.1", + "name": "is-weakset", + "npm": { + "name": "is-weakset", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 360, + }, + { + "behavior": { + "normal": true, + }, + "id": 669, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 670, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 671, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 672, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 673, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 674, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 675, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 676, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 677, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 678, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 679, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 680, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 681, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 682, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 683, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 684, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 685, + "literal": "^7.20.7", + "name": "@babel/runtime", + "npm": { + "name": "@babel/runtime", + "version": ">=7.20.7 <8.0.0", + }, + "package_id": 381, + }, + { + "behavior": { + "normal": true, + }, + "id": 686, + "literal": "^5.1.3", + "name": "aria-query", + "npm": { + "name": "aria-query", + "version": ">=5.1.3 <6.0.0", + }, + "package_id": 380, + }, + { + "behavior": { + "normal": true, + }, + "id": 687, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 688, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 689, + "literal": "^0.0.7", + "name": "ast-types-flow", + "npm": { + "name": "ast-types-flow", + "version": ">=0.0.7 <0.0.8", + }, + "package_id": 379, + }, + { + "behavior": { + "normal": true, + }, + "id": 690, + "literal": "^4.6.2", + "name": "axe-core", + "npm": { + "name": "axe-core", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 378, + }, + { + "behavior": { + "normal": true, + }, + "id": 691, + "literal": "^3.1.1", + "name": "axobject-query", + "npm": { + "name": "axobject-query", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 376, + }, + { + "behavior": { + "normal": true, + }, + "id": 692, + "literal": "^1.0.8", + "name": "damerau-levenshtein", + "npm": { + "name": "damerau-levenshtein", + "version": ">=1.0.8 <2.0.0", + }, + "package_id": 375, + }, + { + "behavior": { + "normal": true, + }, + "id": 693, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 694, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 695, + "literal": "^3.3.3", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=3.3.3 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 696, + "literal": "=1.0.5", + "name": "language-tags", + "npm": { + "name": "language-tags", + "version": "==1.0.5", + }, + "package_id": 372, + }, + { + "behavior": { + "normal": true, + }, + "id": 697, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 698, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 699, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 700, + "literal": "^6.3.0", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.0 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "peer": true, + }, + "id": 701, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 702, + "literal": "~0.3.2", + "name": "language-subtag-registry", + "npm": { + "name": "language-subtag-registry", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 373, + }, + { + "behavior": { + "normal": true, + }, + "id": 703, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 704, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 705, + "literal": "^0.14.0", + "name": "regenerator-runtime", + "npm": { + "name": "regenerator-runtime", + "version": ">=0.14.0 <0.15.0", + }, + "package_id": 382, + }, + { + "behavior": { + "normal": true, + }, + "id": 706, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 707, + "literal": "^1.2.2", + "name": "array.prototype.findlastindex", + "npm": { + "name": "array.prototype.findlastindex", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 394, + }, + { + "behavior": { + "normal": true, + }, + "id": 708, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 709, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 710, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 711, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 712, + "literal": "^0.3.7", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.7 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 713, + "literal": "^2.8.0", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.8.0 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 714, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 715, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 716, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 717, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 718, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 719, + "literal": "^1.0.0", + "name": "object.groupby", + "npm": { + "name": "object.groupby", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 389, + }, + { + "behavior": { + "normal": true, + }, + "id": 720, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 721, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 722, + "literal": "^3.14.2", + "name": "tsconfig-paths", + "npm": { + "name": "tsconfig-paths", + "version": ">=3.14.2 <4.0.0", + }, + "package_id": 384, + }, + { + "behavior": { + "peer": true, + }, + "id": 723, + "literal": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=2.0.0 <3.0.0 || >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 724, + "literal": "^0.0.29", + "name": "@types/json5", + "npm": { + "name": "@types/json5", + "version": ">=0.0.29 <0.0.30", + }, + "package_id": 388, + }, + { + "behavior": { + "normal": true, + }, + "id": 725, + "literal": "^1.0.2", + "name": "json5", + "npm": { + "name": "json5", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 387, + }, + { + "behavior": { + "normal": true, + }, + "id": 726, + "literal": "^1.2.6", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.6 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 727, + "literal": "^3.0.0", + "name": "strip-bom", + "npm": { + "name": "strip-bom", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 385, + }, + { + "behavior": { + "normal": true, + }, + "id": 728, + "literal": "^1.2.0", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 729, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 730, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 731, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 732, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 733, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 734, + "literal": "^2.1.1", + "name": "ms", + "npm": { + "name": "ms", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 392, + }, + { + "behavior": { + "normal": true, + }, + "id": 735, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 736, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 737, + "literal": "^1.22.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.4 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 738, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 739, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 740, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 741, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 742, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 743, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 744, + "literal": "^5.12.0", + "name": "enhanced-resolve", + "npm": { + "name": "enhanced-resolve", + "version": ">=5.12.0 <6.0.0", + }, + "package_id": 398, + }, + { + "behavior": { + "normal": true, + }, + "id": 745, + "literal": "^2.7.4", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.7.4 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 746, + "literal": "^3.3.1", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.3.1 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 747, + "literal": "^4.5.0", + "name": "get-tsconfig", + "npm": { + "name": "get-tsconfig", + "version": ">=4.5.0 <5.0.0", + }, + "package_id": 396, + }, + { + "behavior": { + "normal": true, + }, + "id": 748, + "literal": "^2.11.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.11.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 749, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "peer": true, + }, + "id": 750, + "literal": "*", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=0.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 751, + "literal": "*", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=0.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 752, + "literal": "^1.0.0", + "name": "resolve-pkg-maps", + "npm": { + "name": "resolve-pkg-maps", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 397, + }, + { + "behavior": { + "normal": true, + }, + "id": 753, + "literal": "^4.2.4", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.4 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 754, + "literal": "^2.2.0", + "name": "tapable", + "npm": { + "name": "tapable", + "version": ">=2.2.0 <3.0.0", + }, + "package_id": 399, + }, + { + "behavior": { + "normal": true, + }, + "id": 755, + "literal": "6.7.3", + "name": "@typescript-eslint/scope-manager", + "npm": { + "name": "@typescript-eslint/scope-manager", + "version": "==6.7.3", + }, + "package_id": 411, + }, + { + "behavior": { + "normal": true, + }, + "id": 756, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 757, + "literal": "6.7.3", + "name": "@typescript-eslint/typescript-estree", + "npm": { + "name": "@typescript-eslint/typescript-estree", + "version": "==6.7.3", + }, + "package_id": 403, + }, + { + "behavior": { + "normal": true, + }, + "id": 758, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 759, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "peer": true, + }, + "id": 760, + "literal": "^7.0.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 761, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 762, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 763, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 764, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 765, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 766, + "literal": "^11.1.0", + "name": "globby", + "npm": { + "name": "globby", + "version": ">=11.1.0 <12.0.0", + }, + "package_id": 406, + }, + { + "behavior": { + "normal": true, + }, + "id": 767, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 768, + "literal": "^7.5.4", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=7.5.4 <8.0.0", + }, + "package_id": 405, + }, + { + "behavior": { + "normal": true, + }, + "id": 769, + "literal": "^1.0.1", + "name": "ts-api-utils", + "npm": { + "name": "ts-api-utils", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 404, + }, + { + "behavior": { + "peer": true, + }, + "id": 770, + "literal": ">=4.2.0", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 771, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 772, + "literal": "^2.1.0", + "name": "array-union", + "npm": { + "name": "array-union", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 410, + }, + { + "behavior": { + "normal": true, + }, + "id": 773, + "literal": "^3.0.1", + "name": "dir-glob", + "npm": { + "name": "dir-glob", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 408, + }, + { + "behavior": { + "normal": true, + }, + "id": 774, + "literal": "^3.2.9", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.9 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 775, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 776, + "literal": "^1.4.1", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.4.1 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 777, + "literal": "^3.0.0", + "name": "slash", + "npm": { + "name": "slash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 407, + }, + { + "behavior": { + "normal": true, + }, + "id": 778, + "literal": "^4.0.0", + "name": "path-type", + "npm": { + "name": "path-type", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 409, + }, + { + "behavior": { + "normal": true, + }, + "id": 779, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 780, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 781, + "literal": "10.3.10", + "name": "glob", + "npm": { + "name": "glob", + "version": "==10.3.10", + }, + "package_id": 414, + }, + { + "behavior": { + "normal": true, + }, + "id": 782, + "literal": "^3.1.0", + "name": "foreground-child", + "npm": { + "name": "foreground-child", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 429, + }, + { + "behavior": { + "normal": true, + }, + "id": 783, + "literal": "^2.3.5", + "name": "jackspeak", + "npm": { + "name": "jackspeak", + "version": ">=2.3.5 <3.0.0", + }, + "package_id": 420, + }, + { + "behavior": { + "normal": true, + }, + "id": 784, + "literal": "^9.0.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=9.0.1 <10.0.0", + }, + "package_id": 418, + }, + { + "behavior": { + "normal": true, + }, + "id": 785, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 786, + "literal": "^1.10.1", + "name": "path-scurry", + "npm": { + "name": "path-scurry", + "version": ">=1.10.1 <2.0.0", + }, + "package_id": 415, + }, + { + "behavior": { + "normal": true, + }, + "id": 787, + "literal": "^9.1.1 || ^10.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=9.1.1 <10.0.0 || >=10.0.0 <11.0.0 && >=10.0.0 <11.0.0", + }, + "package_id": 417, + }, + { + "behavior": { + "normal": true, + }, + "id": 788, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 789, + "literal": "^2.0.1", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 419, + }, + { + "behavior": { + "normal": true, + }, + "id": 790, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 791, + "literal": "^8.0.2", + "name": "@isaacs/cliui", + "npm": { + "name": "@isaacs/cliui", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 422, + }, + { + "behavior": { + "optional": true, + }, + "id": 792, + "literal": "^0.11.0", + "name": "@pkgjs/parseargs", + "npm": { + "name": "@pkgjs/parseargs", + "version": ">=0.11.0 <0.12.0", + }, + "package_id": 421, + }, + { + "behavior": { + "normal": true, + }, + "id": 793, + "literal": "^5.1.2", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 794, + "is_alias": true, + "literal": "npm:string-width@^4.2.0", + "name": "string-width-cjs", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 795, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 796, + "is_alias": true, + "literal": "npm:strip-ansi@^6.0.1", + "name": "strip-ansi-cjs", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 797, + "literal": "^8.1.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 423, + }, + { + "behavior": { + "normal": true, + }, + "id": 798, + "is_alias": true, + "literal": "npm:wrap-ansi@^7.0.0", + "name": "wrap-ansi-cjs", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 799, + "literal": "^6.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=6.1.0 <7.0.0", + }, + "package_id": 428, + }, + { + "behavior": { + "normal": true, + }, + "id": 800, + "literal": "^5.0.1", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 801, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 802, + "literal": "^6.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 425, + }, + { + "behavior": { + "normal": true, + }, + "id": 803, + "literal": "^0.2.0", + "name": "eastasianwidth", + "npm": { + "name": "eastasianwidth", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 427, + }, + { + "behavior": { + "normal": true, + }, + "id": 804, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 805, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 806, + "literal": "^7.0.0", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 807, + "literal": "^4.0.1", + "name": "signal-exit", + "npm": { + "name": "signal-exit", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 430, + }, + { + "behavior": { + "normal": true, + }, + "id": 808, + "literal": "^4.21.10", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.10 <5.0.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 809, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 810, + "literal": "^4.3.6", + "name": "fraction.js", + "npm": { + "name": "fraction.js", + "version": ">=4.3.6 <5.0.0", + }, + "package_id": 434, + }, + { + "behavior": { + "normal": true, + }, + "id": 811, + "literal": "^0.1.2", + "name": "normalize-range", + "npm": { + "name": "normalize-range", + "version": ">=0.1.2 <0.2.0", + }, + "package_id": 433, + }, + { + "behavior": { + "normal": true, + }, + "id": 812, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 813, + "literal": "^4.2.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "peer": true, + }, + "id": 814, + "literal": "^8.1.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 815, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 816, + "literal": "^1.4.526", + "name": "electron-to-chromium", + "npm": { + "name": "electron-to-chromium", + "version": ">=1.4.526 <2.0.0", + }, + "package_id": 439, + }, + { + "behavior": { + "normal": true, + }, + "id": 817, + "literal": "^2.0.13", + "name": "node-releases", + "npm": { + "name": "node-releases", + "version": ">=2.0.13 <3.0.0", + }, + "package_id": 438, + }, + { + "behavior": { + "normal": true, + }, + "id": 818, + "literal": "^1.0.13", + "name": "update-browserslist-db", + "npm": { + "name": "update-browserslist-db", + "version": ">=1.0.13 <2.0.0", + }, + "package_id": 437, + }, + { + "behavior": { + "normal": true, + }, + "id": 819, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 820, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "peer": true, + }, + "id": 821, + "literal": ">= 4.21.0", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 822, + "literal": "*", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": ">=0.0.0", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 823, + "literal": "*", + "name": "@types/prop-types", + "npm": { + "name": "@types/prop-types", + "version": ">=0.0.0", + }, + "package_id": 444, + }, + { + "behavior": { + "normal": true, + }, + "id": 824, + "literal": "*", + "name": "@types/scheduler", + "npm": { + "name": "@types/scheduler", + "version": ">=0.0.0", + }, + "package_id": 443, + }, + { + "behavior": { + "normal": true, + }, + "id": 825, + "literal": "^3.0.2", + "name": "csstype", + "npm": { + "name": "csstype", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 442, + }, + ], + "format": "v2", + "meta_hash": "b2cad294acee563595dacd7ac0f31a4573add6541db0fbf935335319adde7a82", + "package_index": { + "@aashutoshrathi/word-wrap": 229, + "@alloc/quick-lru": 83, + "@babel/code-frame": 186, + "@babel/helper-validator-identifier": 195, + "@babel/highlight": 194, + "@babel/runtime": 381, + "@eslint-community/eslint-utils": 285, + "@eslint-community/regexpp": 284, + "@eslint/eslintrc": 282, + "@eslint/js": 281, + "@humanwhocodes/config-array": 279, + "@humanwhocodes/module-importer": 278, + "@humanwhocodes/object-schema": 280, + "@isaacs/cliui": 422, + "@jridgewell/gen-mapping": 24, + "@jridgewell/resolve-uri": 27, + "@jridgewell/set-array": 28, + "@jridgewell/sourcemap-codec": 26, + "@jridgewell/trace-mapping": 25, + "@next/env": 220, + "@next/eslint-plugin-next": 413, + "@next/swc-darwin-arm64": 212, + "@next/swc-darwin-x64": 211, + "@next/swc-linux-arm64-gnu": 210, + "@next/swc-linux-arm64-musl": 209, + "@next/swc-linux-x64-gnu": 208, + "@next/swc-linux-x64-musl": 207, + "@next/swc-win32-arm64-msvc": 206, + "@next/swc-win32-ia32-msvc": 205, + "@next/swc-win32-x64-msvc": 204, + "@nodelib/fs.scandir": 70, + "@nodelib/fs.stat": 73, + "@nodelib/fs.walk": 67, + "@pkgjs/parseargs": 421, + "@puppeteer/browsers": 90, + "@rushstack/eslint-patch": 412, + "@swc/helpers": 219, + "@tootallnate/quickjs-emscripten": 157, + "@types/json5": 388, + "@types/node": 164, + "@types/prop-types": 444, + "@types/react": 441, + "@types/react-dom": 440, + "@types/scheduler": 443, + "@types/yauzl": 163, + "@typescript-eslint/parser": 400, + "@typescript-eslint/scope-manager": 411, + "@typescript-eslint/types": 402, + "@typescript-eslint/typescript-estree": 403, + "@typescript-eslint/visitor-keys": 401, + "acorn": 259, + "acorn-jsx": 258, + "agent-base": 134, + "ajv": 273, + "ansi-regex": [ + 425, + 99, + ], + "ansi-styles": [ + 428, + 107, + 191, + ], + "any-promise": 9, + "anymatch": 81, + "arg": 82, + "argparse": 197, + "aria-query": 380, + "array-buffer-byte-length": 342, + "array-includes": 354, + "array-union": 410, + "array.prototype.findlastindex": 394, + "array.prototype.flat": 352, + "array.prototype.flatmap": 370, + "array.prototype.tosorted": 369, + "arraybuffer.prototype.slice": 341, + "ast-types": 146, + "ast-types-flow": 379, + "asynciterator.prototype": 367, + "autoprefixer": 432, + "available-typed-arrays": 309, + "axe-core": 378, + "axobject-query": 376, + "b4a": 124, + "balanced-match": 19, + "bare-events": 122, + "bare-fs": 118, + "bare-os": 117, + "bare-path": 116, + "base64-js": 114, + "basic-ftp": 156, + "binary-extensions": 80, + "brace-expansion": [ + 419, + 17, + ], + "braces": 56, + "browserslist": 436, + "buffer": 112, + "buffer-crc32": 166, + "bun-types": 431, + "busboy": 217, + "call-bind": 294, + "callsites": 201, + "camelcase-css": 47, + "caniuse-lite": [ + 216, + 435, + ], + "chalk": [ + 270, + 187, + ], + "chokidar": 76, + "chromium-bidi": 178, + "client-only": 214, + "cliui": 105, + "color-convert": [ + 108, + 192, + ], + "color-name": [ + 109, + 193, + ], + "commander": 23, + "concat-map": 18, + "cosmiconfig": 181, + "cross-fetch": 173, + "cross-spawn": 264, + "cssesc": 37, + "csstype": 442, + "damerau-levenshtein": 375, + "data-uri-to-buffer": 155, + "debug": [ + 132, + 391, + ], + "deep-is": 230, + "default-create-template": 0, + "define-data-property": 298, + "define-properties": 301, + "degenerator": 140, + "dequal": 377, + "devtools-protocol": 172, + "didyoumean": 75, + "dir-glob": 408, + "dlv": 74, + "doctrine": [ + 263, + 368, + ], + "eastasianwidth": 427, + "electron-to-chromium": 439, + "emoji-regex": [ + 374, + 101, + ], + "end-of-stream": 126, + "enhanced-resolve": 398, + "env-paths": 202, + "error-ex": 184, + "es-abstract": 304, + "es-iterator-helpers": 355, + "es-set-tostringtag": 340, + "es-shim-unscopables": 353, + "es-to-primitive": 338, + "escalade": 104, + "escape-string-regexp": [ + 262, + 190, + ], + "escodegen": 142, + "eslint": 222, + "eslint-config-next": 221, + "eslint-import-resolver-node": 393, + "eslint-import-resolver-typescript": 395, + "eslint-module-utils": 390, + "eslint-plugin-import": 383, + "eslint-plugin-jsx-a11y": 371, + "eslint-plugin-react": 287, + "eslint-plugin-react-hooks": 286, + "eslint-scope": 260, + "eslint-visitor-keys": 257, + "espree": 256, + "esprima": 141, + "esquery": 255, + "esrecurse": 261, + "estraverse": 145, + "esutils": 144, + "extract-zip": 162, + "fast-deep-equal": 254, + "fast-fifo": 121, + "fast-glob": 64, + "fast-json-stable-stringify": 277, + "fast-levenshtein": 225, + "fastq": 68, + "fd-slicer": 167, + "file-entry-cache": 247, + "fill-range": 57, + "find-up": 241, + "flat-cache": 248, + "flatted": 253, + "for-each": 307, + "foreground-child": 429, + "fraction.js": 434, + "fs-extra": 151, + "fs.realpath": 22, + "fsevents": 77, + "function-bind": 34, + "function.prototype.name": 337, + "functions-have-names": 297, + "get-caller-file": 103, + "get-intrinsic": 291, + "get-stream": 169, + "get-symbol-description": 336, + "get-tsconfig": 396, + "get-uri": 150, + "glob": [ + 414, + 250, + 12, + ], + "glob-parent": [ + 63, + 66, + ], + "globals": 239, + "globalthis": 335, + "globby": 406, + "gopd": 299, + "graceful-fs": 154, + "graphemer": 238, + "has": 33, + "has-bigints": 317, + "has-flag": [ + 272, + 189, + ], + "has-property-descriptors": 296, + "has-proto": 293, + "has-symbols": 292, + "has-tostringtag": 306, + "http-proxy-agent": [ + 160, + 149, + ], + "https-proxy-agent": [ + 159, + 148, + ], + "ieee754": 113, + "ignore": 237, + "import-fresh": 198, + "imurmurhash": 236, + "inflight": 21, + "inherits": 20, + "internal-slot": 303, + "ip": [ + 131, + 139, + ], + "is-array-buffer": 334, + "is-arrayish": 185, + "is-async-function": 366, + "is-bigint": 316, + "is-binary-path": 79, + "is-boolean-object": 315, + "is-callable": 308, + "is-core-module": 32, + "is-date-object": 339, + "is-extglob": 62, + "is-finalizationregistry": 365, + "is-fullwidth-code-point": 100, + "is-generator-function": 364, + "is-glob": 61, + "is-map": 363, + "is-negative-zero": 333, + "is-number": 59, + "is-number-object": 314, + "is-path-inside": 235, + "is-regex": 327, + "is-set": 362, + "is-shared-array-buffer": 332, + "is-string": 313, + "is-symbol": 312, + "is-typed-array": 319, + "is-weakmap": 361, + "is-weakref": 331, + "is-weakset": 360, + "isarray": 329, + "isexe": 266, + "iterator.prototype": 356, + "jackspeak": 420, + "jiti": 60, + "js-tokens": 87, + "js-yaml": 196, + "json-buffer": 252, + "json-parse-even-better-errors": 183, + "json-schema-traverse": 276, + "json-stable-stringify-without-jsonify": 234, + "json5": 387, + "jsonfile": 153, + "jsx-ast-utils": 351, + "keyv": 251, + "language-subtag-registry": 373, + "language-tags": 372, + "levn": 226, + "lilconfig": 45, + "lines-and-columns": 11, + "locate-path": 243, + "lodash.merge": 233, + "loose-envify": 86, + "lru-cache": [ + 417, + 158, + 92, + ], + "merge2": 65, + "micromatch": 54, + "minimatch": [ + 418, + 232, + 16, + ], + "minimist": 386, + "minipass": 416, + "mitt": 180, + "ms": [ + 392, + 133, + ], + "mz": 6, + "nanoid": 42, + "natural-compare": 231, + "netmask": 138, + "next": 203, + "node-fetch": 174, + "node-releases": 438, + "normalize-path": 53, + "normalize-range": 433, + "object-assign": 10, + "object-hash": 52, + "object-inspect": 290, + "object-keys": 302, + "object.assign": 330, + "object.entries": 350, + "object.fromentries": 349, + "object.groupby": 389, + "object.hasown": 348, + "object.values": 347, + "once": 14, + "optionator": 224, + "p-limit": 245, + "p-locate": 244, + "pac-proxy-agent": 136, + "pac-resolver": 137, + "parent-module": 200, + "parse-json": 182, + "path-exists": 242, + "path-is-absolute": 13, + "path-key": 269, + "path-parse": 31, + "path-scurry": 415, + "path-type": 409, + "pend": 168, + "picocolors": 41, + "picomatch": 55, + "pify": 50, + "pirates": 5, + "postcss": [ + 215, + 39, + ], + "postcss-import": 48, + "postcss-js": 46, + "postcss-load-config": 43, + "postcss-nested": 38, + "postcss-selector-parser": 35, + "postcss-value-parser": 51, + "prelude-ls": 228, + "progress": 161, + "prop-types": 345, + "proxy-agent": 127, + "proxy-from-env": 135, + "pump": 125, + "punycode": 275, + "puppeteer": 89, + "puppeteer-core": 170, + "queue-microtask": 72, + "queue-tick": 120, + "react": 88, + "react-dom": 84, + "react-is": 346, + "read-cache": 49, + "readdirp": 78, + "reflect.getprototypeof": 357, + "regenerator-runtime": 382, + "regexp.prototype.flags": 300, + "require-directory": 102, + "resolve": [ + 344, + 29, + ], + "resolve-from": 199, + "resolve-pkg-maps": 397, + "reusify": 69, + "rimraf": 249, + "run-parallel": 71, + "safe-array-concat": 328, + "safe-regex-test": 326, + "scheduler": 85, + "semver": [ + 91, + 405, + 343, + ], + "set-function-name": 295, + "shebang-command": 267, + "shebang-regex": 268, + "side-channel": 289, + "signal-exit": 430, + "slash": 407, + "smart-buffer": 130, + "socks": 129, + "socks-proxy-agent": 128, + "source-map": 143, + "source-map-js": 40, + "streamsearch": 218, + "streamx": 119, + "string-width": [ + 426, + 97, + ], + "string.prototype.matchall": 288, + "string.prototype.trim": 325, + "string.prototype.trimend": 324, + "string.prototype.trimstart": 323, + "strip-ansi": [ + 424, + 98, + ], + "strip-bom": 385, + "strip-json-comments": 283, + "styled-jsx": 213, + "sucrase": 3, + "supports-color": [ + 271, + 188, + ], + "supports-preserve-symlinks-flag": 30, + "tailwindcss": 2, + "tapable": 399, + "tar-fs": 115, + "tar-stream": 123, + "text-table": 223, + "thenify": 8, + "thenify-all": 7, + "through": 111, + "to-regex-range": 58, + "tr46": 177, + "ts-api-utils": 404, + "ts-interface-checker": 4, + "tsconfig-paths": 384, + "tslib": 147, + "type-check": 227, + "type-fest": 240, + "typed-array-buffer": 322, + "typed-array-byte-length": 321, + "typed-array-byte-offset": 320, + "typed-array-length": 318, + "typescript": 1, + "unbox-primitive": 310, + "unbzip2-stream": 110, + "universalify": 152, + "update-browserslist-db": 437, + "uri-js": 274, + "urlpattern-polyfill": 179, + "util-deprecate": 36, + "webidl-conversions": 176, + "whatwg-url": 175, + "which": 265, + "which-boxed-primitive": 311, + "which-builtin-type": 358, + "which-collection": 359, + "which-typed-array": 305, + "wrap-ansi": [ + 423, + 106, + ], + "wrappy": 15, + "ws": 171, + "y18n": 96, + "yallist": 93, + "yaml": 44, + "yargs": 94, + "yargs-parser": 95, + "yauzl": 165, + "yocto-queue": 246, + }, + "packages": [ + { + "bin": null, + "dependencies": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + ], + "id": 0, + "integrity": null, + "man_dir": "", + "name": "default-create-template", + "name_hash": "12362153275604125605", + "origin": "local", + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": { + "postinstall": "cd node_modules/puppeteer && bun install.mjs", + }, + }, + { + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver", + }, + "dependencies": [], + "id": 1, + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "man_dir": "", + "name": "typescript", + "name_hash": "7090219608841397663", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.2", + }, + "scripts": {}, + }, + { + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js", + }, + "dependencies": [ + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + ], + "id": 2, + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "man_dir": "", + "name": "tailwindcss", + "name_hash": "6098981126968834122", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.3", + }, + "scripts": {}, + }, + { + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node", + }, + "dependencies": [ + 36, + 37, + 38, + 39, + 40, + 41, + 42, + ], + "id": 3, + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "man_dir": "", + "name": "sucrase", + "name_hash": "8220562023141918134", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.34.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 4, + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "man_dir": "", + "name": "ts-interface-checker", + "name_hash": "9090669025631097322", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 5, + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "man_dir": "", + "name": "pirates", + "name_hash": "11463431525122174591", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 43, + 44, + 45, + ], + "id": 6, + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "man_dir": "", + "name": "mz", + "name_hash": "4860889167171965650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 46, + ], + "id": 7, + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "man_dir": "", + "name": "thenify-all", + "name_hash": "3497577183623575301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 47, + ], + "id": 8, + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "man_dir": "", + "name": "thenify", + "name_hash": "10214550608932566002", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 9, + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "man_dir": "", + "name": "any-promise", + "name_hash": "992496519212496549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 10, + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "man_dir": "", + "name": "object-assign", + "name_hash": "741501977461426514", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 11, + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "man_dir": "", + "name": "lines-and-columns", + "name_hash": "8731744980636261242", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 48, + 49, + 50, + 51, + 52, + 53, + ], + "id": 12, + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 13, + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "man_dir": "", + "name": "path-is-absolute", + "name_hash": "8164005222338448325", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 54, + ], + "id": 14, + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "man_dir": "", + "name": "once", + "name_hash": "748011609921859784", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 15, + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "man_dir": "", + "name": "wrappy", + "name_hash": "18119806661187706052", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 55, + ], + "id": 16, + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 56, + 57, + ], + "id": 17, + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 18, + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "man_dir": "", + "name": "concat-map", + "name_hash": "8706867752641269193", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 19, + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "man_dir": "", + "name": "balanced-match", + "name_hash": "16269801611404267863", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 20, + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "man_dir": "", + "name": "inherits", + "name_hash": "7481850175542696465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 58, + 59, + ], + "id": 21, + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "man_dir": "", + "name": "inflight", + "name_hash": "15335006233399436565", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 22, + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "man_dir": "", + "name": "fs.realpath", + "name_hash": "913835373532407557", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 23, + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "man_dir": "", + "name": "commander", + "name_hash": "5281338156924866262", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 60, + 61, + 62, + ], + "id": 24, + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "man_dir": "", + "name": "@jridgewell/gen-mapping", + "name_hash": "7763226208333403547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 63, + 64, + ], + "id": 25, + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "man_dir": "", + "name": "@jridgewell/trace-mapping", + "name_hash": "9132244357866713465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.19", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 26, + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "man_dir": "", + "name": "@jridgewell/sourcemap-codec", + "name_hash": "11082572525356782073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 27, + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "man_dir": "", + "name": "@jridgewell/resolve-uri", + "name_hash": "15732631652601645408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 28, + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "man_dir": "", + "name": "@jridgewell/set-array", + "name_hash": "10956470817798356705", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 65, + 66, + 67, + ], + "id": 29, + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 30, + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "man_dir": "", + "name": "supports-preserve-symlinks-flag", + "name_hash": "7228670803640303868", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 31, + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "man_dir": "", + "name": "path-parse", + "name_hash": "13352954276207767683", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 68, + ], + "id": 32, + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "man_dir": "", + "name": "is-core-module", + "name_hash": "2115564247595772579", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.13.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 69, + ], + "id": 33, + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "man_dir": "", + "name": "has", + "name_hash": "10277371301110365577", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 34, + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "man_dir": "", + "name": "function-bind", + "name_hash": "844545262680185243", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 70, + 71, + ], + "id": 35, + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "man_dir": "", + "name": "postcss-selector-parser", + "name_hash": "8882225543017639620", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 36, + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "man_dir": "", + "name": "util-deprecate", + "name_hash": "4033437044928033698", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/cssesc", + "name": "cssesc", + }, + "dependencies": [], + "id": 37, + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "man_dir": "", + "name": "cssesc", + "name_hash": "11039868621287934035", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 72, + 73, + ], + "id": 38, + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "man_dir": "", + "name": "postcss-nested", + "name_hash": "13580188021191584601", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 74, + 75, + 76, + ], + "id": 39, + "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.30", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 40, + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "man_dir": "", + "name": "source-map-js", + "name_hash": "6679519744659543339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 41, + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "man_dir": "", + "name": "picocolors", + "name_hash": "8945456956643510643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/nanoid.cjs", + "name": "nanoid", + }, + "dependencies": [], + "id": 42, + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "man_dir": "", + "name": "nanoid", + "name_hash": "10076454668178771807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 77, + 78, + 79, + 80, + ], + "id": 43, + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "man_dir": "", + "name": "postcss-load-config", + "name_hash": "11124459238108428623", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 44, + "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==", + "man_dir": "", + "name": "yaml", + "name_hash": "6823399114509449780", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 45, + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "man_dir": "", + "name": "lilconfig", + "name_hash": "17464546908434930808", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 81, + 82, + ], + "id": 46, + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "man_dir": "", + "name": "postcss-js", + "name_hash": "51201709044640027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 47, + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "man_dir": "", + "name": "camelcase-css", + "name_hash": "11196719252326564430", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 83, + 84, + 85, + 86, + ], + "id": 48, + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "man_dir": "", + "name": "postcss-import", + "name_hash": "3854262770217217840", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 87, + ], + "id": 49, + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "man_dir": "", + "name": "read-cache", + "name_hash": "10142894349910084417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 50, + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "man_dir": "", + "name": "pify", + "name_hash": "516088454160206643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 51, + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "man_dir": "", + "name": "postcss-value-parser", + "name_hash": "4513255719471974821", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 52, + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "man_dir": "", + "name": "object-hash", + "name_hash": "14333069055553598090", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 53, + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "man_dir": "", + "name": "normalize-path", + "name_hash": "7972932911556789884", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 88, + 89, + ], + "id": 54, + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "man_dir": "", + "name": "micromatch", + "name_hash": "14650745430569414123", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 55, + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "man_dir": "", + "name": "picomatch", + "name_hash": "17753630613781110869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 90, + ], + "id": 56, + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "man_dir": "", + "name": "braces", + "name_hash": "2299021338542085312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 91, + ], + "id": 57, + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "man_dir": "", + "name": "fill-range", + "name_hash": "7508926416461820733", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 92, + ], + "id": 58, + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "man_dir": "", + "name": "to-regex-range", + "name_hash": "14243204250463262724", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 59, + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "man_dir": "", + "name": "is-number", + "name_hash": "17443668381655379754", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/jiti.js", + "name": "jiti", + }, + "dependencies": [], + "id": 60, + "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==", + "man_dir": "", + "name": "jiti", + "name_hash": "13838530331656232073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.20.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 93, + ], + "id": 61, + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "man_dir": "", + "name": "is-glob", + "name_hash": "3852072119137895543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 62, + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "man_dir": "", + "name": "is-extglob", + "name_hash": "3738840382836940042", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 94, + ], + "id": 63, + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 95, + 96, + 97, + 98, + 99, + ], + "id": 64, + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "man_dir": "", + "name": "fast-glob", + "name_hash": "1878427088820911921", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 65, + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "man_dir": "", + "name": "merge2", + "name_hash": "10405164528992167668", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 100, + ], + "id": 66, + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 101, + 102, + ], + "id": 67, + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "man_dir": "", + "name": "@nodelib/fs.walk", + "name_hash": "5339111073806757055", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 103, + ], + "id": 68, + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "man_dir": "", + "name": "fastq", + "name_hash": "6741130188853797494", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 69, + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "man_dir": "", + "name": "reusify", + "name_hash": "6641847649693934607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 104, + 105, + ], + "id": 70, + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "man_dir": "", + "name": "@nodelib/fs.scandir", + "name_hash": "3021833276702395597", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 106, + ], + "id": 71, + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "man_dir": "", + "name": "run-parallel", + "name_hash": "12083900303949760391", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 72, + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "man_dir": "", + "name": "queue-microtask", + "name_hash": "5425309755386634043", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 73, + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "man_dir": "", + "name": "@nodelib/fs.stat", + "name_hash": "16125660444744770699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 74, + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "man_dir": "", + "name": "dlv", + "name_hash": "6290291366792823487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 75, + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "man_dir": "", + "name": "didyoumean", + "name_hash": "3290316626148068785", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + ], + "id": 76, + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "man_dir": "", + "name": "chokidar", + "name_hash": "13416011201726038119", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 77, + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "man_dir": "", + "name": "fsevents", + "name_hash": "16035328728645144760", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "2.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 115, + ], + "id": 78, + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "man_dir": "", + "name": "readdirp", + "name_hash": "10039124027740987170", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 116, + ], + "id": 79, + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "man_dir": "", + "name": "is-binary-path", + "name_hash": "10002650304558927684", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 80, + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "man_dir": "", + "name": "binary-extensions", + "name_hash": "17194422772331613284", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 117, + 118, + ], + "id": 81, + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "man_dir": "", + "name": "anymatch", + "name_hash": "13083778620000400888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 82, + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "man_dir": "", + "name": "arg", + "name_hash": "2472924048160638220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 83, + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "man_dir": "", + "name": "@alloc/quick-lru", + "name_hash": "11323404221389353756", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 119, + 120, + 121, + ], + "id": 84, + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "man_dir": "", + "name": "react-dom", + "name_hash": "7373667379151837307", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 122, + ], + "id": 85, + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "man_dir": "", + "name": "scheduler", + "name_hash": "6246319597786948434", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "loose-envify", + }, + "dependencies": [ + 123, + ], + "id": 86, + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "man_dir": "", + "name": "loose-envify", + "name_hash": "3112622411417245442", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 87, + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "man_dir": "", + "name": "js-tokens", + "name_hash": "8072375596980283624", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 124, + ], + "id": 88, + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "man_dir": "", + "name": "react", + "name_hash": "10719851453835962256", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/esm/puppeteer/node/cli.js", + "name": "puppeteer", + }, + "dependencies": [ + 125, + 126, + 127, + ], + "id": 89, + "integrity": "sha512-Mag1wRLanzwS4yEUyrDRBUgsKlH3dpL6oAfVwNHG09oxd0+ySsatMvYj7HwjynWy/S+Hg+XHLgjyC/F6CsL/lg==", + "man_dir": "", + "name": "puppeteer", + "name_hash": "13072297456933147981", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cjs/main-cli.js", + "name": "browsers", + }, + "dependencies": [ + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + ], + "id": 90, + "integrity": "sha512-xloWvocjvryHdUjDam/ZuGMh7zn4Sn3ZAaV4Ah2e2EwEt90N3XphZlSsU3n0VDc1F7kggCjMuH0UuxfPQ5mD9w==", + "man_dir": "", + "name": "@puppeteer/browsers", + "name_hash": "6318517029770692415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 136, + ], + "id": 91, + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 137, + ], + "id": 92, + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 93, + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "man_dir": "", + "name": "yallist", + "name_hash": "17447362886122903538", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 138, + 139, + 140, + 141, + 142, + 143, + 144, + ], + "id": 94, + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "man_dir": "", + "name": "yargs", + "name_hash": "18153588124555602831", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "17.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 95, + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "man_dir": "", + "name": "yargs-parser", + "name_hash": "2624058701233809213", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "21.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 96, + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "man_dir": "", + "name": "y18n", + "name_hash": "13867919047397601860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 145, + 146, + 147, + ], + "id": 97, + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 148, + ], + "id": 98, + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 99, + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 100, + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "man_dir": "", + "name": "is-fullwidth-code-point", + "name_hash": "11413228031333986220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 101, + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 102, + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "man_dir": "", + "name": "require-directory", + "name_hash": "6781837652461215204", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 103, + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "man_dir": "", + "name": "get-caller-file", + "name_hash": "1638769084888476079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 104, + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "man_dir": "", + "name": "escalade", + "name_hash": "6879348821336485116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 149, + 150, + 151, + ], + "id": 105, + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "man_dir": "", + "name": "cliui", + "name_hash": "5778858105899329304", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 152, + 153, + 154, + ], + "id": 106, + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 155, + ], + "id": 107, + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 156, + ], + "id": 108, + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 109, + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 157, + 158, + ], + "id": 110, + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "man_dir": "", + "name": "unbzip2-stream", + "name_hash": "12033811216485982774", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 111, + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "man_dir": "", + "name": "through", + "name_hash": "16941386786386382390", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 159, + 160, + ], + "id": 112, + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "man_dir": "", + "name": "buffer", + "name_hash": "10358694932499417541", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 113, + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "man_dir": "", + "name": "ieee754", + "name_hash": "17889458061139334532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 114, + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "man_dir": "", + "name": "base64-js", + "name_hash": "14626266614050083415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 161, + 162, + 163, + 164, + ], + "id": 115, + "integrity": "sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==", + "man_dir": "", + "name": "tar-fs", + "name_hash": "14440968244754303214", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 165, + ], + "id": 116, + "integrity": "sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==", + "man_dir": "", + "name": "bare-path", + "name_hash": "12654746909665824402", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 117, + "integrity": "sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==", + "man_dir": "", + "name": "bare-os", + "name_hash": "6865937522145537276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 166, + 167, + 168, + 169, + ], + "id": 118, + "integrity": "sha512-+CjmZANQDFZWy4PGbVdmALIwmt33aJg8qTkVjClU6X4WmZkTPBDxRHiBn7fpqEWEfF3AC2io++erpViAIQbSjg==", + "man_dir": "", + "name": "bare-fs", + "name_hash": "15205712258788157948", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 170, + 171, + ], + "id": 119, + "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "man_dir": "", + "name": "streamx", + "name_hash": "74555136203185339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.15.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 120, + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "man_dir": "", + "name": "queue-tick", + "name_hash": "9246306848360353145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 121, + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "man_dir": "", + "name": "fast-fifo", + "name_hash": "1244249015522350723", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 122, + "integrity": "sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==", + "man_dir": "", + "name": "bare-events", + "name_hash": "4035129451839648869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 172, + 173, + 174, + ], + "id": 123, + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "man_dir": "", + "name": "tar-stream", + "name_hash": "14255302179190904139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 124, + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "man_dir": "", + "name": "b4a", + "name_hash": "10649709558693226266", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 175, + 176, + ], + "id": 125, + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "man_dir": "", + "name": "pump", + "name_hash": "7040703475696644678", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 177, + ], + "id": 126, + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "man_dir": "", + "name": "end-of-stream", + "name_hash": "17455588742510412071", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + ], + "id": 127, + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", + "man_dir": "", + "name": "proxy-agent", + "name_hash": "9904923658574585845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 186, + 187, + 188, + ], + "id": 128, + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "man_dir": "", + "name": "socks-proxy-agent", + "name_hash": "11921171134012595164", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 189, + 190, + ], + "id": 129, + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "man_dir": "", + "name": "socks", + "name_hash": "16884970381877539768", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 130, + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "man_dir": "", + "name": "smart-buffer", + "name_hash": "9798348771309838398", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 131, + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 191, + ], + "id": 132, + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 133, + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 192, + ], + "id": 134, + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "man_dir": "", + "name": "agent-base", + "name_hash": "17689920659035782501", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 135, + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "man_dir": "", + "name": "proxy-from-env", + "name_hash": "1270194980615207566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + ], + "id": 136, + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "man_dir": "", + "name": "pac-proxy-agent", + "name_hash": "818729749152565950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 201, + 202, + 203, + ], + "id": 137, + "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "man_dir": "", + "name": "pac-resolver", + "name_hash": "12373948793919354804", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 138, + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "man_dir": "", + "name": "netmask", + "name_hash": "16100660929392435651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 139, + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 204, + 205, + 206, + ], + "id": 140, + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "man_dir": "", + "name": "degenerator", + "name_hash": "8612146826381285798", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js", + }, + "dependencies": [], + "id": 141, + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "man_dir": "", + "name": "esprima", + "name_hash": "16070041258147025859", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js", + }, + "dependencies": [ + 207, + 208, + 209, + 210, + ], + "id": 142, + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "man_dir": "", + "name": "escodegen", + "name_hash": "7568564790816534200", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 143, + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "man_dir": "", + "name": "source-map", + "name_hash": "15131286332489002212", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 144, + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "man_dir": "", + "name": "esutils", + "name_hash": "7981716078883515000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 145, + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "man_dir": "", + "name": "estraverse", + "name_hash": "14401618193000185195", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 211, + ], + "id": 146, + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "man_dir": "", + "name": "ast-types", + "name_hash": "4997596490212765360", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.13.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 147, + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "man_dir": "", + "name": "tslib", + "name_hash": "17922945129469812550", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 212, + 213, + ], + "id": 148, + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 214, + 215, + ], + "id": 149, + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 216, + 217, + 218, + 219, + ], + "id": 150, + "integrity": "sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==", + "man_dir": "", + "name": "get-uri", + "name_hash": "4377287927338690314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 220, + 221, + 222, + ], + "id": 151, + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "man_dir": "", + "name": "fs-extra", + "name_hash": "2453474818627632477", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 152, + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "man_dir": "", + "name": "universalify", + "name_hash": "9857909289728530428", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 223, + ], + "id": 153, + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "man_dir": "", + "name": "jsonfile", + "name_hash": "16030246458379256651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 154, + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "man_dir": "", + "name": "graceful-fs", + "name_hash": "8654400277002734136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 155, + "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", + "man_dir": "", + "name": "data-uri-to-buffer", + "name_hash": "14979328150197748023", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 156, + "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "man_dir": "", + "name": "basic-ftp", + "name_hash": "3294105759639631117", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 157, + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "man_dir": "", + "name": "@tootallnate/quickjs-emscripten", + "name_hash": "5414003337280545145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 158, + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.18.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 224, + 225, + ], + "id": 159, + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 226, + 227, + ], + "id": 160, + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 161, + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "man_dir": "", + "name": "progress", + "name_hash": "11283104389794780362", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "extract-zip", + }, + "dependencies": [ + 228, + 229, + 230, + 231, + ], + "id": 162, + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "man_dir": "", + "name": "extract-zip", + "name_hash": "8810061046982445994", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 232, + ], + "id": 163, + "integrity": "sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==", + "man_dir": "", + "name": "@types/yauzl", + "name_hash": "10273980999870455328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 164, + "integrity": "sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==", + "man_dir": "", + "name": "@types/node", + "name_hash": "4124652010926124945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "20.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 233, + 234, + ], + "id": 165, + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "man_dir": "", + "name": "yauzl", + "name_hash": "7329914562904170092", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 166, + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "man_dir": "", + "name": "buffer-crc32", + "name_hash": "4553253441045318076", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 235, + ], + "id": 167, + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "man_dir": "", + "name": "fd-slicer", + "name_hash": "10851489456408334660", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 168, + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "man_dir": "", + "name": "pend", + "name_hash": "11550940272933590184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 236, + ], + "id": 169, + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "man_dir": "", + "name": "get-stream", + "name_hash": "13254119490064412968", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 237, + 238, + 239, + 240, + 241, + 242, + ], + "id": 170, + "integrity": "sha512-l9nf8NcirYOHdID12CIMWyy7dqcJCVtgVS+YAiJuUJHg8+9yjgPiG2PcNhojIEEpCkvw3FxvnyITVfKVmkWpjA==", + "man_dir": "", + "name": "puppeteer-core", + "name_hash": "10954685796294859150", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 243, + 244, + ], + "id": 171, + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "man_dir": "", + "name": "ws", + "name_hash": "14644737011329074183", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.16.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 172, + "integrity": "sha512-Ctp4hInA0BEavlUoRy9mhGq0i+JSo/AwVyX2EFgZmV1kYB+Zq+EMBAn52QWu6FbRr10hRb6pBl420upbp4++vg==", + "man_dir": "", + "name": "devtools-protocol", + "name_hash": "12159960943916763407", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1249869", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 245, + ], + "id": 173, + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", + "man_dir": "", + "name": "cross-fetch", + "name_hash": "5665307032371542913", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 246, + 247, + ], + "id": 174, + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "man_dir": "", + "name": "node-fetch", + "name_hash": "9368364337257117328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 248, + 249, + ], + "id": 175, + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "man_dir": "", + "name": "whatwg-url", + "name_hash": "15436316526856444177", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 176, + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "man_dir": "", + "name": "webidl-conversions", + "name_hash": "5343883202058398372", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 177, + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "man_dir": "", + "name": "tr46", + "name_hash": "4865213169840252474", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 250, + 251, + 252, + ], + "id": 178, + "integrity": "sha512-sZMgEBWKbupD0Q7lyFu8AWkrE+rs5ycE12jFkGwIgD/VS8lDPtelPlXM7LYaq4zrkZ/O2L3f4afHUHL0ICdKog==", + "man_dir": "", + "name": "chromium-bidi", + "name_hash": "17738832193826713561", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 179, + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", + "man_dir": "", + "name": "urlpattern-polyfill", + "name_hash": "11822535153800140816", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 180, + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "man_dir": "", + "name": "mitt", + "name_hash": "8939019029139500810", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 253, + 254, + 255, + 256, + 257, + ], + "id": 181, + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "man_dir": "", + "name": "cosmiconfig", + "name_hash": "6870876620368412607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 258, + 259, + 260, + 261, + ], + "id": 182, + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "man_dir": "", + "name": "parse-json", + "name_hash": "10803339664298030440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 183, + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "man_dir": "", + "name": "json-parse-even-better-errors", + "name_hash": "13977239420854766139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 262, + ], + "id": 184, + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "man_dir": "", + "name": "error-ex", + "name_hash": "10994745590019451357", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 185, + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "man_dir": "", + "name": "is-arrayish", + "name_hash": "2568751720667967222", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 263, + 264, + ], + "id": 186, + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "man_dir": "", + "name": "@babel/code-frame", + "name_hash": "6188048000334411082", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 265, + 266, + 267, + ], + "id": 187, + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.4.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 268, + ], + "id": 188, + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 189, + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 190, + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 269, + ], + "id": 191, + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 270, + ], + "id": 192, + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 193, + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 271, + 272, + 273, + ], + "id": 194, + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "man_dir": "", + "name": "@babel/highlight", + "name_hash": "1462121684300951999", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 195, + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "man_dir": "", + "name": "@babel/helper-validator-identifier", + "name_hash": "13229699169636733158", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/js-yaml.js", + "name": "js-yaml", + }, + "dependencies": [ + 274, + ], + "id": 196, + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "man_dir": "", + "name": "js-yaml", + "name_hash": "192709174173096334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 197, + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "man_dir": "", + "name": "argparse", + "name_hash": "14330104742551621378", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 275, + 276, + ], + "id": 198, + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "man_dir": "", + "name": "import-fresh", + "name_hash": "11575749002643879646", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 199, + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "man_dir": "", + "name": "resolve-from", + "name_hash": "3749267992243009772", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 277, + ], + "id": 200, + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "man_dir": "", + "name": "parent-module", + "name_hash": "2665996815938625963", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 201, + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "man_dir": "", + "name": "callsites", + "name_hash": "3613437260212473067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 202, + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "man_dir": "", + "name": "env-paths", + "name_hash": "763024076902060186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/bin/next", + "name": "next", + }, + "dependencies": [ + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + ], + "id": 203, + "integrity": "sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==", + "man_dir": "", + "name": "next", + "name_hash": "11339591345958603137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 204, + "integrity": "sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==", + "man_dir": "", + "name": "@next/swc-win32-x64-msvc", + "name_hash": "9647815457301330905", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "ia32", + ], + "bin": null, + "dependencies": [], + "id": 205, + "integrity": "sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==", + "man_dir": "", + "name": "@next/swc-win32-ia32-msvc", + "name_hash": "9252805468461829479", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 206, + "integrity": "sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==", + "man_dir": "", + "name": "@next/swc-win32-arm64-msvc", + "name_hash": "2162381238028589388", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 207, + "integrity": "sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==", + "man_dir": "", + "name": "@next/swc-linux-x64-musl", + "name_hash": "2579566733029863568", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 208, + "integrity": "sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==", + "man_dir": "", + "name": "@next/swc-linux-x64-gnu", + "name_hash": "300847313706189527", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 209, + "integrity": "sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-musl", + "name_hash": "10617419930187892296", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 210, + "integrity": "sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-gnu", + "name_hash": "11020036790013624239", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 211, + "integrity": "sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==", + "man_dir": "", + "name": "@next/swc-darwin-x64", + "name_hash": "6382492463773593985", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 212, + "integrity": "sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==", + "man_dir": "", + "name": "@next/swc-darwin-arm64", + "name_hash": "2189808260783691934", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 298, + 299, + ], + "id": 213, + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "man_dir": "", + "name": "styled-jsx", + "name_hash": "3150382730046383618", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 214, + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "man_dir": "", + "name": "client-only", + "name_hash": "8802229738477874888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 300, + 301, + 302, + ], + "id": 215, + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.31", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 216, + "integrity": "sha512-zpkZ+kEr6We7w63ORkoJ2pOfBwBkY/bJrG/UZ90qNb45Isblu8wzDgevEOrRL1r9dWayHjYiiyCMEXPn4DweGQ==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001596", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 303, + ], + "id": 217, + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "man_dir": "", + "name": "busboy", + "name_hash": "12056783266830520862", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 218, + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "man_dir": "", + "name": "streamsearch", + "name_hash": "16767345128201185654", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 304, + ], + "id": 219, + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "man_dir": "", + "name": "@swc/helpers", + "name_hash": "6882297182432941771", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 220, + "integrity": "sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==", + "man_dir": "", + "name": "@next/env", + "name_hash": "14533567151760189614", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + ], + "id": 221, + "integrity": "sha512-sUCpWlGuHpEhI0pIT0UtdSLJk5Z8E2DYinPTwsBiWaSYQomchdl0i60pjynY48+oXvtyWMQ7oE+G3m49yrfacg==", + "man_dir": "", + "name": "eslint-config-next", + "name_hash": "7198338977897397487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/eslint.js", + "name": "eslint", + }, + "dependencies": [ + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + ], + "id": 222, + "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", + "man_dir": "", + "name": "eslint", + "name_hash": "17917589463370847417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 223, + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "man_dir": "", + "name": "text-table", + "name_hash": "8812171258786601301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 353, + 354, + 355, + 356, + 357, + 358, + ], + "id": 224, + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "man_dir": "", + "name": "optionator", + "name_hash": "13855909686375249440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 225, + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "man_dir": "", + "name": "fast-levenshtein", + "name_hash": "12342460047873653112", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 359, + 360, + ], + "id": 226, + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "man_dir": "", + "name": "levn", + "name_hash": "9969646077825321011", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 361, + ], + "id": 227, + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "man_dir": "", + "name": "type-check", + "name_hash": "14488857500191659576", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 228, + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "man_dir": "", + "name": "prelude-ls", + "name_hash": "2714658211020917171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 229, + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "man_dir": "", + "name": "@aashutoshrathi/word-wrap", + "name_hash": "17707028160503038136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 230, + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "man_dir": "", + "name": "deep-is", + "name_hash": "4678193845338186713", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 231, + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "man_dir": "", + "name": "natural-compare", + "name_hash": "10983874298500943893", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 362, + ], + "id": 232, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 233, + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "man_dir": "", + "name": "lodash.merge", + "name_hash": "1968752870223903086", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 234, + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "man_dir": "", + "name": "json-stable-stringify-without-jsonify", + "name_hash": "14534225541412166230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 235, + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "man_dir": "", + "name": "is-path-inside", + "name_hash": "11945178255920368404", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 236, + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "man_dir": "", + "name": "imurmurhash", + "name_hash": "16912020589681053487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 237, + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "man_dir": "", + "name": "ignore", + "name_hash": "7684941795926889194", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 238, + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "man_dir": "", + "name": "graphemer", + "name_hash": "10355618371909736900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 363, + ], + "id": 239, + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "man_dir": "", + "name": "globals", + "name_hash": "15143409006866382382", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "13.22.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 240, + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "man_dir": "", + "name": "type-fest", + "name_hash": "14668870911319020225", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.20.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 364, + 365, + ], + "id": 241, + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "man_dir": "", + "name": "find-up", + "name_hash": "8309621910990874126", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 242, + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "man_dir": "", + "name": "path-exists", + "name_hash": "12097053851796077639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 366, + ], + "id": 243, + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "man_dir": "", + "name": "locate-path", + "name_hash": "14390144719475396950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 367, + ], + "id": 244, + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "man_dir": "", + "name": "p-locate", + "name_hash": "9693850335197275095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 368, + ], + "id": 245, + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "man_dir": "", + "name": "p-limit", + "name_hash": "3083404427706523125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 246, + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "man_dir": "", + "name": "yocto-queue", + "name_hash": "9034931028572940079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 369, + ], + "id": 247, + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "man_dir": "", + "name": "file-entry-cache", + "name_hash": "7451434054063451186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 370, + 371, + 372, + ], + "id": 248, + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "man_dir": "", + "name": "flat-cache", + "name_hash": "1109822261564484039", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin.js", + "name": "rimraf", + }, + "dependencies": [ + 373, + ], + "id": 249, + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "man_dir": "", + "name": "rimraf", + "name_hash": "6866739241594583209", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 374, + 375, + 376, + 377, + 378, + 379, + ], + "id": 250, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 380, + ], + "id": 251, + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "man_dir": "", + "name": "keyv", + "name_hash": "11030851470615570686", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 252, + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "man_dir": "", + "name": "json-buffer", + "name_hash": "5720297936225446253", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 253, + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "man_dir": "", + "name": "flatted", + "name_hash": "12258717572737769681", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 254, + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "man_dir": "", + "name": "fast-deep-equal", + "name_hash": "12371535360781568025", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 381, + ], + "id": 255, + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "man_dir": "", + "name": "esquery", + "name_hash": "7289272869223478230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 382, + 383, + 384, + ], + "id": 256, + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "man_dir": "", + "name": "espree", + "name_hash": "3641367103187261350", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 257, + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "man_dir": "", + "name": "eslint-visitor-keys", + "name_hash": "17830281265467207399", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 385, + ], + "id": 258, + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "man_dir": "", + "name": "acorn-jsx", + "name_hash": "1754355278825952408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/acorn", + "name": "acorn", + }, + "dependencies": [], + "id": 259, + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "man_dir": "", + "name": "acorn", + "name_hash": "17430233180242180057", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 386, + 387, + ], + "id": 260, + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "man_dir": "", + "name": "eslint-scope", + "name_hash": "17629221228476930459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 388, + ], + "id": 261, + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "man_dir": "", + "name": "esrecurse", + "name_hash": "17661314847727534689", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 262, + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 389, + ], + "id": 263, + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 390, + 391, + 392, + ], + "id": 264, + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "man_dir": "", + "name": "cross-spawn", + "name_hash": "12444485756966960720", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "./bin/node-which", + "name": "node-which", + }, + "dependencies": [ + 393, + ], + "id": 265, + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "man_dir": "", + "name": "which", + "name_hash": "5112236092670504396", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 266, + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "man_dir": "", + "name": "isexe", + "name_hash": "15558268014059531432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 394, + ], + "id": 267, + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "man_dir": "", + "name": "shebang-command", + "name_hash": "9009661312948442432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 268, + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "man_dir": "", + "name": "shebang-regex", + "name_hash": "18053981199157160202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 269, + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "man_dir": "", + "name": "path-key", + "name_hash": "665497923999462354", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 395, + 396, + ], + "id": 270, + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 397, + ], + "id": 271, + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 272, + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 398, + 399, + 400, + 401, + ], + "id": 273, + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "man_dir": "", + "name": "ajv", + "name_hash": "4704814928422522869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.12.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 402, + ], + "id": 274, + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "man_dir": "", + "name": "uri-js", + "name_hash": "9694608825335680295", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 275, + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "man_dir": "", + "name": "punycode", + "name_hash": "6702779252101758505", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 276, + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "man_dir": "", + "name": "json-schema-traverse", + "name_hash": "686899269284038873", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 277, + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "man_dir": "", + "name": "fast-json-stable-stringify", + "name_hash": "5172613188748066692", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 278, + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "man_dir": "", + "name": "@humanwhocodes/module-importer", + "name_hash": "12456817044413428026", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 403, + 404, + 405, + ], + "id": 279, + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "man_dir": "", + "name": "@humanwhocodes/config-array", + "name_hash": "4378208149395492413", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 280, + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "man_dir": "", + "name": "@humanwhocodes/object-schema", + "name_hash": "8965646483962562622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 281, + "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", + "man_dir": "", + "name": "@eslint/js", + "name_hash": "14520481844909638934", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + ], + "id": 282, + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "man_dir": "", + "name": "@eslint/eslintrc", + "name_hash": "12097048422266797669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 283, + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "man_dir": "", + "name": "strip-json-comments", + "name_hash": "3826326773345398095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 284, + "integrity": "sha512-0MGxAVt1m/ZK+LTJp/j0qF7Hz97D9O/FH9Ms3ltnyIdDD57cbb1ACIQTkbHvNXtWDv5TPq7w5Kq56+cNukbo7g==", + "man_dir": "", + "name": "@eslint-community/regexpp", + "name_hash": "633405221675698401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 415, + 416, + ], + "id": 285, + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "man_dir": "", + "name": "@eslint-community/eslint-utils", + "name_hash": "17370105237013380211", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 417, + ], + "id": 286, + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "man_dir": "", + "name": "eslint-plugin-react-hooks", + "name_hash": "14057422571669714006", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + ], + "id": 287, + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "man_dir": "", + "name": "eslint-plugin-react", + "name_hash": "15811917473959571682", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.33.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + ], + "id": 288, + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "man_dir": "", + "name": "string.prototype.matchall", + "name_hash": "3859254092910215586", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 444, + 445, + 446, + ], + "id": 289, + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "man_dir": "", + "name": "side-channel", + "name_hash": "9070404613470426637", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 290, + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "man_dir": "", + "name": "object-inspect", + "name_hash": "956383507377191237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.12.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 447, + 448, + 449, + 450, + ], + "id": 291, + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "man_dir": "", + "name": "get-intrinsic", + "name_hash": "2906428234746671084", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 292, + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "man_dir": "", + "name": "has-symbols", + "name_hash": "11738213668566965255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 293, + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "man_dir": "", + "name": "has-proto", + "name_hash": "14548784663137950749", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 451, + 452, + ], + "id": 294, + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "man_dir": "", + "name": "call-bind", + "name_hash": "12438735438837079615", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 453, + 454, + 455, + ], + "id": 295, + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "man_dir": "", + "name": "set-function-name", + "name_hash": "15255527540049710000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 456, + ], + "id": 296, + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "man_dir": "", + "name": "has-property-descriptors", + "name_hash": "4664477375836720802", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 297, + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "man_dir": "", + "name": "functions-have-names", + "name_hash": "2705786889099279986", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 457, + 458, + 459, + ], + "id": 298, + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "man_dir": "", + "name": "define-data-property", + "name_hash": "11872812789934333141", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 460, + ], + "id": 299, + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "man_dir": "", + "name": "gopd", + "name_hash": "11067429752147099645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 461, + 462, + 463, + ], + "id": 300, + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "man_dir": "", + "name": "regexp.prototype.flags", + "name_hash": "1450419609126993699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 464, + 465, + 466, + ], + "id": 301, + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "man_dir": "", + "name": "define-properties", + "name_hash": "6291091409189323848", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 302, + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "man_dir": "", + "name": "object-keys", + "name_hash": "17064657543629771811", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 467, + 468, + 469, + ], + "id": 303, + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "man_dir": "", + "name": "internal-slot", + "name_hash": "5294586439646401067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + ], + "id": 304, + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "man_dir": "", + "name": "es-abstract", + "name_hash": "18149169871844198539", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 509, + 510, + 511, + 512, + 513, + ], + "id": 305, + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "man_dir": "", + "name": "which-typed-array", + "name_hash": "15299409777186876504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 514, + ], + "id": 306, + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "man_dir": "", + "name": "has-tostringtag", + "name_hash": "13213170068840407891", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 515, + ], + "id": 307, + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "man_dir": "", + "name": "for-each", + "name_hash": "10867395407301386752", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 308, + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "man_dir": "", + "name": "is-callable", + "name_hash": "8145804842618902795", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 309, + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "man_dir": "", + "name": "available-typed-arrays", + "name_hash": "16267035547686705519", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 516, + 517, + 518, + 519, + ], + "id": 310, + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "man_dir": "", + "name": "unbox-primitive", + "name_hash": "5619034830996442352", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 520, + 521, + 522, + 523, + 524, + ], + "id": 311, + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "man_dir": "", + "name": "which-boxed-primitive", + "name_hash": "16054727932152155669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 525, + ], + "id": 312, + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "man_dir": "", + "name": "is-symbol", + "name_hash": "17261375015506057632", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 526, + ], + "id": 313, + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "man_dir": "", + "name": "is-string", + "name_hash": "17134972543368483860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 527, + ], + "id": 314, + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "man_dir": "", + "name": "is-number-object", + "name_hash": "17734215349587891459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 528, + 529, + ], + "id": 315, + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "man_dir": "", + "name": "is-boolean-object", + "name_hash": "977724548377731595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 530, + ], + "id": 316, + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "man_dir": "", + "name": "is-bigint", + "name_hash": "15395120181649760746", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 317, + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "man_dir": "", + "name": "has-bigints", + "name_hash": "8902287851533908224", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 531, + 532, + 533, + ], + "id": 318, + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "man_dir": "", + "name": "typed-array-length", + "name_hash": "11116743844802335237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 534, + ], + "id": 319, + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "man_dir": "", + "name": "is-typed-array", + "name_hash": "9705410882361152938", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 535, + 536, + 537, + 538, + 539, + ], + "id": 320, + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "man_dir": "", + "name": "typed-array-byte-offset", + "name_hash": "4363148948656071809", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 540, + 541, + 542, + 543, + ], + "id": 321, + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "man_dir": "", + "name": "typed-array-byte-length", + "name_hash": "15839092223363072276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 544, + 545, + 546, + ], + "id": 322, + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "man_dir": "", + "name": "typed-array-buffer", + "name_hash": "12632345045689166547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 547, + 548, + 549, + ], + "id": 323, + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "man_dir": "", + "name": "string.prototype.trimstart", + "name_hash": "2565522221466854936", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 550, + 551, + 552, + ], + "id": 324, + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "man_dir": "", + "name": "string.prototype.trimend", + "name_hash": "1025553805644415088", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 553, + 554, + 555, + ], + "id": 325, + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "man_dir": "", + "name": "string.prototype.trim", + "name_hash": "13195996988681286312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 556, + 557, + 558, + ], + "id": 326, + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "man_dir": "", + "name": "safe-regex-test", + "name_hash": "7551602408075273083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 559, + 560, + ], + "id": 327, + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "man_dir": "", + "name": "is-regex", + "name_hash": "5347229372705359543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 561, + 562, + 563, + 564, + ], + "id": 328, + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "man_dir": "", + "name": "safe-array-concat", + "name_hash": "16724726882203544952", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 329, + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "man_dir": "", + "name": "isarray", + "name_hash": "1313190527457156627", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 565, + 566, + 567, + 568, + ], + "id": 330, + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "man_dir": "", + "name": "object.assign", + "name_hash": "3382096865825279030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 569, + ], + "id": 331, + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "man_dir": "", + "name": "is-weakref", + "name_hash": "16457982703851476953", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 570, + ], + "id": 332, + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "man_dir": "", + "name": "is-shared-array-buffer", + "name_hash": "16404740693320828184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 333, + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "man_dir": "", + "name": "is-negative-zero", + "name_hash": "15976851243871524828", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 571, + 572, + 573, + ], + "id": 334, + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "man_dir": "", + "name": "is-array-buffer", + "name_hash": "14032760764897204845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 574, + ], + "id": 335, + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "man_dir": "", + "name": "globalthis", + "name_hash": "13441561870904786738", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 575, + 576, + ], + "id": 336, + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "man_dir": "", + "name": "get-symbol-description", + "name_hash": "9231308723607962639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 577, + 578, + 579, + 580, + ], + "id": 337, + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "man_dir": "", + "name": "function.prototype.name", + "name_hash": "4695092674110180958", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 581, + 582, + 583, + ], + "id": 338, + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "man_dir": "", + "name": "es-to-primitive", + "name_hash": "5511149163085325549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 584, + ], + "id": 339, + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "man_dir": "", + "name": "is-date-object", + "name_hash": "2234586858061383196", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 585, + 586, + 587, + ], + "id": 340, + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "man_dir": "", + "name": "es-set-tostringtag", + "name_hash": "6364566058234691598", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 588, + 589, + 590, + 591, + 592, + 593, + 594, + ], + "id": 341, + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "man_dir": "", + "name": "arraybuffer.prototype.slice", + "name_hash": "11166998714227851504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 595, + 596, + ], + "id": 342, + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "man_dir": "", + "name": "array-buffer-byte-length", + "name_hash": "9975978122018604356", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [], + "id": 343, + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.3.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 597, + 598, + 599, + ], + "id": 344, + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0-next.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 600, + 601, + 602, + ], + "id": 345, + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "man_dir": "", + "name": "prop-types", + "name_hash": "2288456573804260909", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.8.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 346, + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "man_dir": "", + "name": "react-is", + "name_hash": "2565568243106125199", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "16.13.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 603, + 604, + 605, + ], + "id": 347, + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "man_dir": "", + "name": "object.values", + "name_hash": "17183857510284531499", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 606, + 607, + ], + "id": 348, + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "man_dir": "", + "name": "object.hasown", + "name_hash": "12140096160358655980", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 608, + 609, + 610, + ], + "id": 349, + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "man_dir": "", + "name": "object.fromentries", + "name_hash": "58142230756561331", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 611, + 612, + 613, + ], + "id": 350, + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "man_dir": "", + "name": "object.entries", + "name_hash": "9232336923373250807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 614, + 615, + 616, + 617, + ], + "id": 351, + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "man_dir": "", + "name": "jsx-ast-utils", + "name_hash": "7365668162252757844", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 618, + 619, + 620, + 621, + ], + "id": 352, + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "man_dir": "", + "name": "array.prototype.flat", + "name_hash": "13419566320551684202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 622, + ], + "id": 353, + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "man_dir": "", + "name": "es-shim-unscopables", + "name_hash": "9491299634916711255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 623, + 624, + 625, + 626, + 627, + ], + "id": 354, + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "man_dir": "", + "name": "array-includes", + "name_hash": "4525275494838245397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + ], + "id": 355, + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "man_dir": "", + "name": "es-iterator-helpers", + "name_hash": "6828621610707932693", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 642, + 643, + 644, + 645, + 646, + ], + "id": 356, + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "man_dir": "", + "name": "iterator.prototype", + "name_hash": "2087250667608616513", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 647, + 648, + 649, + 650, + 651, + 652, + ], + "id": 357, + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "man_dir": "", + "name": "reflect.getprototypeof", + "name_hash": "16421047821568888832", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + ], + "id": 358, + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "man_dir": "", + "name": "which-builtin-type", + "name_hash": "5638101803141645512", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 665, + 666, + 667, + 668, + ], + "id": 359, + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "man_dir": "", + "name": "which-collection", + "name_hash": "14526135543217104595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 669, + 670, + ], + "id": 360, + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "man_dir": "", + "name": "is-weakset", + "name_hash": "15512317874752413182", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 361, + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "man_dir": "", + "name": "is-weakmap", + "name_hash": "6846802860855249568", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 362, + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "man_dir": "", + "name": "is-set", + "name_hash": "711008573234634940", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 363, + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "man_dir": "", + "name": "is-map", + "name_hash": "13285296637631486371", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 671, + ], + "id": 364, + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "man_dir": "", + "name": "is-generator-function", + "name_hash": "6389681397246265335", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 672, + ], + "id": 365, + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "man_dir": "", + "name": "is-finalizationregistry", + "name_hash": "3324291948921067566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 673, + ], + "id": 366, + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "man_dir": "", + "name": "is-async-function", + "name_hash": "7396704721306843003", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 674, + ], + "id": 367, + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "man_dir": "", + "name": "asynciterator.prototype", + "name_hash": "3757020988614190728", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 675, + ], + "id": 368, + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 676, + 677, + 678, + 679, + 680, + ], + "id": 369, + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "man_dir": "", + "name": "array.prototype.tosorted", + "name_hash": "6050988382768901310", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 681, + 682, + 683, + 684, + ], + "id": 370, + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "man_dir": "", + "name": "array.prototype.flatmap", + "name_hash": "4112999450230342125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + ], + "id": 371, + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "man_dir": "", + "name": "eslint-plugin-jsx-a11y", + "name_hash": "17038906309846806775", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 702, + ], + "id": 372, + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "man_dir": "", + "name": "language-tags", + "name_hash": "3625175203997363083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 373, + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "man_dir": "", + "name": "language-subtag-registry", + "name_hash": "15962551382548022065", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 374, + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 375, + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "man_dir": "", + "name": "damerau-levenshtein", + "name_hash": "15167018638538311401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 703, + ], + "id": 376, + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "man_dir": "", + "name": "axobject-query", + "name_hash": "9344054106894956572", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 377, + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "man_dir": "", + "name": "dequal", + "name_hash": "9863785364709466334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 378, + "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "man_dir": "", + "name": "axe-core", + "name_hash": "13988195930258765777", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 379, + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "man_dir": "", + "name": "ast-types-flow", + "name_hash": "3772215945262775731", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 704, + ], + "id": 380, + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "man_dir": "", + "name": "aria-query", + "name_hash": "506127023625643336", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 705, + ], + "id": 381, + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "man_dir": "", + "name": "@babel/runtime", + "name_hash": "10291762809505250838", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.23.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 382, + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "man_dir": "", + "name": "regenerator-runtime", + "name_hash": "7537904526969317900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.14.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + ], + "id": 383, + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "man_dir": "", + "name": "eslint-plugin-import", + "name_hash": "8508429259951498502", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.28.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 724, + 725, + 726, + 727, + ], + "id": 384, + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "man_dir": "", + "name": "tsconfig-paths", + "name_hash": "9484880556576660029", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.14.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 385, + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "man_dir": "", + "name": "strip-bom", + "name_hash": "10409965272767959480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 386, + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "man_dir": "", + "name": "minimist", + "name_hash": "3523651443977674137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cli.js", + "name": "json5", + }, + "dependencies": [ + 728, + ], + "id": 387, + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "man_dir": "", + "name": "json5", + "name_hash": "8623012563386528314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 388, + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "man_dir": "", + "name": "@types/json5", + "name_hash": "7880870305537908928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.29", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 729, + 730, + 731, + 732, + ], + "id": 389, + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "man_dir": "", + "name": "object.groupby", + "name_hash": "11641877674072745532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 733, + ], + "id": 390, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "man_dir": "", + "name": "eslint-module-utils", + "name_hash": "8461306141657248779", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.8.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 734, + ], + "id": 391, + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 392, + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 735, + 736, + 737, + ], + "id": 393, + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "man_dir": "", + "name": "eslint-import-resolver-node", + "name_hash": "7112252065464945765", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 738, + 739, + 740, + 741, + 742, + ], + "id": 394, + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "man_dir": "", + "name": "array.prototype.findlastindex", + "name_hash": "12218267642355334154", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + ], + "id": 395, + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "man_dir": "", + "name": "eslint-import-resolver-typescript", + "name_hash": "15133821067886250480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 752, + ], + "id": 396, + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "man_dir": "", + "name": "get-tsconfig", + "name_hash": "4239972350118399509", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 397, + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "man_dir": "", + "name": "resolve-pkg-maps", + "name_hash": "2492033107302429470", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 753, + 754, + ], + "id": 398, + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "man_dir": "", + "name": "enhanced-resolve", + "name_hash": "2987069983667056488", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 399, + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "man_dir": "", + "name": "tapable", + "name_hash": "14182729765386254792", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 755, + 756, + 757, + 758, + 759, + 760, + ], + "id": 400, + "integrity": "sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==", + "man_dir": "", + "name": "@typescript-eslint/parser", + "name_hash": "16517001479467293030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 761, + 762, + ], + "id": 401, + "integrity": "sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==", + "man_dir": "", + "name": "@typescript-eslint/visitor-keys", + "name_hash": "7940841856001563650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 402, + "integrity": "sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==", + "man_dir": "", + "name": "@typescript-eslint/types", + "name_hash": "9755027355340495761", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 763, + 764, + 765, + 766, + 767, + 768, + 769, + ], + "id": 403, + "integrity": "sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==", + "man_dir": "", + "name": "@typescript-eslint/typescript-estree", + "name_hash": "17745786537991019945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 770, + ], + "id": 404, + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "man_dir": "", + "name": "ts-api-utils", + "name_hash": "16747467150637667790", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 771, + ], + "id": 405, + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.5.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 772, + 773, + 774, + 775, + 776, + 777, + ], + "id": 406, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "man_dir": "", + "name": "globby", + "name_hash": "15348107128072099982", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "11.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 407, + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "man_dir": "", + "name": "slash", + "name_hash": "14883663570633596397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 778, + ], + "id": 408, + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "man_dir": "", + "name": "dir-glob", + "name_hash": "7561427002176423027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 409, + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "man_dir": "", + "name": "path-type", + "name_hash": "1886008933504244910", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 410, + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "man_dir": "", + "name": "array-union", + "name_hash": "16137961625129706702", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 779, + 780, + ], + "id": 411, + "integrity": "sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==", + "man_dir": "", + "name": "@typescript-eslint/scope-manager", + "name_hash": "4117654371883490926", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 412, + "integrity": "sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg==", + "man_dir": "", + "name": "@rushstack/eslint-patch", + "name_hash": "11774582013079126290", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 781, + ], + "id": 413, + "integrity": "sha512-VCnZI2cy77Yaj3L7Uhs3+44ikMM1VD/fBMwvTBb3hIaTIuqa+DmG4dhUDq+MASu3yx97KhgsVJbsas0XuiKyww==", + "man_dir": "", + "name": "@next/eslint-plugin-next", + "name_hash": "12150179697604729174", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/esm/bin.mjs", + "name": "glob", + }, + "dependencies": [ + 782, + 783, + 784, + 785, + 786, + ], + "id": 414, + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.3.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 787, + 788, + ], + "id": 415, + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "man_dir": "", + "name": "path-scurry", + "name_hash": "11241411746102775941", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 416, + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "man_dir": "", + "name": "minipass", + "name_hash": "8663404386276345459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 417, + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 789, + ], + "id": 418, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 790, + ], + "id": 419, + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 791, + 792, + ], + "id": 420, + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "man_dir": "", + "name": "jackspeak", + "name_hash": "16168027919126698688", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 421, + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "man_dir": "", + "name": "@pkgjs/parseargs", + "name_hash": "4691519579619228072", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 793, + 794, + 795, + 796, + 797, + 798, + ], + "id": 422, + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "man_dir": "", + "name": "@isaacs/cliui", + "name_hash": "9642792940339374750", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 799, + 800, + 801, + ], + "id": 423, + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 802, + ], + "id": 424, + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 425, + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 803, + 804, + 805, + ], + "id": 426, + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 427, + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "man_dir": "", + "name": "eastasianwidth", + "name_hash": "17075761832414070361", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 428, + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 806, + 807, + ], + "id": 429, + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "man_dir": "", + "name": "foreground-child", + "name_hash": "15280470906188730905", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 430, + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "man_dir": "", + "name": "signal-exit", + "name_hash": "10435964049369420478", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 431, + "integrity": "sha512-XlyKVdYCHa7K5PHYGcwOVOrGE/bMnLS51y7zFA3ZAAXyiQ6dTaNXNCWTTufgII/6ruN770uhAXphQmzvU/r2fQ==", + "man_dir": "", + "name": "bun-types", + "name_hash": "2516125195587546235", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/autoprefixer", + "name": "autoprefixer", + }, + "dependencies": [ + 808, + 809, + 810, + 811, + 812, + 813, + 814, + ], + "id": 432, + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "man_dir": "", + "name": "autoprefixer", + "name_hash": "8637312893797281270", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.4.16", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 433, + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "man_dir": "", + "name": "normalize-range", + "name_hash": "2450824346687386237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 434, + "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "man_dir": "", + "name": "fraction.js", + "name_hash": "8226692764887072839", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 435, + "integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001539", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "browserslist", + }, + "dependencies": [ + 815, + 816, + 817, + 818, + ], + "id": 436, + "integrity": "sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==", + "man_dir": "", + "name": "browserslist", + "name_hash": "10902238872969648239", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.21.11", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "update-browserslist-db", + }, + "dependencies": [ + 819, + 820, + 821, + ], + "id": 437, + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "man_dir": "", + "name": "update-browserslist-db", + "name_hash": "6664421840286510928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 438, + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "man_dir": "", + "name": "node-releases", + "name_hash": "16500855680207755447", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 439, + "integrity": "sha512-6uyPyXTo8lkv8SWAmjKFbG42U073TXlzD4R8rW3EzuznhFS2olCIAfjjQtV2dV2ar/vRF55KUd3zQYnCB0dd3A==", + "man_dir": "", + "name": "electron-to-chromium", + "name_hash": "670529235028360171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.529", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 822, + ], + "id": 440, + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "man_dir": "", + "name": "@types/react-dom", + "name_hash": "3229493356298419080", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 823, + 824, + 825, + ], + "id": 441, + "integrity": "sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==", + "man_dir": "", + "name": "@types/react", + "name_hash": "14723150644049679642", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 442, + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "man_dir": "", + "name": "csstype", + "name_hash": "10489861045436610105", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 443, + "integrity": "sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==", + "man_dir": "", + "name": "@types/scheduler", + "name_hash": "12135549028975824460", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.16.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 444, + "integrity": "sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog==", + "man_dir": "", + "name": "@types/prop-types", + "name_hash": "14301724962060537021", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.7.7", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "@aashutoshrathi/word-wrap": { + "id": 355, + "package_id": 229, + }, + "@alloc/quick-lru": { + "id": 14, + "package_id": 83, + }, + "@babel/code-frame": { + "id": 258, + "package_id": 186, + }, + "@babel/helper-validator-identifier": { + "id": 271, + "package_id": 195, + }, + "@babel/highlight": { + "id": 263, + "package_id": 194, + }, + "@babel/runtime": { + "id": 685, + "package_id": 381, + }, + "@eslint-community/eslint-utils": { + "id": 316, + "package_id": 285, + }, + "@eslint-community/regexpp": { + "id": 317, + "package_id": 284, + }, + "@eslint/eslintrc": { + "id": 318, + "package_id": 282, + }, + "@eslint/js": { + "id": 319, + "package_id": 281, + }, + "@humanwhocodes/config-array": { + "id": 320, + "package_id": 279, + }, + "@humanwhocodes/module-importer": { + "id": 321, + "package_id": 278, + }, + "@humanwhocodes/object-schema": { + "id": 403, + "package_id": 280, + }, + "@isaacs/cliui": { + "id": 791, + "package_id": 422, + }, + "@jridgewell/gen-mapping": { + "id": 36, + "package_id": 24, + }, + "@jridgewell/resolve-uri": { + "id": 63, + "package_id": 27, + }, + "@jridgewell/set-array": { + "id": 60, + "package_id": 28, + }, + "@jridgewell/sourcemap-codec": { + "id": 61, + "package_id": 26, + }, + "@jridgewell/trace-mapping": { + "id": 62, + "package_id": 25, + }, + "@next/env": { + "id": 278, + "package_id": 220, + }, + "@next/eslint-plugin-next": { + "id": 305, + "package_id": 413, + }, + "@next/swc-darwin-arm64": { + "id": 285, + "package_id": 212, + }, + "@next/swc-darwin-x64": { + "id": 286, + "package_id": 211, + }, + "@next/swc-linux-arm64-gnu": { + "id": 287, + "package_id": 210, + }, + "@next/swc-linux-arm64-musl": { + "id": 288, + "package_id": 209, + }, + "@next/swc-linux-x64-gnu": { + "id": 289, + "package_id": 208, + }, + "@next/swc-linux-x64-musl": { + "id": 290, + "package_id": 207, + }, + "@next/swc-win32-arm64-msvc": { + "id": 291, + "package_id": 206, + }, + "@next/swc-win32-ia32-msvc": { + "id": 292, + "package_id": 205, + }, + "@next/swc-win32-x64-msvc": { + "id": 293, + "package_id": 204, + }, + "@nodelib/fs.scandir": { + "id": 101, + "package_id": 70, + }, + "@nodelib/fs.stat": { + "id": 95, + "package_id": 73, + }, + "@nodelib/fs.walk": { + "id": 322, + "package_id": 67, + }, + "@pkgjs/parseargs": { + "id": 792, + "package_id": 421, + }, + "@puppeteer/browsers": { + "id": 127, + "package_id": 90, + }, + "@rushstack/eslint-patch": { + "id": 306, + "package_id": 412, + }, + "@swc/helpers": { + "id": 279, + "package_id": 219, + }, + "@tootallnate/quickjs-emscripten": { + "id": 193, + "package_id": 157, + }, + "@types/json5": { + "id": 724, + "package_id": 388, + }, + "@types/node": { + "id": 0, + "package_id": 164, + }, + "@types/prop-types": { + "id": 823, + "package_id": 444, + }, + "@types/react": { + "id": 1, + "package_id": 441, + }, + "@types/react-dom": { + "id": 2, + "package_id": 440, + }, + "@types/scheduler": { + "id": 824, + "package_id": 443, + }, + "@types/yauzl": { + "id": 231, + "package_id": 163, + }, + "@typescript-eslint/parser": { + "id": 307, + "package_id": 400, + }, + "@typescript-eslint/scope-manager": { + "id": 755, + "package_id": 411, + }, + "@typescript-eslint/types": { + "id": 756, + "package_id": 402, + }, + "@typescript-eslint/typescript-estree": { + "id": 757, + "package_id": 403, + }, + "@typescript-eslint/visitor-keys": { + "id": 758, + "package_id": 401, + }, + "acorn": { + "id": 382, + "package_id": 259, + }, + "acorn-jsx": { + "id": 383, + "package_id": 258, + }, + "agent-base": { + "id": 178, + "package_id": 134, + }, + "ajv": { + "id": 323, + "package_id": 273, + }, + "ansi-regex": { + "id": 148, + "package_id": 99, + }, + "ansi-styles": { + "id": 395, + "package_id": 107, + }, + "any-promise": { + "id": 43, + "package_id": 9, + }, + "anymatch": { + "id": 107, + "package_id": 81, + }, + "arg": { + "id": 15, + "package_id": 82, + }, + "argparse": { + "id": 274, + "package_id": 197, + }, + "aria-query": { + "id": 686, + "package_id": 380, + }, + "array-buffer-byte-length": { + "id": 470, + "package_id": 342, + }, + "array-includes": { + "id": 706, + "package_id": 354, + }, + "array-union": { + "id": 772, + "package_id": 410, + }, + "array.prototype.findlastindex": { + "id": 707, + "package_id": 394, + }, + "array.prototype.flat": { + "id": 708, + "package_id": 352, + }, + "array.prototype.flatmap": { + "id": 709, + "package_id": 370, + }, + "array.prototype.tosorted": { + "id": 420, + "package_id": 369, + }, + "arraybuffer.prototype.slice": { + "id": 471, + "package_id": 341, + }, + "ast-types": { + "id": 204, + "package_id": 146, + }, + "ast-types-flow": { + "id": 689, + "package_id": 379, + }, + "asynciterator.prototype": { + "id": 628, + "package_id": 367, + }, + "autoprefixer": { + "id": 3, + "package_id": 432, + }, + "available-typed-arrays": { + "id": 472, + "package_id": 309, + }, + "axe-core": { + "id": 690, + "package_id": 378, + }, + "axobject-query": { + "id": 691, + "package_id": 376, + }, + "b4a": { + "id": 172, + "package_id": 124, + }, + "balanced-match": { + "id": 56, + "package_id": 19, + }, + "bare-events": { + "id": 166, + "package_id": 122, + }, + "bare-fs": { + "id": 163, + "package_id": 118, + }, + "bare-os": { + "id": 167, + "package_id": 117, + }, + "bare-path": { + "id": 164, + "package_id": 116, + }, + "base64-js": { + "id": 159, + "package_id": 114, + }, + "basic-ftp": { + "id": 216, + "package_id": 156, + }, + "binary-extensions": { + "id": 116, + "package_id": 80, + }, + "brace-expansion": { + "id": 362, + "package_id": 17, + }, + "braces": { + "id": 108, + "package_id": 56, + }, + "browserslist": { + "id": 808, + "package_id": 436, + }, + "buffer": { + "id": 157, + "package_id": 112, + }, + "buffer-crc32": { + "id": 234, + "package_id": 166, + }, + "bun-types": { + "id": 4, + "package_id": 431, + }, + "busboy": { + "id": 280, + "package_id": 217, + }, + "call-bind": { + "id": 623, + "package_id": 294, + }, + "callsites": { + "id": 277, + "package_id": 201, + }, + "camelcase-css": { + "id": 81, + "package_id": 47, + }, + "caniuse-lite": { + "id": 809, + "package_id": 435, + }, + "chalk": { + "id": 324, + "package_id": 270, + }, + "chokidar": { + "id": 16, + "package_id": 76, + }, + "chromium-bidi": { + "id": 238, + "package_id": 178, + }, + "client-only": { + "id": 298, + "package_id": 214, + }, + "cliui": { + "id": 138, + "package_id": 105, + }, + "color-convert": { + "id": 155, + "package_id": 108, + }, + "color-name": { + "id": 156, + "package_id": 109, + }, + "commander": { + "id": 37, + "package_id": 23, + }, + "concat-map": { + "id": 57, + "package_id": 18, + }, + "cosmiconfig": { + "id": 125, + "package_id": 181, + }, + "cross-fetch": { + "id": 239, + "package_id": 173, + }, + "cross-spawn": { + "id": 325, + "package_id": 264, + }, + "cssesc": { + "id": 70, + "package_id": 37, + }, + "csstype": { + "id": 825, + "package_id": 442, + }, + "damerau-levenshtein": { + "id": 692, + "package_id": 375, + }, + "data-uri-to-buffer": { + "id": 217, + "package_id": 155, + }, + "debug": { + "id": 326, + "package_id": 132, + }, + "deep-is": { + "id": 354, + "package_id": 230, + }, + "define-data-property": { + "id": 464, + "package_id": 298, + }, + "define-properties": { + "id": 624, + "package_id": 301, + }, + "degenerator": { + "id": 201, + "package_id": 140, + }, + "dequal": { + "id": 704, + "package_id": 377, + }, + "devtools-protocol": { + "id": 241, + "package_id": 172, + }, + "didyoumean": { + "id": 17, + "package_id": 75, + }, + "dir-glob": { + "id": 773, + "package_id": 408, + }, + "dlv": { + "id": 18, + "package_id": 74, + }, + "doctrine": { + "id": 327, + "package_id": 263, + }, + "eastasianwidth": { + "id": 803, + "package_id": 427, + }, + "electron-to-chromium": { + "id": 816, + "package_id": 439, + }, + "emoji-regex": { + "id": 693, + "package_id": 374, + }, + "end-of-stream": { + "id": 175, + "package_id": 126, + }, + "enhanced-resolve": { + "id": 744, + "package_id": 398, + }, + "env-paths": { + "id": 253, + "package_id": 202, + }, + "error-ex": { + "id": 259, + "package_id": 184, + }, + "es-abstract": { + "id": 625, + "package_id": 304, + }, + "es-iterator-helpers": { + "id": 422, + "package_id": 355, + }, + "es-set-tostringtag": { + "id": 632, + "package_id": 340, + }, + "es-shim-unscopables": { + "id": 741, + "package_id": 353, + }, + "es-to-primitive": { + "id": 475, + "package_id": 338, + }, + "escalade": { + "id": 819, + "package_id": 104, + }, + "escape-string-regexp": { + "id": 328, + "package_id": 262, + }, + "escodegen": { + "id": 205, + "package_id": 142, + }, + "eslint": { + "id": 5, + "package_id": 222, + }, + "eslint-config-next": { + "id": 6, + "package_id": 221, + }, + "eslint-import-resolver-node": { + "id": 308, + "package_id": 393, + }, + "eslint-import-resolver-typescript": { + "id": 309, + "package_id": 395, + }, + "eslint-module-utils": { + "id": 745, + "package_id": 390, + }, + "eslint-plugin-import": { + "id": 310, + "package_id": 383, + }, + "eslint-plugin-jsx-a11y": { + "id": 311, + "package_id": 371, + }, + "eslint-plugin-react": { + "id": 312, + "package_id": 287, + }, + "eslint-plugin-react-hooks": { + "id": 313, + "package_id": 286, + }, + "eslint-scope": { + "id": 329, + "package_id": 260, + }, + "eslint-visitor-keys": { + "id": 330, + "package_id": 257, + }, + "espree": { + "id": 331, + "package_id": 256, + }, + "esprima": { + "id": 206, + "package_id": 141, + }, + "esquery": { + "id": 332, + "package_id": 255, + }, + "esrecurse": { + "id": 386, + "package_id": 261, + }, + "estraverse": { + "id": 387, + "package_id": 145, + }, + "esutils": { + "id": 333, + "package_id": 144, + }, + "extract-zip": { + "id": 129, + "package_id": 162, + }, + "fast-deep-equal": { + "id": 334, + "package_id": 254, + }, + "fast-fifo": { + "id": 173, + "package_id": 121, + }, + "fast-glob": { + "id": 19, + "package_id": 64, + }, + "fast-json-stable-stringify": { + "id": 399, + "package_id": 277, + }, + "fast-levenshtein": { + "id": 358, + "package_id": 225, + }, + "fastq": { + "id": 102, + "package_id": 68, + }, + "fd-slicer": { + "id": 233, + "package_id": 167, + }, + "file-entry-cache": { + "id": 335, + "package_id": 247, + }, + "fill-range": { + "id": 90, + "package_id": 57, + }, + "find-up": { + "id": 336, + "package_id": 241, + }, + "flat-cache": { + "id": 369, + "package_id": 248, + }, + "flatted": { + "id": 370, + "package_id": 253, + }, + "for-each": { + "id": 541, + "package_id": 307, + }, + "foreground-child": { + "id": 782, + "package_id": 429, + }, + "fraction.js": { + "id": 810, + "package_id": 434, + }, + "fs-extra": { + "id": 219, + "package_id": 151, + }, + "fs.realpath": { + "id": 48, + "package_id": 22, + }, + "fsevents": { + "id": 114, + "package_id": 77, + }, + "function-bind": { + "id": 69, + "package_id": 34, + }, + "function.prototype.name": { + "id": 476, + "package_id": 337, + }, + "functions-have-names": { + "id": 454, + "package_id": 297, + }, + "get-caller-file": { + "id": 140, + "package_id": 103, + }, + "get-intrinsic": { + "id": 626, + "package_id": 291, + }, + "get-stream": { + "id": 229, + "package_id": 169, + }, + "get-symbol-description": { + "id": 478, + "package_id": 336, + }, + "get-tsconfig": { + "id": 747, + "package_id": 396, + }, + "get-uri": { + "id": 196, + "package_id": 150, + }, + "glob": { + "id": 781, + "package_id": 414, + }, + "glob-parent": { + "id": 337, + "package_id": 63, + }, + "globals": { + "id": 338, + "package_id": 239, + }, + "globalthis": { + "id": 635, + "package_id": 335, + }, + "globby": { + "id": 766, + "package_id": 406, + }, + "gopd": { + "id": 480, + "package_id": 299, + }, + "graceful-fs": { + "id": 282, + "package_id": 154, + }, + "graphemer": { + "id": 339, + "package_id": 238, + }, + "has": { + "id": 714, + "package_id": 33, + }, + "has-bigints": { + "id": 517, + "package_id": 317, + }, + "has-flag": { + "id": 397, + "package_id": 272, + }, + "has-property-descriptors": { + "id": 636, + "package_id": 296, + }, + "has-proto": { + "id": 637, + "package_id": 293, + }, + "has-symbols": { + "id": 638, + "package_id": 292, + }, + "has-tostringtag": { + "id": 526, + "package_id": 306, + }, + "http-proxy-agent": { + "id": 180, + "package_id": 160, + }, + "https-proxy-agent": { + "id": 181, + "package_id": 159, + }, + "ieee754": { + "id": 160, + "package_id": 113, + }, + "ignore": { + "id": 340, + "package_id": 237, + }, + "import-fresh": { + "id": 411, + "package_id": 198, + }, + "imurmurhash": { + "id": 341, + "package_id": 236, + }, + "inflight": { + "id": 49, + "package_id": 21, + }, + "inherits": { + "id": 50, + "package_id": 20, + }, + "internal-slot": { + "id": 639, + "package_id": 303, + }, + "ip": { + "id": 202, + "package_id": 139, + }, + "is-array-buffer": { + "id": 486, + "package_id": 334, + }, + "is-arrayish": { + "id": 262, + "package_id": 185, + }, + "is-async-function": { + "id": 655, + "package_id": 366, + }, + "is-bigint": { + "id": 520, + "package_id": 316, + }, + "is-binary-path": { + "id": 110, + "package_id": 79, + }, + "is-boolean-object": { + "id": 521, + "package_id": 315, + }, + "is-callable": { + "id": 487, + "package_id": 308, + }, + "is-core-module": { + "id": 736, + "package_id": 32, + }, + "is-date-object": { + "id": 582, + "package_id": 339, + }, + "is-extglob": { + "id": 93, + "package_id": 62, + }, + "is-finalizationregistry": { + "id": 657, + "package_id": 365, + }, + "is-fullwidth-code-point": { + "id": 146, + "package_id": 100, + }, + "is-generator-function": { + "id": 658, + "package_id": 364, + }, + "is-glob": { + "id": 342, + "package_id": 61, + }, + "is-map": { + "id": 665, + "package_id": 363, + }, + "is-negative-zero": { + "id": 488, + "package_id": 333, + }, + "is-number": { + "id": 92, + "package_id": 59, + }, + "is-number-object": { + "id": 522, + "package_id": 314, + }, + "is-path-inside": { + "id": 343, + "package_id": 235, + }, + "is-regex": { + "id": 489, + "package_id": 327, + }, + "is-set": { + "id": 666, + "package_id": 362, + }, + "is-shared-array-buffer": { + "id": 490, + "package_id": 332, + }, + "is-string": { + "id": 627, + "package_id": 313, + }, + "is-symbol": { + "id": 583, + "package_id": 312, + }, + "is-typed-array": { + "id": 492, + "package_id": 319, + }, + "is-weakmap": { + "id": 667, + "package_id": 361, + }, + "is-weakref": { + "id": 493, + "package_id": 331, + }, + "is-weakset": { + "id": 668, + "package_id": 360, + }, + "isarray": { + "id": 564, + "package_id": 329, + }, + "isexe": { + "id": 393, + "package_id": 266, + }, + "iterator.prototype": { + "id": 640, + "package_id": 356, + }, + "jackspeak": { + "id": 783, + "package_id": 420, + }, + "jiti": { + "id": 22, + "package_id": 60, + }, + "js-tokens": { + "id": 123, + "package_id": 87, + }, + "js-yaml": { + "id": 344, + "package_id": 196, + }, + "json-buffer": { + "id": 380, + "package_id": 252, + }, + "json-parse-even-better-errors": { + "id": 260, + "package_id": 183, + }, + "json-schema-traverse": { + "id": 400, + "package_id": 276, + }, + "json-stable-stringify-without-jsonify": { + "id": 345, + "package_id": 234, + }, + "json5": { + "id": 725, + "package_id": 387, + }, + "jsonfile": { + "id": 221, + "package_id": 153, + }, + "jsx-ast-utils": { + "id": 695, + "package_id": 351, + }, + "keyv": { + "id": 371, + "package_id": 251, + }, + "language-subtag-registry": { + "id": 702, + "package_id": 373, + }, + "language-tags": { + "id": 696, + "package_id": 372, + }, + "levn": { + "id": 346, + "package_id": 226, + }, + "lilconfig": { + "id": 23, + "package_id": 45, + }, + "lines-and-columns": { + "id": 39, + "package_id": 11, + }, + "locate-path": { + "id": 364, + "package_id": 243, + }, + "lodash.merge": { + "id": 347, + "package_id": 233, + }, + "loose-envify": { + "id": 124, + "package_id": 86, + }, + "lru-cache": { + "id": 182, + "package_id": 158, + }, + "merge2": { + "id": 98, + "package_id": 65, + }, + "micromatch": { + "id": 24, + "package_id": 54, + }, + "minimatch": { + "id": 348, + "package_id": 232, + }, + "minimist": { + "id": 726, + "package_id": 386, + }, + "minipass": { + "id": 785, + "package_id": 416, + }, + "mitt": { + "id": 250, + "package_id": 180, + }, + "ms": { + "id": 191, + "package_id": 133, + }, + "mz": { + "id": 40, + "package_id": 6, + }, + "nanoid": { + "id": 74, + "package_id": 42, + }, + "natural-compare": { + "id": 349, + "package_id": 231, + }, + "netmask": { + "id": 203, + "package_id": 138, + }, + "next": { + "id": 7, + "package_id": 203, + }, + "node-fetch": { + "id": 245, + "package_id": 174, + }, + "node-releases": { + "id": 817, + "package_id": 438, + }, + "normalize-path": { + "id": 25, + "package_id": 53, + }, + "normalize-range": { + "id": 811, + "package_id": 433, + }, + "object-assign": { + "id": 601, + "package_id": 10, + }, + "object-hash": { + "id": 26, + "package_id": 52, + }, + "object-inspect": { + "id": 494, + "package_id": 290, + }, + "object-keys": { + "id": 466, + "package_id": 302, + }, + "object.assign": { + "id": 616, + "package_id": 330, + }, + "object.entries": { + "id": 698, + "package_id": 350, + }, + "object.fromentries": { + "id": 718, + "package_id": 349, + }, + "object.groupby": { + "id": 719, + "package_id": 389, + }, + "object.hasown": { + "id": 428, + "package_id": 348, + }, + "object.values": { + "id": 720, + "package_id": 347, + }, + "once": { + "id": 52, + "package_id": 14, + }, + "optionator": { + "id": 350, + "package_id": 224, + }, + "p-limit": { + "id": 367, + "package_id": 245, + }, + "p-locate": { + "id": 366, + "package_id": 244, + }, + "pac-proxy-agent": { + "id": 183, + "package_id": 136, + }, + "pac-resolver": { + "id": 199, + "package_id": 137, + }, + "parent-module": { + "id": 275, + "package_id": 200, + }, + "parse-json": { + "id": 256, + "package_id": 182, + }, + "path-exists": { + "id": 365, + "package_id": 242, + }, + "path-is-absolute": { + "id": 53, + "package_id": 13, + }, + "path-key": { + "id": 390, + "package_id": 269, + }, + "path-parse": { + "id": 66, + "package_id": 31, + }, + "path-scurry": { + "id": 786, + "package_id": 415, + }, + "path-type": { + "id": 778, + "package_id": 409, + }, + "pend": { + "id": 235, + "package_id": 168, + }, + "picocolors": { + "id": 812, + "package_id": 41, + }, + "picomatch": { + "id": 89, + "package_id": 55, + }, + "pify": { + "id": 87, + "package_id": 50, + }, + "pirates": { + "id": 41, + "package_id": 5, + }, + "postcss": { + "id": 8, + "package_id": 39, + }, + "postcss-import": { + "id": 29, + "package_id": 48, + }, + "postcss-js": { + "id": 30, + "package_id": 46, + }, + "postcss-load-config": { + "id": 31, + "package_id": 43, + }, + "postcss-nested": { + "id": 32, + "package_id": 38, + }, + "postcss-selector-parser": { + "id": 33, + "package_id": 35, + }, + "postcss-value-parser": { + "id": 813, + "package_id": 51, + }, + "prelude-ls": { + "id": 359, + "package_id": 228, + }, + "progress": { + "id": 130, + "package_id": 161, + }, + "prop-types": { + "id": 430, + "package_id": 345, + }, + "proxy-agent": { + "id": 131, + "package_id": 127, + }, + "proxy-from-env": { + "id": 184, + "package_id": 135, + }, + "pump": { + "id": 161, + "package_id": 125, + }, + "punycode": { + "id": 402, + "package_id": 275, + }, + "puppeteer": { + "id": 9, + "package_id": 89, + }, + "puppeteer-core": { + "id": 126, + "package_id": 170, + }, + "queue-microtask": { + "id": 106, + "package_id": 72, + }, + "queue-tick": { + "id": 171, + "package_id": 120, + }, + "react": { + "id": 10, + "package_id": 88, + }, + "react-dom": { + "id": 11, + "package_id": 84, + }, + "react-is": { + "id": 602, + "package_id": 346, + }, + "read-cache": { + "id": 84, + "package_id": 49, + }, + "readdirp": { + "id": 113, + "package_id": 78, + }, + "reflect.getprototypeof": { + "id": 645, + "package_id": 357, + }, + "regenerator-runtime": { + "id": 705, + "package_id": 382, + }, + "regexp.prototype.flags": { + "id": 441, + "package_id": 300, + }, + "require-directory": { + "id": 141, + "package_id": 102, + }, + "resolve": { + "id": 34, + "package_id": 29, + }, + "resolve-from": { + "id": 276, + "package_id": 199, + }, + "resolve-pkg-maps": { + "id": 752, + "package_id": 397, + }, + "reusify": { + "id": 103, + "package_id": 69, + }, + "rimraf": { + "id": 372, + "package_id": 249, + }, + "run-parallel": { + "id": 105, + "package_id": 71, + }, + "safe-array-concat": { + "id": 641, + "package_id": 328, + }, + "safe-regex-test": { + "id": 499, + "package_id": 326, + }, + "scheduler": { + "id": 120, + "package_id": 85, + }, + "semver": { + "id": 721, + "package_id": 343, + }, + "set-function-name": { + "id": 442, + "package_id": 295, + }, + "shebang-command": { + "id": 391, + "package_id": 267, + }, + "shebang-regex": { + "id": 394, + "package_id": 268, + }, + "side-channel": { + "id": 443, + "package_id": 289, + }, + "signal-exit": { + "id": 807, + "package_id": 430, + }, + "slash": { + "id": 777, + "package_id": 407, + }, + "smart-buffer": { + "id": 190, + "package_id": 130, + }, + "socks": { + "id": 188, + "package_id": 129, + }, + "socks-proxy-agent": { + "id": 185, + "package_id": 128, + }, + "source-map": { + "id": 210, + "package_id": 143, + }, + "source-map-js": { + "id": 76, + "package_id": 40, + }, + "streamsearch": { + "id": 303, + "package_id": 218, + }, + "streamx": { + "id": 174, + "package_id": 119, + }, + "string-width": { + "id": 142, + "package_id": 97, + }, + "string.prototype.matchall": { + "id": 433, + "package_id": 288, + }, + "string.prototype.trim": { + "id": 500, + "package_id": 325, + }, + "string.prototype.trimend": { + "id": 501, + "package_id": 324, + }, + "string.prototype.trimstart": { + "id": 502, + "package_id": 323, + }, + "strip-ansi": { + "id": 351, + "package_id": 98, + }, + "strip-bom": { + "id": 727, + "package_id": 385, + }, + "strip-json-comments": { + "id": 414, + "package_id": 283, + }, + "styled-jsx": { + "id": 284, + "package_id": 213, + }, + "sucrase": { + "id": 35, + "package_id": 3, + }, + "supports-color": { + "id": 396, + "package_id": 271, + }, + "supports-preserve-symlinks-flag": { + "id": 67, + "package_id": 30, + }, + "tailwindcss": { + "id": 12, + "package_id": 2, + }, + "tapable": { + "id": 754, + "package_id": 399, + }, + "tar-fs": { + "id": 132, + "package_id": 115, + }, + "tar-stream": { + "id": 162, + "package_id": 123, + }, + "text-table": { + "id": 352, + "package_id": 223, + }, + "thenify": { + "id": 46, + "package_id": 8, + }, + "thenify-all": { + "id": 45, + "package_id": 7, + }, + "through": { + "id": 158, + "package_id": 111, + }, + "to-regex-range": { + "id": 91, + "package_id": 58, + }, + "tr46": { + "id": 248, + "package_id": 177, + }, + "ts-api-utils": { + "id": 769, + "package_id": 404, + }, + "ts-interface-checker": { + "id": 42, + "package_id": 4, + }, + "tsconfig-paths": { + "id": 722, + "package_id": 384, + }, + "tslib": { + "id": 304, + "package_id": 147, + }, + "type-check": { + "id": 360, + "package_id": 227, + }, + "type-fest": { + "id": 363, + "package_id": 240, + }, + "typed-array-buffer": { + "id": 503, + "package_id": 322, + }, + "typed-array-byte-length": { + "id": 504, + "package_id": 321, + }, + "typed-array-byte-offset": { + "id": 505, + "package_id": 320, + }, + "typed-array-length": { + "id": 506, + "package_id": 318, + }, + "typescript": { + "id": 13, + "package_id": 1, + }, + "unbox-primitive": { + "id": 507, + "package_id": 310, + }, + "unbzip2-stream": { + "id": 133, + "package_id": 110, + }, + "universalify": { + "id": 222, + "package_id": 152, + }, + "update-browserslist-db": { + "id": 818, + "package_id": 437, + }, + "uri-js": { + "id": 401, + "package_id": 274, + }, + "urlpattern-polyfill": { + "id": 251, + "package_id": 179, + }, + "util-deprecate": { + "id": 71, + "package_id": 36, + }, + "webidl-conversions": { + "id": 249, + "package_id": 176, + }, + "whatwg-url": { + "id": 246, + "package_id": 175, + }, + "which": { + "id": 392, + "package_id": 265, + }, + "which-boxed-primitive": { + "id": 519, + "package_id": 311, + }, + "which-builtin-type": { + "id": 652, + "package_id": 358, + }, + "which-collection": { + "id": 663, + "package_id": 359, + }, + "which-typed-array": { + "id": 508, + "package_id": 305, + }, + "wrap-ansi": { + "id": 151, + "package_id": 106, + }, + "wrappy": { + "id": 59, + "package_id": 15, + }, + "ws": { + "id": 242, + "package_id": 171, + }, + "y18n": { + "id": 143, + "package_id": 96, + }, + "yallist": { + "id": 137, + "package_id": 93, + }, + "yaml": { + "id": 78, + "package_id": 44, + }, + "yargs": { + "id": 134, + "package_id": 94, + }, + "yargs-parser": { + "id": 144, + "package_id": 95, + }, + "yauzl": { + "id": 230, + "package_id": 165, + }, + "yocto-queue": { + "id": 368, + "package_id": 246, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "caniuse-lite": { + "id": 281, + "package_id": 216, + }, + "postcss": { + "id": 283, + "package_id": 215, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/next/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 405, + "package_id": 16, + }, + }, + "depth": 1, + "id": 2, + "path": "node_modules/@humanwhocodes/config-array/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 735, + "package_id": 391, + }, + }, + "depth": 1, + "id": 3, + "path": "node_modules/eslint-import-resolver-node/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 710, + "package_id": 391, + }, + "doctrine": { + "id": 711, + "package_id": 368, + }, + }, + "depth": 1, + "id": 4, + "path": "node_modules/eslint-plugin-import/node_modules", + }, + { + "dependencies": { + "doctrine": { + "id": 421, + "package_id": 368, + }, + "resolve": { + "id": 431, + "package_id": 344, + }, + }, + "depth": 1, + "id": 5, + "path": "node_modules/eslint-plugin-react/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 135, + "package_id": 91, + }, + }, + "depth": 1, + "id": 6, + "path": "node_modules/@puppeteer/browsers/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 109, + "package_id": 66, + }, + }, + "depth": 1, + "id": 7, + "path": "node_modules/chokidar/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 97, + "package_id": 66, + }, + }, + "depth": 1, + "id": 8, + "path": "node_modules/fast-glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 38, + "package_id": 12, + }, + }, + "depth": 1, + "id": 9, + "path": "node_modules/sucrase/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 784, + "package_id": 418, + }, + }, + "depth": 1, + "id": 10, + "path": "node_modules/glob/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 768, + "package_id": 405, + }, + }, + "depth": 1, + "id": 11, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 12, + "path": "node_modules/eslint-import-resolver-node/node_modules/debug/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 733, + "package_id": 391, + }, + }, + "depth": 1, + "id": 13, + "path": "node_modules/eslint-module-utils/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 14, + "path": "node_modules/eslint-plugin-import/node_modules/debug/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 136, + "package_id": 92, + }, + }, + "depth": 2, + "id": 15, + "path": "node_modules/@puppeteer/browsers/node_modules/semver/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 51, + "package_id": 16, + }, + }, + "depth": 2, + "id": 16, + "path": "node_modules/sucrase/node_modules/glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 373, + "package_id": 250, + }, + }, + "depth": 1, + "id": 17, + "path": "node_modules/rimraf/node_modules", + }, + { + "dependencies": { + "brace-expansion": { + "id": 789, + "package_id": 419, + }, + }, + "depth": 2, + "id": 18, + "path": "node_modules/glob/node_modules/minimatch/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 787, + "package_id": 417, + }, + }, + "depth": 1, + "id": 19, + "path": "node_modules/path-scurry/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 771, + "package_id": 92, + }, + }, + "depth": 2, + "id": 20, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules/semver/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 21, + "path": "node_modules/eslint-module-utils/node_modules/debug/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 264, + "package_id": 187, + }, + }, + "depth": 1, + "id": 22, + "path": "node_modules/@babel/code-frame/node_modules", + }, + { + "dependencies": { + "http-proxy-agent": { + "id": 197, + "package_id": 149, + }, + "https-proxy-agent": { + "id": 198, + "package_id": 148, + }, + }, + "depth": 1, + "id": 23, + "path": "node_modules/pac-proxy-agent/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 1, + "id": 24, + "path": "node_modules/string-width/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 793, + "package_id": 426, + }, + "string-width-cjs": { + "id": 794, + "package_id": 97, + }, + "strip-ansi": { + "id": 795, + "package_id": 424, + }, + "strip-ansi-cjs": { + "id": 796, + "package_id": 98, + }, + "wrap-ansi": { + "id": 797, + "package_id": 423, + }, + "wrap-ansi-cjs": { + "id": 798, + "package_id": 106, + }, + }, + "depth": 1, + "id": 25, + "path": "node_modules/@isaacs/cliui/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 272, + "package_id": 187, + }, + }, + "depth": 1, + "id": 26, + "path": "node_modules/@babel/highlight/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 27, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "ip": { + "id": 189, + "package_id": 131, + }, + }, + "depth": 1, + "id": 28, + "path": "node_modules/socks/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + "strip-ansi": { + "id": 147, + "package_id": 98, + }, + }, + "depth": 2, + "id": 29, + "path": "node_modules/@isaacs/cliui/node_modules/string-width-cjs/node_modules", + }, + { + "dependencies": { + "ansi-regex": { + "id": 802, + "package_id": 425, + }, + }, + "depth": 2, + "id": 30, + "path": "node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 799, + "package_id": 428, + }, + }, + "depth": 2, + "id": 31, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 153, + "package_id": 97, + }, + "strip-ansi": { + "id": 154, + "package_id": 98, + }, + }, + "depth": 2, + "id": 32, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 33, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 34, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 35, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 3, + "id": 36, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/string-width/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 37, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 38, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 39, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 40, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + ], + "workspace_paths": {}, + "workspace_versions": {}, +} +`; + +exports[`next build works: node 1`] = ` +{ + "dependencies": [ + { + "behavior": { + "normal": true, + }, + "id": 0, + "literal": "20.7.0", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": "==20.7.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 1, + "literal": "18.2.22", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": "==18.2.22", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 2, + "literal": "18.2.7", + "name": "@types/react-dom", + "npm": { + "name": "@types/react-dom", + "version": "==18.2.7", + }, + "package_id": 440, + }, + { + "behavior": { + "normal": true, + }, + "id": 3, + "literal": "10.4.16", + "name": "autoprefixer", + "npm": { + "name": "autoprefixer", + "version": "==10.4.16", + }, + "package_id": 432, + }, + { + "behavior": { + "normal": true, + }, + "id": 4, + "literal": "^1.0.3", + "name": "bun-types", + "npm": { + "name": "bun-types", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 431, + }, + { + "behavior": { + "normal": true, + }, + "id": 5, + "literal": "8.50.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": "==8.50.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 6, + "literal": "14.1.3", + "name": "eslint-config-next", + "npm": { + "name": "eslint-config-next", + "version": "==14.1.3", + }, + "package_id": 221, + }, + { + "behavior": { + "normal": true, + }, + "id": 7, + "literal": "14.1.3", + "name": "next", + "npm": { + "name": "next", + "version": "==14.1.3", + }, + "package_id": 203, + }, + { + "behavior": { + "normal": true, + }, + "id": 8, + "literal": "8.4.30", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.30", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 9, + "literal": "22.4.1", + "name": "puppeteer", + "npm": { + "name": "puppeteer", + "version": "==22.4.1", + }, + "package_id": 89, + }, + { + "behavior": { + "normal": true, + }, + "id": 10, + "literal": "18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": "==18.2.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 11, + "literal": "18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": "==18.2.0", + }, + "package_id": 84, + }, + { + "behavior": { + "normal": true, + }, + "id": 12, + "literal": "3.3.3", + "name": "tailwindcss", + "npm": { + "name": "tailwindcss", + "version": "==3.3.3", + }, + "package_id": 2, + }, + { + "behavior": { + "normal": true, + }, + "id": 13, + "literal": "5.2.2", + "name": "typescript", + "npm": { + "name": "typescript", + "version": "==5.2.2", + }, + "package_id": 1, + }, + { + "behavior": { + "normal": true, + }, + "id": 14, + "literal": "^5.2.0", + "name": "@alloc/quick-lru", + "npm": { + "name": "@alloc/quick-lru", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 83, + }, + { + "behavior": { + "normal": true, + }, + "id": 15, + "literal": "^5.0.2", + "name": "arg", + "npm": { + "name": "arg", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 82, + }, + { + "behavior": { + "normal": true, + }, + "id": 16, + "literal": "^3.5.3", + "name": "chokidar", + "npm": { + "name": "chokidar", + "version": ">=3.5.3 <4.0.0", + }, + "package_id": 76, + }, + { + "behavior": { + "normal": true, + }, + "id": 17, + "literal": "^1.2.2", + "name": "didyoumean", + "npm": { + "name": "didyoumean", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 75, + }, + { + "behavior": { + "normal": true, + }, + "id": 18, + "literal": "^1.1.3", + "name": "dlv", + "npm": { + "name": "dlv", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 74, + }, + { + "behavior": { + "normal": true, + }, + "id": 19, + "literal": "^3.2.12", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.12 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 20, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 21, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 22, + "literal": "^1.18.2", + "name": "jiti", + "npm": { + "name": "jiti", + "version": ">=1.18.2 <2.0.0", + }, + "package_id": 60, + }, + { + "behavior": { + "normal": true, + }, + "id": 23, + "literal": "^2.1.0", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 24, + "literal": "^4.0.5", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.5 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 25, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 26, + "literal": "^3.0.0", + "name": "object-hash", + "npm": { + "name": "object-hash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 52, + }, + { + "behavior": { + "normal": true, + }, + "id": 27, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 28, + "literal": "^8.4.23", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.23 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 29, + "literal": "^15.1.0", + "name": "postcss-import", + "npm": { + "name": "postcss-import", + "version": ">=15.1.0 <16.0.0", + }, + "package_id": 48, + }, + { + "behavior": { + "normal": true, + }, + "id": 30, + "literal": "^4.0.1", + "name": "postcss-js", + "npm": { + "name": "postcss-js", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 46, + }, + { + "behavior": { + "normal": true, + }, + "id": 31, + "literal": "^4.0.1", + "name": "postcss-load-config", + "npm": { + "name": "postcss-load-config", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 43, + }, + { + "behavior": { + "normal": true, + }, + "id": 32, + "literal": "^6.0.1", + "name": "postcss-nested", + "npm": { + "name": "postcss-nested", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 38, + }, + { + "behavior": { + "normal": true, + }, + "id": 33, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "normal": true, + }, + "id": 34, + "literal": "^1.22.2", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.2 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 35, + "literal": "^3.32.0", + "name": "sucrase", + "npm": { + "name": "sucrase", + "version": ">=3.32.0 <4.0.0", + }, + "package_id": 3, + }, + { + "behavior": { + "normal": true, + }, + "id": 36, + "literal": "^0.3.2", + "name": "@jridgewell/gen-mapping", + "npm": { + "name": "@jridgewell/gen-mapping", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 24, + }, + { + "behavior": { + "normal": true, + }, + "id": 37, + "literal": "^4.0.0", + "name": "commander", + "npm": { + "name": "commander", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 23, + }, + { + "behavior": { + "normal": true, + }, + "id": 38, + "literal": "7.1.6", + "name": "glob", + "npm": { + "name": "glob", + "version": "==7.1.6", + }, + "package_id": 12, + }, + { + "behavior": { + "normal": true, + }, + "id": 39, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 40, + "literal": "^2.7.0", + "name": "mz", + "npm": { + "name": "mz", + "version": ">=2.7.0 <3.0.0", + }, + "package_id": 6, + }, + { + "behavior": { + "normal": true, + }, + "id": 41, + "literal": "^4.0.1", + "name": "pirates", + "npm": { + "name": "pirates", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 5, + }, + { + "behavior": { + "normal": true, + }, + "id": 42, + "literal": "^0.1.9", + "name": "ts-interface-checker", + "npm": { + "name": "ts-interface-checker", + "version": ">=0.1.9 <0.2.0", + }, + "package_id": 4, + }, + { + "behavior": { + "normal": true, + }, + "id": 43, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 44, + "literal": "^4.0.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 45, + "literal": "^1.0.0", + "name": "thenify-all", + "npm": { + "name": "thenify-all", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 7, + }, + { + "behavior": { + "normal": true, + }, + "id": 46, + "literal": ">= 3.1.0 < 4", + "name": "thenify", + "npm": { + "name": "thenify", + "version": ">=3.1.0 && <4.0.0", + }, + "package_id": 8, + }, + { + "behavior": { + "normal": true, + }, + "id": 47, + "literal": "^1.0.0", + "name": "any-promise", + "npm": { + "name": "any-promise", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 9, + }, + { + "behavior": { + "normal": true, + }, + "id": 48, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 49, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 50, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 51, + "literal": "^3.0.4", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 52, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 53, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 54, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 55, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 56, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 57, + "literal": "0.0.1", + "name": "concat-map", + "npm": { + "name": "concat-map", + "version": "==0.0.1", + }, + "package_id": 18, + }, + { + "behavior": { + "normal": true, + }, + "id": 58, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 59, + "literal": "1", + "name": "wrappy", + "npm": { + "name": "wrappy", + "version": "<2.0.0 >=1.0.0", + }, + "package_id": 15, + }, + { + "behavior": { + "normal": true, + }, + "id": 60, + "literal": "^1.0.1", + "name": "@jridgewell/set-array", + "npm": { + "name": "@jridgewell/set-array", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 28, + }, + { + "behavior": { + "normal": true, + }, + "id": 61, + "literal": "^1.4.10", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.10 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 62, + "literal": "^0.3.9", + "name": "@jridgewell/trace-mapping", + "npm": { + "name": "@jridgewell/trace-mapping", + "version": ">=0.3.9 <0.4.0", + }, + "package_id": 25, + }, + { + "behavior": { + "normal": true, + }, + "id": 63, + "literal": "^3.1.0", + "name": "@jridgewell/resolve-uri", + "npm": { + "name": "@jridgewell/resolve-uri", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 27, + }, + { + "behavior": { + "normal": true, + }, + "id": 64, + "literal": "^1.4.14", + "name": "@jridgewell/sourcemap-codec", + "npm": { + "name": "@jridgewell/sourcemap-codec", + "version": ">=1.4.14 <2.0.0", + }, + "package_id": 26, + }, + { + "behavior": { + "normal": true, + }, + "id": 65, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 66, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 67, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 68, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 69, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 70, + "literal": "^3.0.0", + "name": "cssesc", + "npm": { + "name": "cssesc", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 37, + }, + { + "behavior": { + "normal": true, + }, + "id": 71, + "literal": "^1.0.2", + "name": "util-deprecate", + "npm": { + "name": "util-deprecate", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 36, + }, + { + "behavior": { + "normal": true, + }, + "id": 72, + "literal": "^6.0.11", + "name": "postcss-selector-parser", + "npm": { + "name": "postcss-selector-parser", + "version": ">=6.0.11 <7.0.0", + }, + "package_id": 35, + }, + { + "behavior": { + "peer": true, + }, + "id": 73, + "literal": "^8.2.14", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.2.14 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 74, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 75, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 76, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 77, + "literal": "^2.0.5", + "name": "lilconfig", + "npm": { + "name": "lilconfig", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 45, + }, + { + "behavior": { + "normal": true, + }, + "id": 78, + "literal": "^2.1.1", + "name": "yaml", + "npm": { + "name": "yaml", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 44, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 79, + "literal": ">=9.0.0", + "name": "ts-node", + "npm": { + "name": "ts-node", + "version": ">=9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 80, + "literal": ">=8.0.9", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.9", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 81, + "literal": "^2.0.1", + "name": "camelcase-css", + "npm": { + "name": "camelcase-css", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 47, + }, + { + "behavior": { + "peer": true, + }, + "id": 82, + "literal": "^8.4.21", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.4.21 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 83, + "literal": "^4.0.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "normal": true, + }, + "id": 84, + "literal": "^1.0.0", + "name": "read-cache", + "npm": { + "name": "read-cache", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 49, + }, + { + "behavior": { + "normal": true, + }, + "id": 85, + "literal": "^1.1.7", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "peer": true, + }, + "id": 86, + "literal": "^8.0.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 87, + "literal": "^2.3.0", + "name": "pify", + "npm": { + "name": "pify", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 50, + }, + { + "behavior": { + "normal": true, + }, + "id": 88, + "literal": "^3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 89, + "literal": "^2.3.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.3.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 90, + "literal": "^7.0.1", + "name": "fill-range", + "npm": { + "name": "fill-range", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 57, + }, + { + "behavior": { + "normal": true, + }, + "id": 91, + "literal": "^5.0.1", + "name": "to-regex-range", + "npm": { + "name": "to-regex-range", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 58, + }, + { + "behavior": { + "normal": true, + }, + "id": 92, + "literal": "^7.0.0", + "name": "is-number", + "npm": { + "name": "is-number", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 59, + }, + { + "behavior": { + "normal": true, + }, + "id": 93, + "literal": "^2.1.1", + "name": "is-extglob", + "npm": { + "name": "is-extglob", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 62, + }, + { + "behavior": { + "normal": true, + }, + "id": 94, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 95, + "literal": "^2.0.2", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 96, + "literal": "^1.2.3", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 97, + "literal": "^5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 98, + "literal": "^1.3.0", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 99, + "literal": "^4.0.4", + "name": "micromatch", + "npm": { + "name": "micromatch", + "version": ">=4.0.4 <5.0.0", + }, + "package_id": 54, + }, + { + "behavior": { + "normal": true, + }, + "id": 100, + "literal": "^4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 101, + "literal": "2.1.5", + "name": "@nodelib/fs.scandir", + "npm": { + "name": "@nodelib/fs.scandir", + "version": "==2.1.5", + }, + "package_id": 70, + }, + { + "behavior": { + "normal": true, + }, + "id": 102, + "literal": "^1.6.0", + "name": "fastq", + "npm": { + "name": "fastq", + "version": ">=1.6.0 <2.0.0", + }, + "package_id": 68, + }, + { + "behavior": { + "normal": true, + }, + "id": 103, + "literal": "^1.0.4", + "name": "reusify", + "npm": { + "name": "reusify", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 69, + }, + { + "behavior": { + "normal": true, + }, + "id": 104, + "literal": "2.0.5", + "name": "@nodelib/fs.stat", + "npm": { + "name": "@nodelib/fs.stat", + "version": "==2.0.5", + }, + "package_id": 73, + }, + { + "behavior": { + "normal": true, + }, + "id": 105, + "literal": "^1.1.9", + "name": "run-parallel", + "npm": { + "name": "run-parallel", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 71, + }, + { + "behavior": { + "normal": true, + }, + "id": 106, + "literal": "^1.2.2", + "name": "queue-microtask", + "npm": { + "name": "queue-microtask", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 72, + }, + { + "behavior": { + "normal": true, + }, + "id": 107, + "literal": "~3.1.2", + "name": "anymatch", + "npm": { + "name": "anymatch", + "version": ">=3.1.2 <3.2.0", + }, + "package_id": 81, + }, + { + "behavior": { + "normal": true, + }, + "id": 108, + "literal": "~3.0.2", + "name": "braces", + "npm": { + "name": "braces", + "version": ">=3.0.2 <3.1.0", + }, + "package_id": 56, + }, + { + "behavior": { + "normal": true, + }, + "id": 109, + "literal": "~5.1.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=5.1.2 <5.2.0", + }, + "package_id": 66, + }, + { + "behavior": { + "normal": true, + }, + "id": 110, + "literal": "~2.1.0", + "name": "is-binary-path", + "npm": { + "name": "is-binary-path", + "version": ">=2.1.0 <2.2.0", + }, + "package_id": 79, + }, + { + "behavior": { + "normal": true, + }, + "id": 111, + "literal": "~4.0.1", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.1 <4.1.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 112, + "literal": "~3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <3.1.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 113, + "literal": "~3.6.0", + "name": "readdirp", + "npm": { + "name": "readdirp", + "version": ">=3.6.0 <3.7.0", + }, + "package_id": 78, + }, + { + "behavior": { + "optional": true, + }, + "id": 114, + "literal": "~2.3.2", + "name": "fsevents", + "npm": { + "name": "fsevents", + "version": ">=2.3.2 <2.4.0", + }, + "package_id": 77, + }, + { + "behavior": { + "normal": true, + }, + "id": 115, + "literal": "^2.2.1", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 116, + "literal": "^2.0.0", + "name": "binary-extensions", + "npm": { + "name": "binary-extensions", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 80, + }, + { + "behavior": { + "normal": true, + }, + "id": 117, + "literal": "^3.0.0", + "name": "normalize-path", + "npm": { + "name": "normalize-path", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 53, + }, + { + "behavior": { + "normal": true, + }, + "id": 118, + "literal": "^2.0.4", + "name": "picomatch", + "npm": { + "name": "picomatch", + "version": ">=2.0.4 <3.0.0", + }, + "package_id": 55, + }, + { + "behavior": { + "normal": true, + }, + "id": 119, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 120, + "literal": "^0.23.0", + "name": "scheduler", + "npm": { + "name": "scheduler", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 85, + }, + { + "behavior": { + "peer": true, + }, + "id": 121, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 122, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 123, + "literal": "^3.0.0 || ^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 && >=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 124, + "literal": "^1.1.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 125, + "literal": "9.0.0", + "name": "cosmiconfig", + "npm": { + "name": "cosmiconfig", + "version": "==9.0.0", + }, + "package_id": 181, + }, + { + "behavior": { + "normal": true, + }, + "id": 126, + "literal": "22.4.1", + "name": "puppeteer-core", + "npm": { + "name": "puppeteer-core", + "version": "==22.4.1", + }, + "package_id": 170, + }, + { + "behavior": { + "normal": true, + }, + "id": 127, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 128, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 129, + "literal": "2.0.1", + "name": "extract-zip", + "npm": { + "name": "extract-zip", + "version": "==2.0.1", + }, + "package_id": 162, + }, + { + "behavior": { + "normal": true, + }, + "id": 130, + "literal": "2.0.3", + "name": "progress", + "npm": { + "name": "progress", + "version": "==2.0.3", + }, + "package_id": 161, + }, + { + "behavior": { + "normal": true, + }, + "id": 131, + "literal": "6.4.0", + "name": "proxy-agent", + "npm": { + "name": "proxy-agent", + "version": "==6.4.0", + }, + "package_id": 127, + }, + { + "behavior": { + "normal": true, + }, + "id": 132, + "literal": "3.0.5", + "name": "tar-fs", + "npm": { + "name": "tar-fs", + "version": "==3.0.5", + }, + "package_id": 115, + }, + { + "behavior": { + "normal": true, + }, + "id": 133, + "literal": "1.4.3", + "name": "unbzip2-stream", + "npm": { + "name": "unbzip2-stream", + "version": "==1.4.3", + }, + "package_id": 110, + }, + { + "behavior": { + "normal": true, + }, + "id": 134, + "literal": "17.7.2", + "name": "yargs", + "npm": { + "name": "yargs", + "version": "==17.7.2", + }, + "package_id": 94, + }, + { + "behavior": { + "normal": true, + }, + "id": 135, + "literal": "7.6.0", + "name": "semver", + "npm": { + "name": "semver", + "version": "==7.6.0", + }, + "package_id": 91, + }, + { + "behavior": { + "normal": true, + }, + "id": 136, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 137, + "literal": "^4.0.0", + "name": "yallist", + "npm": { + "name": "yallist", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 93, + }, + { + "behavior": { + "normal": true, + }, + "id": 138, + "literal": "^8.0.1", + "name": "cliui", + "npm": { + "name": "cliui", + "version": ">=8.0.1 <9.0.0", + }, + "package_id": 105, + }, + { + "behavior": { + "normal": true, + }, + "id": 139, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 140, + "literal": "^2.0.5", + "name": "get-caller-file", + "npm": { + "name": "get-caller-file", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 103, + }, + { + "behavior": { + "normal": true, + }, + "id": 141, + "literal": "^2.1.1", + "name": "require-directory", + "npm": { + "name": "require-directory", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 102, + }, + { + "behavior": { + "normal": true, + }, + "id": 142, + "literal": "^4.2.3", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.3 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 143, + "literal": "^5.0.5", + "name": "y18n", + "npm": { + "name": "y18n", + "version": ">=5.0.5 <6.0.0", + }, + "package_id": 96, + }, + { + "behavior": { + "normal": true, + }, + "id": 144, + "literal": "^21.1.1", + "name": "yargs-parser", + "npm": { + "name": "yargs-parser", + "version": ">=21.1.1 <22.0.0", + }, + "package_id": 95, + }, + { + "behavior": { + "normal": true, + }, + "id": 145, + "literal": "^8.0.0", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=8.0.0 <9.0.0", + }, + "package_id": 101, + }, + { + "behavior": { + "normal": true, + }, + "id": 146, + "literal": "^3.0.0", + "name": "is-fullwidth-code-point", + "npm": { + "name": "is-fullwidth-code-point", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 100, + }, + { + "behavior": { + "normal": true, + }, + "id": 147, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 148, + "literal": "^5.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 99, + }, + { + "behavior": { + "normal": true, + }, + "id": 149, + "literal": "^4.2.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 150, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 151, + "literal": "^7.0.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 152, + "literal": "^4.0.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 153, + "literal": "^4.1.0", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 154, + "literal": "^6.0.0", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 155, + "literal": "^2.0.1", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 108, + }, + { + "behavior": { + "normal": true, + }, + "id": 156, + "literal": "~1.1.4", + "name": "color-name", + "npm": { + "name": "color-name", + "version": ">=1.1.4 <1.2.0", + }, + "package_id": 109, + }, + { + "behavior": { + "normal": true, + }, + "id": 157, + "literal": "^5.2.1", + "name": "buffer", + "npm": { + "name": "buffer", + "version": ">=5.2.1 <6.0.0", + }, + "package_id": 112, + }, + { + "behavior": { + "normal": true, + }, + "id": 158, + "literal": "^2.3.8", + "name": "through", + "npm": { + "name": "through", + "version": ">=2.3.8 <3.0.0", + }, + "package_id": 111, + }, + { + "behavior": { + "normal": true, + }, + "id": 159, + "literal": "^1.3.1", + "name": "base64-js", + "npm": { + "name": "base64-js", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 114, + }, + { + "behavior": { + "normal": true, + }, + "id": 160, + "literal": "^1.1.13", + "name": "ieee754", + "npm": { + "name": "ieee754", + "version": ">=1.1.13 <2.0.0", + }, + "package_id": 113, + }, + { + "behavior": { + "normal": true, + }, + "id": 161, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 162, + "literal": "^3.1.5", + "name": "tar-stream", + "npm": { + "name": "tar-stream", + "version": ">=3.1.5 <4.0.0", + }, + "package_id": 123, + }, + { + "behavior": { + "optional": true, + }, + "id": 163, + "literal": "^2.1.1", + "name": "bare-fs", + "npm": { + "name": "bare-fs", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 118, + }, + { + "behavior": { + "optional": true, + }, + "id": 164, + "literal": "^2.1.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 165, + "literal": "^2.1.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 166, + "literal": "^2.0.0", + "name": "bare-events", + "npm": { + "name": "bare-events", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 122, + }, + { + "behavior": { + "normal": true, + }, + "id": 167, + "literal": "^2.0.0", + "name": "bare-os", + "npm": { + "name": "bare-os", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 117, + }, + { + "behavior": { + "normal": true, + }, + "id": 168, + "literal": "^2.0.0", + "name": "bare-path", + "npm": { + "name": "bare-path", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 116, + }, + { + "behavior": { + "normal": true, + }, + "id": 169, + "literal": "^2.13.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 170, + "literal": "^1.1.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 171, + "literal": "^1.0.1", + "name": "queue-tick", + "npm": { + "name": "queue-tick", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 120, + }, + { + "behavior": { + "normal": true, + }, + "id": 172, + "literal": "^1.6.4", + "name": "b4a", + "npm": { + "name": "b4a", + "version": ">=1.6.4 <2.0.0", + }, + "package_id": 124, + }, + { + "behavior": { + "normal": true, + }, + "id": 173, + "literal": "^1.2.0", + "name": "fast-fifo", + "npm": { + "name": "fast-fifo", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 121, + }, + { + "behavior": { + "normal": true, + }, + "id": 174, + "literal": "^2.15.0", + "name": "streamx", + "npm": { + "name": "streamx", + "version": ">=2.15.0 <3.0.0", + }, + "package_id": 119, + }, + { + "behavior": { + "normal": true, + }, + "id": 175, + "literal": "^1.1.0", + "name": "end-of-stream", + "npm": { + "name": "end-of-stream", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 126, + }, + { + "behavior": { + "normal": true, + }, + "id": 176, + "literal": "^1.3.1", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 177, + "literal": "^1.4.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 178, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 179, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 180, + "literal": "^7.0.1", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 160, + }, + { + "behavior": { + "normal": true, + }, + "id": 181, + "literal": "^7.0.3", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.3 <8.0.0", + }, + "package_id": 159, + }, + { + "behavior": { + "normal": true, + }, + "id": 182, + "literal": "^7.14.1", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=7.14.1 <8.0.0", + }, + "package_id": 158, + }, + { + "behavior": { + "normal": true, + }, + "id": 183, + "literal": "^7.0.1", + "name": "pac-proxy-agent", + "npm": { + "name": "pac-proxy-agent", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 136, + }, + { + "behavior": { + "normal": true, + }, + "id": 184, + "literal": "^1.1.0", + "name": "proxy-from-env", + "npm": { + "name": "proxy-from-env", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 135, + }, + { + "behavior": { + "normal": true, + }, + "id": 185, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 186, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 187, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 188, + "literal": "^2.7.1", + "name": "socks", + "npm": { + "name": "socks", + "version": ">=2.7.1 <3.0.0", + }, + "package_id": 129, + }, + { + "behavior": { + "normal": true, + }, + "id": 189, + "literal": "^2.0.0", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 131, + }, + { + "behavior": { + "normal": true, + }, + "id": 190, + "literal": "^4.2.0", + "name": "smart-buffer", + "npm": { + "name": "smart-buffer", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 130, + }, + { + "behavior": { + "normal": true, + }, + "id": 191, + "literal": "2.1.2", + "name": "ms", + "npm": { + "name": "ms", + "version": "==2.1.2", + }, + "package_id": 133, + }, + { + "behavior": { + "normal": true, + }, + "id": 192, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 193, + "literal": "^0.23.0", + "name": "@tootallnate/quickjs-emscripten", + "npm": { + "name": "@tootallnate/quickjs-emscripten", + "version": ">=0.23.0 <0.24.0", + }, + "package_id": 157, + }, + { + "behavior": { + "normal": true, + }, + "id": 194, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 195, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 196, + "literal": "^6.0.1", + "name": "get-uri", + "npm": { + "name": "get-uri", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 150, + }, + { + "behavior": { + "normal": true, + }, + "id": 197, + "literal": "^7.0.0", + "name": "http-proxy-agent", + "npm": { + "name": "http-proxy-agent", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 149, + }, + { + "behavior": { + "normal": true, + }, + "id": 198, + "literal": "^7.0.2", + "name": "https-proxy-agent", + "npm": { + "name": "https-proxy-agent", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 148, + }, + { + "behavior": { + "normal": true, + }, + "id": 199, + "literal": "^7.0.0", + "name": "pac-resolver", + "npm": { + "name": "pac-resolver", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 137, + }, + { + "behavior": { + "normal": true, + }, + "id": 200, + "literal": "^8.0.2", + "name": "socks-proxy-agent", + "npm": { + "name": "socks-proxy-agent", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 128, + }, + { + "behavior": { + "normal": true, + }, + "id": 201, + "literal": "^5.0.0", + "name": "degenerator", + "npm": { + "name": "degenerator", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 140, + }, + { + "behavior": { + "normal": true, + }, + "id": 202, + "literal": "^1.1.8", + "name": "ip", + "npm": { + "name": "ip", + "version": ">=1.1.8 <2.0.0", + }, + "package_id": 139, + }, + { + "behavior": { + "normal": true, + }, + "id": 203, + "literal": "^2.0.2", + "name": "netmask", + "npm": { + "name": "netmask", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 138, + }, + { + "behavior": { + "normal": true, + }, + "id": 204, + "literal": "^0.13.4", + "name": "ast-types", + "npm": { + "name": "ast-types", + "version": ">=0.13.4 <0.14.0", + }, + "package_id": 146, + }, + { + "behavior": { + "normal": true, + }, + "id": 205, + "literal": "^2.1.0", + "name": "escodegen", + "npm": { + "name": "escodegen", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 142, + }, + { + "behavior": { + "normal": true, + }, + "id": 206, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "normal": true, + }, + "id": 207, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 208, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 209, + "literal": "^4.0.1", + "name": "esprima", + "npm": { + "name": "esprima", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 141, + }, + { + "behavior": { + "optional": true, + }, + "id": 210, + "literal": "~0.6.1", + "name": "source-map", + "npm": { + "name": "source-map", + "version": ">=0.6.1 <0.7.0", + }, + "package_id": 143, + }, + { + "behavior": { + "normal": true, + }, + "id": 211, + "literal": "^2.0.1", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 212, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 213, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 214, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 215, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 216, + "literal": "^5.0.2", + "name": "basic-ftp", + "npm": { + "name": "basic-ftp", + "version": ">=5.0.2 <6.0.0", + }, + "package_id": 156, + }, + { + "behavior": { + "normal": true, + }, + "id": 217, + "literal": "^5.0.1", + "name": "data-uri-to-buffer", + "npm": { + "name": "data-uri-to-buffer", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 155, + }, + { + "behavior": { + "normal": true, + }, + "id": 218, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 219, + "literal": "^8.1.0", + "name": "fs-extra", + "npm": { + "name": "fs-extra", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 151, + }, + { + "behavior": { + "normal": true, + }, + "id": 220, + "literal": "^4.2.0", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 221, + "literal": "^4.0.0", + "name": "jsonfile", + "npm": { + "name": "jsonfile", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 153, + }, + { + "behavior": { + "normal": true, + }, + "id": 222, + "literal": "^0.1.0", + "name": "universalify", + "npm": { + "name": "universalify", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 152, + }, + { + "behavior": { + "optional": true, + }, + "id": 223, + "literal": "^4.1.6", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.1.6 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 224, + "literal": "^7.0.2", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 225, + "literal": "4", + "name": "debug", + "npm": { + "name": "debug", + "version": "<5.0.0 >=4.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 226, + "literal": "^7.1.0", + "name": "agent-base", + "npm": { + "name": "agent-base", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 134, + }, + { + "behavior": { + "normal": true, + }, + "id": 227, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 228, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 229, + "literal": "^5.1.0", + "name": "get-stream", + "npm": { + "name": "get-stream", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 169, + }, + { + "behavior": { + "normal": true, + }, + "id": 230, + "literal": "^2.10.0", + "name": "yauzl", + "npm": { + "name": "yauzl", + "version": ">=2.10.0 <3.0.0", + }, + "package_id": 165, + }, + { + "behavior": { + "optional": true, + }, + "id": 231, + "literal": "^2.9.1", + "name": "@types/yauzl", + "npm": { + "name": "@types/yauzl", + "version": ">=2.9.1 <3.0.0", + }, + "package_id": 163, + }, + { + "behavior": { + "normal": true, + }, + "id": 232, + "literal": "*", + "name": "@types/node", + "npm": { + "name": "@types/node", + "version": ">=0.0.0", + }, + "package_id": 164, + }, + { + "behavior": { + "normal": true, + }, + "id": 233, + "literal": "~1.1.0", + "name": "fd-slicer", + "npm": { + "name": "fd-slicer", + "version": ">=1.1.0 <1.2.0", + }, + "package_id": 167, + }, + { + "behavior": { + "normal": true, + }, + "id": 234, + "literal": "~0.2.3", + "name": "buffer-crc32", + "npm": { + "name": "buffer-crc32", + "version": ">=0.2.3 <0.3.0", + }, + "package_id": 166, + }, + { + "behavior": { + "normal": true, + }, + "id": 235, + "literal": "~1.2.0", + "name": "pend", + "npm": { + "name": "pend", + "version": ">=1.2.0 <1.3.0", + }, + "package_id": 168, + }, + { + "behavior": { + "normal": true, + }, + "id": 236, + "literal": "^3.0.0", + "name": "pump", + "npm": { + "name": "pump", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 125, + }, + { + "behavior": { + "normal": true, + }, + "id": 237, + "literal": "2.1.0", + "name": "@puppeteer/browsers", + "npm": { + "name": "@puppeteer/browsers", + "version": "==2.1.0", + }, + "package_id": 90, + }, + { + "behavior": { + "normal": true, + }, + "id": 238, + "literal": "0.5.12", + "name": "chromium-bidi", + "npm": { + "name": "chromium-bidi", + "version": "==0.5.12", + }, + "package_id": 178, + }, + { + "behavior": { + "normal": true, + }, + "id": 239, + "literal": "4.0.0", + "name": "cross-fetch", + "npm": { + "name": "cross-fetch", + "version": "==4.0.0", + }, + "package_id": 173, + }, + { + "behavior": { + "normal": true, + }, + "id": 240, + "literal": "4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": "==4.3.4", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 241, + "literal": "0.0.1249869", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": "==0.0.1249869", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 242, + "literal": "8.16.0", + "name": "ws", + "npm": { + "name": "ws", + "version": "==8.16.0", + }, + "package_id": 171, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 243, + "literal": "^4.0.1", + "name": "bufferutil", + "npm": { + "name": "bufferutil", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 244, + "literal": ">=5.0.2", + "name": "utf-8-validate", + "npm": { + "name": "utf-8-validate", + "version": ">=5.0.2", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 245, + "literal": "^2.6.12", + "name": "node-fetch", + "npm": { + "name": "node-fetch", + "version": ">=2.6.12 <3.0.0", + }, + "package_id": 174, + }, + { + "behavior": { + "normal": true, + }, + "id": 246, + "literal": "^5.0.0", + "name": "whatwg-url", + "npm": { + "name": "whatwg-url", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 175, + }, + { + "behavior": { + "peer": true, + }, + "id": 247, + "literal": "^0.1.0", + "name": "encoding", + "npm": { + "name": "encoding", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 248, + "literal": "~0.0.3", + "name": "tr46", + "npm": { + "name": "tr46", + "version": ">=0.0.3 <0.1.0", + }, + "package_id": 177, + }, + { + "behavior": { + "normal": true, + }, + "id": 249, + "literal": "^3.0.0", + "name": "webidl-conversions", + "npm": { + "name": "webidl-conversions", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 176, + }, + { + "behavior": { + "normal": true, + }, + "id": 250, + "literal": "3.0.1", + "name": "mitt", + "npm": { + "name": "mitt", + "version": "==3.0.1", + }, + "package_id": 180, + }, + { + "behavior": { + "normal": true, + }, + "id": 251, + "literal": "10.0.0", + "name": "urlpattern-polyfill", + "npm": { + "name": "urlpattern-polyfill", + "version": "==10.0.0", + }, + "package_id": 179, + }, + { + "behavior": { + "peer": true, + }, + "id": 252, + "literal": "*", + "name": "devtools-protocol", + "npm": { + "name": "devtools-protocol", + "version": ">=0.0.0", + }, + "package_id": 172, + }, + { + "behavior": { + "normal": true, + }, + "id": 253, + "literal": "^2.2.1", + "name": "env-paths", + "npm": { + "name": "env-paths", + "version": ">=2.2.1 <3.0.0", + }, + "package_id": 202, + }, + { + "behavior": { + "normal": true, + }, + "id": 254, + "literal": "^3.3.0", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 255, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 256, + "literal": "^5.2.0", + "name": "parse-json", + "npm": { + "name": "parse-json", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 182, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 257, + "literal": ">=4.9.5", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.9.5", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 258, + "literal": "^7.0.0", + "name": "@babel/code-frame", + "npm": { + "name": "@babel/code-frame", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 186, + }, + { + "behavior": { + "normal": true, + }, + "id": 259, + "literal": "^1.3.1", + "name": "error-ex", + "npm": { + "name": "error-ex", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 184, + }, + { + "behavior": { + "normal": true, + }, + "id": 260, + "literal": "^2.3.0", + "name": "json-parse-even-better-errors", + "npm": { + "name": "json-parse-even-better-errors", + "version": ">=2.3.0 <3.0.0", + }, + "package_id": 183, + }, + { + "behavior": { + "normal": true, + }, + "id": 261, + "literal": "^1.1.6", + "name": "lines-and-columns", + "npm": { + "name": "lines-and-columns", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 11, + }, + { + "behavior": { + "normal": true, + }, + "id": 262, + "literal": "^0.2.1", + "name": "is-arrayish", + "npm": { + "name": "is-arrayish", + "version": ">=0.2.1 <0.3.0", + }, + "package_id": 185, + }, + { + "behavior": { + "normal": true, + }, + "id": 263, + "literal": "^7.22.13", + "name": "@babel/highlight", + "npm": { + "name": "@babel/highlight", + "version": ">=7.22.13 <8.0.0", + }, + "package_id": 194, + }, + { + "behavior": { + "normal": true, + }, + "id": 264, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 265, + "literal": "^3.2.1", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 191, + }, + { + "behavior": { + "normal": true, + }, + "id": 266, + "literal": "^1.0.5", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 190, + }, + { + "behavior": { + "normal": true, + }, + "id": 267, + "literal": "^5.3.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 188, + }, + { + "behavior": { + "normal": true, + }, + "id": 268, + "literal": "^3.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 189, + }, + { + "behavior": { + "normal": true, + }, + "id": 269, + "literal": "^1.9.0", + "name": "color-convert", + "npm": { + "name": "color-convert", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 192, + }, + { + "behavior": { + "normal": true, + }, + "id": 270, + "literal": "1.1.3", + "name": "color-name", + "npm": { + "name": "color-name", + "version": "==1.1.3", + }, + "package_id": 193, + }, + { + "behavior": { + "normal": true, + }, + "id": 271, + "literal": "^7.22.20", + "name": "@babel/helper-validator-identifier", + "npm": { + "name": "@babel/helper-validator-identifier", + "version": ">=7.22.20 <8.0.0", + }, + "package_id": 195, + }, + { + "behavior": { + "normal": true, + }, + "id": 272, + "literal": "^2.4.2", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=2.4.2 <3.0.0", + }, + "package_id": 187, + }, + { + "behavior": { + "normal": true, + }, + "id": 273, + "literal": "^4.0.0", + "name": "js-tokens", + "npm": { + "name": "js-tokens", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 87, + }, + { + "behavior": { + "normal": true, + }, + "id": 274, + "literal": "^2.0.1", + "name": "argparse", + "npm": { + "name": "argparse", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 197, + }, + { + "behavior": { + "normal": true, + }, + "id": 275, + "literal": "^1.0.0", + "name": "parent-module", + "npm": { + "name": "parent-module", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 200, + }, + { + "behavior": { + "normal": true, + }, + "id": 276, + "literal": "^4.0.0", + "name": "resolve-from", + "npm": { + "name": "resolve-from", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 199, + }, + { + "behavior": { + "normal": true, + }, + "id": 277, + "literal": "^3.0.0", + "name": "callsites", + "npm": { + "name": "callsites", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 201, + }, + { + "behavior": { + "normal": true, + }, + "id": 278, + "literal": "14.1.3", + "name": "@next/env", + "npm": { + "name": "@next/env", + "version": "==14.1.3", + }, + "package_id": 220, + }, + { + "behavior": { + "normal": true, + }, + "id": 279, + "literal": "0.5.2", + "name": "@swc/helpers", + "npm": { + "name": "@swc/helpers", + "version": "==0.5.2", + }, + "package_id": 219, + }, + { + "behavior": { + "normal": true, + }, + "id": 280, + "literal": "1.6.0", + "name": "busboy", + "npm": { + "name": "busboy", + "version": "==1.6.0", + }, + "package_id": 217, + }, + { + "behavior": { + "normal": true, + }, + "id": 281, + "literal": "^1.0.30001579", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001579 <2.0.0", + }, + "package_id": 216, + }, + { + "behavior": { + "normal": true, + }, + "id": 282, + "literal": "^4.2.11", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.11 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 283, + "literal": "8.4.31", + "name": "postcss", + "npm": { + "name": "postcss", + "version": "==8.4.31", + }, + "package_id": 215, + }, + { + "behavior": { + "normal": true, + }, + "id": 284, + "literal": "5.1.1", + "name": "styled-jsx", + "npm": { + "name": "styled-jsx", + "version": "==5.1.1", + }, + "package_id": 213, + }, + { + "behavior": { + "optional": true, + }, + "id": 285, + "literal": "14.1.3", + "name": "@next/swc-darwin-arm64", + "npm": { + "name": "@next/swc-darwin-arm64", + "version": "==14.1.3", + }, + "package_id": 212, + }, + { + "behavior": { + "optional": true, + }, + "id": 286, + "literal": "14.1.3", + "name": "@next/swc-darwin-x64", + "npm": { + "name": "@next/swc-darwin-x64", + "version": "==14.1.3", + }, + "package_id": 211, + }, + { + "behavior": { + "optional": true, + }, + "id": 287, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-gnu", + "npm": { + "name": "@next/swc-linux-arm64-gnu", + "version": "==14.1.3", + }, + "package_id": 210, + }, + { + "behavior": { + "optional": true, + }, + "id": 288, + "literal": "14.1.3", + "name": "@next/swc-linux-arm64-musl", + "npm": { + "name": "@next/swc-linux-arm64-musl", + "version": "==14.1.3", + }, + "package_id": 209, + }, + { + "behavior": { + "optional": true, + }, + "id": 289, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-gnu", + "npm": { + "name": "@next/swc-linux-x64-gnu", + "version": "==14.1.3", + }, + "package_id": 208, + }, + { + "behavior": { + "optional": true, + }, + "id": 290, + "literal": "14.1.3", + "name": "@next/swc-linux-x64-musl", + "npm": { + "name": "@next/swc-linux-x64-musl", + "version": "==14.1.3", + }, + "package_id": 207, + }, + { + "behavior": { + "optional": true, + }, + "id": 291, + "literal": "14.1.3", + "name": "@next/swc-win32-arm64-msvc", + "npm": { + "name": "@next/swc-win32-arm64-msvc", + "version": "==14.1.3", + }, + "package_id": 206, + }, + { + "behavior": { + "optional": true, + }, + "id": 292, + "literal": "14.1.3", + "name": "@next/swc-win32-ia32-msvc", + "npm": { + "name": "@next/swc-win32-ia32-msvc", + "version": "==14.1.3", + }, + "package_id": 205, + }, + { + "behavior": { + "optional": true, + }, + "id": 293, + "literal": "14.1.3", + "name": "@next/swc-win32-x64-msvc", + "npm": { + "name": "@next/swc-win32-x64-msvc", + "version": "==14.1.3", + }, + "package_id": 204, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 294, + "literal": "^1.1.0", + "name": "@opentelemetry/api", + "npm": { + "name": "@opentelemetry/api", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 295, + "literal": "^1.3.0", + "name": "sass", + "npm": { + "name": "sass", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 296, + "literal": "^18.2.0", + "name": "react-dom", + "npm": { + "name": "react-dom", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 84, + }, + { + "behavior": { + "peer": true, + }, + "id": 297, + "literal": "^18.2.0", + "name": "react", + "npm": { + "name": "react", + "version": ">=18.2.0 <19.0.0", + }, + "package_id": 88, + }, + { + "behavior": { + "normal": true, + }, + "id": 298, + "literal": "0.0.1", + "name": "client-only", + "npm": { + "name": "client-only", + "version": "==0.0.1", + }, + "package_id": 214, + }, + { + "behavior": { + "peer": true, + }, + "id": 299, + "literal": ">= 16.8.0 || 17.x.x || ^18.0.0-0", + "name": "react", + "npm": { + "name": "react", + "version": ">=16.8.0 || <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && <18.0.0 >=17.0.0 || >=18.0.0-0 <19.0.0 && >=18.0.0-0 <19.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 300, + "literal": "^3.3.6", + "name": "nanoid", + "npm": { + "name": "nanoid", + "version": ">=3.3.6 <4.0.0", + }, + "package_id": 42, + }, + { + "behavior": { + "normal": true, + }, + "id": 301, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 302, + "literal": "^1.0.2", + "name": "source-map-js", + "npm": { + "name": "source-map-js", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 40, + }, + { + "behavior": { + "normal": true, + }, + "id": 303, + "literal": "^1.1.0", + "name": "streamsearch", + "npm": { + "name": "streamsearch", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 218, + }, + { + "behavior": { + "normal": true, + }, + "id": 304, + "literal": "^2.4.0", + "name": "tslib", + "npm": { + "name": "tslib", + "version": ">=2.4.0 <3.0.0", + }, + "package_id": 147, + }, + { + "behavior": { + "normal": true, + }, + "id": 305, + "literal": "14.1.3", + "name": "@next/eslint-plugin-next", + "npm": { + "name": "@next/eslint-plugin-next", + "version": "==14.1.3", + }, + "package_id": 413, + }, + { + "behavior": { + "normal": true, + }, + "id": 306, + "literal": "^1.3.3", + "name": "@rushstack/eslint-patch", + "npm": { + "name": "@rushstack/eslint-patch", + "version": ">=1.3.3 <2.0.0", + }, + "package_id": 412, + }, + { + "behavior": { + "normal": true, + }, + "id": 307, + "literal": "^5.4.2 || ^6.0.0", + "name": "@typescript-eslint/parser", + "npm": { + "name": "@typescript-eslint/parser", + "version": ">=5.4.2 <6.0.0 || >=6.0.0 <7.0.0 && >=6.0.0 <7.0.0", + }, + "package_id": 400, + }, + { + "behavior": { + "normal": true, + }, + "id": 308, + "literal": "^0.3.6", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.6 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 309, + "literal": "^3.5.2", + "name": "eslint-import-resolver-typescript", + "npm": { + "name": "eslint-import-resolver-typescript", + "version": ">=3.5.2 <4.0.0", + }, + "package_id": 395, + }, + { + "behavior": { + "normal": true, + }, + "id": 310, + "literal": "^2.28.1", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=2.28.1 <3.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 311, + "literal": "^6.7.1", + "name": "eslint-plugin-jsx-a11y", + "npm": { + "name": "eslint-plugin-jsx-a11y", + "version": ">=6.7.1 <7.0.0", + }, + "package_id": 371, + }, + { + "behavior": { + "normal": true, + }, + "id": 312, + "literal": "^7.33.2", + "name": "eslint-plugin-react", + "npm": { + "name": "eslint-plugin-react", + "version": ">=7.33.2 <8.0.0", + }, + "package_id": 287, + }, + { + "behavior": { + "normal": true, + }, + "id": 313, + "literal": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705", + "name": "eslint-plugin-react-hooks", + "npm": { + "name": "eslint-plugin-react-hooks", + "version": ">=4.5.0 <5.0.0 || ==5.0.0-canary-7118f5dd7-20230705 && ==5.0.0-canary-7118f5dd7-20230705", + }, + "package_id": 286, + }, + { + "behavior": { + "optional": true, + "peer": true, + }, + "id": 314, + "literal": ">=3.3.1", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=3.3.1", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 315, + "literal": "^7.23.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.23.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 316, + "literal": "^4.2.0", + "name": "@eslint-community/eslint-utils", + "npm": { + "name": "@eslint-community/eslint-utils", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 285, + }, + { + "behavior": { + "normal": true, + }, + "id": 317, + "literal": "^4.6.1", + "name": "@eslint-community/regexpp", + "npm": { + "name": "@eslint-community/regexpp", + "version": ">=4.6.1 <5.0.0", + }, + "package_id": 284, + }, + { + "behavior": { + "normal": true, + }, + "id": 318, + "literal": "^2.1.2", + "name": "@eslint/eslintrc", + "npm": { + "name": "@eslint/eslintrc", + "version": ">=2.1.2 <3.0.0", + }, + "package_id": 282, + }, + { + "behavior": { + "normal": true, + }, + "id": 319, + "literal": "8.50.0", + "name": "@eslint/js", + "npm": { + "name": "@eslint/js", + "version": "==8.50.0", + }, + "package_id": 281, + }, + { + "behavior": { + "normal": true, + }, + "id": 320, + "literal": "^0.11.11", + "name": "@humanwhocodes/config-array", + "npm": { + "name": "@humanwhocodes/config-array", + "version": ">=0.11.11 <0.12.0", + }, + "package_id": 279, + }, + { + "behavior": { + "normal": true, + }, + "id": 321, + "literal": "^1.0.1", + "name": "@humanwhocodes/module-importer", + "npm": { + "name": "@humanwhocodes/module-importer", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 278, + }, + { + "behavior": { + "normal": true, + }, + "id": 322, + "literal": "^1.2.8", + "name": "@nodelib/fs.walk", + "npm": { + "name": "@nodelib/fs.walk", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 67, + }, + { + "behavior": { + "normal": true, + }, + "id": 323, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 324, + "literal": "^4.0.0", + "name": "chalk", + "npm": { + "name": "chalk", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 270, + }, + { + "behavior": { + "normal": true, + }, + "id": 325, + "literal": "^7.0.2", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.2 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 326, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 327, + "literal": "^3.0.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 263, + }, + { + "behavior": { + "normal": true, + }, + "id": 328, + "literal": "^4.0.0", + "name": "escape-string-regexp", + "npm": { + "name": "escape-string-regexp", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 262, + }, + { + "behavior": { + "normal": true, + }, + "id": 329, + "literal": "^7.2.2", + "name": "eslint-scope", + "npm": { + "name": "eslint-scope", + "version": ">=7.2.2 <8.0.0", + }, + "package_id": 260, + }, + { + "behavior": { + "normal": true, + }, + "id": 330, + "literal": "^3.4.3", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.3 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 331, + "literal": "^9.6.1", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.1 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 332, + "literal": "^1.4.2", + "name": "esquery", + "npm": { + "name": "esquery", + "version": ">=1.4.2 <2.0.0", + }, + "package_id": 255, + }, + { + "behavior": { + "normal": true, + }, + "id": 333, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 334, + "literal": "^3.1.3", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.3 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 335, + "literal": "^6.0.1", + "name": "file-entry-cache", + "npm": { + "name": "file-entry-cache", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 247, + }, + { + "behavior": { + "normal": true, + }, + "id": 336, + "literal": "^5.0.0", + "name": "find-up", + "npm": { + "name": "find-up", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 241, + }, + { + "behavior": { + "normal": true, + }, + "id": 337, + "literal": "^6.0.2", + "name": "glob-parent", + "npm": { + "name": "glob-parent", + "version": ">=6.0.2 <7.0.0", + }, + "package_id": 63, + }, + { + "behavior": { + "normal": true, + }, + "id": 338, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 339, + "literal": "^1.4.0", + "name": "graphemer", + "npm": { + "name": "graphemer", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 238, + }, + { + "behavior": { + "normal": true, + }, + "id": 340, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 341, + "literal": "^0.1.4", + "name": "imurmurhash", + "npm": { + "name": "imurmurhash", + "version": ">=0.1.4 <0.2.0", + }, + "package_id": 236, + }, + { + "behavior": { + "normal": true, + }, + "id": 342, + "literal": "^4.0.0", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 343, + "literal": "^3.0.3", + "name": "is-path-inside", + "npm": { + "name": "is-path-inside", + "version": ">=3.0.3 <4.0.0", + }, + "package_id": 235, + }, + { + "behavior": { + "normal": true, + }, + "id": 344, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 345, + "literal": "^1.0.1", + "name": "json-stable-stringify-without-jsonify", + "npm": { + "name": "json-stable-stringify-without-jsonify", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 234, + }, + { + "behavior": { + "normal": true, + }, + "id": 346, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 347, + "literal": "^4.6.2", + "name": "lodash.merge", + "npm": { + "name": "lodash.merge", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 233, + }, + { + "behavior": { + "normal": true, + }, + "id": 348, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 349, + "literal": "^1.4.0", + "name": "natural-compare", + "npm": { + "name": "natural-compare", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 231, + }, + { + "behavior": { + "normal": true, + }, + "id": 350, + "literal": "^0.9.3", + "name": "optionator", + "npm": { + "name": "optionator", + "version": ">=0.9.3 <0.10.0", + }, + "package_id": 224, + }, + { + "behavior": { + "normal": true, + }, + "id": 351, + "literal": "^6.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 352, + "literal": "^0.2.0", + "name": "text-table", + "npm": { + "name": "text-table", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 223, + }, + { + "behavior": { + "normal": true, + }, + "id": 353, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 354, + "literal": "^0.1.3", + "name": "deep-is", + "npm": { + "name": "deep-is", + "version": ">=0.1.3 <0.2.0", + }, + "package_id": 230, + }, + { + "behavior": { + "normal": true, + }, + "id": 355, + "literal": "^1.2.3", + "name": "@aashutoshrathi/word-wrap", + "npm": { + "name": "@aashutoshrathi/word-wrap", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 229, + }, + { + "behavior": { + "normal": true, + }, + "id": 356, + "literal": "^0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 357, + "literal": "^0.4.1", + "name": "levn", + "npm": { + "name": "levn", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 226, + }, + { + "behavior": { + "normal": true, + }, + "id": 358, + "literal": "^2.0.6", + "name": "fast-levenshtein", + "npm": { + "name": "fast-levenshtein", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 225, + }, + { + "behavior": { + "normal": true, + }, + "id": 359, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 360, + "literal": "~0.4.0", + "name": "type-check", + "npm": { + "name": "type-check", + "version": ">=0.4.0 <0.5.0", + }, + "package_id": 227, + }, + { + "behavior": { + "normal": true, + }, + "id": 361, + "literal": "^1.2.1", + "name": "prelude-ls", + "npm": { + "name": "prelude-ls", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 228, + }, + { + "behavior": { + "normal": true, + }, + "id": 362, + "literal": "^1.1.7", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=1.1.7 <2.0.0", + }, + "package_id": 17, + }, + { + "behavior": { + "normal": true, + }, + "id": 363, + "literal": "^0.20.2", + "name": "type-fest", + "npm": { + "name": "type-fest", + "version": ">=0.20.2 <0.21.0", + }, + "package_id": 240, + }, + { + "behavior": { + "normal": true, + }, + "id": 364, + "literal": "^6.0.0", + "name": "locate-path", + "npm": { + "name": "locate-path", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 243, + }, + { + "behavior": { + "normal": true, + }, + "id": 365, + "literal": "^4.0.0", + "name": "path-exists", + "npm": { + "name": "path-exists", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 242, + }, + { + "behavior": { + "normal": true, + }, + "id": 366, + "literal": "^5.0.0", + "name": "p-locate", + "npm": { + "name": "p-locate", + "version": ">=5.0.0 <6.0.0", + }, + "package_id": 244, + }, + { + "behavior": { + "normal": true, + }, + "id": 367, + "literal": "^3.0.2", + "name": "p-limit", + "npm": { + "name": "p-limit", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 245, + }, + { + "behavior": { + "normal": true, + }, + "id": 368, + "literal": "^0.1.0", + "name": "yocto-queue", + "npm": { + "name": "yocto-queue", + "version": ">=0.1.0 <0.2.0", + }, + "package_id": 246, + }, + { + "behavior": { + "normal": true, + }, + "id": 369, + "literal": "^3.0.4", + "name": "flat-cache", + "npm": { + "name": "flat-cache", + "version": ">=3.0.4 <4.0.0", + }, + "package_id": 248, + }, + { + "behavior": { + "normal": true, + }, + "id": 370, + "literal": "^3.2.7", + "name": "flatted", + "npm": { + "name": "flatted", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 253, + }, + { + "behavior": { + "normal": true, + }, + "id": 371, + "literal": "^4.5.3", + "name": "keyv", + "npm": { + "name": "keyv", + "version": ">=4.5.3 <5.0.0", + }, + "package_id": 251, + }, + { + "behavior": { + "normal": true, + }, + "id": 372, + "literal": "^3.0.2", + "name": "rimraf", + "npm": { + "name": "rimraf", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 249, + }, + { + "behavior": { + "normal": true, + }, + "id": 373, + "literal": "^7.1.3", + "name": "glob", + "npm": { + "name": "glob", + "version": ">=7.1.3 <8.0.0", + }, + "package_id": 250, + }, + { + "behavior": { + "normal": true, + }, + "id": 374, + "literal": "^1.0.0", + "name": "fs.realpath", + "npm": { + "name": "fs.realpath", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 22, + }, + { + "behavior": { + "normal": true, + }, + "id": 375, + "literal": "^1.0.4", + "name": "inflight", + "npm": { + "name": "inflight", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 21, + }, + { + "behavior": { + "normal": true, + }, + "id": 376, + "literal": "2", + "name": "inherits", + "npm": { + "name": "inherits", + "version": "<3.0.0 >=2.0.0", + }, + "package_id": 20, + }, + { + "behavior": { + "normal": true, + }, + "id": 377, + "literal": "^3.1.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 378, + "literal": "^1.3.0", + "name": "once", + "npm": { + "name": "once", + "version": ">=1.3.0 <2.0.0", + }, + "package_id": 14, + }, + { + "behavior": { + "normal": true, + }, + "id": 379, + "literal": "^1.0.0", + "name": "path-is-absolute", + "npm": { + "name": "path-is-absolute", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 13, + }, + { + "behavior": { + "normal": true, + }, + "id": 380, + "literal": "3.0.1", + "name": "json-buffer", + "npm": { + "name": "json-buffer", + "version": "==3.0.1", + }, + "package_id": 252, + }, + { + "behavior": { + "normal": true, + }, + "id": 381, + "literal": "^5.1.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.1.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 382, + "literal": "^8.9.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=8.9.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 383, + "literal": "^5.3.2", + "name": "acorn-jsx", + "npm": { + "name": "acorn-jsx", + "version": ">=5.3.2 <6.0.0", + }, + "package_id": 258, + }, + { + "behavior": { + "normal": true, + }, + "id": 384, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 385, + "literal": "^6.0.0 || ^7.0.0 || ^8.0.0", + "name": "acorn", + "npm": { + "name": "acorn", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": 259, + }, + { + "behavior": { + "normal": true, + }, + "id": 386, + "literal": "^4.3.0", + "name": "esrecurse", + "npm": { + "name": "esrecurse", + "version": ">=4.3.0 <5.0.0", + }, + "package_id": 261, + }, + { + "behavior": { + "normal": true, + }, + "id": 387, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 388, + "literal": "^5.2.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 389, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 390, + "literal": "^3.1.0", + "name": "path-key", + "npm": { + "name": "path-key", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 269, + }, + { + "behavior": { + "normal": true, + }, + "id": 391, + "literal": "^2.0.0", + "name": "shebang-command", + "npm": { + "name": "shebang-command", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 267, + }, + { + "behavior": { + "normal": true, + }, + "id": 392, + "literal": "^2.0.1", + "name": "which", + "npm": { + "name": "which", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 265, + }, + { + "behavior": { + "normal": true, + }, + "id": 393, + "literal": "^2.0.0", + "name": "isexe", + "npm": { + "name": "isexe", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 266, + }, + { + "behavior": { + "normal": true, + }, + "id": 394, + "literal": "^3.0.0", + "name": "shebang-regex", + "npm": { + "name": "shebang-regex", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 268, + }, + { + "behavior": { + "normal": true, + }, + "id": 395, + "literal": "^4.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 107, + }, + { + "behavior": { + "normal": true, + }, + "id": 396, + "literal": "^7.1.0", + "name": "supports-color", + "npm": { + "name": "supports-color", + "version": ">=7.1.0 <8.0.0", + }, + "package_id": 271, + }, + { + "behavior": { + "normal": true, + }, + "id": 397, + "literal": "^4.0.0", + "name": "has-flag", + "npm": { + "name": "has-flag", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 272, + }, + { + "behavior": { + "normal": true, + }, + "id": 398, + "literal": "^3.1.1", + "name": "fast-deep-equal", + "npm": { + "name": "fast-deep-equal", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 254, + }, + { + "behavior": { + "normal": true, + }, + "id": 399, + "literal": "^2.0.0", + "name": "fast-json-stable-stringify", + "npm": { + "name": "fast-json-stable-stringify", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 277, + }, + { + "behavior": { + "normal": true, + }, + "id": 400, + "literal": "^0.4.1", + "name": "json-schema-traverse", + "npm": { + "name": "json-schema-traverse", + "version": ">=0.4.1 <0.5.0", + }, + "package_id": 276, + }, + { + "behavior": { + "normal": true, + }, + "id": 401, + "literal": "^4.2.2", + "name": "uri-js", + "npm": { + "name": "uri-js", + "version": ">=4.2.2 <5.0.0", + }, + "package_id": 274, + }, + { + "behavior": { + "normal": true, + }, + "id": 402, + "literal": "^2.1.0", + "name": "punycode", + "npm": { + "name": "punycode", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 275, + }, + { + "behavior": { + "normal": true, + }, + "id": 403, + "literal": "^1.2.1", + "name": "@humanwhocodes/object-schema", + "npm": { + "name": "@humanwhocodes/object-schema", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 280, + }, + { + "behavior": { + "normal": true, + }, + "id": 404, + "literal": "^4.1.1", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 405, + "literal": "^3.0.5", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.0.5 <4.0.0", + }, + "package_id": 16, + }, + { + "behavior": { + "normal": true, + }, + "id": 406, + "literal": "^6.12.4", + "name": "ajv", + "npm": { + "name": "ajv", + "version": ">=6.12.4 <7.0.0", + }, + "package_id": 273, + }, + { + "behavior": { + "normal": true, + }, + "id": 407, + "literal": "^4.3.2", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.2 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 408, + "literal": "^9.6.0", + "name": "espree", + "npm": { + "name": "espree", + "version": ">=9.6.0 <10.0.0", + }, + "package_id": 256, + }, + { + "behavior": { + "normal": true, + }, + "id": 409, + "literal": "^13.19.0", + "name": "globals", + "npm": { + "name": "globals", + "version": ">=13.19.0 <14.0.0", + }, + "package_id": 239, + }, + { + "behavior": { + "normal": true, + }, + "id": 410, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 411, + "literal": "^3.2.1", + "name": "import-fresh", + "npm": { + "name": "import-fresh", + "version": ">=3.2.1 <4.0.0", + }, + "package_id": 198, + }, + { + "behavior": { + "normal": true, + }, + "id": 412, + "literal": "^4.1.0", + "name": "js-yaml", + "npm": { + "name": "js-yaml", + "version": ">=4.1.0 <5.0.0", + }, + "package_id": 196, + }, + { + "behavior": { + "normal": true, + }, + "id": 413, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 414, + "literal": "^3.1.1", + "name": "strip-json-comments", + "npm": { + "name": "strip-json-comments", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 283, + }, + { + "behavior": { + "normal": true, + }, + "id": 415, + "literal": "^3.3.0", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.3.0 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "peer": true, + }, + "id": 416, + "literal": "^6.0.0 || ^7.0.0 || >=8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 && >=8.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 417, + "literal": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0-0 <9.0.0 && >=8.0.0-0 <9.0.0", + }, + "package_id": 222, + }, + { + "behavior": { + "normal": true, + }, + "id": 418, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 419, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 420, + "literal": "^1.1.1", + "name": "array.prototype.tosorted", + "npm": { + "name": "array.prototype.tosorted", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 369, + }, + { + "behavior": { + "normal": true, + }, + "id": 421, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 422, + "literal": "^1.0.12", + "name": "es-iterator-helpers", + "npm": { + "name": "es-iterator-helpers", + "version": ">=1.0.12 <2.0.0", + }, + "package_id": 355, + }, + { + "behavior": { + "normal": true, + }, + "id": 423, + "literal": "^5.3.0", + "name": "estraverse", + "npm": { + "name": "estraverse", + "version": ">=5.3.0 <6.0.0", + }, + "package_id": 145, + }, + { + "behavior": { + "normal": true, + }, + "id": 424, + "literal": "^2.4.1 || ^3.0.0", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=2.4.1 <3.0.0 || >=3.0.0 <4.0.0 && >=3.0.0 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 425, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 426, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 427, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 428, + "literal": "^1.1.2", + "name": "object.hasown", + "npm": { + "name": "object.hasown", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 348, + }, + { + "behavior": { + "normal": true, + }, + "id": 429, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 430, + "literal": "^15.8.1", + "name": "prop-types", + "npm": { + "name": "prop-types", + "version": ">=15.8.1 <16.0.0", + }, + "package_id": 345, + }, + { + "behavior": { + "normal": true, + }, + "id": 431, + "literal": "^2.0.0-next.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=2.0.0-next.4 <3.0.0", + }, + "package_id": 344, + }, + { + "behavior": { + "normal": true, + }, + "id": 432, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 433, + "literal": "^4.0.8", + "name": "string.prototype.matchall", + "npm": { + "name": "string.prototype.matchall", + "version": ">=4.0.8 <5.0.0", + }, + "package_id": 288, + }, + { + "behavior": { + "peer": true, + }, + "id": 434, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 435, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 436, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 437, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 438, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 439, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 440, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 441, + "literal": "^1.5.0", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.0 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 442, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 443, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 444, + "literal": "^1.0.0", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 445, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 446, + "literal": "^1.9.0", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.9.0 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 447, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 448, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 449, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 450, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 451, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 452, + "literal": "^1.0.2", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 453, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 454, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 455, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 456, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 457, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 458, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 459, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 460, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 461, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 462, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 463, + "literal": "^2.0.0", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 464, + "literal": "^1.0.1", + "name": "define-data-property", + "npm": { + "name": "define-data-property", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 298, + }, + { + "behavior": { + "normal": true, + }, + "id": 465, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 466, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 467, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 468, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 469, + "literal": "^1.0.4", + "name": "side-channel", + "npm": { + "name": "side-channel", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 289, + }, + { + "behavior": { + "normal": true, + }, + "id": 470, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 471, + "literal": "^1.0.2", + "name": "arraybuffer.prototype.slice", + "npm": { + "name": "arraybuffer.prototype.slice", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 341, + }, + { + "behavior": { + "normal": true, + }, + "id": 472, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 473, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 474, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 475, + "literal": "^1.2.1", + "name": "es-to-primitive", + "npm": { + "name": "es-to-primitive", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 338, + }, + { + "behavior": { + "normal": true, + }, + "id": 476, + "literal": "^1.1.6", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 477, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 478, + "literal": "^1.0.0", + "name": "get-symbol-description", + "npm": { + "name": "get-symbol-description", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 336, + }, + { + "behavior": { + "normal": true, + }, + "id": 479, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 480, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 481, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 482, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 483, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 484, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 485, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 486, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 487, + "literal": "^1.2.7", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.2.7 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 488, + "literal": "^2.0.2", + "name": "is-negative-zero", + "npm": { + "name": "is-negative-zero", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 333, + }, + { + "behavior": { + "normal": true, + }, + "id": 489, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 490, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 491, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 492, + "literal": "^1.1.12", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.12 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 493, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 494, + "literal": "^1.12.3", + "name": "object-inspect", + "npm": { + "name": "object-inspect", + "version": ">=1.12.3 <2.0.0", + }, + "package_id": 290, + }, + { + "behavior": { + "normal": true, + }, + "id": 495, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 496, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 497, + "literal": "^1.5.1", + "name": "regexp.prototype.flags", + "npm": { + "name": "regexp.prototype.flags", + "version": ">=1.5.1 <2.0.0", + }, + "package_id": 300, + }, + { + "behavior": { + "normal": true, + }, + "id": 498, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 499, + "literal": "^1.0.0", + "name": "safe-regex-test", + "npm": { + "name": "safe-regex-test", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 326, + }, + { + "behavior": { + "normal": true, + }, + "id": 500, + "literal": "^1.2.8", + "name": "string.prototype.trim", + "npm": { + "name": "string.prototype.trim", + "version": ">=1.2.8 <2.0.0", + }, + "package_id": 325, + }, + { + "behavior": { + "normal": true, + }, + "id": 501, + "literal": "^1.0.7", + "name": "string.prototype.trimend", + "npm": { + "name": "string.prototype.trimend", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 324, + }, + { + "behavior": { + "normal": true, + }, + "id": 502, + "literal": "^1.0.7", + "name": "string.prototype.trimstart", + "npm": { + "name": "string.prototype.trimstart", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 323, + }, + { + "behavior": { + "normal": true, + }, + "id": 503, + "literal": "^1.0.0", + "name": "typed-array-buffer", + "npm": { + "name": "typed-array-buffer", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 322, + }, + { + "behavior": { + "normal": true, + }, + "id": 504, + "literal": "^1.0.0", + "name": "typed-array-byte-length", + "npm": { + "name": "typed-array-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 321, + }, + { + "behavior": { + "normal": true, + }, + "id": 505, + "literal": "^1.0.0", + "name": "typed-array-byte-offset", + "npm": { + "name": "typed-array-byte-offset", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 320, + }, + { + "behavior": { + "normal": true, + }, + "id": 506, + "literal": "^1.0.4", + "name": "typed-array-length", + "npm": { + "name": "typed-array-length", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 318, + }, + { + "behavior": { + "normal": true, + }, + "id": 507, + "literal": "^1.0.2", + "name": "unbox-primitive", + "npm": { + "name": "unbox-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 310, + }, + { + "behavior": { + "normal": true, + }, + "id": 508, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 509, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 510, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 511, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 512, + "literal": "^1.0.1", + "name": "gopd", + "npm": { + "name": "gopd", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 299, + }, + { + "behavior": { + "normal": true, + }, + "id": 513, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 514, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 515, + "literal": "^1.1.3", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 516, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 517, + "literal": "^1.0.2", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 518, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 519, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 520, + "literal": "^1.0.1", + "name": "is-bigint", + "npm": { + "name": "is-bigint", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 316, + }, + { + "behavior": { + "normal": true, + }, + "id": 521, + "literal": "^1.1.0", + "name": "is-boolean-object", + "npm": { + "name": "is-boolean-object", + "version": ">=1.1.0 <2.0.0", + }, + "package_id": 315, + }, + { + "behavior": { + "normal": true, + }, + "id": 522, + "literal": "^1.0.4", + "name": "is-number-object", + "npm": { + "name": "is-number-object", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 314, + }, + { + "behavior": { + "normal": true, + }, + "id": 523, + "literal": "^1.0.5", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 524, + "literal": "^1.0.3", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 525, + "literal": "^1.0.2", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 526, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 527, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 528, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 529, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 530, + "literal": "^1.0.1", + "name": "has-bigints", + "npm": { + "name": "has-bigints", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 317, + }, + { + "behavior": { + "normal": true, + }, + "id": 531, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 532, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 533, + "literal": "^1.1.9", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 534, + "literal": "^1.1.11", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.11 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 535, + "literal": "^1.0.5", + "name": "available-typed-arrays", + "npm": { + "name": "available-typed-arrays", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 309, + }, + { + "behavior": { + "normal": true, + }, + "id": 536, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 537, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 538, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 539, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 540, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 541, + "literal": "^0.3.3", + "name": "for-each", + "npm": { + "name": "for-each", + "version": ">=0.3.3 <0.4.0", + }, + "package_id": 307, + }, + { + "behavior": { + "normal": true, + }, + "id": 542, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 543, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 544, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 545, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 546, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 547, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 548, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 549, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 550, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 551, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 552, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 553, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 554, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 555, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 556, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 557, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 558, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 559, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 560, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 561, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 562, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 563, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 564, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 565, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 566, + "literal": "^1.1.4", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 567, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 568, + "literal": "^1.1.1", + "name": "object-keys", + "npm": { + "name": "object-keys", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 302, + }, + { + "behavior": { + "normal": true, + }, + "id": 569, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 570, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 571, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 572, + "literal": "^1.2.0", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 573, + "literal": "^1.1.10", + "name": "is-typed-array", + "npm": { + "name": "is-typed-array", + "version": ">=1.1.10 <2.0.0", + }, + "package_id": 319, + }, + { + "behavior": { + "normal": true, + }, + "id": 574, + "literal": "^1.1.3", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 575, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 576, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 577, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 578, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 579, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 580, + "literal": "^1.2.3", + "name": "functions-have-names", + "npm": { + "name": "functions-have-names", + "version": ">=1.2.3 <2.0.0", + }, + "package_id": 297, + }, + { + "behavior": { + "normal": true, + }, + "id": 581, + "literal": "^1.1.4", + "name": "is-callable", + "npm": { + "name": "is-callable", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 308, + }, + { + "behavior": { + "normal": true, + }, + "id": 582, + "literal": "^1.0.1", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 583, + "literal": "^1.0.2", + "name": "is-symbol", + "npm": { + "name": "is-symbol", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 312, + }, + { + "behavior": { + "normal": true, + }, + "id": 584, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 585, + "literal": "^1.1.3", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 586, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 587, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 588, + "literal": "^1.0.0", + "name": "array-buffer-byte-length", + "npm": { + "name": "array-buffer-byte-length", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 342, + }, + { + "behavior": { + "normal": true, + }, + "id": 589, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 590, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 591, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 592, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 593, + "literal": "^3.0.2", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 594, + "literal": "^1.0.2", + "name": "is-shared-array-buffer", + "npm": { + "name": "is-shared-array-buffer", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 332, + }, + { + "behavior": { + "normal": true, + }, + "id": 595, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 596, + "literal": "^3.0.1", + "name": "is-array-buffer", + "npm": { + "name": "is-array-buffer", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 334, + }, + { + "behavior": { + "normal": true, + }, + "id": 597, + "literal": "^2.9.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.9.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 598, + "literal": "^1.0.7", + "name": "path-parse", + "npm": { + "name": "path-parse", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 31, + }, + { + "behavior": { + "normal": true, + }, + "id": 599, + "literal": "^1.0.0", + "name": "supports-preserve-symlinks-flag", + "npm": { + "name": "supports-preserve-symlinks-flag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 30, + }, + { + "behavior": { + "normal": true, + }, + "id": 600, + "literal": "^1.4.0", + "name": "loose-envify", + "npm": { + "name": "loose-envify", + "version": ">=1.4.0 <2.0.0", + }, + "package_id": 86, + }, + { + "behavior": { + "normal": true, + }, + "id": 601, + "literal": "^4.1.1", + "name": "object-assign", + "npm": { + "name": "object-assign", + "version": ">=4.1.1 <5.0.0", + }, + "package_id": 10, + }, + { + "behavior": { + "normal": true, + }, + "id": 602, + "literal": "^16.13.1", + "name": "react-is", + "npm": { + "name": "react-is", + "version": ">=16.13.1 <17.0.0", + }, + "package_id": 346, + }, + { + "behavior": { + "normal": true, + }, + "id": 603, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 604, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 605, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 606, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 607, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 608, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 609, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 610, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 611, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 612, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 613, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 614, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 615, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 616, + "literal": "^4.1.4", + "name": "object.assign", + "npm": { + "name": "object.assign", + "version": ">=4.1.4 <5.0.0", + }, + "package_id": 330, + }, + { + "behavior": { + "normal": true, + }, + "id": 617, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 618, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 619, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 620, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 621, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 622, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 623, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 624, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 625, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 626, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 627, + "literal": "^1.0.7", + "name": "is-string", + "npm": { + "name": "is-string", + "version": ">=1.0.7 <2.0.0", + }, + "package_id": 313, + }, + { + "behavior": { + "normal": true, + }, + "id": 628, + "literal": "^1.0.0", + "name": "asynciterator.prototype", + "npm": { + "name": "asynciterator.prototype", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 367, + }, + { + "behavior": { + "normal": true, + }, + "id": 629, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 630, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 631, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 632, + "literal": "^2.0.1", + "name": "es-set-tostringtag", + "npm": { + "name": "es-set-tostringtag", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 340, + }, + { + "behavior": { + "normal": true, + }, + "id": 633, + "literal": "^1.1.1", + "name": "function-bind", + "npm": { + "name": "function-bind", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 34, + }, + { + "behavior": { + "normal": true, + }, + "id": 634, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 635, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 636, + "literal": "^1.0.0", + "name": "has-property-descriptors", + "npm": { + "name": "has-property-descriptors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 296, + }, + { + "behavior": { + "normal": true, + }, + "id": 637, + "literal": "^1.0.1", + "name": "has-proto", + "npm": { + "name": "has-proto", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 293, + }, + { + "behavior": { + "normal": true, + }, + "id": 638, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 639, + "literal": "^1.0.5", + "name": "internal-slot", + "npm": { + "name": "internal-slot", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 303, + }, + { + "behavior": { + "normal": true, + }, + "id": 640, + "literal": "^1.1.2", + "name": "iterator.prototype", + "npm": { + "name": "iterator.prototype", + "version": ">=1.1.2 <2.0.0", + }, + "package_id": 356, + }, + { + "behavior": { + "normal": true, + }, + "id": 641, + "literal": "^1.0.1", + "name": "safe-array-concat", + "npm": { + "name": "safe-array-concat", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 328, + }, + { + "behavior": { + "normal": true, + }, + "id": 642, + "literal": "^1.2.1", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 643, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 644, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 645, + "literal": "^1.0.4", + "name": "reflect.getprototypeof", + "npm": { + "name": "reflect.getprototypeof", + "version": ">=1.0.4 <2.0.0", + }, + "package_id": 357, + }, + { + "behavior": { + "normal": true, + }, + "id": 646, + "literal": "^2.0.1", + "name": "set-function-name", + "npm": { + "name": "set-function-name", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 295, + }, + { + "behavior": { + "normal": true, + }, + "id": 647, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 648, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 649, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 650, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 651, + "literal": "^1.0.3", + "name": "globalthis", + "npm": { + "name": "globalthis", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 335, + }, + { + "behavior": { + "normal": true, + }, + "id": 652, + "literal": "^1.1.3", + "name": "which-builtin-type", + "npm": { + "name": "which-builtin-type", + "version": ">=1.1.3 <2.0.0", + }, + "package_id": 358, + }, + { + "behavior": { + "normal": true, + }, + "id": 653, + "literal": "^1.1.5", + "name": "function.prototype.name", + "npm": { + "name": "function.prototype.name", + "version": ">=1.1.5 <2.0.0", + }, + "package_id": 337, + }, + { + "behavior": { + "normal": true, + }, + "id": 654, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 655, + "literal": "^2.0.0", + "name": "is-async-function", + "npm": { + "name": "is-async-function", + "version": ">=2.0.0 <3.0.0", + }, + "package_id": 366, + }, + { + "behavior": { + "normal": true, + }, + "id": 656, + "literal": "^1.0.5", + "name": "is-date-object", + "npm": { + "name": "is-date-object", + "version": ">=1.0.5 <2.0.0", + }, + "package_id": 339, + }, + { + "behavior": { + "normal": true, + }, + "id": 657, + "literal": "^1.0.2", + "name": "is-finalizationregistry", + "npm": { + "name": "is-finalizationregistry", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 365, + }, + { + "behavior": { + "normal": true, + }, + "id": 658, + "literal": "^1.0.10", + "name": "is-generator-function", + "npm": { + "name": "is-generator-function", + "version": ">=1.0.10 <2.0.0", + }, + "package_id": 364, + }, + { + "behavior": { + "normal": true, + }, + "id": 659, + "literal": "^1.1.4", + "name": "is-regex", + "npm": { + "name": "is-regex", + "version": ">=1.1.4 <2.0.0", + }, + "package_id": 327, + }, + { + "behavior": { + "normal": true, + }, + "id": 660, + "literal": "^1.0.2", + "name": "is-weakref", + "npm": { + "name": "is-weakref", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 331, + }, + { + "behavior": { + "normal": true, + }, + "id": 661, + "literal": "^2.0.5", + "name": "isarray", + "npm": { + "name": "isarray", + "version": ">=2.0.5 <3.0.0", + }, + "package_id": 329, + }, + { + "behavior": { + "normal": true, + }, + "id": 662, + "literal": "^1.0.2", + "name": "which-boxed-primitive", + "npm": { + "name": "which-boxed-primitive", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 311, + }, + { + "behavior": { + "normal": true, + }, + "id": 663, + "literal": "^1.0.1", + "name": "which-collection", + "npm": { + "name": "which-collection", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 359, + }, + { + "behavior": { + "normal": true, + }, + "id": 664, + "literal": "^1.1.9", + "name": "which-typed-array", + "npm": { + "name": "which-typed-array", + "version": ">=1.1.9 <2.0.0", + }, + "package_id": 305, + }, + { + "behavior": { + "normal": true, + }, + "id": 665, + "literal": "^2.0.1", + "name": "is-map", + "npm": { + "name": "is-map", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 363, + }, + { + "behavior": { + "normal": true, + }, + "id": 666, + "literal": "^2.0.1", + "name": "is-set", + "npm": { + "name": "is-set", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 362, + }, + { + "behavior": { + "normal": true, + }, + "id": 667, + "literal": "^2.0.1", + "name": "is-weakmap", + "npm": { + "name": "is-weakmap", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 361, + }, + { + "behavior": { + "normal": true, + }, + "id": 668, + "literal": "^2.0.1", + "name": "is-weakset", + "npm": { + "name": "is-weakset", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 360, + }, + { + "behavior": { + "normal": true, + }, + "id": 669, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 670, + "literal": "^1.1.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.1.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 671, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 672, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 673, + "literal": "^1.0.0", + "name": "has-tostringtag", + "npm": { + "name": "has-tostringtag", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 306, + }, + { + "behavior": { + "normal": true, + }, + "id": 674, + "literal": "^1.0.3", + "name": "has-symbols", + "npm": { + "name": "has-symbols", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 292, + }, + { + "behavior": { + "normal": true, + }, + "id": 675, + "literal": "^2.0.2", + "name": "esutils", + "npm": { + "name": "esutils", + "version": ">=2.0.2 <3.0.0", + }, + "package_id": 144, + }, + { + "behavior": { + "normal": true, + }, + "id": 676, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 677, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 678, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 679, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 680, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 681, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 682, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 683, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 684, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 685, + "literal": "^7.20.7", + "name": "@babel/runtime", + "npm": { + "name": "@babel/runtime", + "version": ">=7.20.7 <8.0.0", + }, + "package_id": 381, + }, + { + "behavior": { + "normal": true, + }, + "id": 686, + "literal": "^5.1.3", + "name": "aria-query", + "npm": { + "name": "aria-query", + "version": ">=5.1.3 <6.0.0", + }, + "package_id": 380, + }, + { + "behavior": { + "normal": true, + }, + "id": 687, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 688, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 689, + "literal": "^0.0.7", + "name": "ast-types-flow", + "npm": { + "name": "ast-types-flow", + "version": ">=0.0.7 <0.0.8", + }, + "package_id": 379, + }, + { + "behavior": { + "normal": true, + }, + "id": 690, + "literal": "^4.6.2", + "name": "axe-core", + "npm": { + "name": "axe-core", + "version": ">=4.6.2 <5.0.0", + }, + "package_id": 378, + }, + { + "behavior": { + "normal": true, + }, + "id": 691, + "literal": "^3.1.1", + "name": "axobject-query", + "npm": { + "name": "axobject-query", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 376, + }, + { + "behavior": { + "normal": true, + }, + "id": 692, + "literal": "^1.0.8", + "name": "damerau-levenshtein", + "npm": { + "name": "damerau-levenshtein", + "version": ">=1.0.8 <2.0.0", + }, + "package_id": 375, + }, + { + "behavior": { + "normal": true, + }, + "id": 693, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 694, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 695, + "literal": "^3.3.3", + "name": "jsx-ast-utils", + "npm": { + "name": "jsx-ast-utils", + "version": ">=3.3.3 <4.0.0", + }, + "package_id": 351, + }, + { + "behavior": { + "normal": true, + }, + "id": 696, + "literal": "=1.0.5", + "name": "language-tags", + "npm": { + "name": "language-tags", + "version": "==1.0.5", + }, + "package_id": 372, + }, + { + "behavior": { + "normal": true, + }, + "id": 697, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 698, + "literal": "^1.1.6", + "name": "object.entries", + "npm": { + "name": "object.entries", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 350, + }, + { + "behavior": { + "normal": true, + }, + "id": 699, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 700, + "literal": "^6.3.0", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.0 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "peer": true, + }, + "id": 701, + "literal": "^3 || ^4 || ^5 || ^6 || ^7 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 702, + "literal": "~0.3.2", + "name": "language-subtag-registry", + "npm": { + "name": "language-subtag-registry", + "version": ">=0.3.2 <0.4.0", + }, + "package_id": 373, + }, + { + "behavior": { + "normal": true, + }, + "id": 703, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 704, + "literal": "^2.0.3", + "name": "dequal", + "npm": { + "name": "dequal", + "version": ">=2.0.3 <3.0.0", + }, + "package_id": 377, + }, + { + "behavior": { + "normal": true, + }, + "id": 705, + "literal": "^0.14.0", + "name": "regenerator-runtime", + "npm": { + "name": "regenerator-runtime", + "version": ">=0.14.0 <0.15.0", + }, + "package_id": 382, + }, + { + "behavior": { + "normal": true, + }, + "id": 706, + "literal": "^3.1.6", + "name": "array-includes", + "npm": { + "name": "array-includes", + "version": ">=3.1.6 <4.0.0", + }, + "package_id": 354, + }, + { + "behavior": { + "normal": true, + }, + "id": 707, + "literal": "^1.2.2", + "name": "array.prototype.findlastindex", + "npm": { + "name": "array.prototype.findlastindex", + "version": ">=1.2.2 <2.0.0", + }, + "package_id": 394, + }, + { + "behavior": { + "normal": true, + }, + "id": 708, + "literal": "^1.3.1", + "name": "array.prototype.flat", + "npm": { + "name": "array.prototype.flat", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 352, + }, + { + "behavior": { + "normal": true, + }, + "id": 709, + "literal": "^1.3.1", + "name": "array.prototype.flatmap", + "npm": { + "name": "array.prototype.flatmap", + "version": ">=1.3.1 <2.0.0", + }, + "package_id": 370, + }, + { + "behavior": { + "normal": true, + }, + "id": 710, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 711, + "literal": "^2.1.0", + "name": "doctrine", + "npm": { + "name": "doctrine", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 368, + }, + { + "behavior": { + "normal": true, + }, + "id": 712, + "literal": "^0.3.7", + "name": "eslint-import-resolver-node", + "npm": { + "name": "eslint-import-resolver-node", + "version": ">=0.3.7 <0.4.0", + }, + "package_id": 393, + }, + { + "behavior": { + "normal": true, + }, + "id": 713, + "literal": "^2.8.0", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.8.0 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 714, + "literal": "^1.0.3", + "name": "has", + "npm": { + "name": "has", + "version": ">=1.0.3 <2.0.0", + }, + "package_id": 33, + }, + { + "behavior": { + "normal": true, + }, + "id": 715, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 716, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 717, + "literal": "^3.1.2", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=3.1.2 <4.0.0", + }, + "package_id": 232, + }, + { + "behavior": { + "normal": true, + }, + "id": 718, + "literal": "^2.0.6", + "name": "object.fromentries", + "npm": { + "name": "object.fromentries", + "version": ">=2.0.6 <3.0.0", + }, + "package_id": 349, + }, + { + "behavior": { + "normal": true, + }, + "id": 719, + "literal": "^1.0.0", + "name": "object.groupby", + "npm": { + "name": "object.groupby", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 389, + }, + { + "behavior": { + "normal": true, + }, + "id": 720, + "literal": "^1.1.6", + "name": "object.values", + "npm": { + "name": "object.values", + "version": ">=1.1.6 <2.0.0", + }, + "package_id": 347, + }, + { + "behavior": { + "normal": true, + }, + "id": 721, + "literal": "^6.3.1", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=6.3.1 <7.0.0", + }, + "package_id": 343, + }, + { + "behavior": { + "normal": true, + }, + "id": 722, + "literal": "^3.14.2", + "name": "tsconfig-paths", + "npm": { + "name": "tsconfig-paths", + "version": ">=3.14.2 <4.0.0", + }, + "package_id": 384, + }, + { + "behavior": { + "peer": true, + }, + "id": 723, + "literal": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=2.0.0 <3.0.0 || >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=3.0.0 <4.0.0 || >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=4.0.0 <5.0.0 || >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=5.0.0 <6.0.0 || >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=6.0.0 <7.0.0 || >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=7.2.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 724, + "literal": "^0.0.29", + "name": "@types/json5", + "npm": { + "name": "@types/json5", + "version": ">=0.0.29 <0.0.30", + }, + "package_id": 388, + }, + { + "behavior": { + "normal": true, + }, + "id": 725, + "literal": "^1.0.2", + "name": "json5", + "npm": { + "name": "json5", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 387, + }, + { + "behavior": { + "normal": true, + }, + "id": 726, + "literal": "^1.2.6", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.6 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 727, + "literal": "^3.0.0", + "name": "strip-bom", + "npm": { + "name": "strip-bom", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 385, + }, + { + "behavior": { + "normal": true, + }, + "id": 728, + "literal": "^1.2.0", + "name": "minimist", + "npm": { + "name": "minimist", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 386, + }, + { + "behavior": { + "normal": true, + }, + "id": 729, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 730, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 731, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 732, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 733, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 734, + "literal": "^2.1.1", + "name": "ms", + "npm": { + "name": "ms", + "version": ">=2.1.1 <3.0.0", + }, + "package_id": 392, + }, + { + "behavior": { + "normal": true, + }, + "id": 735, + "literal": "^3.2.7", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=3.2.7 <4.0.0", + }, + "package_id": 391, + }, + { + "behavior": { + "normal": true, + }, + "id": 736, + "literal": "^2.13.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.13.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 737, + "literal": "^1.22.4", + "name": "resolve", + "npm": { + "name": "resolve", + "version": ">=1.22.4 <2.0.0", + }, + "package_id": 29, + }, + { + "behavior": { + "normal": true, + }, + "id": 738, + "literal": "^1.0.2", + "name": "call-bind", + "npm": { + "name": "call-bind", + "version": ">=1.0.2 <2.0.0", + }, + "package_id": 294, + }, + { + "behavior": { + "normal": true, + }, + "id": 739, + "literal": "^1.2.0", + "name": "define-properties", + "npm": { + "name": "define-properties", + "version": ">=1.2.0 <2.0.0", + }, + "package_id": 301, + }, + { + "behavior": { + "normal": true, + }, + "id": 740, + "literal": "^1.22.1", + "name": "es-abstract", + "npm": { + "name": "es-abstract", + "version": ">=1.22.1 <2.0.0", + }, + "package_id": 304, + }, + { + "behavior": { + "normal": true, + }, + "id": 741, + "literal": "^1.0.0", + "name": "es-shim-unscopables", + "npm": { + "name": "es-shim-unscopables", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 353, + }, + { + "behavior": { + "normal": true, + }, + "id": 742, + "literal": "^1.2.1", + "name": "get-intrinsic", + "npm": { + "name": "get-intrinsic", + "version": ">=1.2.1 <2.0.0", + }, + "package_id": 291, + }, + { + "behavior": { + "normal": true, + }, + "id": 743, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 744, + "literal": "^5.12.0", + "name": "enhanced-resolve", + "npm": { + "name": "enhanced-resolve", + "version": ">=5.12.0 <6.0.0", + }, + "package_id": 398, + }, + { + "behavior": { + "normal": true, + }, + "id": 745, + "literal": "^2.7.4", + "name": "eslint-module-utils", + "npm": { + "name": "eslint-module-utils", + "version": ">=2.7.4 <3.0.0", + }, + "package_id": 390, + }, + { + "behavior": { + "normal": true, + }, + "id": 746, + "literal": "^3.3.1", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.3.1 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 747, + "literal": "^4.5.0", + "name": "get-tsconfig", + "npm": { + "name": "get-tsconfig", + "version": ">=4.5.0 <5.0.0", + }, + "package_id": 396, + }, + { + "behavior": { + "normal": true, + }, + "id": 748, + "literal": "^2.11.0", + "name": "is-core-module", + "npm": { + "name": "is-core-module", + "version": ">=2.11.0 <3.0.0", + }, + "package_id": 32, + }, + { + "behavior": { + "normal": true, + }, + "id": 749, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "peer": true, + }, + "id": 750, + "literal": "*", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=0.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "peer": true, + }, + "id": 751, + "literal": "*", + "name": "eslint-plugin-import", + "npm": { + "name": "eslint-plugin-import", + "version": ">=0.0.0", + }, + "package_id": 383, + }, + { + "behavior": { + "normal": true, + }, + "id": 752, + "literal": "^1.0.0", + "name": "resolve-pkg-maps", + "npm": { + "name": "resolve-pkg-maps", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 397, + }, + { + "behavior": { + "normal": true, + }, + "id": 753, + "literal": "^4.2.4", + "name": "graceful-fs", + "npm": { + "name": "graceful-fs", + "version": ">=4.2.4 <5.0.0", + }, + "package_id": 154, + }, + { + "behavior": { + "normal": true, + }, + "id": 754, + "literal": "^2.2.0", + "name": "tapable", + "npm": { + "name": "tapable", + "version": ">=2.2.0 <3.0.0", + }, + "package_id": 399, + }, + { + "behavior": { + "normal": true, + }, + "id": 755, + "literal": "6.7.3", + "name": "@typescript-eslint/scope-manager", + "npm": { + "name": "@typescript-eslint/scope-manager", + "version": "==6.7.3", + }, + "package_id": 411, + }, + { + "behavior": { + "normal": true, + }, + "id": 756, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 757, + "literal": "6.7.3", + "name": "@typescript-eslint/typescript-estree", + "npm": { + "name": "@typescript-eslint/typescript-estree", + "version": "==6.7.3", + }, + "package_id": 403, + }, + { + "behavior": { + "normal": true, + }, + "id": 758, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 759, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "peer": true, + }, + "id": 760, + "literal": "^7.0.0 || ^8.0.0", + "name": "eslint", + "npm": { + "name": "eslint", + "version": ">=7.0.0 <8.0.0 || >=8.0.0 <9.0.0 && >=8.0.0 <9.0.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 761, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 762, + "literal": "^3.4.1", + "name": "eslint-visitor-keys", + "npm": { + "name": "eslint-visitor-keys", + "version": ">=3.4.1 <4.0.0", + }, + "package_id": 257, + }, + { + "behavior": { + "normal": true, + }, + "id": 763, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 764, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 765, + "literal": "^4.3.4", + "name": "debug", + "npm": { + "name": "debug", + "version": ">=4.3.4 <5.0.0", + }, + "package_id": 132, + }, + { + "behavior": { + "normal": true, + }, + "id": 766, + "literal": "^11.1.0", + "name": "globby", + "npm": { + "name": "globby", + "version": ">=11.1.0 <12.0.0", + }, + "package_id": 406, + }, + { + "behavior": { + "normal": true, + }, + "id": 767, + "literal": "^4.0.3", + "name": "is-glob", + "npm": { + "name": "is-glob", + "version": ">=4.0.3 <5.0.0", + }, + "package_id": 61, + }, + { + "behavior": { + "normal": true, + }, + "id": 768, + "literal": "^7.5.4", + "name": "semver", + "npm": { + "name": "semver", + "version": ">=7.5.4 <8.0.0", + }, + "package_id": 405, + }, + { + "behavior": { + "normal": true, + }, + "id": 769, + "literal": "^1.0.1", + "name": "ts-api-utils", + "npm": { + "name": "ts-api-utils", + "version": ">=1.0.1 <2.0.0", + }, + "package_id": 404, + }, + { + "behavior": { + "peer": true, + }, + "id": 770, + "literal": ">=4.2.0", + "name": "typescript", + "npm": { + "name": "typescript", + "version": ">=4.2.0", + }, + "package_id": null, + }, + { + "behavior": { + "normal": true, + }, + "id": 771, + "literal": "^6.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=6.0.0 <7.0.0", + }, + "package_id": 92, + }, + { + "behavior": { + "normal": true, + }, + "id": 772, + "literal": "^2.1.0", + "name": "array-union", + "npm": { + "name": "array-union", + "version": ">=2.1.0 <3.0.0", + }, + "package_id": 410, + }, + { + "behavior": { + "normal": true, + }, + "id": 773, + "literal": "^3.0.1", + "name": "dir-glob", + "npm": { + "name": "dir-glob", + "version": ">=3.0.1 <4.0.0", + }, + "package_id": 408, + }, + { + "behavior": { + "normal": true, + }, + "id": 774, + "literal": "^3.2.9", + "name": "fast-glob", + "npm": { + "name": "fast-glob", + "version": ">=3.2.9 <4.0.0", + }, + "package_id": 64, + }, + { + "behavior": { + "normal": true, + }, + "id": 775, + "literal": "^5.2.0", + "name": "ignore", + "npm": { + "name": "ignore", + "version": ">=5.2.0 <6.0.0", + }, + "package_id": 237, + }, + { + "behavior": { + "normal": true, + }, + "id": 776, + "literal": "^1.4.1", + "name": "merge2", + "npm": { + "name": "merge2", + "version": ">=1.4.1 <2.0.0", + }, + "package_id": 65, + }, + { + "behavior": { + "normal": true, + }, + "id": 777, + "literal": "^3.0.0", + "name": "slash", + "npm": { + "name": "slash", + "version": ">=3.0.0 <4.0.0", + }, + "package_id": 407, + }, + { + "behavior": { + "normal": true, + }, + "id": 778, + "literal": "^4.0.0", + "name": "path-type", + "npm": { + "name": "path-type", + "version": ">=4.0.0 <5.0.0", + }, + "package_id": 409, + }, + { + "behavior": { + "normal": true, + }, + "id": 779, + "literal": "6.7.3", + "name": "@typescript-eslint/types", + "npm": { + "name": "@typescript-eslint/types", + "version": "==6.7.3", + }, + "package_id": 402, + }, + { + "behavior": { + "normal": true, + }, + "id": 780, + "literal": "6.7.3", + "name": "@typescript-eslint/visitor-keys", + "npm": { + "name": "@typescript-eslint/visitor-keys", + "version": "==6.7.3", + }, + "package_id": 401, + }, + { + "behavior": { + "normal": true, + }, + "id": 781, + "literal": "10.3.10", + "name": "glob", + "npm": { + "name": "glob", + "version": "==10.3.10", + }, + "package_id": 414, + }, + { + "behavior": { + "normal": true, + }, + "id": 782, + "literal": "^3.1.0", + "name": "foreground-child", + "npm": { + "name": "foreground-child", + "version": ">=3.1.0 <4.0.0", + }, + "package_id": 429, + }, + { + "behavior": { + "normal": true, + }, + "id": 783, + "literal": "^2.3.5", + "name": "jackspeak", + "npm": { + "name": "jackspeak", + "version": ">=2.3.5 <3.0.0", + }, + "package_id": 420, + }, + { + "behavior": { + "normal": true, + }, + "id": 784, + "literal": "^9.0.1", + "name": "minimatch", + "npm": { + "name": "minimatch", + "version": ">=9.0.1 <10.0.0", + }, + "package_id": 418, + }, + { + "behavior": { + "normal": true, + }, + "id": 785, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 786, + "literal": "^1.10.1", + "name": "path-scurry", + "npm": { + "name": "path-scurry", + "version": ">=1.10.1 <2.0.0", + }, + "package_id": 415, + }, + { + "behavior": { + "normal": true, + }, + "id": 787, + "literal": "^9.1.1 || ^10.0.0", + "name": "lru-cache", + "npm": { + "name": "lru-cache", + "version": ">=9.1.1 <10.0.0 || >=10.0.0 <11.0.0 && >=10.0.0 <11.0.0", + }, + "package_id": 417, + }, + { + "behavior": { + "normal": true, + }, + "id": 788, + "literal": "^5.0.0 || ^6.0.2 || ^7.0.0", + "name": "minipass", + "npm": { + "name": "minipass", + "version": ">=5.0.0 <6.0.0 || >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=6.0.2 <7.0.0 || >=7.0.0 <8.0.0 && >=7.0.0 <8.0.0", + }, + "package_id": 416, + }, + { + "behavior": { + "normal": true, + }, + "id": 789, + "literal": "^2.0.1", + "name": "brace-expansion", + "npm": { + "name": "brace-expansion", + "version": ">=2.0.1 <3.0.0", + }, + "package_id": 419, + }, + { + "behavior": { + "normal": true, + }, + "id": 790, + "literal": "^1.0.0", + "name": "balanced-match", + "npm": { + "name": "balanced-match", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 19, + }, + { + "behavior": { + "normal": true, + }, + "id": 791, + "literal": "^8.0.2", + "name": "@isaacs/cliui", + "npm": { + "name": "@isaacs/cliui", + "version": ">=8.0.2 <9.0.0", + }, + "package_id": 422, + }, + { + "behavior": { + "optional": true, + }, + "id": 792, + "literal": "^0.11.0", + "name": "@pkgjs/parseargs", + "npm": { + "name": "@pkgjs/parseargs", + "version": ">=0.11.0 <0.12.0", + }, + "package_id": 421, + }, + { + "behavior": { + "normal": true, + }, + "id": 793, + "literal": "^5.1.2", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.1.2 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 794, + "is_alias": true, + "literal": "npm:string-width@^4.2.0", + "name": "string-width-cjs", + "npm": { + "name": "string-width", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 97, + }, + { + "behavior": { + "normal": true, + }, + "id": 795, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 796, + "is_alias": true, + "literal": "npm:strip-ansi@^6.0.1", + "name": "strip-ansi-cjs", + "npm": { + "name": "strip-ansi", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 98, + }, + { + "behavior": { + "normal": true, + }, + "id": 797, + "literal": "^8.1.0", + "name": "wrap-ansi", + "npm": { + "name": "wrap-ansi", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 423, + }, + { + "behavior": { + "normal": true, + }, + "id": 798, + "is_alias": true, + "literal": "npm:wrap-ansi@^7.0.0", + "name": "wrap-ansi-cjs", + "npm": { + "name": "wrap-ansi", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 106, + }, + { + "behavior": { + "normal": true, + }, + "id": 799, + "literal": "^6.1.0", + "name": "ansi-styles", + "npm": { + "name": "ansi-styles", + "version": ">=6.1.0 <7.0.0", + }, + "package_id": 428, + }, + { + "behavior": { + "normal": true, + }, + "id": 800, + "literal": "^5.0.1", + "name": "string-width", + "npm": { + "name": "string-width", + "version": ">=5.0.1 <6.0.0", + }, + "package_id": 426, + }, + { + "behavior": { + "normal": true, + }, + "id": 801, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 802, + "literal": "^6.0.1", + "name": "ansi-regex", + "npm": { + "name": "ansi-regex", + "version": ">=6.0.1 <7.0.0", + }, + "package_id": 425, + }, + { + "behavior": { + "normal": true, + }, + "id": 803, + "literal": "^0.2.0", + "name": "eastasianwidth", + "npm": { + "name": "eastasianwidth", + "version": ">=0.2.0 <0.3.0", + }, + "package_id": 427, + }, + { + "behavior": { + "normal": true, + }, + "id": 804, + "literal": "^9.2.2", + "name": "emoji-regex", + "npm": { + "name": "emoji-regex", + "version": ">=9.2.2 <10.0.0", + }, + "package_id": 374, + }, + { + "behavior": { + "normal": true, + }, + "id": 805, + "literal": "^7.0.1", + "name": "strip-ansi", + "npm": { + "name": "strip-ansi", + "version": ">=7.0.1 <8.0.0", + }, + "package_id": 424, + }, + { + "behavior": { + "normal": true, + }, + "id": 806, + "literal": "^7.0.0", + "name": "cross-spawn", + "npm": { + "name": "cross-spawn", + "version": ">=7.0.0 <8.0.0", + }, + "package_id": 264, + }, + { + "behavior": { + "normal": true, + }, + "id": 807, + "literal": "^4.0.1", + "name": "signal-exit", + "npm": { + "name": "signal-exit", + "version": ">=4.0.1 <5.0.0", + }, + "package_id": 430, + }, + { + "behavior": { + "normal": true, + }, + "id": 808, + "literal": "^4.21.10", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.10 <5.0.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 809, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 810, + "literal": "^4.3.6", + "name": "fraction.js", + "npm": { + "name": "fraction.js", + "version": ">=4.3.6 <5.0.0", + }, + "package_id": 434, + }, + { + "behavior": { + "normal": true, + }, + "id": 811, + "literal": "^0.1.2", + "name": "normalize-range", + "npm": { + "name": "normalize-range", + "version": ">=0.1.2 <0.2.0", + }, + "package_id": 433, + }, + { + "behavior": { + "normal": true, + }, + "id": 812, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "normal": true, + }, + "id": 813, + "literal": "^4.2.0", + "name": "postcss-value-parser", + "npm": { + "name": "postcss-value-parser", + "version": ">=4.2.0 <5.0.0", + }, + "package_id": 51, + }, + { + "behavior": { + "peer": true, + }, + "id": 814, + "literal": "^8.1.0", + "name": "postcss", + "npm": { + "name": "postcss", + "version": ">=8.1.0 <9.0.0", + }, + "package_id": 39, + }, + { + "behavior": { + "normal": true, + }, + "id": 815, + "literal": "^1.0.30001538", + "name": "caniuse-lite", + "npm": { + "name": "caniuse-lite", + "version": ">=1.0.30001538 <2.0.0", + }, + "package_id": 435, + }, + { + "behavior": { + "normal": true, + }, + "id": 816, + "literal": "^1.4.526", + "name": "electron-to-chromium", + "npm": { + "name": "electron-to-chromium", + "version": ">=1.4.526 <2.0.0", + }, + "package_id": 439, + }, + { + "behavior": { + "normal": true, + }, + "id": 817, + "literal": "^2.0.13", + "name": "node-releases", + "npm": { + "name": "node-releases", + "version": ">=2.0.13 <3.0.0", + }, + "package_id": 438, + }, + { + "behavior": { + "normal": true, + }, + "id": 818, + "literal": "^1.0.13", + "name": "update-browserslist-db", + "npm": { + "name": "update-browserslist-db", + "version": ">=1.0.13 <2.0.0", + }, + "package_id": 437, + }, + { + "behavior": { + "normal": true, + }, + "id": 819, + "literal": "^3.1.1", + "name": "escalade", + "npm": { + "name": "escalade", + "version": ">=3.1.1 <4.0.0", + }, + "package_id": 104, + }, + { + "behavior": { + "normal": true, + }, + "id": 820, + "literal": "^1.0.0", + "name": "picocolors", + "npm": { + "name": "picocolors", + "version": ">=1.0.0 <2.0.0", + }, + "package_id": 41, + }, + { + "behavior": { + "peer": true, + }, + "id": 821, + "literal": ">= 4.21.0", + "name": "browserslist", + "npm": { + "name": "browserslist", + "version": ">=4.21.0", + }, + "package_id": 436, + }, + { + "behavior": { + "normal": true, + }, + "id": 822, + "literal": "*", + "name": "@types/react", + "npm": { + "name": "@types/react", + "version": ">=0.0.0", + }, + "package_id": 441, + }, + { + "behavior": { + "normal": true, + }, + "id": 823, + "literal": "*", + "name": "@types/prop-types", + "npm": { + "name": "@types/prop-types", + "version": ">=0.0.0", + }, + "package_id": 444, + }, + { + "behavior": { + "normal": true, + }, + "id": 824, + "literal": "*", + "name": "@types/scheduler", + "npm": { + "name": "@types/scheduler", + "version": ">=0.0.0", + }, + "package_id": 443, + }, + { + "behavior": { + "normal": true, + }, + "id": 825, + "literal": "^3.0.2", + "name": "csstype", + "npm": { + "name": "csstype", + "version": ">=3.0.2 <4.0.0", + }, + "package_id": 442, + }, + ], + "format": "v2", + "meta_hash": "b2cad294acee563595dacd7ac0f31a4573add6541db0fbf935335319adde7a82", + "package_index": { + "@aashutoshrathi/word-wrap": 229, + "@alloc/quick-lru": 83, + "@babel/code-frame": 186, + "@babel/helper-validator-identifier": 195, + "@babel/highlight": 194, + "@babel/runtime": 381, + "@eslint-community/eslint-utils": 285, + "@eslint-community/regexpp": 284, + "@eslint/eslintrc": 282, + "@eslint/js": 281, + "@humanwhocodes/config-array": 279, + "@humanwhocodes/module-importer": 278, + "@humanwhocodes/object-schema": 280, + "@isaacs/cliui": 422, + "@jridgewell/gen-mapping": 24, + "@jridgewell/resolve-uri": 27, + "@jridgewell/set-array": 28, + "@jridgewell/sourcemap-codec": 26, + "@jridgewell/trace-mapping": 25, + "@next/env": 220, + "@next/eslint-plugin-next": 413, + "@next/swc-darwin-arm64": 212, + "@next/swc-darwin-x64": 211, + "@next/swc-linux-arm64-gnu": 210, + "@next/swc-linux-arm64-musl": 209, + "@next/swc-linux-x64-gnu": 208, + "@next/swc-linux-x64-musl": 207, + "@next/swc-win32-arm64-msvc": 206, + "@next/swc-win32-ia32-msvc": 205, + "@next/swc-win32-x64-msvc": 204, + "@nodelib/fs.scandir": 70, + "@nodelib/fs.stat": 73, + "@nodelib/fs.walk": 67, + "@pkgjs/parseargs": 421, + "@puppeteer/browsers": 90, + "@rushstack/eslint-patch": 412, + "@swc/helpers": 219, + "@tootallnate/quickjs-emscripten": 157, + "@types/json5": 388, + "@types/node": 164, + "@types/prop-types": 444, + "@types/react": 441, + "@types/react-dom": 440, + "@types/scheduler": 443, + "@types/yauzl": 163, + "@typescript-eslint/parser": 400, + "@typescript-eslint/scope-manager": 411, + "@typescript-eslint/types": 402, + "@typescript-eslint/typescript-estree": 403, + "@typescript-eslint/visitor-keys": 401, + "acorn": 259, + "acorn-jsx": 258, + "agent-base": 134, + "ajv": 273, + "ansi-regex": [ + 425, + 99, + ], + "ansi-styles": [ + 428, + 107, + 191, + ], + "any-promise": 9, + "anymatch": 81, + "arg": 82, + "argparse": 197, + "aria-query": 380, + "array-buffer-byte-length": 342, + "array-includes": 354, + "array-union": 410, + "array.prototype.findlastindex": 394, + "array.prototype.flat": 352, + "array.prototype.flatmap": 370, + "array.prototype.tosorted": 369, + "arraybuffer.prototype.slice": 341, + "ast-types": 146, + "ast-types-flow": 379, + "asynciterator.prototype": 367, + "autoprefixer": 432, + "available-typed-arrays": 309, + "axe-core": 378, + "axobject-query": 376, + "b4a": 124, + "balanced-match": 19, + "bare-events": 122, + "bare-fs": 118, + "bare-os": 117, + "bare-path": 116, + "base64-js": 114, + "basic-ftp": 156, + "binary-extensions": 80, + "brace-expansion": [ + 419, + 17, + ], + "braces": 56, + "browserslist": 436, + "buffer": 112, + "buffer-crc32": 166, + "bun-types": 431, + "busboy": 217, + "call-bind": 294, + "callsites": 201, + "camelcase-css": 47, + "caniuse-lite": [ + 216, + 435, + ], + "chalk": [ + 270, + 187, + ], + "chokidar": 76, + "chromium-bidi": 178, + "client-only": 214, + "cliui": 105, + "color-convert": [ + 108, + 192, + ], + "color-name": [ + 109, + 193, + ], + "commander": 23, + "concat-map": 18, + "cosmiconfig": 181, + "cross-fetch": 173, + "cross-spawn": 264, + "cssesc": 37, + "csstype": 442, + "damerau-levenshtein": 375, + "data-uri-to-buffer": 155, + "debug": [ + 132, + 391, + ], + "deep-is": 230, + "default-create-template": 0, + "define-data-property": 298, + "define-properties": 301, + "degenerator": 140, + "dequal": 377, + "devtools-protocol": 172, + "didyoumean": 75, + "dir-glob": 408, + "dlv": 74, + "doctrine": [ + 263, + 368, + ], + "eastasianwidth": 427, + "electron-to-chromium": 439, + "emoji-regex": [ + 374, + 101, + ], + "end-of-stream": 126, + "enhanced-resolve": 398, + "env-paths": 202, + "error-ex": 184, + "es-abstract": 304, + "es-iterator-helpers": 355, + "es-set-tostringtag": 340, + "es-shim-unscopables": 353, + "es-to-primitive": 338, + "escalade": 104, + "escape-string-regexp": [ + 262, + 190, + ], + "escodegen": 142, + "eslint": 222, + "eslint-config-next": 221, + "eslint-import-resolver-node": 393, + "eslint-import-resolver-typescript": 395, + "eslint-module-utils": 390, + "eslint-plugin-import": 383, + "eslint-plugin-jsx-a11y": 371, + "eslint-plugin-react": 287, + "eslint-plugin-react-hooks": 286, + "eslint-scope": 260, + "eslint-visitor-keys": 257, + "espree": 256, + "esprima": 141, + "esquery": 255, + "esrecurse": 261, + "estraverse": 145, + "esutils": 144, + "extract-zip": 162, + "fast-deep-equal": 254, + "fast-fifo": 121, + "fast-glob": 64, + "fast-json-stable-stringify": 277, + "fast-levenshtein": 225, + "fastq": 68, + "fd-slicer": 167, + "file-entry-cache": 247, + "fill-range": 57, + "find-up": 241, + "flat-cache": 248, + "flatted": 253, + "for-each": 307, + "foreground-child": 429, + "fraction.js": 434, + "fs-extra": 151, + "fs.realpath": 22, + "fsevents": 77, + "function-bind": 34, + "function.prototype.name": 337, + "functions-have-names": 297, + "get-caller-file": 103, + "get-intrinsic": 291, + "get-stream": 169, + "get-symbol-description": 336, + "get-tsconfig": 396, + "get-uri": 150, + "glob": [ + 414, + 250, + 12, + ], + "glob-parent": [ + 63, + 66, + ], + "globals": 239, + "globalthis": 335, + "globby": 406, + "gopd": 299, + "graceful-fs": 154, + "graphemer": 238, + "has": 33, + "has-bigints": 317, + "has-flag": [ + 272, + 189, + ], + "has-property-descriptors": 296, + "has-proto": 293, + "has-symbols": 292, + "has-tostringtag": 306, + "http-proxy-agent": [ + 160, + 149, + ], + "https-proxy-agent": [ + 159, + 148, + ], + "ieee754": 113, + "ignore": 237, + "import-fresh": 198, + "imurmurhash": 236, + "inflight": 21, + "inherits": 20, + "internal-slot": 303, + "ip": [ + 131, + 139, + ], + "is-array-buffer": 334, + "is-arrayish": 185, + "is-async-function": 366, + "is-bigint": 316, + "is-binary-path": 79, + "is-boolean-object": 315, + "is-callable": 308, + "is-core-module": 32, + "is-date-object": 339, + "is-extglob": 62, + "is-finalizationregistry": 365, + "is-fullwidth-code-point": 100, + "is-generator-function": 364, + "is-glob": 61, + "is-map": 363, + "is-negative-zero": 333, + "is-number": 59, + "is-number-object": 314, + "is-path-inside": 235, + "is-regex": 327, + "is-set": 362, + "is-shared-array-buffer": 332, + "is-string": 313, + "is-symbol": 312, + "is-typed-array": 319, + "is-weakmap": 361, + "is-weakref": 331, + "is-weakset": 360, + "isarray": 329, + "isexe": 266, + "iterator.prototype": 356, + "jackspeak": 420, + "jiti": 60, + "js-tokens": 87, + "js-yaml": 196, + "json-buffer": 252, + "json-parse-even-better-errors": 183, + "json-schema-traverse": 276, + "json-stable-stringify-without-jsonify": 234, + "json5": 387, + "jsonfile": 153, + "jsx-ast-utils": 351, + "keyv": 251, + "language-subtag-registry": 373, + "language-tags": 372, + "levn": 226, + "lilconfig": 45, + "lines-and-columns": 11, + "locate-path": 243, + "lodash.merge": 233, + "loose-envify": 86, + "lru-cache": [ + 417, + 158, + 92, + ], + "merge2": 65, + "micromatch": 54, + "minimatch": [ + 418, + 232, + 16, + ], + "minimist": 386, + "minipass": 416, + "mitt": 180, + "ms": [ + 392, + 133, + ], + "mz": 6, + "nanoid": 42, + "natural-compare": 231, + "netmask": 138, + "next": 203, + "node-fetch": 174, + "node-releases": 438, + "normalize-path": 53, + "normalize-range": 433, + "object-assign": 10, + "object-hash": 52, + "object-inspect": 290, + "object-keys": 302, + "object.assign": 330, + "object.entries": 350, + "object.fromentries": 349, + "object.groupby": 389, + "object.hasown": 348, + "object.values": 347, + "once": 14, + "optionator": 224, + "p-limit": 245, + "p-locate": 244, + "pac-proxy-agent": 136, + "pac-resolver": 137, + "parent-module": 200, + "parse-json": 182, + "path-exists": 242, + "path-is-absolute": 13, + "path-key": 269, + "path-parse": 31, + "path-scurry": 415, + "path-type": 409, + "pend": 168, + "picocolors": 41, + "picomatch": 55, + "pify": 50, + "pirates": 5, + "postcss": [ + 215, + 39, + ], + "postcss-import": 48, + "postcss-js": 46, + "postcss-load-config": 43, + "postcss-nested": 38, + "postcss-selector-parser": 35, + "postcss-value-parser": 51, + "prelude-ls": 228, + "progress": 161, + "prop-types": 345, + "proxy-agent": 127, + "proxy-from-env": 135, + "pump": 125, + "punycode": 275, + "puppeteer": 89, + "puppeteer-core": 170, + "queue-microtask": 72, + "queue-tick": 120, + "react": 88, + "react-dom": 84, + "react-is": 346, + "read-cache": 49, + "readdirp": 78, + "reflect.getprototypeof": 357, + "regenerator-runtime": 382, + "regexp.prototype.flags": 300, + "require-directory": 102, + "resolve": [ + 344, + 29, + ], + "resolve-from": 199, + "resolve-pkg-maps": 397, + "reusify": 69, + "rimraf": 249, + "run-parallel": 71, + "safe-array-concat": 328, + "safe-regex-test": 326, + "scheduler": 85, + "semver": [ + 91, + 405, + 343, + ], + "set-function-name": 295, + "shebang-command": 267, + "shebang-regex": 268, + "side-channel": 289, + "signal-exit": 430, + "slash": 407, + "smart-buffer": 130, + "socks": 129, + "socks-proxy-agent": 128, + "source-map": 143, + "source-map-js": 40, + "streamsearch": 218, + "streamx": 119, + "string-width": [ + 426, + 97, + ], + "string.prototype.matchall": 288, + "string.prototype.trim": 325, + "string.prototype.trimend": 324, + "string.prototype.trimstart": 323, + "strip-ansi": [ + 424, + 98, + ], + "strip-bom": 385, + "strip-json-comments": 283, + "styled-jsx": 213, + "sucrase": 3, + "supports-color": [ + 271, + 188, + ], + "supports-preserve-symlinks-flag": 30, + "tailwindcss": 2, + "tapable": 399, + "tar-fs": 115, + "tar-stream": 123, + "text-table": 223, + "thenify": 8, + "thenify-all": 7, + "through": 111, + "to-regex-range": 58, + "tr46": 177, + "ts-api-utils": 404, + "ts-interface-checker": 4, + "tsconfig-paths": 384, + "tslib": 147, + "type-check": 227, + "type-fest": 240, + "typed-array-buffer": 322, + "typed-array-byte-length": 321, + "typed-array-byte-offset": 320, + "typed-array-length": 318, + "typescript": 1, + "unbox-primitive": 310, + "unbzip2-stream": 110, + "universalify": 152, + "update-browserslist-db": 437, + "uri-js": 274, + "urlpattern-polyfill": 179, + "util-deprecate": 36, + "webidl-conversions": 176, + "whatwg-url": 175, + "which": 265, + "which-boxed-primitive": 311, + "which-builtin-type": 358, + "which-collection": 359, + "which-typed-array": 305, + "wrap-ansi": [ + 423, + 106, + ], + "wrappy": 15, + "ws": 171, + "y18n": 96, + "yallist": 93, + "yaml": 44, + "yargs": 94, + "yargs-parser": 95, + "yauzl": 165, + "yocto-queue": 246, + }, + "packages": [ + { + "bin": null, + "dependencies": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + ], + "id": 0, + "integrity": null, + "man_dir": "", + "name": "default-create-template", + "name_hash": "12362153275604125605", + "origin": "local", + "resolution": { + "tag": "root", + "value": "", + }, + "scripts": { + "postinstall": "cd node_modules/puppeteer && bun install.mjs", + }, + }, + { + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver", + }, + "dependencies": [], + "id": 1, + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "man_dir": "", + "name": "typescript", + "name_hash": "7090219608841397663", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.2", + }, + "scripts": {}, + }, + { + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js", + }, + "dependencies": [ + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + ], + "id": 2, + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "man_dir": "", + "name": "tailwindcss", + "name_hash": "6098981126968834122", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.3", + }, + "scripts": {}, + }, + { + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node", + }, + "dependencies": [ + 36, + 37, + 38, + 39, + 40, + 41, + 42, + ], + "id": 3, + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "man_dir": "", + "name": "sucrase", + "name_hash": "8220562023141918134", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.34.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 4, + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "man_dir": "", + "name": "ts-interface-checker", + "name_hash": "9090669025631097322", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 5, + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "man_dir": "", + "name": "pirates", + "name_hash": "11463431525122174591", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 43, + 44, + 45, + ], + "id": 6, + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "man_dir": "", + "name": "mz", + "name_hash": "4860889167171965650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 46, + ], + "id": 7, + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "man_dir": "", + "name": "thenify-all", + "name_hash": "3497577183623575301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 47, + ], + "id": 8, + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "man_dir": "", + "name": "thenify", + "name_hash": "10214550608932566002", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 9, + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "man_dir": "", + "name": "any-promise", + "name_hash": "992496519212496549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 10, + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "man_dir": "", + "name": "object-assign", + "name_hash": "741501977461426514", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 11, + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "man_dir": "", + "name": "lines-and-columns", + "name_hash": "8731744980636261242", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 48, + 49, + 50, + 51, + 52, + 53, + ], + "id": 12, + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 13, + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "man_dir": "", + "name": "path-is-absolute", + "name_hash": "8164005222338448325", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 54, + ], + "id": 14, + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "man_dir": "", + "name": "once", + "name_hash": "748011609921859784", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 15, + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "man_dir": "", + "name": "wrappy", + "name_hash": "18119806661187706052", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 55, + ], + "id": 16, + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 56, + 57, + ], + "id": 17, + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 18, + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "man_dir": "", + "name": "concat-map", + "name_hash": "8706867752641269193", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 19, + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "man_dir": "", + "name": "balanced-match", + "name_hash": "16269801611404267863", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 20, + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "man_dir": "", + "name": "inherits", + "name_hash": "7481850175542696465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 58, + 59, + ], + "id": 21, + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "man_dir": "", + "name": "inflight", + "name_hash": "15335006233399436565", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 22, + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "man_dir": "", + "name": "fs.realpath", + "name_hash": "913835373532407557", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 23, + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "man_dir": "", + "name": "commander", + "name_hash": "5281338156924866262", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 60, + 61, + 62, + ], + "id": 24, + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "man_dir": "", + "name": "@jridgewell/gen-mapping", + "name_hash": "7763226208333403547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 63, + 64, + ], + "id": 25, + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "man_dir": "", + "name": "@jridgewell/trace-mapping", + "name_hash": "9132244357866713465", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.19", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 26, + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "man_dir": "", + "name": "@jridgewell/sourcemap-codec", + "name_hash": "11082572525356782073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 27, + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "man_dir": "", + "name": "@jridgewell/resolve-uri", + "name_hash": "15732631652601645408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 28, + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "man_dir": "", + "name": "@jridgewell/set-array", + "name_hash": "10956470817798356705", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 65, + 66, + 67, + ], + "id": 29, + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 30, + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "man_dir": "", + "name": "supports-preserve-symlinks-flag", + "name_hash": "7228670803640303868", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 31, + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "man_dir": "", + "name": "path-parse", + "name_hash": "13352954276207767683", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 68, + ], + "id": 32, + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "man_dir": "", + "name": "is-core-module", + "name_hash": "2115564247595772579", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.13.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 69, + ], + "id": 33, + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "man_dir": "", + "name": "has", + "name_hash": "10277371301110365577", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 34, + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "man_dir": "", + "name": "function-bind", + "name_hash": "844545262680185243", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 70, + 71, + ], + "id": 35, + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "man_dir": "", + "name": "postcss-selector-parser", + "name_hash": "8882225543017639620", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 36, + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "man_dir": "", + "name": "util-deprecate", + "name_hash": "4033437044928033698", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/cssesc", + "name": "cssesc", + }, + "dependencies": [], + "id": 37, + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "man_dir": "", + "name": "cssesc", + "name_hash": "11039868621287934035", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 72, + 73, + ], + "id": 38, + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "man_dir": "", + "name": "postcss-nested", + "name_hash": "13580188021191584601", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 74, + 75, + 76, + ], + "id": 39, + "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.30", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 40, + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "man_dir": "", + "name": "source-map-js", + "name_hash": "6679519744659543339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 41, + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "man_dir": "", + "name": "picocolors", + "name_hash": "8945456956643510643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/nanoid.cjs", + "name": "nanoid", + }, + "dependencies": [], + "id": 42, + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "man_dir": "", + "name": "nanoid", + "name_hash": "10076454668178771807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 77, + 78, + 79, + 80, + ], + "id": 43, + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "man_dir": "", + "name": "postcss-load-config", + "name_hash": "11124459238108428623", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 44, + "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==", + "man_dir": "", + "name": "yaml", + "name_hash": "6823399114509449780", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 45, + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "man_dir": "", + "name": "lilconfig", + "name_hash": "17464546908434930808", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 81, + 82, + ], + "id": 46, + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "man_dir": "", + "name": "postcss-js", + "name_hash": "51201709044640027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 47, + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "man_dir": "", + "name": "camelcase-css", + "name_hash": "11196719252326564430", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 83, + 84, + 85, + 86, + ], + "id": 48, + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "man_dir": "", + "name": "postcss-import", + "name_hash": "3854262770217217840", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 87, + ], + "id": 49, + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "man_dir": "", + "name": "read-cache", + "name_hash": "10142894349910084417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 50, + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "man_dir": "", + "name": "pify", + "name_hash": "516088454160206643", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 51, + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "man_dir": "", + "name": "postcss-value-parser", + "name_hash": "4513255719471974821", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 52, + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "man_dir": "", + "name": "object-hash", + "name_hash": "14333069055553598090", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 53, + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "man_dir": "", + "name": "normalize-path", + "name_hash": "7972932911556789884", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 88, + 89, + ], + "id": 54, + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "man_dir": "", + "name": "micromatch", + "name_hash": "14650745430569414123", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 55, + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "man_dir": "", + "name": "picomatch", + "name_hash": "17753630613781110869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 90, + ], + "id": 56, + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "man_dir": "", + "name": "braces", + "name_hash": "2299021338542085312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 91, + ], + "id": 57, + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "man_dir": "", + "name": "fill-range", + "name_hash": "7508926416461820733", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 92, + ], + "id": 58, + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "man_dir": "", + "name": "to-regex-range", + "name_hash": "14243204250463262724", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 59, + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "man_dir": "", + "name": "is-number", + "name_hash": "17443668381655379754", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/jiti.js", + "name": "jiti", + }, + "dependencies": [], + "id": 60, + "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==", + "man_dir": "", + "name": "jiti", + "name_hash": "13838530331656232073", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.20.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 93, + ], + "id": 61, + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "man_dir": "", + "name": "is-glob", + "name_hash": "3852072119137895543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 62, + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "man_dir": "", + "name": "is-extglob", + "name_hash": "3738840382836940042", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 94, + ], + "id": 63, + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 95, + 96, + 97, + 98, + 99, + ], + "id": 64, + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "man_dir": "", + "name": "fast-glob", + "name_hash": "1878427088820911921", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 65, + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "man_dir": "", + "name": "merge2", + "name_hash": "10405164528992167668", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 100, + ], + "id": 66, + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "man_dir": "", + "name": "glob-parent", + "name_hash": "11965780159102682782", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 101, + 102, + ], + "id": 67, + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "man_dir": "", + "name": "@nodelib/fs.walk", + "name_hash": "5339111073806757055", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 103, + ], + "id": 68, + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "man_dir": "", + "name": "fastq", + "name_hash": "6741130188853797494", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 69, + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "man_dir": "", + "name": "reusify", + "name_hash": "6641847649693934607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 104, + 105, + ], + "id": 70, + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "man_dir": "", + "name": "@nodelib/fs.scandir", + "name_hash": "3021833276702395597", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 106, + ], + "id": 71, + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "man_dir": "", + "name": "run-parallel", + "name_hash": "12083900303949760391", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 72, + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "man_dir": "", + "name": "queue-microtask", + "name_hash": "5425309755386634043", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 73, + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "man_dir": "", + "name": "@nodelib/fs.stat", + "name_hash": "16125660444744770699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 74, + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "man_dir": "", + "name": "dlv", + "name_hash": "6290291366792823487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 75, + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "man_dir": "", + "name": "didyoumean", + "name_hash": "3290316626148068785", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + ], + "id": 76, + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "man_dir": "", + "name": "chokidar", + "name_hash": "13416011201726038119", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 77, + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "man_dir": "", + "name": "fsevents", + "name_hash": "16035328728645144760", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "2.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 115, + ], + "id": 78, + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "man_dir": "", + "name": "readdirp", + "name_hash": "10039124027740987170", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 116, + ], + "id": 79, + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "man_dir": "", + "name": "is-binary-path", + "name_hash": "10002650304558927684", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 80, + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "man_dir": "", + "name": "binary-extensions", + "name_hash": "17194422772331613284", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 117, + 118, + ], + "id": 81, + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "man_dir": "", + "name": "anymatch", + "name_hash": "13083778620000400888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 82, + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "man_dir": "", + "name": "arg", + "name_hash": "2472924048160638220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 83, + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "man_dir": "", + "name": "@alloc/quick-lru", + "name_hash": "11323404221389353756", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 119, + 120, + 121, + ], + "id": 84, + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "man_dir": "", + "name": "react-dom", + "name_hash": "7373667379151837307", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 122, + ], + "id": 85, + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "man_dir": "", + "name": "scheduler", + "name_hash": "6246319597786948434", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "loose-envify", + }, + "dependencies": [ + 123, + ], + "id": 86, + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "man_dir": "", + "name": "loose-envify", + "name_hash": "3112622411417245442", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 87, + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "man_dir": "", + "name": "js-tokens", + "name_hash": "8072375596980283624", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 124, + ], + "id": 88, + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "man_dir": "", + "name": "react", + "name_hash": "10719851453835962256", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/esm/puppeteer/node/cli.js", + "name": "puppeteer", + }, + "dependencies": [ + 125, + 126, + 127, + ], + "id": 89, + "integrity": "sha512-Mag1wRLanzwS4yEUyrDRBUgsKlH3dpL6oAfVwNHG09oxd0+ySsatMvYj7HwjynWy/S+Hg+XHLgjyC/F6CsL/lg==", + "man_dir": "", + "name": "puppeteer", + "name_hash": "13072297456933147981", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cjs/main-cli.js", + "name": "browsers", + }, + "dependencies": [ + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + ], + "id": 90, + "integrity": "sha512-xloWvocjvryHdUjDam/ZuGMh7zn4Sn3ZAaV4Ah2e2EwEt90N3XphZlSsU3n0VDc1F7kggCjMuH0UuxfPQ5mD9w==", + "man_dir": "", + "name": "@puppeteer/browsers", + "name_hash": "6318517029770692415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 136, + ], + "id": 91, + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 137, + ], + "id": 92, + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 93, + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "man_dir": "", + "name": "yallist", + "name_hash": "17447362886122903538", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 138, + 139, + 140, + 141, + 142, + 143, + 144, + ], + "id": 94, + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "man_dir": "", + "name": "yargs", + "name_hash": "18153588124555602831", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "17.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 95, + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "man_dir": "", + "name": "yargs-parser", + "name_hash": "2624058701233809213", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "21.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 96, + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "man_dir": "", + "name": "y18n", + "name_hash": "13867919047397601860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 145, + 146, + 147, + ], + "id": 97, + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 148, + ], + "id": 98, + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 99, + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 100, + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "man_dir": "", + "name": "is-fullwidth-code-point", + "name_hash": "11413228031333986220", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 101, + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 102, + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "man_dir": "", + "name": "require-directory", + "name_hash": "6781837652461215204", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 103, + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "man_dir": "", + "name": "get-caller-file", + "name_hash": "1638769084888476079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 104, + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "man_dir": "", + "name": "escalade", + "name_hash": "6879348821336485116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 149, + 150, + 151, + ], + "id": 105, + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "man_dir": "", + "name": "cliui", + "name_hash": "5778858105899329304", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 152, + 153, + 154, + ], + "id": 106, + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 155, + ], + "id": 107, + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 156, + ], + "id": 108, + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 109, + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 157, + 158, + ], + "id": 110, + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "man_dir": "", + "name": "unbzip2-stream", + "name_hash": "12033811216485982774", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 111, + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "man_dir": "", + "name": "through", + "name_hash": "16941386786386382390", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 159, + 160, + ], + "id": 112, + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "man_dir": "", + "name": "buffer", + "name_hash": "10358694932499417541", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 113, + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "man_dir": "", + "name": "ieee754", + "name_hash": "17889458061139334532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 114, + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "man_dir": "", + "name": "base64-js", + "name_hash": "14626266614050083415", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 161, + 162, + 163, + 164, + ], + "id": 115, + "integrity": "sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==", + "man_dir": "", + "name": "tar-fs", + "name_hash": "14440968244754303214", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 165, + ], + "id": 116, + "integrity": "sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==", + "man_dir": "", + "name": "bare-path", + "name_hash": "12654746909665824402", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 117, + "integrity": "sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==", + "man_dir": "", + "name": "bare-os", + "name_hash": "6865937522145537276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 166, + 167, + 168, + 169, + ], + "id": 118, + "integrity": "sha512-+CjmZANQDFZWy4PGbVdmALIwmt33aJg8qTkVjClU6X4WmZkTPBDxRHiBn7fpqEWEfF3AC2io++erpViAIQbSjg==", + "man_dir": "", + "name": "bare-fs", + "name_hash": "15205712258788157948", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 170, + 171, + ], + "id": 119, + "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "man_dir": "", + "name": "streamx", + "name_hash": "74555136203185339", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.15.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 120, + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "man_dir": "", + "name": "queue-tick", + "name_hash": "9246306848360353145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 121, + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "man_dir": "", + "name": "fast-fifo", + "name_hash": "1244249015522350723", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 122, + "integrity": "sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==", + "man_dir": "", + "name": "bare-events", + "name_hash": "4035129451839648869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 172, + 173, + 174, + ], + "id": 123, + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "man_dir": "", + "name": "tar-stream", + "name_hash": "14255302179190904139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 124, + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "man_dir": "", + "name": "b4a", + "name_hash": "10649709558693226266", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 175, + 176, + ], + "id": 125, + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "man_dir": "", + "name": "pump", + "name_hash": "7040703475696644678", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 177, + ], + "id": 126, + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "man_dir": "", + "name": "end-of-stream", + "name_hash": "17455588742510412071", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + ], + "id": 127, + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", + "man_dir": "", + "name": "proxy-agent", + "name_hash": "9904923658574585845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 186, + 187, + 188, + ], + "id": 128, + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "man_dir": "", + "name": "socks-proxy-agent", + "name_hash": "11921171134012595164", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 189, + 190, + ], + "id": 129, + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "man_dir": "", + "name": "socks", + "name_hash": "16884970381877539768", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 130, + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "man_dir": "", + "name": "smart-buffer", + "name_hash": "9798348771309838398", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 131, + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 191, + ], + "id": 132, + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 133, + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 192, + ], + "id": 134, + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "man_dir": "", + "name": "agent-base", + "name_hash": "17689920659035782501", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 135, + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "man_dir": "", + "name": "proxy-from-env", + "name_hash": "1270194980615207566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + ], + "id": 136, + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "man_dir": "", + "name": "pac-proxy-agent", + "name_hash": "818729749152565950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 201, + 202, + 203, + ], + "id": 137, + "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "man_dir": "", + "name": "pac-resolver", + "name_hash": "12373948793919354804", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 138, + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "man_dir": "", + "name": "netmask", + "name_hash": "16100660929392435651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 139, + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "man_dir": "", + "name": "ip", + "name_hash": "14496311651183982622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 204, + 205, + 206, + ], + "id": 140, + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "man_dir": "", + "name": "degenerator", + "name_hash": "8612146826381285798", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js", + }, + "dependencies": [], + "id": 141, + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "man_dir": "", + "name": "esprima", + "name_hash": "16070041258147025859", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.1", + }, + "scripts": {}, + }, + { + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js", + }, + "dependencies": [ + 207, + 208, + 209, + 210, + ], + "id": 142, + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "man_dir": "", + "name": "escodegen", + "name_hash": "7568564790816534200", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 143, + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "man_dir": "", + "name": "source-map", + "name_hash": "15131286332489002212", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 144, + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "man_dir": "", + "name": "esutils", + "name_hash": "7981716078883515000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 145, + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "man_dir": "", + "name": "estraverse", + "name_hash": "14401618193000185195", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 211, + ], + "id": 146, + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "man_dir": "", + "name": "ast-types", + "name_hash": "4997596490212765360", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.13.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 147, + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "man_dir": "", + "name": "tslib", + "name_hash": "17922945129469812550", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 212, + 213, + ], + "id": 148, + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 214, + 215, + ], + "id": 149, + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 216, + 217, + 218, + 219, + ], + "id": 150, + "integrity": "sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==", + "man_dir": "", + "name": "get-uri", + "name_hash": "4377287927338690314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 220, + 221, + 222, + ], + "id": 151, + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "man_dir": "", + "name": "fs-extra", + "name_hash": "2453474818627632477", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 152, + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "man_dir": "", + "name": "universalify", + "name_hash": "9857909289728530428", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 223, + ], + "id": 153, + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "man_dir": "", + "name": "jsonfile", + "name_hash": "16030246458379256651", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 154, + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "man_dir": "", + "name": "graceful-fs", + "name_hash": "8654400277002734136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.2.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 155, + "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", + "man_dir": "", + "name": "data-uri-to-buffer", + "name_hash": "14979328150197748023", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 156, + "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "man_dir": "", + "name": "basic-ftp", + "name_hash": "3294105759639631117", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 157, + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "man_dir": "", + "name": "@tootallnate/quickjs-emscripten", + "name_hash": "5414003337280545145", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.23.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 158, + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.18.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 224, + 225, + ], + "id": 159, + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "man_dir": "", + "name": "https-proxy-agent", + "name_hash": "6012108288334718116", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 226, + 227, + ], + "id": 160, + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "man_dir": "", + "name": "http-proxy-agent", + "name_hash": "9762732492936976178", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 161, + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "man_dir": "", + "name": "progress", + "name_hash": "11283104389794780362", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "extract-zip", + }, + "dependencies": [ + 228, + 229, + 230, + 231, + ], + "id": 162, + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "man_dir": "", + "name": "extract-zip", + "name_hash": "8810061046982445994", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 232, + ], + "id": 163, + "integrity": "sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==", + "man_dir": "", + "name": "@types/yauzl", + "name_hash": "10273980999870455328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 164, + "integrity": "sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==", + "man_dir": "", + "name": "@types/node", + "name_hash": "4124652010926124945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "20.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 233, + 234, + ], + "id": 165, + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "man_dir": "", + "name": "yauzl", + "name_hash": "7329914562904170092", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 166, + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "man_dir": "", + "name": "buffer-crc32", + "name_hash": "4553253441045318076", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 235, + ], + "id": 167, + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "man_dir": "", + "name": "fd-slicer", + "name_hash": "10851489456408334660", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 168, + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "man_dir": "", + "name": "pend", + "name_hash": "11550940272933590184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 236, + ], + "id": 169, + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "man_dir": "", + "name": "get-stream", + "name_hash": "13254119490064412968", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 237, + 238, + 239, + 240, + 241, + 242, + ], + "id": 170, + "integrity": "sha512-l9nf8NcirYOHdID12CIMWyy7dqcJCVtgVS+YAiJuUJHg8+9yjgPiG2PcNhojIEEpCkvw3FxvnyITVfKVmkWpjA==", + "man_dir": "", + "name": "puppeteer-core", + "name_hash": "10954685796294859150", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "22.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 243, + 244, + ], + "id": 171, + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "man_dir": "", + "name": "ws", + "name_hash": "14644737011329074183", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.16.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 172, + "integrity": "sha512-Ctp4hInA0BEavlUoRy9mhGq0i+JSo/AwVyX2EFgZmV1kYB+Zq+EMBAn52QWu6FbRr10hRb6pBl420upbp4++vg==", + "man_dir": "", + "name": "devtools-protocol", + "name_hash": "12159960943916763407", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1249869", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 245, + ], + "id": 173, + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", + "man_dir": "", + "name": "cross-fetch", + "name_hash": "5665307032371542913", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 246, + 247, + ], + "id": 174, + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "man_dir": "", + "name": "node-fetch", + "name_hash": "9368364337257117328", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.7.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 248, + 249, + ], + "id": 175, + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "man_dir": "", + "name": "whatwg-url", + "name_hash": "15436316526856444177", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 176, + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "man_dir": "", + "name": "webidl-conversions", + "name_hash": "5343883202058398372", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 177, + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "man_dir": "", + "name": "tr46", + "name_hash": "4865213169840252474", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 250, + 251, + 252, + ], + "id": 178, + "integrity": "sha512-sZMgEBWKbupD0Q7lyFu8AWkrE+rs5ycE12jFkGwIgD/VS8lDPtelPlXM7LYaq4zrkZ/O2L3f4afHUHL0ICdKog==", + "man_dir": "", + "name": "chromium-bidi", + "name_hash": "17738832193826713561", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 179, + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", + "man_dir": "", + "name": "urlpattern-polyfill", + "name_hash": "11822535153800140816", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 180, + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "man_dir": "", + "name": "mitt", + "name_hash": "8939019029139500810", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 253, + 254, + 255, + 256, + 257, + ], + "id": 181, + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "man_dir": "", + "name": "cosmiconfig", + "name_hash": "6870876620368412607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 258, + 259, + 260, + 261, + ], + "id": 182, + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "man_dir": "", + "name": "parse-json", + "name_hash": "10803339664298030440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 183, + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "man_dir": "", + "name": "json-parse-even-better-errors", + "name_hash": "13977239420854766139", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 262, + ], + "id": 184, + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "man_dir": "", + "name": "error-ex", + "name_hash": "10994745590019451357", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 185, + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "man_dir": "", + "name": "is-arrayish", + "name_hash": "2568751720667967222", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 263, + 264, + ], + "id": 186, + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "man_dir": "", + "name": "@babel/code-frame", + "name_hash": "6188048000334411082", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 265, + 266, + 267, + ], + "id": 187, + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.4.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 268, + ], + "id": 188, + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 189, + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 190, + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 269, + ], + "id": 191, + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 270, + ], + "id": 192, + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "man_dir": "", + "name": "color-convert", + "name_hash": "4039459761306235234", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 193, + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "man_dir": "", + "name": "color-name", + "name_hash": "16546212153853106385", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 271, + 272, + 273, + ], + "id": 194, + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "man_dir": "", + "name": "@babel/highlight", + "name_hash": "1462121684300951999", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 195, + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "man_dir": "", + "name": "@babel/helper-validator-identifier", + "name_hash": "13229699169636733158", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.22.20", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/js-yaml.js", + "name": "js-yaml", + }, + "dependencies": [ + 274, + ], + "id": 196, + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "man_dir": "", + "name": "js-yaml", + "name_hash": "192709174173096334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 197, + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "man_dir": "", + "name": "argparse", + "name_hash": "14330104742551621378", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 275, + 276, + ], + "id": 198, + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "man_dir": "", + "name": "import-fresh", + "name_hash": "11575749002643879646", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 199, + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "man_dir": "", + "name": "resolve-from", + "name_hash": "3749267992243009772", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 277, + ], + "id": 200, + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "man_dir": "", + "name": "parent-module", + "name_hash": "2665996815938625963", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 201, + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "man_dir": "", + "name": "callsites", + "name_hash": "3613437260212473067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 202, + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "man_dir": "", + "name": "env-paths", + "name_hash": "763024076902060186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/bin/next", + "name": "next", + }, + "dependencies": [ + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + ], + "id": 203, + "integrity": "sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==", + "man_dir": "", + "name": "next", + "name_hash": "11339591345958603137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 204, + "integrity": "sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==", + "man_dir": "", + "name": "@next/swc-win32-x64-msvc", + "name_hash": "9647815457301330905", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "ia32", + ], + "bin": null, + "dependencies": [], + "id": 205, + "integrity": "sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==", + "man_dir": "", + "name": "@next/swc-win32-ia32-msvc", + "name_hash": "9252805468461829479", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 206, + "integrity": "sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==", + "man_dir": "", + "name": "@next/swc-win32-arm64-msvc", + "name_hash": "2162381238028589388", + "origin": "npm", + "os": [ + "win32", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 207, + "integrity": "sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==", + "man_dir": "", + "name": "@next/swc-linux-x64-musl", + "name_hash": "2579566733029863568", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 208, + "integrity": "sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==", + "man_dir": "", + "name": "@next/swc-linux-x64-gnu", + "name_hash": "300847313706189527", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 209, + "integrity": "sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-musl", + "name_hash": "10617419930187892296", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 210, + "integrity": "sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==", + "man_dir": "", + "name": "@next/swc-linux-arm64-gnu", + "name_hash": "11020036790013624239", + "origin": "npm", + "os": [ + "linux", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "x64", + ], + "bin": null, + "dependencies": [], + "id": 211, + "integrity": "sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==", + "man_dir": "", + "name": "@next/swc-darwin-x64", + "name_hash": "6382492463773593985", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "arch": [ + "arm64", + ], + "bin": null, + "dependencies": [], + "id": 212, + "integrity": "sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==", + "man_dir": "", + "name": "@next/swc-darwin-arm64", + "name_hash": "2189808260783691934", + "origin": "npm", + "os": [ + "darwin", + ], + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 298, + 299, + ], + "id": 213, + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "man_dir": "", + "name": "styled-jsx", + "name_hash": "3150382730046383618", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 214, + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "man_dir": "", + "name": "client-only", + "name_hash": "8802229738477874888", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 300, + 301, + 302, + ], + "id": 215, + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "man_dir": "", + "name": "postcss", + "name_hash": "9297766010604904796", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.4.31", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 216, + "integrity": "sha512-zpkZ+kEr6We7w63ORkoJ2pOfBwBkY/bJrG/UZ90qNb45Isblu8wzDgevEOrRL1r9dWayHjYiiyCMEXPn4DweGQ==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001596", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 303, + ], + "id": 217, + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "man_dir": "", + "name": "busboy", + "name_hash": "12056783266830520862", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 218, + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "man_dir": "", + "name": "streamsearch", + "name_hash": "16767345128201185654", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 304, + ], + "id": 219, + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "man_dir": "", + "name": "@swc/helpers", + "name_hash": "6882297182432941771", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.5.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 220, + "integrity": "sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==", + "man_dir": "", + "name": "@next/env", + "name_hash": "14533567151760189614", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + ], + "id": 221, + "integrity": "sha512-sUCpWlGuHpEhI0pIT0UtdSLJk5Z8E2DYinPTwsBiWaSYQomchdl0i60pjynY48+oXvtyWMQ7oE+G3m49yrfacg==", + "man_dir": "", + "name": "eslint-config-next", + "name_hash": "7198338977897397487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/eslint.js", + "name": "eslint", + }, + "dependencies": [ + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + ], + "id": 222, + "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", + "man_dir": "", + "name": "eslint", + "name_hash": "17917589463370847417", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 223, + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "man_dir": "", + "name": "text-table", + "name_hash": "8812171258786601301", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 353, + 354, + 355, + 356, + 357, + 358, + ], + "id": 224, + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "man_dir": "", + "name": "optionator", + "name_hash": "13855909686375249440", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.9.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 225, + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "man_dir": "", + "name": "fast-levenshtein", + "name_hash": "12342460047873653112", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 359, + 360, + ], + "id": 226, + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "man_dir": "", + "name": "levn", + "name_hash": "9969646077825321011", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 361, + ], + "id": 227, + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "man_dir": "", + "name": "type-check", + "name_hash": "14488857500191659576", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 228, + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "man_dir": "", + "name": "prelude-ls", + "name_hash": "2714658211020917171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 229, + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "man_dir": "", + "name": "@aashutoshrathi/word-wrap", + "name_hash": "17707028160503038136", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 230, + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "man_dir": "", + "name": "deep-is", + "name_hash": "4678193845338186713", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 231, + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "man_dir": "", + "name": "natural-compare", + "name_hash": "10983874298500943893", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 362, + ], + "id": 232, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 233, + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "man_dir": "", + "name": "lodash.merge", + "name_hash": "1968752870223903086", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 234, + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "man_dir": "", + "name": "json-stable-stringify-without-jsonify", + "name_hash": "14534225541412166230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 235, + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "man_dir": "", + "name": "is-path-inside", + "name_hash": "11945178255920368404", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 236, + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "man_dir": "", + "name": "imurmurhash", + "name_hash": "16912020589681053487", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 237, + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "man_dir": "", + "name": "ignore", + "name_hash": "7684941795926889194", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.2.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 238, + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "man_dir": "", + "name": "graphemer", + "name_hash": "10355618371909736900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 363, + ], + "id": 239, + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "man_dir": "", + "name": "globals", + "name_hash": "15143409006866382382", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "13.22.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 240, + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "man_dir": "", + "name": "type-fest", + "name_hash": "14668870911319020225", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.20.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 364, + 365, + ], + "id": 241, + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "man_dir": "", + "name": "find-up", + "name_hash": "8309621910990874126", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 242, + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "man_dir": "", + "name": "path-exists", + "name_hash": "12097053851796077639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 366, + ], + "id": 243, + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "man_dir": "", + "name": "locate-path", + "name_hash": "14390144719475396950", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 367, + ], + "id": 244, + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "man_dir": "", + "name": "p-locate", + "name_hash": "9693850335197275095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 368, + ], + "id": 245, + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "man_dir": "", + "name": "p-limit", + "name_hash": "3083404427706523125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 246, + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "man_dir": "", + "name": "yocto-queue", + "name_hash": "9034931028572940079", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 369, + ], + "id": 247, + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "man_dir": "", + "name": "file-entry-cache", + "name_hash": "7451434054063451186", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 370, + 371, + 372, + ], + "id": 248, + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "man_dir": "", + "name": "flat-cache", + "name_hash": "1109822261564484039", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin.js", + "name": "rimraf", + }, + "dependencies": [ + 373, + ], + "id": 249, + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "man_dir": "", + "name": "rimraf", + "name_hash": "6866739241594583209", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 374, + 375, + 376, + 377, + 378, + 379, + ], + "id": 250, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 380, + ], + "id": 251, + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "man_dir": "", + "name": "keyv", + "name_hash": "11030851470615570686", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.5.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 252, + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "man_dir": "", + "name": "json-buffer", + "name_hash": "5720297936225446253", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 253, + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "man_dir": "", + "name": "flatted", + "name_hash": "12258717572737769681", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 254, + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "man_dir": "", + "name": "fast-deep-equal", + "name_hash": "12371535360781568025", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 381, + ], + "id": 255, + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "man_dir": "", + "name": "esquery", + "name_hash": "7289272869223478230", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 382, + 383, + 384, + ], + "id": 256, + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "man_dir": "", + "name": "espree", + "name_hash": "3641367103187261350", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 257, + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "man_dir": "", + "name": "eslint-visitor-keys", + "name_hash": "17830281265467207399", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.4.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 385, + ], + "id": 258, + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "man_dir": "", + "name": "acorn-jsx", + "name_hash": "1754355278825952408", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.2", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/acorn", + "name": "acorn", + }, + "dependencies": [], + "id": 259, + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "man_dir": "", + "name": "acorn", + "name_hash": "17430233180242180057", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.10.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 386, + 387, + ], + "id": 260, + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "man_dir": "", + "name": "eslint-scope", + "name_hash": "17629221228476930459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 388, + ], + "id": 261, + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "man_dir": "", + "name": "esrecurse", + "name_hash": "17661314847727534689", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 262, + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "man_dir": "", + "name": "escape-string-regexp", + "name_hash": "6183299340420948366", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 389, + ], + "id": 263, + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 390, + 391, + 392, + ], + "id": 264, + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "man_dir": "", + "name": "cross-spawn", + "name_hash": "12444485756966960720", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "./bin/node-which", + "name": "node-which", + }, + "dependencies": [ + 393, + ], + "id": 265, + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "man_dir": "", + "name": "which", + "name_hash": "5112236092670504396", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 266, + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "man_dir": "", + "name": "isexe", + "name_hash": "15558268014059531432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 394, + ], + "id": 267, + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "man_dir": "", + "name": "shebang-command", + "name_hash": "9009661312948442432", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 268, + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "man_dir": "", + "name": "shebang-regex", + "name_hash": "18053981199157160202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 269, + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "man_dir": "", + "name": "path-key", + "name_hash": "665497923999462354", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 395, + 396, + ], + "id": 270, + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "man_dir": "", + "name": "chalk", + "name_hash": "15590360526536958927", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 397, + ], + "id": 271, + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "man_dir": "", + "name": "supports-color", + "name_hash": "8283007902753735493", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 272, + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "man_dir": "", + "name": "has-flag", + "name_hash": "14617373831546330259", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 398, + 399, + 400, + 401, + ], + "id": 273, + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "man_dir": "", + "name": "ajv", + "name_hash": "4704814928422522869", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.12.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 402, + ], + "id": 274, + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "man_dir": "", + "name": "uri-js", + "name_hash": "9694608825335680295", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 275, + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "man_dir": "", + "name": "punycode", + "name_hash": "6702779252101758505", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 276, + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "man_dir": "", + "name": "json-schema-traverse", + "name_hash": "686899269284038873", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.4.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 277, + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "man_dir": "", + "name": "fast-json-stable-stringify", + "name_hash": "5172613188748066692", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 278, + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "man_dir": "", + "name": "@humanwhocodes/module-importer", + "name_hash": "12456817044413428026", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 403, + 404, + 405, + ], + "id": 279, + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "man_dir": "", + "name": "@humanwhocodes/config-array", + "name_hash": "4378208149395492413", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 280, + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "man_dir": "", + "name": "@humanwhocodes/object-schema", + "name_hash": "8965646483962562622", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 281, + "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", + "man_dir": "", + "name": "@eslint/js", + "name_hash": "14520481844909638934", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.50.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + ], + "id": 282, + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "man_dir": "", + "name": "@eslint/eslintrc", + "name_hash": "12097048422266797669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 283, + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "man_dir": "", + "name": "strip-json-comments", + "name_hash": "3826326773345398095", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 284, + "integrity": "sha512-0MGxAVt1m/ZK+LTJp/j0qF7Hz97D9O/FH9Ms3ltnyIdDD57cbb1ACIQTkbHvNXtWDv5TPq7w5Kq56+cNukbo7g==", + "man_dir": "", + "name": "@eslint-community/regexpp", + "name_hash": "633405221675698401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 415, + 416, + ], + "id": 285, + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "man_dir": "", + "name": "@eslint-community/eslint-utils", + "name_hash": "17370105237013380211", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 417, + ], + "id": 286, + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "man_dir": "", + "name": "eslint-plugin-react-hooks", + "name_hash": "14057422571669714006", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.6.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + ], + "id": 287, + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "man_dir": "", + "name": "eslint-plugin-react", + "name_hash": "15811917473959571682", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.33.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + ], + "id": 288, + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "man_dir": "", + "name": "string.prototype.matchall", + "name_hash": "3859254092910215586", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 444, + 445, + 446, + ], + "id": 289, + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "man_dir": "", + "name": "side-channel", + "name_hash": "9070404613470426637", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 290, + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "man_dir": "", + "name": "object-inspect", + "name_hash": "956383507377191237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.12.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 447, + 448, + 449, + 450, + ], + "id": 291, + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "man_dir": "", + "name": "get-intrinsic", + "name_hash": "2906428234746671084", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 292, + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "man_dir": "", + "name": "has-symbols", + "name_hash": "11738213668566965255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 293, + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "man_dir": "", + "name": "has-proto", + "name_hash": "14548784663137950749", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 451, + 452, + ], + "id": 294, + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "man_dir": "", + "name": "call-bind", + "name_hash": "12438735438837079615", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 453, + 454, + 455, + ], + "id": 295, + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "man_dir": "", + "name": "set-function-name", + "name_hash": "15255527540049710000", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 456, + ], + "id": 296, + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "man_dir": "", + "name": "has-property-descriptors", + "name_hash": "4664477375836720802", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 297, + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "man_dir": "", + "name": "functions-have-names", + "name_hash": "2705786889099279986", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 457, + 458, + 459, + ], + "id": 298, + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "man_dir": "", + "name": "define-data-property", + "name_hash": "11872812789934333141", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 460, + ], + "id": 299, + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "man_dir": "", + "name": "gopd", + "name_hash": "11067429752147099645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 461, + 462, + 463, + ], + "id": 300, + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "man_dir": "", + "name": "regexp.prototype.flags", + "name_hash": "1450419609126993699", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.5.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 464, + 465, + 466, + ], + "id": 301, + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "man_dir": "", + "name": "define-properties", + "name_hash": "6291091409189323848", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 302, + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "man_dir": "", + "name": "object-keys", + "name_hash": "17064657543629771811", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 467, + 468, + 469, + ], + "id": 303, + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "man_dir": "", + "name": "internal-slot", + "name_hash": "5294586439646401067", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + ], + "id": 304, + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "man_dir": "", + "name": "es-abstract", + "name_hash": "18149169871844198539", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.22.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 509, + 510, + 511, + 512, + 513, + ], + "id": 305, + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "man_dir": "", + "name": "which-typed-array", + "name_hash": "15299409777186876504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.11", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 514, + ], + "id": 306, + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "man_dir": "", + "name": "has-tostringtag", + "name_hash": "13213170068840407891", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 515, + ], + "id": 307, + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "man_dir": "", + "name": "for-each", + "name_hash": "10867395407301386752", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 308, + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "man_dir": "", + "name": "is-callable", + "name_hash": "8145804842618902795", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 309, + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "man_dir": "", + "name": "available-typed-arrays", + "name_hash": "16267035547686705519", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 516, + 517, + 518, + 519, + ], + "id": 310, + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "man_dir": "", + "name": "unbox-primitive", + "name_hash": "5619034830996442352", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 520, + 521, + 522, + 523, + 524, + ], + "id": 311, + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "man_dir": "", + "name": "which-boxed-primitive", + "name_hash": "16054727932152155669", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 525, + ], + "id": 312, + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "man_dir": "", + "name": "is-symbol", + "name_hash": "17261375015506057632", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 526, + ], + "id": 313, + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "man_dir": "", + "name": "is-string", + "name_hash": "17134972543368483860", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 527, + ], + "id": 314, + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "man_dir": "", + "name": "is-number-object", + "name_hash": "17734215349587891459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 528, + 529, + ], + "id": 315, + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "man_dir": "", + "name": "is-boolean-object", + "name_hash": "977724548377731595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 530, + ], + "id": 316, + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "man_dir": "", + "name": "is-bigint", + "name_hash": "15395120181649760746", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 317, + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "man_dir": "", + "name": "has-bigints", + "name_hash": "8902287851533908224", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 531, + 532, + 533, + ], + "id": 318, + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "man_dir": "", + "name": "typed-array-length", + "name_hash": "11116743844802335237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 534, + ], + "id": 319, + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "man_dir": "", + "name": "is-typed-array", + "name_hash": "9705410882361152938", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.12", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 535, + 536, + 537, + 538, + 539, + ], + "id": 320, + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "man_dir": "", + "name": "typed-array-byte-offset", + "name_hash": "4363148948656071809", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 540, + 541, + 542, + 543, + ], + "id": 321, + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "man_dir": "", + "name": "typed-array-byte-length", + "name_hash": "15839092223363072276", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 544, + 545, + 546, + ], + "id": 322, + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "man_dir": "", + "name": "typed-array-buffer", + "name_hash": "12632345045689166547", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 547, + 548, + 549, + ], + "id": 323, + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "man_dir": "", + "name": "string.prototype.trimstart", + "name_hash": "2565522221466854936", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 550, + 551, + 552, + ], + "id": 324, + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "man_dir": "", + "name": "string.prototype.trimend", + "name_hash": "1025553805644415088", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 553, + 554, + 555, + ], + "id": 325, + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "man_dir": "", + "name": "string.prototype.trim", + "name_hash": "13195996988681286312", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 556, + 557, + 558, + ], + "id": 326, + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "man_dir": "", + "name": "safe-regex-test", + "name_hash": "7551602408075273083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 559, + 560, + ], + "id": 327, + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "man_dir": "", + "name": "is-regex", + "name_hash": "5347229372705359543", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 561, + 562, + 563, + 564, + ], + "id": 328, + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "man_dir": "", + "name": "safe-array-concat", + "name_hash": "16724726882203544952", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 329, + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "man_dir": "", + "name": "isarray", + "name_hash": "1313190527457156627", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 565, + 566, + 567, + 568, + ], + "id": 330, + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "man_dir": "", + "name": "object.assign", + "name_hash": "3382096865825279030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 569, + ], + "id": 331, + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "man_dir": "", + "name": "is-weakref", + "name_hash": "16457982703851476953", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 570, + ], + "id": 332, + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "man_dir": "", + "name": "is-shared-array-buffer", + "name_hash": "16404740693320828184", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 333, + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "man_dir": "", + "name": "is-negative-zero", + "name_hash": "15976851243871524828", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 571, + 572, + 573, + ], + "id": 334, + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "man_dir": "", + "name": "is-array-buffer", + "name_hash": "14032760764897204845", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 574, + ], + "id": 335, + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "man_dir": "", + "name": "globalthis", + "name_hash": "13441561870904786738", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 575, + 576, + ], + "id": 336, + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "man_dir": "", + "name": "get-symbol-description", + "name_hash": "9231308723607962639", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 577, + 578, + 579, + 580, + ], + "id": 337, + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "man_dir": "", + "name": "function.prototype.name", + "name_hash": "4695092674110180958", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 581, + 582, + 583, + ], + "id": 338, + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "man_dir": "", + "name": "es-to-primitive", + "name_hash": "5511149163085325549", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 584, + ], + "id": 339, + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "man_dir": "", + "name": "is-date-object", + "name_hash": "2234586858061383196", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 585, + 586, + 587, + ], + "id": 340, + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "man_dir": "", + "name": "es-set-tostringtag", + "name_hash": "6364566058234691598", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 588, + 589, + 590, + 591, + 592, + 593, + 594, + ], + "id": 341, + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "man_dir": "", + "name": "arraybuffer.prototype.slice", + "name_hash": "11166998714227851504", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 595, + 596, + ], + "id": 342, + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "man_dir": "", + "name": "array-buffer-byte-length", + "name_hash": "9975978122018604356", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [], + "id": 343, + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.3.1", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/resolve", + "name": "resolve", + }, + "dependencies": [ + 597, + 598, + 599, + ], + "id": 344, + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "man_dir": "", + "name": "resolve", + "name_hash": "17831413505788817704", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0-next.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 600, + 601, + 602, + ], + "id": 345, + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "man_dir": "", + "name": "prop-types", + "name_hash": "2288456573804260909", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.8.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 346, + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "man_dir": "", + "name": "react-is", + "name_hash": "2565568243106125199", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "16.13.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 603, + 604, + 605, + ], + "id": 347, + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "man_dir": "", + "name": "object.values", + "name_hash": "17183857510284531499", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 606, + 607, + ], + "id": 348, + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "man_dir": "", + "name": "object.hasown", + "name_hash": "12140096160358655980", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 608, + 609, + 610, + ], + "id": 349, + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "man_dir": "", + "name": "object.fromentries", + "name_hash": "58142230756561331", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 611, + 612, + 613, + ], + "id": 350, + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "man_dir": "", + "name": "object.entries", + "name_hash": "9232336923373250807", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 614, + 615, + 616, + 617, + ], + "id": 351, + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "man_dir": "", + "name": "jsx-ast-utils", + "name_hash": "7365668162252757844", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.3.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 618, + 619, + 620, + 621, + ], + "id": 352, + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "man_dir": "", + "name": "array.prototype.flat", + "name_hash": "13419566320551684202", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 622, + ], + "id": 353, + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "man_dir": "", + "name": "es-shim-unscopables", + "name_hash": "9491299634916711255", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 623, + 624, + 625, + 626, + 627, + ], + "id": 354, + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "man_dir": "", + "name": "array-includes", + "name_hash": "4525275494838245397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + ], + "id": 355, + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "man_dir": "", + "name": "es-iterator-helpers", + "name_hash": "6828621610707932693", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.15", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 642, + 643, + 644, + 645, + 646, + ], + "id": 356, + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "man_dir": "", + "name": "iterator.prototype", + "name_hash": "2087250667608616513", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 647, + 648, + 649, + 650, + 651, + 652, + ], + "id": 357, + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "man_dir": "", + "name": "reflect.getprototypeof", + "name_hash": "16421047821568888832", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + ], + "id": 358, + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "man_dir": "", + "name": "which-builtin-type", + "name_hash": "5638101803141645512", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 665, + 666, + 667, + 668, + ], + "id": 359, + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "man_dir": "", + "name": "which-collection", + "name_hash": "14526135543217104595", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 669, + 670, + ], + "id": 360, + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "man_dir": "", + "name": "is-weakset", + "name_hash": "15512317874752413182", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 361, + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "man_dir": "", + "name": "is-weakmap", + "name_hash": "6846802860855249568", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 362, + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "man_dir": "", + "name": "is-set", + "name_hash": "711008573234634940", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 363, + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "man_dir": "", + "name": "is-map", + "name_hash": "13285296637631486371", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 671, + ], + "id": 364, + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "man_dir": "", + "name": "is-generator-function", + "name_hash": "6389681397246265335", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 672, + ], + "id": 365, + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "man_dir": "", + "name": "is-finalizationregistry", + "name_hash": "3324291948921067566", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 673, + ], + "id": 366, + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "man_dir": "", + "name": "is-async-function", + "name_hash": "7396704721306843003", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 674, + ], + "id": 367, + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "man_dir": "", + "name": "asynciterator.prototype", + "name_hash": "3757020988614190728", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 675, + ], + "id": 368, + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "man_dir": "", + "name": "doctrine", + "name_hash": "17204823894354646410", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 676, + 677, + 678, + 679, + 680, + ], + "id": 369, + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "man_dir": "", + "name": "array.prototype.tosorted", + "name_hash": "6050988382768901310", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 681, + 682, + 683, + 684, + ], + "id": 370, + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "man_dir": "", + "name": "array.prototype.flatmap", + "name_hash": "4112999450230342125", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.3.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + ], + "id": 371, + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "man_dir": "", + "name": "eslint-plugin-jsx-a11y", + "name_hash": "17038906309846806775", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 702, + ], + "id": 372, + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "man_dir": "", + "name": "language-tags", + "name_hash": "3625175203997363083", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.5", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 373, + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "man_dir": "", + "name": "language-subtag-registry", + "name_hash": "15962551382548022065", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 374, + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "man_dir": "", + "name": "emoji-regex", + "name_hash": "4954026511424972012", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.2.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 375, + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "man_dir": "", + "name": "damerau-levenshtein", + "name_hash": "15167018638538311401", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.8", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 703, + ], + "id": 376, + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "man_dir": "", + "name": "axobject-query", + "name_hash": "9344054106894956572", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 377, + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "man_dir": "", + "name": "dequal", + "name_hash": "9863785364709466334", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 378, + "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "man_dir": "", + "name": "axe-core", + "name_hash": "13988195930258765777", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.8.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 379, + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "man_dir": "", + "name": "ast-types-flow", + "name_hash": "3772215945262775731", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 704, + ], + "id": 380, + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "man_dir": "", + "name": "aria-query", + "name_hash": "506127023625643336", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.3.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 705, + ], + "id": 381, + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "man_dir": "", + "name": "@babel/runtime", + "name_hash": "10291762809505250838", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.23.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 382, + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "man_dir": "", + "name": "regenerator-runtime", + "name_hash": "7537904526969317900", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.14.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + ], + "id": 383, + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "man_dir": "", + "name": "eslint-plugin-import", + "name_hash": "8508429259951498502", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.28.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 724, + 725, + 726, + 727, + ], + "id": 384, + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "man_dir": "", + "name": "tsconfig-paths", + "name_hash": "9484880556576660029", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.14.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 385, + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "man_dir": "", + "name": "strip-bom", + "name_hash": "10409965272767959480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 386, + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "man_dir": "", + "name": "minimist", + "name_hash": "3523651443977674137", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.8", + }, + "scripts": {}, + }, + { + "bin": { + "file": "lib/cli.js", + "name": "json5", + }, + "dependencies": [ + 728, + ], + "id": 387, + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "man_dir": "", + "name": "json5", + "name_hash": "8623012563386528314", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 388, + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "man_dir": "", + "name": "@types/json5", + "name_hash": "7880870305537908928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.0.29", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 729, + 730, + 731, + 732, + ], + "id": 389, + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "man_dir": "", + "name": "object.groupby", + "name_hash": "11641877674072745532", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 733, + ], + "id": 390, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "man_dir": "", + "name": "eslint-module-utils", + "name_hash": "8461306141657248779", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.8.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 734, + ], + "id": 391, + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "man_dir": "", + "name": "debug", + "name_hash": "14324291119347696526", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 392, + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "man_dir": "", + "name": "ms", + "name_hash": "5228634868375925924", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 735, + 736, + 737, + ], + "id": 393, + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "man_dir": "", + "name": "eslint-import-resolver-node", + "name_hash": "7112252065464945765", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.3.9", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 738, + 739, + 740, + 741, + 742, + ], + "id": 394, + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "man_dir": "", + "name": "array.prototype.findlastindex", + "name_hash": "12218267642355334154", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.2.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + ], + "id": 395, + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "man_dir": "", + "name": "eslint-import-resolver-typescript", + "name_hash": "15133821067886250480", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.6.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 752, + ], + "id": 396, + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "man_dir": "", + "name": "get-tsconfig", + "name_hash": "4239972350118399509", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.7.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 397, + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "man_dir": "", + "name": "resolve-pkg-maps", + "name_hash": "2492033107302429470", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 753, + 754, + ], + "id": 398, + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "man_dir": "", + "name": "enhanced-resolve", + "name_hash": "2987069983667056488", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.15.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 399, + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "man_dir": "", + "name": "tapable", + "name_hash": "14182729765386254792", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 755, + 756, + 757, + 758, + 759, + 760, + ], + "id": 400, + "integrity": "sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==", + "man_dir": "", + "name": "@typescript-eslint/parser", + "name_hash": "16517001479467293030", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 761, + 762, + ], + "id": 401, + "integrity": "sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==", + "man_dir": "", + "name": "@typescript-eslint/visitor-keys", + "name_hash": "7940841856001563650", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 402, + "integrity": "sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==", + "man_dir": "", + "name": "@typescript-eslint/types", + "name_hash": "9755027355340495761", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 763, + 764, + 765, + 766, + 767, + 768, + 769, + ], + "id": 403, + "integrity": "sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==", + "man_dir": "", + "name": "@typescript-eslint/typescript-estree", + "name_hash": "17745786537991019945", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 770, + ], + "id": 404, + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "man_dir": "", + "name": "ts-api-utils", + "name_hash": "16747467150637667790", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/semver.js", + "name": "semver", + }, + "dependencies": [ + 771, + ], + "id": 405, + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "man_dir": "", + "name": "semver", + "name_hash": "16367367531761322261", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.5.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 772, + 773, + 774, + 775, + 776, + 777, + ], + "id": 406, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "man_dir": "", + "name": "globby", + "name_hash": "15348107128072099982", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "11.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 407, + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "man_dir": "", + "name": "slash", + "name_hash": "14883663570633596397", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 778, + ], + "id": 408, + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "man_dir": "", + "name": "dir-glob", + "name_hash": "7561427002176423027", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 409, + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "man_dir": "", + "name": "path-type", + "name_hash": "1886008933504244910", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.0.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 410, + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "man_dir": "", + "name": "array-union", + "name_hash": "16137961625129706702", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 779, + 780, + ], + "id": 411, + "integrity": "sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==", + "man_dir": "", + "name": "@typescript-eslint/scope-manager", + "name_hash": "4117654371883490926", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.7.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 412, + "integrity": "sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg==", + "man_dir": "", + "name": "@rushstack/eslint-patch", + "name_hash": "11774582013079126290", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 781, + ], + "id": 413, + "integrity": "sha512-VCnZI2cy77Yaj3L7Uhs3+44ikMM1VD/fBMwvTBb3hIaTIuqa+DmG4dhUDq+MASu3yx97KhgsVJbsas0XuiKyww==", + "man_dir": "", + "name": "@next/eslint-plugin-next", + "name_hash": "12150179697604729174", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "14.1.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "dist/esm/bin.mjs", + "name": "glob", + }, + "dependencies": [ + 782, + 783, + 784, + 785, + 786, + ], + "id": 414, + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "man_dir": "", + "name": "glob", + "name_hash": "4994027009006720870", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.3.10", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 787, + 788, + ], + "id": 415, + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "man_dir": "", + "name": "path-scurry", + "name_hash": "11241411746102775941", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.10.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 416, + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "man_dir": "", + "name": "minipass", + "name_hash": "8663404386276345459", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.0.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 417, + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "man_dir": "", + "name": "lru-cache", + "name_hash": "15261810304153928944", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 789, + ], + "id": 418, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "man_dir": "", + "name": "minimatch", + "name_hash": "8137703609956696607", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "9.0.3", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 790, + ], + "id": 419, + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "man_dir": "", + "name": "brace-expansion", + "name_hash": "2949258092693339993", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 791, + 792, + ], + "id": 420, + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "man_dir": "", + "name": "jackspeak", + "name_hash": "16168027919126698688", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 421, + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "man_dir": "", + "name": "@pkgjs/parseargs", + "name_hash": "4691519579619228072", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.11.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 793, + 794, + 795, + 796, + 797, + 798, + ], + "id": 422, + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "man_dir": "", + "name": "@isaacs/cliui", + "name_hash": "9642792940339374750", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.0.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 799, + 800, + 801, + ], + "id": 423, + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "man_dir": "", + "name": "wrap-ansi", + "name_hash": "6417752039399150421", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "8.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 802, + ], + "id": 424, + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "man_dir": "", + "name": "strip-ansi", + "name_hash": "13340235767065158173", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "7.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 425, + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "man_dir": "", + "name": "ansi-regex", + "name_hash": "8115476937249128794", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.0.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 803, + 804, + 805, + ], + "id": 426, + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "man_dir": "", + "name": "string-width", + "name_hash": "15727733666069179645", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "5.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 427, + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "man_dir": "", + "name": "eastasianwidth", + "name_hash": "17075761832414070361", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.2.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 428, + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "man_dir": "", + "name": "ansi-styles", + "name_hash": "1496261712670764878", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "6.2.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 806, + 807, + ], + "id": 429, + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "man_dir": "", + "name": "foreground-child", + "name_hash": "15280470906188730905", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.1", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 430, + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "man_dir": "", + "name": "signal-exit", + "name_hash": "10435964049369420478", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.1.0", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 431, + "integrity": "sha512-XlyKVdYCHa7K5PHYGcwOVOrGE/bMnLS51y7zFA3ZAAXyiQ6dTaNXNCWTTufgII/6ruN770uhAXphQmzvU/r2fQ==", + "man_dir": "", + "name": "bun-types", + "name_hash": "2516125195587546235", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.3", + }, + "scripts": {}, + }, + { + "bin": { + "file": "bin/autoprefixer", + "name": "autoprefixer", + }, + "dependencies": [ + 808, + 809, + 810, + 811, + 812, + 813, + 814, + ], + "id": 432, + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "man_dir": "", + "name": "autoprefixer", + "name_hash": "8637312893797281270", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "10.4.16", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 433, + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "man_dir": "", + "name": "normalize-range", + "name_hash": "2450824346687386237", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 434, + "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "man_dir": "", + "name": "fraction.js", + "name_hash": "8226692764887072839", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.3.6", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 435, + "integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA==", + "man_dir": "", + "name": "caniuse-lite", + "name_hash": "9052408705322291763", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.30001539", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "browserslist", + }, + "dependencies": [ + 815, + 816, + 817, + 818, + ], + "id": 436, + "integrity": "sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==", + "man_dir": "", + "name": "browserslist", + "name_hash": "10902238872969648239", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "4.21.11", + }, + "scripts": {}, + }, + { + "bin": { + "file": "cli.js", + "name": "update-browserslist-db", + }, + "dependencies": [ + 819, + 820, + 821, + ], + "id": 437, + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "man_dir": "", + "name": "update-browserslist-db", + "name_hash": "6664421840286510928", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 438, + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "man_dir": "", + "name": "node-releases", + "name_hash": "16500855680207755447", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "2.0.13", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 439, + "integrity": "sha512-6uyPyXTo8lkv8SWAmjKFbG42U073TXlzD4R8rW3EzuznhFS2olCIAfjjQtV2dV2ar/vRF55KUd3zQYnCB0dd3A==", + "man_dir": "", + "name": "electron-to-chromium", + "name_hash": "670529235028360171", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "1.4.529", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 822, + ], + "id": 440, + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "man_dir": "", + "name": "@types/react-dom", + "name_hash": "3229493356298419080", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.7", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [ + 823, + 824, + 825, + ], + "id": 441, + "integrity": "sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==", + "man_dir": "", + "name": "@types/react", + "name_hash": "14723150644049679642", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "18.2.22", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 442, + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "man_dir": "", + "name": "csstype", + "name_hash": "10489861045436610105", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "3.1.2", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 443, + "integrity": "sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==", + "man_dir": "", + "name": "@types/scheduler", + "name_hash": "12135549028975824460", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "0.16.4", + }, + "scripts": {}, + }, + { + "bin": null, + "dependencies": [], + "id": 444, + "integrity": "sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog==", + "man_dir": "", + "name": "@types/prop-types", + "name_hash": "14301724962060537021", + "origin": "npm", + "resolution": { + "tag": "npm", + "value": "15.7.7", + }, + "scripts": {}, + }, + ], + "trees": [ + { + "dependencies": { + "@aashutoshrathi/word-wrap": { + "id": 355, + "package_id": 229, + }, + "@alloc/quick-lru": { + "id": 14, + "package_id": 83, + }, + "@babel/code-frame": { + "id": 258, + "package_id": 186, + }, + "@babel/helper-validator-identifier": { + "id": 271, + "package_id": 195, + }, + "@babel/highlight": { + "id": 263, + "package_id": 194, + }, + "@babel/runtime": { + "id": 685, + "package_id": 381, + }, + "@eslint-community/eslint-utils": { + "id": 316, + "package_id": 285, + }, + "@eslint-community/regexpp": { + "id": 317, + "package_id": 284, + }, + "@eslint/eslintrc": { + "id": 318, + "package_id": 282, + }, + "@eslint/js": { + "id": 319, + "package_id": 281, + }, + "@humanwhocodes/config-array": { + "id": 320, + "package_id": 279, + }, + "@humanwhocodes/module-importer": { + "id": 321, + "package_id": 278, + }, + "@humanwhocodes/object-schema": { + "id": 403, + "package_id": 280, + }, + "@isaacs/cliui": { + "id": 791, + "package_id": 422, + }, + "@jridgewell/gen-mapping": { + "id": 36, + "package_id": 24, + }, + "@jridgewell/resolve-uri": { + "id": 63, + "package_id": 27, + }, + "@jridgewell/set-array": { + "id": 60, + "package_id": 28, + }, + "@jridgewell/sourcemap-codec": { + "id": 61, + "package_id": 26, + }, + "@jridgewell/trace-mapping": { + "id": 62, + "package_id": 25, + }, + "@next/env": { + "id": 278, + "package_id": 220, + }, + "@next/eslint-plugin-next": { + "id": 305, + "package_id": 413, + }, + "@next/swc-darwin-arm64": { + "id": 285, + "package_id": 212, + }, + "@next/swc-darwin-x64": { + "id": 286, + "package_id": 211, + }, + "@next/swc-linux-arm64-gnu": { + "id": 287, + "package_id": 210, + }, + "@next/swc-linux-arm64-musl": { + "id": 288, + "package_id": 209, + }, + "@next/swc-linux-x64-gnu": { + "id": 289, + "package_id": 208, + }, + "@next/swc-linux-x64-musl": { + "id": 290, + "package_id": 207, + }, + "@next/swc-win32-arm64-msvc": { + "id": 291, + "package_id": 206, + }, + "@next/swc-win32-ia32-msvc": { + "id": 292, + "package_id": 205, + }, + "@next/swc-win32-x64-msvc": { + "id": 293, + "package_id": 204, + }, + "@nodelib/fs.scandir": { + "id": 101, + "package_id": 70, + }, + "@nodelib/fs.stat": { + "id": 95, + "package_id": 73, + }, + "@nodelib/fs.walk": { + "id": 322, + "package_id": 67, + }, + "@pkgjs/parseargs": { + "id": 792, + "package_id": 421, + }, + "@puppeteer/browsers": { + "id": 127, + "package_id": 90, + }, + "@rushstack/eslint-patch": { + "id": 306, + "package_id": 412, + }, + "@swc/helpers": { + "id": 279, + "package_id": 219, + }, + "@tootallnate/quickjs-emscripten": { + "id": 193, + "package_id": 157, + }, + "@types/json5": { + "id": 724, + "package_id": 388, + }, + "@types/node": { + "id": 0, + "package_id": 164, + }, + "@types/prop-types": { + "id": 823, + "package_id": 444, + }, + "@types/react": { + "id": 1, + "package_id": 441, + }, + "@types/react-dom": { + "id": 2, + "package_id": 440, + }, + "@types/scheduler": { + "id": 824, + "package_id": 443, + }, + "@types/yauzl": { + "id": 231, + "package_id": 163, + }, + "@typescript-eslint/parser": { + "id": 307, + "package_id": 400, + }, + "@typescript-eslint/scope-manager": { + "id": 755, + "package_id": 411, + }, + "@typescript-eslint/types": { + "id": 756, + "package_id": 402, + }, + "@typescript-eslint/typescript-estree": { + "id": 757, + "package_id": 403, + }, + "@typescript-eslint/visitor-keys": { + "id": 758, + "package_id": 401, + }, + "acorn": { + "id": 382, + "package_id": 259, + }, + "acorn-jsx": { + "id": 383, + "package_id": 258, + }, + "agent-base": { + "id": 178, + "package_id": 134, + }, + "ajv": { + "id": 323, + "package_id": 273, + }, + "ansi-regex": { + "id": 148, + "package_id": 99, + }, + "ansi-styles": { + "id": 395, + "package_id": 107, + }, + "any-promise": { + "id": 43, + "package_id": 9, + }, + "anymatch": { + "id": 107, + "package_id": 81, + }, + "arg": { + "id": 15, + "package_id": 82, + }, + "argparse": { + "id": 274, + "package_id": 197, + }, + "aria-query": { + "id": 686, + "package_id": 380, + }, + "array-buffer-byte-length": { + "id": 470, + "package_id": 342, + }, + "array-includes": { + "id": 706, + "package_id": 354, + }, + "array-union": { + "id": 772, + "package_id": 410, + }, + "array.prototype.findlastindex": { + "id": 707, + "package_id": 394, + }, + "array.prototype.flat": { + "id": 708, + "package_id": 352, + }, + "array.prototype.flatmap": { + "id": 709, + "package_id": 370, + }, + "array.prototype.tosorted": { + "id": 420, + "package_id": 369, + }, + "arraybuffer.prototype.slice": { + "id": 471, + "package_id": 341, + }, + "ast-types": { + "id": 204, + "package_id": 146, + }, + "ast-types-flow": { + "id": 689, + "package_id": 379, + }, + "asynciterator.prototype": { + "id": 628, + "package_id": 367, + }, + "autoprefixer": { + "id": 3, + "package_id": 432, + }, + "available-typed-arrays": { + "id": 472, + "package_id": 309, + }, + "axe-core": { + "id": 690, + "package_id": 378, + }, + "axobject-query": { + "id": 691, + "package_id": 376, + }, + "b4a": { + "id": 172, + "package_id": 124, + }, + "balanced-match": { + "id": 56, + "package_id": 19, + }, + "bare-events": { + "id": 166, + "package_id": 122, + }, + "bare-fs": { + "id": 163, + "package_id": 118, + }, + "bare-os": { + "id": 167, + "package_id": 117, + }, + "bare-path": { + "id": 164, + "package_id": 116, + }, + "base64-js": { + "id": 159, + "package_id": 114, + }, + "basic-ftp": { + "id": 216, + "package_id": 156, + }, + "binary-extensions": { + "id": 116, + "package_id": 80, + }, + "brace-expansion": { + "id": 362, + "package_id": 17, + }, + "braces": { + "id": 108, + "package_id": 56, + }, + "browserslist": { + "id": 808, + "package_id": 436, + }, + "buffer": { + "id": 157, + "package_id": 112, + }, + "buffer-crc32": { + "id": 234, + "package_id": 166, + }, + "bun-types": { + "id": 4, + "package_id": 431, + }, + "busboy": { + "id": 280, + "package_id": 217, + }, + "call-bind": { + "id": 623, + "package_id": 294, + }, + "callsites": { + "id": 277, + "package_id": 201, + }, + "camelcase-css": { + "id": 81, + "package_id": 47, + }, + "caniuse-lite": { + "id": 809, + "package_id": 435, + }, + "chalk": { + "id": 324, + "package_id": 270, + }, + "chokidar": { + "id": 16, + "package_id": 76, + }, + "chromium-bidi": { + "id": 238, + "package_id": 178, + }, + "client-only": { + "id": 298, + "package_id": 214, + }, + "cliui": { + "id": 138, + "package_id": 105, + }, + "color-convert": { + "id": 155, + "package_id": 108, + }, + "color-name": { + "id": 156, + "package_id": 109, + }, + "commander": { + "id": 37, + "package_id": 23, + }, + "concat-map": { + "id": 57, + "package_id": 18, + }, + "cosmiconfig": { + "id": 125, + "package_id": 181, + }, + "cross-fetch": { + "id": 239, + "package_id": 173, + }, + "cross-spawn": { + "id": 325, + "package_id": 264, + }, + "cssesc": { + "id": 70, + "package_id": 37, + }, + "csstype": { + "id": 825, + "package_id": 442, + }, + "damerau-levenshtein": { + "id": 692, + "package_id": 375, + }, + "data-uri-to-buffer": { + "id": 217, + "package_id": 155, + }, + "debug": { + "id": 326, + "package_id": 132, + }, + "deep-is": { + "id": 354, + "package_id": 230, + }, + "define-data-property": { + "id": 464, + "package_id": 298, + }, + "define-properties": { + "id": 624, + "package_id": 301, + }, + "degenerator": { + "id": 201, + "package_id": 140, + }, + "dequal": { + "id": 704, + "package_id": 377, + }, + "devtools-protocol": { + "id": 241, + "package_id": 172, + }, + "didyoumean": { + "id": 17, + "package_id": 75, + }, + "dir-glob": { + "id": 773, + "package_id": 408, + }, + "dlv": { + "id": 18, + "package_id": 74, + }, + "doctrine": { + "id": 327, + "package_id": 263, + }, + "eastasianwidth": { + "id": 803, + "package_id": 427, + }, + "electron-to-chromium": { + "id": 816, + "package_id": 439, + }, + "emoji-regex": { + "id": 693, + "package_id": 374, + }, + "end-of-stream": { + "id": 175, + "package_id": 126, + }, + "enhanced-resolve": { + "id": 744, + "package_id": 398, + }, + "env-paths": { + "id": 253, + "package_id": 202, + }, + "error-ex": { + "id": 259, + "package_id": 184, + }, + "es-abstract": { + "id": 625, + "package_id": 304, + }, + "es-iterator-helpers": { + "id": 422, + "package_id": 355, + }, + "es-set-tostringtag": { + "id": 632, + "package_id": 340, + }, + "es-shim-unscopables": { + "id": 741, + "package_id": 353, + }, + "es-to-primitive": { + "id": 475, + "package_id": 338, + }, + "escalade": { + "id": 819, + "package_id": 104, + }, + "escape-string-regexp": { + "id": 328, + "package_id": 262, + }, + "escodegen": { + "id": 205, + "package_id": 142, + }, + "eslint": { + "id": 5, + "package_id": 222, + }, + "eslint-config-next": { + "id": 6, + "package_id": 221, + }, + "eslint-import-resolver-node": { + "id": 308, + "package_id": 393, + }, + "eslint-import-resolver-typescript": { + "id": 309, + "package_id": 395, + }, + "eslint-module-utils": { + "id": 745, + "package_id": 390, + }, + "eslint-plugin-import": { + "id": 310, + "package_id": 383, + }, + "eslint-plugin-jsx-a11y": { + "id": 311, + "package_id": 371, + }, + "eslint-plugin-react": { + "id": 312, + "package_id": 287, + }, + "eslint-plugin-react-hooks": { + "id": 313, + "package_id": 286, + }, + "eslint-scope": { + "id": 329, + "package_id": 260, + }, + "eslint-visitor-keys": { + "id": 330, + "package_id": 257, + }, + "espree": { + "id": 331, + "package_id": 256, + }, + "esprima": { + "id": 206, + "package_id": 141, + }, + "esquery": { + "id": 332, + "package_id": 255, + }, + "esrecurse": { + "id": 386, + "package_id": 261, + }, + "estraverse": { + "id": 387, + "package_id": 145, + }, + "esutils": { + "id": 333, + "package_id": 144, + }, + "extract-zip": { + "id": 129, + "package_id": 162, + }, + "fast-deep-equal": { + "id": 334, + "package_id": 254, + }, + "fast-fifo": { + "id": 173, + "package_id": 121, + }, + "fast-glob": { + "id": 19, + "package_id": 64, + }, + "fast-json-stable-stringify": { + "id": 399, + "package_id": 277, + }, + "fast-levenshtein": { + "id": 358, + "package_id": 225, + }, + "fastq": { + "id": 102, + "package_id": 68, + }, + "fd-slicer": { + "id": 233, + "package_id": 167, + }, + "file-entry-cache": { + "id": 335, + "package_id": 247, + }, + "fill-range": { + "id": 90, + "package_id": 57, + }, + "find-up": { + "id": 336, + "package_id": 241, + }, + "flat-cache": { + "id": 369, + "package_id": 248, + }, + "flatted": { + "id": 370, + "package_id": 253, + }, + "for-each": { + "id": 541, + "package_id": 307, + }, + "foreground-child": { + "id": 782, + "package_id": 429, + }, + "fraction.js": { + "id": 810, + "package_id": 434, + }, + "fs-extra": { + "id": 219, + "package_id": 151, + }, + "fs.realpath": { + "id": 48, + "package_id": 22, + }, + "fsevents": { + "id": 114, + "package_id": 77, + }, + "function-bind": { + "id": 69, + "package_id": 34, + }, + "function.prototype.name": { + "id": 476, + "package_id": 337, + }, + "functions-have-names": { + "id": 454, + "package_id": 297, + }, + "get-caller-file": { + "id": 140, + "package_id": 103, + }, + "get-intrinsic": { + "id": 626, + "package_id": 291, + }, + "get-stream": { + "id": 229, + "package_id": 169, + }, + "get-symbol-description": { + "id": 478, + "package_id": 336, + }, + "get-tsconfig": { + "id": 747, + "package_id": 396, + }, + "get-uri": { + "id": 196, + "package_id": 150, + }, + "glob": { + "id": 781, + "package_id": 414, + }, + "glob-parent": { + "id": 337, + "package_id": 63, + }, + "globals": { + "id": 338, + "package_id": 239, + }, + "globalthis": { + "id": 635, + "package_id": 335, + }, + "globby": { + "id": 766, + "package_id": 406, + }, + "gopd": { + "id": 480, + "package_id": 299, + }, + "graceful-fs": { + "id": 282, + "package_id": 154, + }, + "graphemer": { + "id": 339, + "package_id": 238, + }, + "has": { + "id": 714, + "package_id": 33, + }, + "has-bigints": { + "id": 517, + "package_id": 317, + }, + "has-flag": { + "id": 397, + "package_id": 272, + }, + "has-property-descriptors": { + "id": 636, + "package_id": 296, + }, + "has-proto": { + "id": 637, + "package_id": 293, + }, + "has-symbols": { + "id": 638, + "package_id": 292, + }, + "has-tostringtag": { + "id": 526, + "package_id": 306, + }, + "http-proxy-agent": { + "id": 180, + "package_id": 160, + }, + "https-proxy-agent": { + "id": 181, + "package_id": 159, + }, + "ieee754": { + "id": 160, + "package_id": 113, + }, + "ignore": { + "id": 340, + "package_id": 237, + }, + "import-fresh": { + "id": 411, + "package_id": 198, + }, + "imurmurhash": { + "id": 341, + "package_id": 236, + }, + "inflight": { + "id": 49, + "package_id": 21, + }, + "inherits": { + "id": 50, + "package_id": 20, + }, + "internal-slot": { + "id": 639, + "package_id": 303, + }, + "ip": { + "id": 202, + "package_id": 139, + }, + "is-array-buffer": { + "id": 486, + "package_id": 334, + }, + "is-arrayish": { + "id": 262, + "package_id": 185, + }, + "is-async-function": { + "id": 655, + "package_id": 366, + }, + "is-bigint": { + "id": 520, + "package_id": 316, + }, + "is-binary-path": { + "id": 110, + "package_id": 79, + }, + "is-boolean-object": { + "id": 521, + "package_id": 315, + }, + "is-callable": { + "id": 487, + "package_id": 308, + }, + "is-core-module": { + "id": 736, + "package_id": 32, + }, + "is-date-object": { + "id": 582, + "package_id": 339, + }, + "is-extglob": { + "id": 93, + "package_id": 62, + }, + "is-finalizationregistry": { + "id": 657, + "package_id": 365, + }, + "is-fullwidth-code-point": { + "id": 146, + "package_id": 100, + }, + "is-generator-function": { + "id": 658, + "package_id": 364, + }, + "is-glob": { + "id": 342, + "package_id": 61, + }, + "is-map": { + "id": 665, + "package_id": 363, + }, + "is-negative-zero": { + "id": 488, + "package_id": 333, + }, + "is-number": { + "id": 92, + "package_id": 59, + }, + "is-number-object": { + "id": 522, + "package_id": 314, + }, + "is-path-inside": { + "id": 343, + "package_id": 235, + }, + "is-regex": { + "id": 489, + "package_id": 327, + }, + "is-set": { + "id": 666, + "package_id": 362, + }, + "is-shared-array-buffer": { + "id": 490, + "package_id": 332, + }, + "is-string": { + "id": 627, + "package_id": 313, + }, + "is-symbol": { + "id": 583, + "package_id": 312, + }, + "is-typed-array": { + "id": 492, + "package_id": 319, + }, + "is-weakmap": { + "id": 667, + "package_id": 361, + }, + "is-weakref": { + "id": 493, + "package_id": 331, + }, + "is-weakset": { + "id": 668, + "package_id": 360, + }, + "isarray": { + "id": 564, + "package_id": 329, + }, + "isexe": { + "id": 393, + "package_id": 266, + }, + "iterator.prototype": { + "id": 640, + "package_id": 356, + }, + "jackspeak": { + "id": 783, + "package_id": 420, + }, + "jiti": { + "id": 22, + "package_id": 60, + }, + "js-tokens": { + "id": 123, + "package_id": 87, + }, + "js-yaml": { + "id": 344, + "package_id": 196, + }, + "json-buffer": { + "id": 380, + "package_id": 252, + }, + "json-parse-even-better-errors": { + "id": 260, + "package_id": 183, + }, + "json-schema-traverse": { + "id": 400, + "package_id": 276, + }, + "json-stable-stringify-without-jsonify": { + "id": 345, + "package_id": 234, + }, + "json5": { + "id": 725, + "package_id": 387, + }, + "jsonfile": { + "id": 221, + "package_id": 153, + }, + "jsx-ast-utils": { + "id": 695, + "package_id": 351, + }, + "keyv": { + "id": 371, + "package_id": 251, + }, + "language-subtag-registry": { + "id": 702, + "package_id": 373, + }, + "language-tags": { + "id": 696, + "package_id": 372, + }, + "levn": { + "id": 346, + "package_id": 226, + }, + "lilconfig": { + "id": 23, + "package_id": 45, + }, + "lines-and-columns": { + "id": 39, + "package_id": 11, + }, + "locate-path": { + "id": 364, + "package_id": 243, + }, + "lodash.merge": { + "id": 347, + "package_id": 233, + }, + "loose-envify": { + "id": 124, + "package_id": 86, + }, + "lru-cache": { + "id": 182, + "package_id": 158, + }, + "merge2": { + "id": 98, + "package_id": 65, + }, + "micromatch": { + "id": 24, + "package_id": 54, + }, + "minimatch": { + "id": 348, + "package_id": 232, + }, + "minimist": { + "id": 726, + "package_id": 386, + }, + "minipass": { + "id": 785, + "package_id": 416, + }, + "mitt": { + "id": 250, + "package_id": 180, + }, + "ms": { + "id": 191, + "package_id": 133, + }, + "mz": { + "id": 40, + "package_id": 6, + }, + "nanoid": { + "id": 74, + "package_id": 42, + }, + "natural-compare": { + "id": 349, + "package_id": 231, + }, + "netmask": { + "id": 203, + "package_id": 138, + }, + "next": { + "id": 7, + "package_id": 203, + }, + "node-fetch": { + "id": 245, + "package_id": 174, + }, + "node-releases": { + "id": 817, + "package_id": 438, + }, + "normalize-path": { + "id": 25, + "package_id": 53, + }, + "normalize-range": { + "id": 811, + "package_id": 433, + }, + "object-assign": { + "id": 601, + "package_id": 10, + }, + "object-hash": { + "id": 26, + "package_id": 52, + }, + "object-inspect": { + "id": 494, + "package_id": 290, + }, + "object-keys": { + "id": 466, + "package_id": 302, + }, + "object.assign": { + "id": 616, + "package_id": 330, + }, + "object.entries": { + "id": 698, + "package_id": 350, + }, + "object.fromentries": { + "id": 718, + "package_id": 349, + }, + "object.groupby": { + "id": 719, + "package_id": 389, + }, + "object.hasown": { + "id": 428, + "package_id": 348, + }, + "object.values": { + "id": 720, + "package_id": 347, + }, + "once": { + "id": 52, + "package_id": 14, + }, + "optionator": { + "id": 350, + "package_id": 224, + }, + "p-limit": { + "id": 367, + "package_id": 245, + }, + "p-locate": { + "id": 366, + "package_id": 244, + }, + "pac-proxy-agent": { + "id": 183, + "package_id": 136, + }, + "pac-resolver": { + "id": 199, + "package_id": 137, + }, + "parent-module": { + "id": 275, + "package_id": 200, + }, + "parse-json": { + "id": 256, + "package_id": 182, + }, + "path-exists": { + "id": 365, + "package_id": 242, + }, + "path-is-absolute": { + "id": 53, + "package_id": 13, + }, + "path-key": { + "id": 390, + "package_id": 269, + }, + "path-parse": { + "id": 66, + "package_id": 31, + }, + "path-scurry": { + "id": 786, + "package_id": 415, + }, + "path-type": { + "id": 778, + "package_id": 409, + }, + "pend": { + "id": 235, + "package_id": 168, + }, + "picocolors": { + "id": 812, + "package_id": 41, + }, + "picomatch": { + "id": 89, + "package_id": 55, + }, + "pify": { + "id": 87, + "package_id": 50, + }, + "pirates": { + "id": 41, + "package_id": 5, + }, + "postcss": { + "id": 8, + "package_id": 39, + }, + "postcss-import": { + "id": 29, + "package_id": 48, + }, + "postcss-js": { + "id": 30, + "package_id": 46, + }, + "postcss-load-config": { + "id": 31, + "package_id": 43, + }, + "postcss-nested": { + "id": 32, + "package_id": 38, + }, + "postcss-selector-parser": { + "id": 33, + "package_id": 35, + }, + "postcss-value-parser": { + "id": 813, + "package_id": 51, + }, + "prelude-ls": { + "id": 359, + "package_id": 228, + }, + "progress": { + "id": 130, + "package_id": 161, + }, + "prop-types": { + "id": 430, + "package_id": 345, + }, + "proxy-agent": { + "id": 131, + "package_id": 127, + }, + "proxy-from-env": { + "id": 184, + "package_id": 135, + }, + "pump": { + "id": 161, + "package_id": 125, + }, + "punycode": { + "id": 402, + "package_id": 275, + }, + "puppeteer": { + "id": 9, + "package_id": 89, + }, + "puppeteer-core": { + "id": 126, + "package_id": 170, + }, + "queue-microtask": { + "id": 106, + "package_id": 72, + }, + "queue-tick": { + "id": 171, + "package_id": 120, + }, + "react": { + "id": 10, + "package_id": 88, + }, + "react-dom": { + "id": 11, + "package_id": 84, + }, + "react-is": { + "id": 602, + "package_id": 346, + }, + "read-cache": { + "id": 84, + "package_id": 49, + }, + "readdirp": { + "id": 113, + "package_id": 78, + }, + "reflect.getprototypeof": { + "id": 645, + "package_id": 357, + }, + "regenerator-runtime": { + "id": 705, + "package_id": 382, + }, + "regexp.prototype.flags": { + "id": 441, + "package_id": 300, + }, + "require-directory": { + "id": 141, + "package_id": 102, + }, + "resolve": { + "id": 34, + "package_id": 29, + }, + "resolve-from": { + "id": 276, + "package_id": 199, + }, + "resolve-pkg-maps": { + "id": 752, + "package_id": 397, + }, + "reusify": { + "id": 103, + "package_id": 69, + }, + "rimraf": { + "id": 372, + "package_id": 249, + }, + "run-parallel": { + "id": 105, + "package_id": 71, + }, + "safe-array-concat": { + "id": 641, + "package_id": 328, + }, + "safe-regex-test": { + "id": 499, + "package_id": 326, + }, + "scheduler": { + "id": 120, + "package_id": 85, + }, + "semver": { + "id": 721, + "package_id": 343, + }, + "set-function-name": { + "id": 442, + "package_id": 295, + }, + "shebang-command": { + "id": 391, + "package_id": 267, + }, + "shebang-regex": { + "id": 394, + "package_id": 268, + }, + "side-channel": { + "id": 443, + "package_id": 289, + }, + "signal-exit": { + "id": 807, + "package_id": 430, + }, + "slash": { + "id": 777, + "package_id": 407, + }, + "smart-buffer": { + "id": 190, + "package_id": 130, + }, + "socks": { + "id": 188, + "package_id": 129, + }, + "socks-proxy-agent": { + "id": 185, + "package_id": 128, + }, + "source-map": { + "id": 210, + "package_id": 143, + }, + "source-map-js": { + "id": 76, + "package_id": 40, + }, + "streamsearch": { + "id": 303, + "package_id": 218, + }, + "streamx": { + "id": 174, + "package_id": 119, + }, + "string-width": { + "id": 142, + "package_id": 97, + }, + "string.prototype.matchall": { + "id": 433, + "package_id": 288, + }, + "string.prototype.trim": { + "id": 500, + "package_id": 325, + }, + "string.prototype.trimend": { + "id": 501, + "package_id": 324, + }, + "string.prototype.trimstart": { + "id": 502, + "package_id": 323, + }, + "strip-ansi": { + "id": 351, + "package_id": 98, + }, + "strip-bom": { + "id": 727, + "package_id": 385, + }, + "strip-json-comments": { + "id": 414, + "package_id": 283, + }, + "styled-jsx": { + "id": 284, + "package_id": 213, + }, + "sucrase": { + "id": 35, + "package_id": 3, + }, + "supports-color": { + "id": 396, + "package_id": 271, + }, + "supports-preserve-symlinks-flag": { + "id": 67, + "package_id": 30, + }, + "tailwindcss": { + "id": 12, + "package_id": 2, + }, + "tapable": { + "id": 754, + "package_id": 399, + }, + "tar-fs": { + "id": 132, + "package_id": 115, + }, + "tar-stream": { + "id": 162, + "package_id": 123, + }, + "text-table": { + "id": 352, + "package_id": 223, + }, + "thenify": { + "id": 46, + "package_id": 8, + }, + "thenify-all": { + "id": 45, + "package_id": 7, + }, + "through": { + "id": 158, + "package_id": 111, + }, + "to-regex-range": { + "id": 91, + "package_id": 58, + }, + "tr46": { + "id": 248, + "package_id": 177, + }, + "ts-api-utils": { + "id": 769, + "package_id": 404, + }, + "ts-interface-checker": { + "id": 42, + "package_id": 4, + }, + "tsconfig-paths": { + "id": 722, + "package_id": 384, + }, + "tslib": { + "id": 304, + "package_id": 147, + }, + "type-check": { + "id": 360, + "package_id": 227, + }, + "type-fest": { + "id": 363, + "package_id": 240, + }, + "typed-array-buffer": { + "id": 503, + "package_id": 322, + }, + "typed-array-byte-length": { + "id": 504, + "package_id": 321, + }, + "typed-array-byte-offset": { + "id": 505, + "package_id": 320, + }, + "typed-array-length": { + "id": 506, + "package_id": 318, + }, + "typescript": { + "id": 13, + "package_id": 1, + }, + "unbox-primitive": { + "id": 507, + "package_id": 310, + }, + "unbzip2-stream": { + "id": 133, + "package_id": 110, + }, + "universalify": { + "id": 222, + "package_id": 152, + }, + "update-browserslist-db": { + "id": 818, + "package_id": 437, + }, + "uri-js": { + "id": 401, + "package_id": 274, + }, + "urlpattern-polyfill": { + "id": 251, + "package_id": 179, + }, + "util-deprecate": { + "id": 71, + "package_id": 36, + }, + "webidl-conversions": { + "id": 249, + "package_id": 176, + }, + "whatwg-url": { + "id": 246, + "package_id": 175, + }, + "which": { + "id": 392, + "package_id": 265, + }, + "which-boxed-primitive": { + "id": 519, + "package_id": 311, + }, + "which-builtin-type": { + "id": 652, + "package_id": 358, + }, + "which-collection": { + "id": 663, + "package_id": 359, + }, + "which-typed-array": { + "id": 508, + "package_id": 305, + }, + "wrap-ansi": { + "id": 151, + "package_id": 106, + }, + "wrappy": { + "id": 59, + "package_id": 15, + }, + "ws": { + "id": 242, + "package_id": 171, + }, + "y18n": { + "id": 143, + "package_id": 96, + }, + "yallist": { + "id": 137, + "package_id": 93, + }, + "yaml": { + "id": 78, + "package_id": 44, + }, + "yargs": { + "id": 134, + "package_id": 94, + }, + "yargs-parser": { + "id": 144, + "package_id": 95, + }, + "yauzl": { + "id": 230, + "package_id": 165, + }, + "yocto-queue": { + "id": 368, + "package_id": 246, + }, + }, + "depth": 0, + "id": 0, + "path": "node_modules", + }, + { + "dependencies": { + "caniuse-lite": { + "id": 281, + "package_id": 216, + }, + "postcss": { + "id": 283, + "package_id": 215, + }, + }, + "depth": 1, + "id": 1, + "path": "node_modules/next/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 405, + "package_id": 16, + }, + }, + "depth": 1, + "id": 2, + "path": "node_modules/@humanwhocodes/config-array/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 735, + "package_id": 391, + }, + }, + "depth": 1, + "id": 3, + "path": "node_modules/eslint-import-resolver-node/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 710, + "package_id": 391, + }, + "doctrine": { + "id": 711, + "package_id": 368, + }, + }, + "depth": 1, + "id": 4, + "path": "node_modules/eslint-plugin-import/node_modules", + }, + { + "dependencies": { + "doctrine": { + "id": 421, + "package_id": 368, + }, + "resolve": { + "id": 431, + "package_id": 344, + }, + }, + "depth": 1, + "id": 5, + "path": "node_modules/eslint-plugin-react/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 135, + "package_id": 91, + }, + }, + "depth": 1, + "id": 6, + "path": "node_modules/@puppeteer/browsers/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 109, + "package_id": 66, + }, + }, + "depth": 1, + "id": 7, + "path": "node_modules/chokidar/node_modules", + }, + { + "dependencies": { + "glob-parent": { + "id": 97, + "package_id": 66, + }, + }, + "depth": 1, + "id": 8, + "path": "node_modules/fast-glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 38, + "package_id": 12, + }, + }, + "depth": 1, + "id": 9, + "path": "node_modules/sucrase/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 784, + "package_id": 418, + }, + }, + "depth": 1, + "id": 10, + "path": "node_modules/glob/node_modules", + }, + { + "dependencies": { + "semver": { + "id": 768, + "package_id": 405, + }, + }, + "depth": 1, + "id": 11, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 12, + "path": "node_modules/eslint-import-resolver-node/node_modules/debug/node_modules", + }, + { + "dependencies": { + "debug": { + "id": 733, + "package_id": 391, + }, + }, + "depth": 1, + "id": 13, + "path": "node_modules/eslint-module-utils/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 14, + "path": "node_modules/eslint-plugin-import/node_modules/debug/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 136, + "package_id": 92, + }, + }, + "depth": 2, + "id": 15, + "path": "node_modules/@puppeteer/browsers/node_modules/semver/node_modules", + }, + { + "dependencies": { + "minimatch": { + "id": 51, + "package_id": 16, + }, + }, + "depth": 2, + "id": 16, + "path": "node_modules/sucrase/node_modules/glob/node_modules", + }, + { + "dependencies": { + "glob": { + "id": 373, + "package_id": 250, + }, + }, + "depth": 1, + "id": 17, + "path": "node_modules/rimraf/node_modules", + }, + { + "dependencies": { + "brace-expansion": { + "id": 789, + "package_id": 419, + }, + }, + "depth": 2, + "id": 18, + "path": "node_modules/glob/node_modules/minimatch/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 787, + "package_id": 417, + }, + }, + "depth": 1, + "id": 19, + "path": "node_modules/path-scurry/node_modules", + }, + { + "dependencies": { + "lru-cache": { + "id": 771, + "package_id": 92, + }, + }, + "depth": 2, + "id": 20, + "path": "node_modules/@typescript-eslint/typescript-estree/node_modules/semver/node_modules", + }, + { + "dependencies": { + "ms": { + "id": 734, + "package_id": 392, + }, + }, + "depth": 2, + "id": 21, + "path": "node_modules/eslint-module-utils/node_modules/debug/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 264, + "package_id": 187, + }, + }, + "depth": 1, + "id": 22, + "path": "node_modules/@babel/code-frame/node_modules", + }, + { + "dependencies": { + "http-proxy-agent": { + "id": 197, + "package_id": 149, + }, + "https-proxy-agent": { + "id": 198, + "package_id": 148, + }, + }, + "depth": 1, + "id": 23, + "path": "node_modules/pac-proxy-agent/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 1, + "id": 24, + "path": "node_modules/string-width/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 793, + "package_id": 426, + }, + "string-width-cjs": { + "id": 794, + "package_id": 97, + }, + "strip-ansi": { + "id": 795, + "package_id": 424, + }, + "strip-ansi-cjs": { + "id": 796, + "package_id": 98, + }, + "wrap-ansi": { + "id": 797, + "package_id": 423, + }, + "wrap-ansi-cjs": { + "id": 798, + "package_id": 106, + }, + }, + "depth": 1, + "id": 25, + "path": "node_modules/@isaacs/cliui/node_modules", + }, + { + "dependencies": { + "chalk": { + "id": 272, + "package_id": 187, + }, + }, + "depth": 1, + "id": 26, + "path": "node_modules/@babel/highlight/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 27, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "ip": { + "id": 189, + "package_id": 131, + }, + }, + "depth": 1, + "id": 28, + "path": "node_modules/socks/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + "strip-ansi": { + "id": 147, + "package_id": 98, + }, + }, + "depth": 2, + "id": 29, + "path": "node_modules/@isaacs/cliui/node_modules/string-width-cjs/node_modules", + }, + { + "dependencies": { + "ansi-regex": { + "id": 802, + "package_id": 425, + }, + }, + "depth": 2, + "id": 30, + "path": "node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 799, + "package_id": 428, + }, + }, + "depth": 2, + "id": 31, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi/node_modules", + }, + { + "dependencies": { + "string-width": { + "id": 153, + "package_id": 97, + }, + "strip-ansi": { + "id": 154, + "package_id": 98, + }, + }, + "depth": 2, + "id": 32, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules", + }, + { + "dependencies": { + "ansi-styles": { + "id": 265, + "package_id": 191, + }, + "escape-string-regexp": { + "id": 266, + "package_id": 190, + }, + "supports-color": { + "id": 267, + "package_id": 188, + }, + }, + "depth": 2, + "id": 33, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 34, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 35, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "emoji-regex": { + "id": 145, + "package_id": 101, + }, + }, + "depth": 3, + "id": 36, + "path": "node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/string-width/node_modules", + }, + { + "dependencies": { + "color-convert": { + "id": 269, + "package_id": 192, + }, + }, + "depth": 3, + "id": 37, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules", + }, + { + "dependencies": { + "has-flag": { + "id": 268, + "package_id": 189, + }, + }, + "depth": 3, + "id": 38, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 39, + "path": "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + { + "dependencies": { + "color-name": { + "id": 270, + "package_id": 193, + }, + }, + "depth": 4, + "id": 40, + "path": "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules", + }, + ], + "workspace_paths": {}, + "workspace_versions": {}, +} +`; diff --git a/test/integration/next-pages/test/dev-server-ssr-100.test.ts b/test/integration/next-pages/test/dev-server-ssr-100.test.ts index b52e382d74b205..ff94f6bf8f4e25 100644 --- a/test/integration/next-pages/test/dev-server-ssr-100.test.ts +++ b/test/integration/next-pages/test/dev-server-ssr-100.test.ts @@ -1,13 +1,17 @@ import { afterAll, beforeAll, describe, expect, test } from "bun:test"; -import { bunEnv, bunExe } from "../../../harness"; +import { bunEnv, bunExe, toMatchNodeModulesAt } from "../../../harness"; import { Subprocess } from "bun"; import { copyFileSync, rmSync } from "fs"; import { join } from "path"; import { StringDecoder } from "string_decoder"; import { cp, rm } from "fs/promises"; +import { install_test_helpers } from "bun:internal-for-testing"; +const { parseLockfile } = install_test_helpers; import { tmpdir } from "node:os"; +expect.extend({ toMatchNodeModulesAt }); + let root = join(tmpdir(), "ssr" + Math.random().toString(36).slice(2, 4) + "-" + Date.now().toString(36).slice(2, 4)); beforeAll(async () => { @@ -116,6 +120,9 @@ afterAll(() => { test("ssr works for 100-ish requests", async () => { expect(dev_server).not.toBeUndefined(); expect(baseUrl).not.toBeUndefined(); + const lockfile = parseLockfile(root); + expect(lockfile).toMatchNodeModulesAt(root); + expect(lockfile).toMatchSnapshot(); const batchSize = 16; const promises = []; diff --git a/test/integration/next-pages/test/dev-server.test.ts b/test/integration/next-pages/test/dev-server.test.ts index 99d063ce363645..bd0b16a4ad5bad 100644 --- a/test/integration/next-pages/test/dev-server.test.ts +++ b/test/integration/next-pages/test/dev-server.test.ts @@ -1,13 +1,17 @@ import { afterAll, beforeAll, expect, test } from "bun:test"; -import { bunEnv, bunExe } from "../../../harness"; +import { bunEnv, bunExe, toMatchNodeModulesAt } from "../../../harness"; import { Subprocess } from "bun"; import { copyFileSync } from "fs"; import { join } from "path"; import { StringDecoder } from "string_decoder"; import { cp, rm } from "fs/promises"; +import { install_test_helpers } from "bun:internal-for-testing"; +const { parseLockfile } = install_test_helpers; import { tmpdir } from "node:os"; +expect.extend({ toMatchNodeModulesAt }); + let root = join(tmpdir(), "next-pages" + Math.random().toString(36).slice(2) + "-" + Date.now().toString(36)); beforeAll(async () => { @@ -124,6 +128,11 @@ test.skipIf(puppeteer_unsupported)( async () => { expect(dev_server).not.toBeUndefined(); expect(baseUrl).not.toBeUndefined(); + + const lockfile = parseLockfile(root); + expect(lockfile).toMatchNodeModulesAt(root); + expect(lockfile).toMatchSnapshot(); + var pid: number, exited; let timeout = setTimeout(() => { if (timeout && pid) { diff --git a/test/integration/next-pages/test/next-build.test.ts b/test/integration/next-pages/test/next-build.test.ts index eeb5315e3df1b9..bdeebdfae76e64 100644 --- a/test/integration/next-pages/test/next-build.test.ts +++ b/test/integration/next-pages/test/next-build.test.ts @@ -1,9 +1,13 @@ import { expect, test } from "bun:test"; -import { bunEnv, bunExe, isWindows } from "../../../harness"; +import { bunEnv, bunExe, isWindows, toMatchNodeModulesAt } from "../../../harness"; import { copyFileSync, cpSync, mkdtempSync, readFileSync, rmSync, symlinkSync, promises as fs } from "fs"; import { tmpdir } from "os"; import { join } from "path"; import { cp } from "fs/promises"; +import { install_test_helpers } from "bun:internal-for-testing"; +const { parseLockfile } = install_test_helpers; + +expect.extend({ toMatchNodeModulesAt }); const root = join(import.meta.dir, "../"); @@ -84,7 +88,14 @@ test("next build works", async () => { copyFileSync(join(root, "src/Counter1.txt"), join(root, "src/Counter.tsx")); const bunDir = await tempDirToBuildIn(); + let lockfile = parseLockfile(bunDir); + expect(lockfile).toMatchNodeModulesAt(bunDir); + expect(parseLockfile(bunDir)).toMatchSnapshot("bun"); + const nodeDir = await tempDirToBuildIn(); + lockfile = parseLockfile(nodeDir); + expect(lockfile).toMatchNodeModulesAt(nodeDir); + expect(lockfile).toMatchSnapshot("node"); console.log("Bun Dir: " + bunDir); console.log("Node Dir: " + nodeDir);